Skip to content

Instantly share code, notes, and snippets.

@donaldpminer
Created October 21, 2018 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donaldpminer/aa8ffdb087688bd3a4f9b66b7bdb7605 to your computer and use it in GitHub Desktop.
Save donaldpminer/aa8ffdb087688bd3a4f9b66b7bdb7605 to your computer and use it in GitHub Desktop.
Top Cards per color identity and per cmc
October 21st, 2018 from EDHREC data
SELECT * FROM
(SELECT coloridentity, cmc, card, cnt, RANK() OVER (PARTITION BY (coloridentity, cmc) ORDER BY cnt DESC) rank
FROM
(SELECT card, aa.coloridentity as coloridentity, cmc, cnt FROM
(SELECT ccid.card as card, coloridentity, COUNT(*) as cnt FROM (SELECT card, coloridentity FROM cards JOIN (SELECT * FROM decks WHERE savedate>='2017-10-20') decks ON cards.url=decks.url) ccid
GROUP BY ccid.card, coloridentity) aa JOIN cardref ON aa.card=cardref.name) bb
) cc WHERE rank <= 3
ORDER BY coloridentity, cmc, rank
;
coloridentity | cmc | card | cnt | rank
---------------+-----+-------------------------------+------+------
{} | 0 | Wastes | 478 | 1
{} | 0 | Shrine of the Forsaken Gods | 407 | 2
{} | 0 | Temple of the False God | 399 | 3
{} | 1 | Sol Ring | 466 | 1
{} | 1 | Voltaic Key | 285 | 2
{} | 1 | Expedition Map | 271 | 3
{} | 2 | Mind Stone | 401 | 1
{} | 2 | Warping Wail | 323 | 2
{} | 2 | Lightning Greaves | 303 | 3
{} | 3 | Worn Powerstone | 396 | 1
{} | 3 | Palladium Myr | 352 | 2
{} | 3 | Basalt Monolith | 326 | 3
{} | 4 | Hedron Archive | 428 | 1
{} | 4 | Thran Dynamo | 409 | 2
{} | 4 | Solemn Simulacrum | 285 | 3
{} | 5 | Kozilek's Channeler | 234 | 1
{} | 5 | Blinkmoth Urn | 232 | 2
{} | 5 | Paradox Engine | 203 | 3
{} | 6 | Dreamstone Hedron | 394 | 1
{} | 6 | Endbringer | 314 | 2
{} | 6 | Conduit of Ruin | 287 | 3
{} | 7 | All Is Dust | 362 | 1
{} | 7 | Scour from Existence | 356 | 2
{} | 7 | Not of This World | 234 | 3
{} | 8 | Ugin, the Spirit Dragon | 255 | 1
{} | 8 | Breaker of Armies | 170 | 2
{} | 8 | Ulamog's Crusher | 152 | 3
{} | 9 | Artisan of Kozilek | 279 | 1
{} | 9 | Void Winnower | 264 | 2
{} | 9 | Darksteel Forge | 223 | 3
{} | 10 | Ulamog, the Ceaseless Hunger | 228 | 1
{} | 10 | Desolation Twin | 197 | 2
{} | 10 | Kozilek, Butcher of Truth | 177 | 3
{} | 11 | Ulamog, the Infinite Gyre | 195 | 1
{} | 11 | Metalwork Colossus | 190 | 2
{} | 11 | Pathrazer of Ulamog | 176 | 3
{} | 12 | It That Betrays | 232 | 1
{} | 12 | Blightsteel Colossus | 99 | 2
{} | 13 | Emrakul, the Promised End | 153 | 1
{} | 15 | Emrakul, the Aeons Torn | 4 | 1
{B} | 0 | Swamp | 2290 | 1
{B} | 0 | Cabal Coffers | 1291 | 2
{B} | 0 | Bojuka Bog | 1188 | 3
{B} | 1 | Sol Ring | 1778 | 1
{B} | 1 | Dark Ritual | 851 | 2
{B} | 1 | Expedition Map | 716 | 3
{B} | 2 | Jet Medallion | 1088 | 1
{B} | 2 | Exsanguinate | 891 | 2
{B} | 2 | Lightning Greaves | 838 | 3
{B} | 3 | Phyrexian Arena | 1146 | 1
{B} | 3 | Read the Bones | 856 | 2
{B} | 3 | Fleshbag Marauder | 817 | 3
{B} | 4 | Crypt Ghast | 1516 | 1
{B} | 4 | Diabolic Tutor | 1032 | 2
{B} | 4 | Mutilate | 996 | 3
{B} | 5 | Gray Merchant of Asphodel | 1349 | 1
{B} | 5 | Magus of the Coffers | 879 | 2
{B} | 5 | Black Market | 751 | 3
{B} | 6 | Caged Sun | 956 | 1
{B} | 6 | Grave Titan | 651 | 2
{B} | 6 | Harvester of Souls | 601 | 3
{B} | 7 | Rune-Scarred Demon | 664 | 1
{B} | 7 | Sheoldred, Whispering One | 613 | 2
{B} | 7 | Butcher of Malakir | 591 | 3
{B} | 8 | Decree of Pain | 738 | 1
{B} | 8 | Razaketh, the Foulblooded | 478 | 2
{B} | 8 | Army of the Damned | 272 | 3
{B} | 9 | In Garruk's Wake | 447 | 1
{B} | 9 | Rise of the Dark Realms | 330 | 2
{B} | 9 | Plague Wind | 127 | 3
{B} | 10 | Dread Cacodemon | 73 | 1
{B} | 10 | Ulamog, the Ceaseless Hunger | 71 | 2
{B} | 10 | Kozilek, Butcher of Truth | 34 | 3
{B} | 11 | Ulamog, the Infinite Gyre | 41 | 1
{B} | 11 | Metalwork Colossus | 27 | 2
{B} | 11 | Pathrazer of Ulamog | 26 | 3
{B} | 12 | It That Betrays | 91 | 1
{B} | 12 | Blightsteel Colossus | 35 | 2
{B} | 13 | Emrakul, the Promised End | 47 | 1
{B} | 16 | Draco | 16 | 1
{B,G} | 0 | Forest | 2839 | 1
{B,G} | 0 | Swamp | 2821 | 2
{B,G} | 0 | Command Tower | 2029 | 3
{B,G} | 1 | Sol Ring | 2085 | 1
{B,G} | 1 | Skullclamp | 1448 | 2
{B,G} | 1 | Deathrite Shaman | 886 | 3
{B,G} | 2 | Golgari Signet | 1705 | 1
{B,G} | 2 | Sakura-Tribe Elder | 1457 | 2
{B,G} | 2 | Lightning Greaves | 1018 | 3
{B,G} | 3 | Putrefy | 1867 | 1
{B,G} | 3 | Eternal Witness | 1404 | 2
{B,G} | 3 | Cultivate | 1221 | 3
{B,G} | 4 | Jarad, Golgari Lich Lord | 732 | 1
{B,G} | 4 | Jarad's Orders | 691 | 2
{B,G} | 4 | Diabolic Tutor | 683 | 3
{B,G} | 5 | Acidic Slime | 1051 | 1
{B,G} | 5 | Dictate of Erebos | 906 | 2
{B,G} | 5 | Mycoloth | 749 | 3
{B,G} | 6 | Grave Titan | 335 | 1
{B,G} | 6 | Deadbridge Chant | 321 | 2
{B,G} | 6 | Mikaeus, the Unhallowed | 312 | 3
{B,G} | 7 | Butcher of Malakir | 754 | 1
{B,G} | 7 | Sheoldred, Whispering One | 589 | 2
{B,G} | 7 | Avenger of Zendikar | 486 | 3
{B,G} | 8 | Terastodon | 502 | 1
{B,G} | 8 | Razaketh, the Foulblooded | 468 | 2
{B,G} | 8 | Verdant Force | 385 | 3
{B,G} | 9 | In Garruk's Wake | 213 | 1
{B,G} | 9 | Rise of the Dark Realms | 76 | 2
{B,G} | 9 | Plague Wind | 59 | 3
{B,G} | 10 | Kozilek, Butcher of Truth | 95 | 1
{B,G} | 10 | Decimator of the Provinces | 48 | 2
{B,G} | 10 | Ulamog, the Ceaseless Hunger | 31 | 3
{B,G} | 11 | Ulamog, the Infinite Gyre | 72 | 1
{B,G} | 11 | Metalwork Colossus | 63 | 2
{B,G} | 11 | Worldspine Wurm | 19 | 3
{B,G} | 12 | It That Betrays | 66 | 1
{B,G} | 12 | Blightsteel Colossus | 26 | 2
{B,G} | 12 | Ghalta, Primal Hunger | 18 | 3
{B,G} | 13 | Emrakul, the Promised End | 38 | 1
{B,G,R} | 0 | Forest | 1445 | 1
{B,G,R} | 0 | Swamp | 1423 | 2
{B,G,R} | 0 | Mountain | 1404 | 3
{B,G,R} | 1 | Sol Ring | 1123 | 1
{B,G,R} | 1 | Skullclamp | 446 | 2
{B,G,R} | 1 | Birds of Paradise | 312 | 3
{B,G,R} | 2 | Sakura-Tribe Elder | 875 | 1
{B,G,R} | 2 | Golgari Signet | 548 | 2
{B,G,R} | 2 | Gruul Signet | 531 | 3
{B,G,R} | 3 | Cultivate | 926 | 1
{B,G,R} | 3 | Putrefy | 704 | 2
{B,G,R} | 3 | Kodama's Reach | 650 | 3
{B,G,R} | 4 | Explosive Vegetation | 487 | 1
{B,G,R} | 4 | Decimate | 478 | 2
{B,G,R} | 4 | Solemn Simulacrum | 354 | 3
{B,G,R} | 5 | Acidic Slime | 593 | 1
{B,G,R} | 5 | The Gitrog Monster | 403 | 2
{B,G,R} | 5 | Titania, Protector of Argoth | 327 | 3
{B,G,R} | 6 | Rampaging Baloths | 393 | 1
{B,G,R} | 6 | Multani, Yavimaya's Avatar | 252 | 2
{B,G,R} | 6 | Deathbringer Thoctar | 240 | 3
{B,G,R} | 7 | Avenger of Zendikar | 603 | 1
{B,G,R} | 7 | Omnath, Locus of Rage | 403 | 2
{B,G,R} | 7 | Butcher of Malakir | 289 | 3
{B,G,R} | 8 | Craterhoof Behemoth | 164 | 1
{B,G,R} | 8 | Borborygmos Enraged | 157 | 2
{B,G,R} | 8 | Razaketh, the Foulblooded | 134 | 3
{B,G,R} | 9 | Blasphemous Act | 280 | 1
{B,G,R} | 9 | In Garruk's Wake | 90 | 2
{B,G,R} | 9 | Void Winnower | 35 | 3
{B,G,R} | 10 | Primal Surge | 36 | 1
{B,G,R} | 10 | Ulamog, the Ceaseless Hunger | 32 | 2
{B,G,R} | 10 | Kozilek, Butcher of Truth | 26 | 3
{B,G,R} | 11 | Ulamog, the Infinite Gyre | 30 | 1
{B,G,R} | 11 | Worldspine Wurm | 29 | 2
{B,G,R} | 11 | Pathrazer of Ulamog | 10 | 3
{B,G,R} | 12 | It That Betrays | 124 | 1
{B,G,R} | 12 | Ghalta, Primal Hunger | 24 | 2
{B,G,R} | 12 | Blightsteel Colossus | 8 | 3
{B,G,R} | 13 | Emrakul, the Promised End | 15 | 1
{B,G,R,U} | 0 | Island | 489 | 1
{B,G,R,U} | 0 | Command Tower | 477 | 2
{B,G,R,U} | 0 | Forest | 477 | 2
{B,G,R,U} | 1 | Sol Ring | 452 | 1
{B,G,R,U} | 1 | Brainstorm | 249 | 2
{B,G,R,U} | 1 | Burgeoning | 200 | 3
{B,G,R,U} | 2 | Fellwar Stone | 289 | 1
{B,G,R,U} | 2 | Simic Signet | 272 | 2
{B,G,R,U} | 2 | Rakdos Signet | 262 | 3
{B,G,R,U} | 3 | Chromatic Lantern | 307 | 1
{B,G,R,U} | 3 | Windfall | 269 | 2
{B,G,R,U} | 3 | Cultivate | 239 | 3
{B,G,R,U} | 4 | Decimate | 198 | 1
{B,G,R,U} | 4 | Past in Flames | 178 | 2
{B,G,R,U} | 4 | Rashmi, Eternities Crafter | 176 | 3
{B,G,R,U} | 5 | Reforge the Soul | 170 | 1
{B,G,R,U} | 5 | Baral's Expertise | 146 | 2
{B,G,R,U} | 5 | Dark Petition | 137 | 3
{B,G,R,U} | 6 | Rishkar's Expertise | 185 | 1
{B,G,R,U} | 6 | Etherium-Horn Sorcerer | 170 | 2
{B,G,R,U} | 6 | Sunbird's Invocation | 167 | 3
{B,G,R,U} | 7 | Volcanic Vision | 127 | 1
{B,G,R,U} | 7 | Dragon Mage | 102 | 2
{B,G,R,U} | 7 | Mind's Dilation | 77 | 3
{B,G,R,U} | 8 | Treasure Cruise | 249 | 1
{B,G,R,U} | 8 | Maelstrom Wanderer | 190 | 2
{B,G,R,U} | 8 | Dig Through Time | 183 | 3
{B,G,R,U} | 9 | In Garruk's Wake | 150 | 1
{B,G,R,U} | 9 | Blasphemous Act | 127 | 2
{B,G,R,U} | 9 | Expropriate | 47 | 3
{B,G,R,U} | 10 | Kozilek, Butcher of Truth | 29 | 1
{B,G,R,U} | 10 | Omniscience | 24 | 2
{B,G,R,U} | 10 | Ulamog, the Ceaseless Hunger | 22 | 3
{B,G,R,U} | 11 | Temporal Trespass | 37 | 1
{B,G,R,U} | 11 | Ulamog, the Infinite Gyre | 17 | 2
{B,G,R,U} | 11 | Pathrazer of Ulamog | 10 | 3
{B,G,R,U} | 12 | It That Betrays | 16 | 1
{B,G,R,U} | 12 | Enter the Infinite | 9 | 2
{B,G,R,U} | 12 | Ghalta, Primal Hunger | 7 | 3
{B,G,R,U} | 13 | Emrakul, the Promised End | 31 | 1
{B,G,R,U} | 15 | Emrakul, the Aeons Torn | 1 | 1
{B,G,R,U} | 16 | Draco | 1 | 1
{B,G,R,U,W} | 0 | Forest | 3880 | 1
{B,G,R,U,W} | 0 | Island | 3793 | 2
{B,G,R,U,W} | 0 | Plains | 3771 | 3
{B,G,R,U,W} | 1 | Sol Ring | 3042 | 1
{B,G,R,U,W} | 1 | Swords to Plowshares | 1360 | 2
{B,G,R,U,W} | 1 | Birds of Paradise | 799 | 3
{B,G,R,U,W} | 2 | Farseek | 2036 | 1
{B,G,R,U,W} | 2 | Lightning Greaves | 1439 | 2
{B,G,R,U,W} | 2 | Cyclonic Rift | 1366 | 3
{B,G,R,U,W} | 3 | Chromatic Lantern | 2437 | 1
{B,G,R,U,W} | 3 | Cultivate | 2219 | 2
{B,G,R,U,W} | 3 | Kodama's Reach | 1883 | 3
{B,G,R,U,W} | 4 | Explosive Vegetation | 950 | 1
{B,G,R,U,W} | 4 | Utter End | 670 | 2
{B,G,R,U,W} | 4 | Supreme Verdict | 583 | 3
{B,G,R,U,W} | 5 | Mirari's Wake | 1093 | 1
{B,G,R,U,W} | 5 | Crux of Fate | 846 | 2
{B,G,R,U,W} | 5 | Bring to Light | 760 | 3
{B,G,R,U,W} | 6 | Merciless Eviction | 824 | 1
{B,G,R,U,W} | 6 | Teneb, the Harvester | 724 | 2
{B,G,R,U,W} | 6 | Silumgar, the Drifting Death | 681 | 3
{B,G,R,U,W} | 7 | Atarka, World Render | 789 | 1
{B,G,R,U,W} | 7 | Bladewing the Risen | 712 | 2
{B,G,R,U,W} | 7 | Zendikar Resurgent | 644 | 3
{B,G,R,U,W} | 8 | Conflux | 908 | 1
{B,G,R,U,W} | 8 | Utvara Hellkite | 744 | 2
{B,G,R,U,W} | 8 | Nicol Bolas, Planeswalker | 511 | 3
{B,G,R,U,W} | 9 | In Garruk's Wake | 424 | 1
{B,G,R,U,W} | 9 | Zacama, Primal Calamity | 302 | 2
{B,G,R,U,W} | 9 | Plague Wind | 263 | 3
{B,G,R,U,W} | 10 | Progenitus | 428 | 1
{B,G,R,U,W} | 10 | Omniscience | 388 | 2
{B,G,R,U,W} | 10 | Myojin of Seeing Winds | 278 | 3
{B,G,R,U,W} | 11 | Ulamog, the Infinite Gyre | 168 | 1
{B,G,R,U,W} | 11 | Pathrazer of Ulamog | 74 | 2
{B,G,R,U,W} | 11 | Worldspine Wurm | 73 | 3
{B,G,R,U,W} | 12 | It That Betrays | 153 | 1
{B,G,R,U,W} | 12 | Enter the Infinite | 117 | 2
{B,G,R,U,W} | 12 | Blightsteel Colossus | 110 | 3
{B,G,R,U,W} | 13 | Emrakul, the Promised End | 212 | 1
{B,G,R,U,W} | 15 | Autochthon Wurm | 19 | 1
{B,G,R,U,W} | 15 | Emrakul, the Aeons Torn | 3 | 2
{B,G,R,U,W} | 16 | Draco | 18 | 1
{B,G,R,W} | 0 | Plains | 408 | 1
{B,G,R,W} | 0 | Forest | 406 | 2
{B,G,R,W} | 0 | Swamp | 395 | 3
{B,G,R,W} | 1 | Sol Ring | 307 | 1
{B,G,R,W} | 1 | Swords to Plowshares | 186 | 2
{B,G,R,W} | 1 | Skullclamp | 147 | 3
{B,G,R,W} | 2 | Farseek | 186 | 1
{B,G,R,W} | 2 | Boros Charm | 154 | 2
{B,G,R,W} | 2 | Lightning Greaves | 145 | 3
{B,G,R,W} | 3 | Cultivate | 177 | 1
{B,G,R,W} | 3 | Kodama's Reach | 151 | 2
{B,G,R,W} | 3 | Chromatic Lantern | 150 | 3
{B,G,R,W} | 4 | Iroas, God of Victory | 169 | 1
{B,G,R,W} | 4 | Utter End | 141 | 2
{B,G,R,W} | 4 | Brutal Hordechief | 99 | 3
{B,G,R,W} | 5 | Samut, Voice of Dissent | 138 | 1
{B,G,R,W} | 5 | Mirari's Wake | 93 | 2
{B,G,R,W} | 5 | Ankle Shanker | 92 | 3
{B,G,R,W} | 6 | Sun Titan | 109 | 1
{B,G,R,W} | 6 | Aurelia, the Warleader | 108 | 2
{B,G,R,W} | 6 | Thunderfoot Baloth | 82 | 3
{B,G,R,W} | 7 | Gisela, Blade of Goldnight | 116 | 1
{B,G,R,W} | 7 | Elesh Norn, Grand Cenobite | 92 | 2
{B,G,R,W} | 7 | Stalking Vengeance | 41 | 3
{B,G,R,W} | 8 | Stonehoof Chieftain | 72 | 1
{B,G,R,W} | 8 | Craterhoof Behemoth | 29 | 2
{B,G,R,W} | 8 | Treacherous Terrain | 20 | 3
{B,G,R,W} | 9 | Blasphemous Act | 25 | 1
{B,G,R,W} | 9 | In Garruk's Wake | 15 | 2
{B,G,R,W} | 9 | Zacama, Primal Calamity | 14 | 3
{B,G,R,W} | 10 | Decree of Annihilation | 5 | 1
{B,G,R,W} | 10 | Primal Surge | 3 | 2
{B,G,R,W} | 10 | Decimator of the Provinces | 3 | 2
{B,G,R,W} | 10 | Kozilek, the Great Distortion | 3 | 2
{B,G,R,W} | 11 | Primeval Protector | 28 | 1
{B,G,R,W} | 11 | Worldspine Wurm | 10 | 2
{B,G,R,W} | 11 | Ulamog, the Infinite Gyre | 2 | 3
{B,G,R,W} | 12 | Ghalta, Primal Hunger | 9 | 1
{B,G,R,W} | 12 | Blightsteel Colossus | 5 | 2
{B,G,R,W} | 13 | Emrakul, the Promised End | 2 | 1
{B,G,R,W} | 15 | Autochthon Wurm | 1 | 1
{B,G,R,W} | 15 | Emrakul, the Aeons Torn | 1 | 1
{B,G,U} | 0 | Forest | 2245 | 1
{B,G,U} | 0 | Swamp | 2241 | 2
{B,G,U} | 0 | Island | 2239 | 3
{B,G,U} | 1 | Sol Ring | 1836 | 1
{B,G,U} | 1 | Deathrite Shaman | 808 | 2
{B,G,U} | 1 | Mystic Remora | 726 | 3
{B,G,U} | 2 | Sakura-Tribe Elder | 1273 | 1
{B,G,U} | 2 | Golgari Signet | 1114 | 2
{B,G,U} | 2 | Simic Signet | 1099 | 3
{B,G,U} | 3 | Eternal Witness | 1360 | 1
{B,G,U} | 3 | Pernicious Deed | 896 | 2
{B,G,U} | 3 | Cultivate | 890 | 3
{B,G,U} | 4 | Fact or Fiction | 859 | 1
{B,G,U} | 4 | World Shaper | 752 | 2
{B,G,U} | 4 | Solemn Simulacrum | 717 | 3
{B,G,U} | 5 | Acidic Slime | 933 | 1
{B,G,U} | 5 | Mulldrifter | 843 | 2
{B,G,U} | 5 | The Gitrog Monster | 751 | 3
{B,G,U} | 6 | Deadbridge Chant | 374 | 1
{B,G,U} | 6 | Noxious Gearhulk | 317 | 2
{B,G,U} | 6 | Grave Titan | 313 | 3
{B,G,U} | 7 | Sheoldred, Whispering One | 681 | 1
{B,G,U} | 7 | Rune-Scarred Demon | 322 | 2
{B,G,U} | 7 | Protean Hulk | 268 | 3
{B,G,U} | 8 | Terastodon | 340 | 1
{B,G,U} | 8 | Razaketh, the Foulblooded | 332 | 2
{B,G,U} | 8 | Dig Through Time | 306 | 3
{B,G,U} | 9 | Artisan of Kozilek | 136 | 1
{B,G,U} | 9 | In Garruk's Wake | 133 | 2
{B,G,U} | 9 | Void Winnower | 107 | 3
{B,G,U} | 10 | Jin-Gitaxias, Core Augur | 272 | 1
{B,G,U} | 10 | Primal Surge | 77 | 2
{B,G,U} | 10 | Ulamog, the Ceaseless Hunger | 63 | 3
{B,G,U} | 11 | Ulamog, the Infinite Gyre | 54 | 1
{B,G,U} | 11 | Temporal Trespass | 29 | 2
{B,G,U} | 11 | Pathrazer of Ulamog | 22 | 3
{B,G,U} | 12 | It That Betrays | 58 | 1
{B,G,U} | 12 | Ghalta, Primal Hunger | 24 | 2
{B,G,U} | 12 | Enter the Infinite | 12 | 3
{B,G,U} | 13 | Emrakul, the Promised End | 95 | 1
{B,G,U,W} | 0 | Forest | 1250 | 1
{B,G,U,W} | 0 | Island | 1246 | 2
{B,G,U,W} | 0 | Command Tower | 1218 | 3
{B,G,U,W} | 1 | Sol Ring | 1123 | 1
{B,G,U,W} | 1 | Swords to Plowshares | 644 | 2
{B,G,U,W} | 1 | Hardened Scales | 424 | 3
{B,G,U,W} | 2 | Cyclonic Rift | 708 | 1
{B,G,U,W} | 2 | Thrummingbird | 618 | 2
{B,G,U,W} | 2 | Fellwar Stone | 459 | 3
{B,G,U,W} | 3 | Chromatic Lantern | 655 | 1
{B,G,U,W} | 3 | Commander's Sphere | 525 | 2
{B,G,U,W} | 3 | Anguished Unmaking | 509 | 3
{B,G,U,W} | 4 | Tezzeret's Gambit | 749 | 1
{B,G,U,W} | 4 | Tamiyo, Field Researcher | 636 | 2
{B,G,U,W} | 4 | Crystalline Crawler | 599 | 3
{B,G,U,W} | 5 | Deepglow Skate | 791 | 1
{B,G,U,W} | 5 | Inexorable Tide | 690 | 2
{B,G,U,W} | 5 | Doubling Season | 621 | 3
{B,G,U,W} | 6 | Merciless Eviction | 755 | 1
{B,G,U,W} | 6 | Contagion Engine | 596 | 2
{B,G,U,W} | 6 | Elspeth, Sun's Champion | 436 | 3
{B,G,U,W} | 7 | Duneblast | 281 | 1
{B,G,U,W} | 7 | Garruk, Apex Predator | 236 | 2
{B,G,U,W} | 7 | Primevals' Glorious Rebirth | 181 | 3
{B,G,U,W} | 8 | Ugin, the Spirit Dragon | 312 | 1
{B,G,U,W} | 8 | Treasure Cruise | 133 | 2
{B,G,U,W} | 8 | Vorinclex, Voice of Hunger | 58 | 3
{B,G,U,W} | 9 | In Garruk's Wake | 30 | 1
{B,G,U,W} | 9 | Expropriate | 14 | 2
{B,G,U,W} | 9 | Darksteel Forge | 13 | 3
{B,G,U,W} | 10 | Jin-Gitaxias, Core Augur | 40 | 1
{B,G,U,W} | 10 | Omniscience | 25 | 2
{B,G,U,W} | 10 | Myojin of Seeing Winds | 24 | 3
{B,G,U,W} | 11 | Ulamog, the Infinite Gyre | 7 | 1
{B,G,U,W} | 11 | Primeval Protector | 5 | 2
{B,G,U,W} | 11 | Temporal Trespass | 4 | 3
{B,G,U,W} | 12 | Blightsteel Colossus | 56 | 1
{B,G,U,W} | 12 | Enter the Infinite | 10 | 2
{B,G,U,W} | 12 | Ghalta, Primal Hunger | 2 | 3
{B,G,U,W} | 13 | Emrakul, the Promised End | 4 | 1
{B,G,U,W} | 15 | Emrakul, the Aeons Torn | 1 | 1
{B,G,W} | 0 | Forest | 1213 | 1
{B,G,W} | 0 | Plains | 1191 | 2
{B,G,W} | 0 | Swamp | 1189 | 3
{B,G,W} | 1 | Sol Ring | 837 | 1
{B,G,W} | 1 | Swords to Plowshares | 632 | 2
{B,G,W} | 1 | Skullclamp | 451 | 3
{B,G,W} | 2 | Golgari Signet | 511 | 1
{B,G,W} | 2 | Selesnya Signet | 461 | 2
{B,G,W} | 2 | Orzhov Signet | 415 | 3
{B,G,W} | 3 | Cultivate | 578 | 1
{B,G,W} | 3 | Putrefy | 544 | 2
{B,G,W} | 3 | Eternal Witness | 514 | 3
{B,G,W} | 4 | Utter End | 396 | 1
{B,G,W} | 4 | Corpsejack Menace | 361 | 2
{B,G,W} | 4 | Birthing Pod | 270 | 3
{B,G,W} | 5 | Cathars' Crusade | 309 | 1
{B,G,W} | 5 | Acidic Slime | 298 | 2
{B,G,W} | 5 | Karmic Guide | 296 | 3
{B,G,W} | 6 | Sun Titan | 378 | 1
{B,G,W} | 6 | Merciless Eviction | 300 | 2
{B,G,W} | 6 | Verdeloth the Ancient | 171 | 3
{B,G,W} | 7 | Elesh Norn, Grand Cenobite | 229 | 1
{B,G,W} | 7 | Sheoldred, Whispering One | 172 | 2
{B,G,W} | 7 | Duneblast | 170 | 3
{B,G,W} | 8 | Ashen Rider | 137 | 1
{B,G,W} | 8 | Verdant Force | 129 | 2
{B,G,W} | 8 | Woodfall Primus | 128 | 3
{B,G,W} | 9 | Reya Dawnbringer | 34 | 1
{B,G,W} | 9 | Iona, Shield of Emeria | 30 | 2
{B,G,W} | 9 | In Garruk's Wake | 26 | 3
{B,G,W} | 10 | Storm Herd | 11 | 1
{B,G,W} | 10 | Ulamog, the Ceaseless Hunger | 10 | 2
{B,G,W} | 10 | Kozilek, Butcher of Truth | 6 | 3
{B,G,W} | 11 | Primeval Protector | 31 | 1
{B,G,W} | 11 | Ulamog, the Infinite Gyre | 5 | 2
{B,G,W} | 11 | Worldspine Wurm | 2 | 3
{B,G,W} | 12 | Iname as One | 15 | 1
{B,G,W} | 12 | Ghalta, Primal Hunger | 6 | 2
{B,G,W} | 12 | Blightsteel Colossus | 5 | 3
{B,G,W} | 13 | Emrakul, the Promised End | 5 | 1
{B,G,W} | 15 | Autochthon Wurm | 2 | 1
{B,R} | 0 | Swamp | 1451 | 1
{B,R} | 0 | Mountain | 1434 | 2
{B,R} | 0 | Command Tower | 971 | 3
{B,R} | 1 | Sol Ring | 1105 | 1
{B,R} | 1 | Vandalblast | 635 | 2
{B,R} | 1 | Faithless Looting | 326 | 3
{B,R} | 2 | Rakdos Signet | 1148 | 1
{B,R} | 2 | Terminate | 890 | 2
{B,R} | 2 | Rakdos Charm | 812 | 3
{B,R} | 3 | Chaos Warp | 548 | 1
{B,R} | 3 | Phyrexian Arena | 526 | 2
{B,R} | 3 | Read the Bones | 479 | 3
{B,R} | 4 | Diabolic Tutor | 528 | 1
{B,R} | 4 | Solemn Simulacrum | 477 | 2
{B,R} | 4 | Crypt Ghast | 382 | 3
{B,R} | 5 | Palace Siege | 402 | 1
{B,R} | 5 | Bloodgift Demon | 320 | 2
{B,R} | 5 | Neheb, the Eternal | 306 | 3
{B,R} | 6 | Sire of Insanity | 332 | 1
{B,R} | 6 | Harvester of Souls | 305 | 2
{B,R} | 6 | Havoc Festival | 263 | 3
{B,R} | 7 | Kaervek the Merciless | 274 | 1
{B,R} | 7 | Sheoldred, Whispering One | 206 | 2
{B,R} | 7 | Rune-Scarred Demon | 191 | 3
{B,R} | 8 | Decree of Pain | 245 | 1
{B,R} | 8 | Pestilence Demon | 131 | 2
{B,R} | 8 | Archfiend of Despair | 122 | 3
{B,R} | 9 | Blasphemous Act | 518 | 1
{B,R} | 9 | Artisan of Kozilek | 205 | 2
{B,R} | 9 | Void Winnower | 152 | 3
{B,R} | 10 | Desolation Twin | 125 | 1
{B,R} | 10 | Ulamog, the Ceaseless Hunger | 104 | 2
{B,R} | 10 | Kozilek, Butcher of Truth | 78 | 3
{B,R} | 11 | Pathrazer of Ulamog | 118 | 1
{B,R} | 11 | Ulamog, the Infinite Gyre | 88 | 2
{B,R} | 11 | Darksteel Colossus | 16 | 3
{B,R} | 12 | It That Betrays | 153 | 1
{B,R} | 12 | Blightsteel Colossus | 41 | 2
{B,R} | 13 | Emrakul, the Promised End | 100 | 1
{B,R,U} | 0 | Island | 3105 | 1
{B,R,U} | 0 | Swamp | 3043 | 2
{B,R,U} | 0 | Mountain | 2918 | 3
{B,R,U} | 1 | Sol Ring | 2630 | 1
{B,R,U} | 1 | Brainstorm | 1065 | 2
{B,R,U} | 1 | Vandalblast | 927 | 3
{B,R,U} | 2 | Dimir Signet | 2009 | 1
{B,R,U} | 2 | Izzet Signet | 2009 | 1
{B,R,U} | 2 | Rakdos Signet | 1839 | 3
{B,R,U} | 3 | Commander's Sphere | 1254 | 1
{B,R,U} | 3 | Windfall | 1078 | 2
{B,R,U} | 3 | Crosis's Charm | 1026 | 3
{B,R,U} | 4 | Fact or Fiction | 778 | 1
{B,R,U} | 4 | Diabolic Tutor | 728 | 2
{B,R,U} | 4 | Damnation | 609 | 3
{B,R,U} | 5 | Gilded Lotus | 662 | 1
{B,R,U} | 5 | Reforge the Soul | 502 | 2
{B,R,U} | 5 | Dark Petition | 501 | 3
{B,R,U} | 6 | Niv-Mizzet, the Firemind | 556 | 1
{B,R,U} | 6 | Arcanis the Omnipotent | 470 | 2
{B,R,U} | 6 | The Locust God | 445 | 3
{B,R,U} | 7 | Cruel Ultimatum | 689 | 1
{B,R,U} | 7 | Nicol Bolas, God-Pharaoh | 589 | 2
{B,R,U} | 7 | Kindred Dominance | 429 | 3
{B,R,U} | 8 | Decree of Pain | 849 | 1
{B,R,U} | 8 | Nicol Bolas, Planeswalker | 625 | 2
{B,R,U} | 8 | Treasure Cruise | 348 | 3
{B,R,U} | 9 | Blasphemous Act | 834 | 1
{B,R,U} | 9 | In Garruk's Wake | 206 | 2
{B,R,U} | 9 | Clone Legion | 196 | 3
{B,R,U} | 10 | Jin-Gitaxias, Core Augur | 166 | 1
{B,R,U} | 10 | Omniscience | 116 | 2
{B,R,U} | 10 | Time Stretch | 59 | 3
{B,R,U} | 11 | Temporal Trespass | 69 | 1
{B,R,U} | 11 | Ulamog, the Infinite Gyre | 22 | 2
{B,R,U} | 11 | Metalwork Colossus | 19 | 3
{B,R,U} | 12 | Enter the Infinite | 60 | 1
{B,R,U} | 12 | It That Betrays | 48 | 2
{B,R,U} | 12 | Blightsteel Colossus | 21 | 3
{B,R,U} | 13 | Emrakul, the Promised End | 29 | 1
{B,R,U} | 15 | Emrakul, the Aeons Torn | 1 | 1
{B,R,U,W} | 0 | Island | 661 | 1
{B,R,U,W} | 0 | Command Tower | 630 | 2
{B,R,U,W} | 0 | Swamp | 625 | 3
{B,R,U,W} | 1 | Sol Ring | 616 | 1
{B,R,U,W} | 1 | Skullclamp | 427 | 2
{B,R,U,W} | 1 | Goblin Welder | 342 | 3
{B,R,U,W} | 2 | Baleful Strix | 378 | 1
{B,R,U,W} | 2 | Etherium Sculptor | 373 | 2
{B,R,U,W} | 2 | Thopter Foundry | 366 | 3
{B,R,U,W} | 3 | Commander's Sphere | 370 | 1
{B,R,U,W} | 3 | Chromatic Lantern | 349 | 2
{B,R,U,W} | 3 | Ashnod's Altar | 327 | 3
{B,R,U,W} | 4 | Padeem, Consul of Innovation | 431 | 1
{B,R,U,W} | 4 | Daretti, Scrap Savant | 425 | 2
{B,R,U,W} | 4 | Solemn Simulacrum | 400 | 3
{B,R,U,W} | 5 | Tezzeret the Seeker | 291 | 1
{B,R,U,W} | 5 | Sphinx Summoner | 248 | 2
{B,R,U,W} | 5 | Kuldotha Forgemaster | 224 | 3
{B,R,U,W} | 6 | Sharuum the Hegemon | 413 | 1
{B,R,U,W} | 6 | Open the Vaults | 275 | 2
{B,R,U,W} | 6 | Marionette Master | 248 | 3
{B,R,U,W} | 7 | Myr Battlesphere | 352 | 1
{B,R,U,W} | 7 | Spine of Ish Sah | 148 | 2
{B,R,U,W} | 7 | Memnarch | 79 | 3
{B,R,U,W} | 8 | Filigree Angel | 174 | 1
{B,R,U,W} | 8 | Sphinx of the Steel Wind | 59 | 2
{B,R,U,W} | 8 | Dig Through Time | 39 | 3
{B,R,U,W} | 9 | Darksteel Forge | 278 | 1
{B,R,U,W} | 9 | Blasphemous Act | 38 | 2
{B,R,U,W} | 9 | Inkwell Leviathan | 13 | 3
{B,R,U,W} | 10 | Broodstar | 14 | 1
{B,R,U,W} | 10 | Jin-Gitaxias, Core Augur | 9 | 2
{B,R,U,W} | 10 | Ulamog, the Ceaseless Hunger | 7 | 3
{B,R,U,W} | 11 | Metalwork Colossus | 56 | 1
{B,R,U,W} | 11 | Mycosynth Golem | 28 | 2
{B,R,U,W} | 11 | Darksteel Colossus | 21 | 3
{B,R,U,W} | 12 | Blightsteel Colossus | 55 | 1
{B,R,U,W} | 12 | It That Betrays | 3 | 2
{B,R,U,W} | 12 | Enter the Infinite | 1 | 3
{B,R,U,W} | 13 | Emrakul, the Promised End | 11 | 1
{B,R,U,W} | 14 | Blinkmoth Infusion | 4 | 1
{B,R,U,W} | 15 | Emrakul, the Aeons Torn | 1 | 1
{B,R,W} | 0 | Swamp | 2881 | 1
{B,R,W} | 0 | Plains | 2852 | 2
{B,R,W} | 0 | Mountain | 2800 | 3
{B,R,W} | 1 | Sol Ring | 2418 | 1
{B,R,W} | 1 | Swords to Plowshares | 1982 | 2
{B,R,W} | 1 | Skullclamp | 1312 | 3
{B,R,W} | 2 | Orzhov Signet | 2240 | 1
{B,R,W} | 2 | Rakdos Signet | 2131 | 2
{B,R,W} | 2 | Boros Signet | 2088 | 3
{B,R,W} | 3 | Anguished Unmaking | 1524 | 1
{B,R,W} | 3 | Mortify | 1398 | 2
{B,R,W} | 3 | Crackling Doom | 1383 | 3
{B,R,W} | 4 | Utter End | 1243 | 1
{B,R,W} | 4 | Return to Dust | 1238 | 2
{B,R,W} | 4 | Diabolic Tutor | 782 | 3
{B,R,W} | 5 | Malakir Bloodwitch | 863 | 1
{B,R,W} | 5 | Anowon, the Ruin Sage | 773 | 2
{B,R,W} | 5 | Bloodlord of Vaasgoth | 658 | 3
{B,R,W} | 6 | Merciless Eviction | 1529 | 1
{B,R,W} | 6 | Patron of the Vein | 835 | 2
{B,R,W} | 6 | Blood Tribute | 553 | 3
{B,R,W} | 7 | Butcher of Malakir | 722 | 1
{B,R,W} | 7 | Gisela, Blade of Goldnight | 636 | 2
{B,R,W} | 7 | Angel of Despair | 411 | 3
{B,R,W} | 8 | Avacyn, Angel of Hope | 441 | 1
{B,R,W} | 8 | Licia, Sanguine Tribune | 310 | 2
{B,R,W} | 8 | Akroma, Angel of Wrath | 266 | 3
{B,R,W} | 9 | Blasphemous Act | 382 | 1
{B,R,W} | 9 | Iona, Shield of Emeria | 330 | 2
{B,R,W} | 9 | Reya Dawnbringer | 294 | 3
{B,R,W} | 10 | Dread Cacodemon | 32 | 1
{B,R,W} | 10 | Decree of Annihilation | 20 | 2
{B,R,W} | 10 | Curse of the Cabal | 15 | 3
{B,R,W} | 11 | Ulamog, the Infinite Gyre | 8 | 1
{B,R,W} | 11 | Metalwork Colossus | 4 | 2
{B,R,W} | 11 | Darksteel Colossus | 2 | 3
{B,R,W} | 12 | It That Betrays | 6 | 1
{B,R,W} | 12 | Blightsteel Colossus | 3 | 2
{B,R,W} | 13 | Emrakul, the Promised End | 18 | 1
{B,R,W} | 16 | Draco | 1 | 1
{B,U} | 0 | Island | 2303 | 1
{B,U} | 0 | Swamp | 2293 | 2
{B,U} | 0 | Command Tower | 1627 | 3
{B,U} | 1 | Sol Ring | 1777 | 1
{B,U} | 1 | Brainstorm | 725 | 2
{B,U} | 1 | Ponder | 512 | 3
{B,U} | 2 | Dimir Signet | 1707 | 1
{B,U} | 2 | Counterspell | 1311 | 2
{B,U} | 2 | Cyclonic Rift | 1189 | 3
{B,U} | 3 | Commander's Sphere | 709 | 1
{B,U} | 3 | Diregraf Captain | 565 | 2
{B,U} | 3 | Hero's Downfall | 559 | 3
{B,U} | 4 | Diabolic Tutor | 680 | 1
{B,U} | 4 | Notion Thief | 502 | 2
{B,U} | 4 | Fact or Fiction | 502 | 2
{B,U} | 5 | Consuming Aberration | 790 | 1
{B,U} | 5 | Havengul Lich | 525 | 2
{B,U} | 5 | Traumatize | 524 | 3
{B,U} | 6 | Rooftop Storm | 495 | 1
{B,U} | 6 | Sire of Stagnation | 479 | 2
{B,U} | 6 | Grave Titan | 467 | 3
{B,U} | 7 | Fleet Swallower | 407 | 1
{B,U} | 7 | Sepulchral Primordial | 377 | 2
{B,U} | 7 | Silent-Blade Oni | 327 | 3
{B,U} | 8 | Army of the Damned | 496 | 1
{B,U} | 8 | Decree of Pain | 437 | 2
{B,U} | 8 | Treasure Cruise | 303 | 3
{B,U} | 9 | Rise of the Dark Realms | 266 | 1
{B,U} | 9 | In Garruk's Wake | 170 | 2
{B,U} | 9 | Expropriate | 48 | 3
{B,U} | 10 | Ulamog, the Ceaseless Hunger | 93 | 1
{B,U} | 10 | Jin-Gitaxias, Core Augur | 88 | 2
{B,U} | 10 | Deep-Sea Kraken | 32 | 3
{B,U} | 10 | Kozilek, Butcher of Truth | 32 | 3
{B,U} | 11 | Temporal Trespass | 144 | 1
{B,U} | 11 | Ulamog, the Infinite Gyre | 24 | 2
{B,U} | 11 | Metalwork Colossus | 14 | 3
{B,U} | 12 | It That Betrays | 35 | 1
{B,U} | 12 | Enter the Infinite | 22 | 2
{B,U} | 12 | Blightsteel Colossus | 11 | 3
{B,U} | 13 | Emrakul, the Promised End | 43 | 1
{B,U} | 14 | Blinkmoth Infusion | 5 | 1
{B,U} | 16 | Draco | 18 | 1
{B,U,W} | 0 | Island | 2477 | 1
{B,U,W} | 0 | Swamp | 2436 | 2
{B,U,W} | 0 | Plains | 2414 | 3
{B,U,W} | 1 | Sol Ring | 2140 | 1
{B,U,W} | 1 | Swords to Plowshares | 1497 | 2
{B,U,W} | 1 | Brainstorm | 915 | 3
{B,U,W} | 2 | Dimir Signet | 1714 | 1
{B,U,W} | 2 | Azorius Signet | 1700 | 2
{B,U,W} | 2 | Orzhov Signet | 1680 | 3
{B,U,W} | 3 | Anguished Unmaking | 1038 | 1
{B,U,W} | 3 | Commander's Sphere | 938 | 2
{B,U,W} | 3 | Ghostly Prison | 926 | 3
{B,U,W} | 4 | Supreme Verdict | 1081 | 1
{B,U,W} | 4 | Utter End | 1000 | 2
{B,U,W} | 4 | Return to Dust | 666 | 3
{B,U,W} | 5 | Gilded Lotus | 679 | 1
{B,U,W} | 5 | Sanguine Bond | 449 | 2
{B,U,W} | 5 | Mulldrifter | 424 | 3
{B,U,W} | 6 | Merciless Eviction | 1002 | 1
{B,U,W} | 6 | Sun Titan | 554 | 2
{B,U,W} | 6 | Terminus | 508 | 3
{B,U,W} | 7 | Magister Sphinx | 400 | 1
{B,U,W} | 7 | Serra Avatar | 276 | 2
{B,U,W} | 7 | Drogskol Reaver | 272 | 3
{B,U,W} | 8 | Sphinx of the Steel Wind | 394 | 1
{B,U,W} | 8 | Decree of Pain | 191 | 2
{B,U,W} | 8 | Dig Through Time | 162 | 3
{B,U,W} | 9 | Darksteel Forge | 238 | 1
{B,U,W} | 9 | Expropriate | 131 | 2
{B,U,W} | 9 | In Garruk's Wake | 114 | 3
{B,U,W} | 10 | Omniscience | 78 | 1
{B,U,W} | 10 | Jin-Gitaxias, Core Augur | 47 | 2
{B,U,W} | 10 | Storm Herd | 41 | 3
{B,U,W} | 11 | Metalwork Colossus | 69 | 1
{B,U,W} | 11 | Ulamog, the Infinite Gyre | 64 | 2
{B,U,W} | 11 | Temporal Trespass | 50 | 3
{B,U,W} | 12 | Blightsteel Colossus | 63 | 1
{B,U,W} | 12 | Enter the Infinite | 8 | 2
{B,U,W} | 12 | It That Betrays | 7 | 3
{B,U,W} | 13 | Emrakul, the Promised End | 73 | 1
{B,U,W} | 14 | Blinkmoth Infusion | 1 | 1
{B,U,W} | 15 | Emrakul, the Aeons Torn | 1 | 1
{B,W} | 0 | Plains | 1887 | 1
{B,W} | 0 | Swamp | 1874 | 2
{B,W} | 0 | Command Tower | 1289 | 3
{B,W} | 1 | Sol Ring | 1379 | 1
{B,W} | 1 | Swords to Plowshares | 1037 | 2
{B,W} | 1 | Skullclamp | 697 | 3
{B,W} | 2 | Orzhov Signet | 1405 | 1
{B,W} | 2 | Blood Artist | 852 | 2
{B,W} | 2 | Blind Obedience | 809 | 3
{B,W} | 3 | Anguished Unmaking | 1015 | 1
{B,W} | 3 | Phyrexian Arena | 851 | 2
{B,W} | 3 | Mortify | 841 | 3
{B,W} | 4 | Utter End | 1035 | 1
{B,W} | 4 | Debt to the Deathless | 659 | 2
{B,W} | 4 | Return to Dust | 592 | 3
{B,W} | 5 | Sanguine Bond | 714 | 1
{B,W} | 5 | Dictate of Erebos | 520 | 2
{B,W} | 5 | Fumigate | 488 | 3
{B,W} | 6 | Merciless Eviction | 1048 | 1
{B,W} | 6 | Sun Titan | 575 | 2
{B,W} | 6 | Pontiff of Blight | 381 | 3
{B,W} | 7 | Teysa, Envoy of Ghosts | 360 | 1
{B,W} | 7 | Butcher of Malakir | 286 | 2
{B,W} | 7 | Defiant Bloodlord | 257 | 3
{B,W} | 8 | Razaketh, the Foulblooded | 294 | 1
{B,W} | 8 | Ashen Rider | 161 | 2
{B,W} | 8 | Overwhelming Splendor | 105 | 3
{B,W} | 9 | In Garruk's Wake | 60 | 1
{B,W} | 9 | Demon of Death's Gate | 35 | 2
{B,W} | 9 | Reya Dawnbringer | 33 | 3
{B,W} | 10 | Storm Herd | 27 | 1
{B,W} | 10 | Kozilek, Butcher of Truth | 10 | 2
{B,W} | 10 | Ulamog, the Ceaseless Hunger | 9 | 3
{B,W} | 11 | Ulamog, the Infinite Gyre | 11 | 1
{B,W} | 11 | Pathrazer of Ulamog | 5 | 2
{B,W} | 11 | Brisela, Voice of Nightmares | 1 | 3
{B,W} | 12 | It That Betrays | 6 | 1
{B,W} | 12 | Blightsteel Colossus | 1 | 2
{B,W} | 13 | Emrakul, the Promised End | 1 | 1
{B,W} | 15 | Emrakul, the Aeons Torn | 1 | 1
{G} | 0 | Forest | 2316 | 1
{G} | 0 | Nykthos, Shrine to Nyx | 1187 | 2
{G} | 0 | Oran-Rief, the Vastwood | 879 | 3
{G} | 1 | Llanowar Elves | 1620 | 1
{G} | 1 | Elvish Mystic | 1521 | 2
{G} | 1 | Sol Ring | 1508 | 3
{G} | 2 | Swiftfoot Boots | 840 | 1
{G} | 2 | Priest of Titania | 840 | 1
{G} | 2 | Lightning Greaves | 829 | 3
{G} | 3 | Beast Within | 1381 | 1
{G} | 3 | Reclamation Sage | 1349 | 2
{G} | 3 | Cultivate | 1102 | 3
{G} | 4 | Harmonize | 1096 | 1
{G} | 4 | Yeva, Nature's Herald | 905 | 2
{G} | 4 | Karametra's Acolyte | 781 | 3
{G} | 5 | Acidic Slime | 901 | 1
{G} | 5 | Overwhelming Stampede | 774 | 2
{G} | 5 | Shamanic Revelation | 706 | 3
{G} | 6 | Rishkar's Expertise | 900 | 1
{G} | 6 | Soul of the Harvest | 882 | 2
{G} | 6 | Caged Sun | 585 | 3
{G} | 7 | Zendikar Resurgent | 874 | 1
{G} | 7 | Regal Force | 744 | 2
{G} | 7 | Avenger of Zendikar | 592 | 3
{G} | 8 | Terastodon | 935 | 1
{G} | 8 | Craterhoof Behemoth | 776 | 2
{G} | 8 | Praetor's Counsel | 564 | 3
{G} | 9 | Artisan of Kozilek | 160 | 1
{G} | 9 | The Great Aurora | 141 | 2
{G} | 9 | Void Winnower | 129 | 3
{G} | 10 | Ulamog, the Ceaseless Hunger | 318 | 1
{G} | 10 | Kozilek, Butcher of Truth | 212 | 2
{G} | 10 | Decimator of the Provinces | 139 | 3
{G} | 11 | Ulamog, the Infinite Gyre | 228 | 1
{G} | 11 | Worldspine Wurm | 219 | 2
{G} | 11 | Primeval Protector | 74 | 3
{G} | 12 | Ghalta, Primal Hunger | 260 | 1
{G} | 12 | It That Betrays | 73 | 2
{G} | 12 | Blightsteel Colossus | 46 | 3
{G} | 13 | Emrakul, the Promised End | 165 | 1
{G} | 15 | Emrakul, the Aeons Torn | 5 | 1
{G,R} | 0 | Forest | 1909 | 1
{G,R} | 0 | Mountain | 1881 | 2
{G,R} | 0 | Gruul Turf | 1128 | 3
{G,R} | 1 | Sol Ring | 1283 | 1
{G,R} | 1 | Llanowar Elves | 614 | 2
{G,R} | 1 | Elvish Mystic | 556 | 3
{G,R} | 2 | Sakura-Tribe Elder | 865 | 1
{G,R} | 2 | Gruul Signet | 834 | 2
{G,R} | 2 | Rampant Growth | 794 | 3
{G,R} | 3 | Cultivate | 1286 | 1
{G,R} | 3 | Kodama's Reach | 1051 | 2
{G,R} | 3 | Beast Within | 711 | 3
{G,R} | 4 | Explosive Vegetation | 858 | 1
{G,R} | 4 | Harmonize | 743 | 2
{G,R} | 4 | Mina and Denn, Wildborn | 707 | 3
{G,R} | 5 | Shamanic Revelation | 508 | 1
{G,R} | 5 | Acidic Slime | 494 | 2
{G,R} | 5 | Zendikar's Roil | 417 | 3
{G,R} | 6 | Rishkar's Expertise | 616 | 1
{G,R} | 6 | Warstorm Surge | 597 | 2
{G,R} | 6 | Rampaging Baloths | 539 | 3
{G,R} | 7 | Avenger of Zendikar | 562 | 1
{G,R} | 7 | Zendikar Resurgent | 529 | 2
{G,R} | 7 | Boundless Realms | 377 | 3
{G,R} | 8 | Terastodon | 276 | 1
{G,R} | 8 | Craterhoof Behemoth | 246 | 2
{G,R} | 8 | Praetor's Counsel | 194 | 3
{G,R} | 9 | Blasphemous Act | 499 | 1
{G,R} | 9 | Artisan of Kozilek | 91 | 2
{G,R} | 9 | The Great Aurora | 54 | 3
{G,R} | 10 | Primal Surge | 74 | 1
{G,R} | 10 | Kozilek, Butcher of Truth | 66 | 2
{G,R} | 10 | Ulamog, the Ceaseless Hunger | 65 | 3
{G,R} | 11 | Worldspine Wurm | 87 | 1
{G,R} | 11 | Ulamog, the Infinite Gyre | 49 | 2
{G,R} | 11 | Primeval Protector | 16 | 3
{G,R} | 12 | Ghalta, Primal Hunger | 114 | 1
{G,R} | 12 | Blightsteel Colossus | 27 | 2
{G,R} | 12 | It That Betrays | 10 | 3
{G,R} | 13 | Emrakul, the Promised End | 29 | 1
{G,R,U} | 0 | Island | 1453 | 1
{G,R,U} | 0 | Forest | 1447 | 2
{G,R,U} | 0 | Mountain | 1412 | 3
{G,R,U} | 1 | Sol Ring | 1073 | 1
{G,R,U} | 1 | Birds of Paradise | 522 | 2
{G,R,U} | 1 | Brainstorm | 372 | 3
{G,R,U} | 2 | Rattleclaw Mystic | 732 | 1
{G,R,U} | 2 | Cyclonic Rift | 664 | 2
{G,R,U} | 2 | Sakura-Tribe Elder | 660 | 3
{G,R,U} | 3 | Cultivate | 848 | 1
{G,R,U} | 3 | Kodama's Reach | 688 | 2
{G,R,U} | 3 | Eternal Witness | 630 | 3
{G,R,U} | 4 | Solemn Simulacrum | 574 | 1
{G,R,U} | 4 | Explosive Vegetation | 546 | 2
{G,R,U} | 4 | Rite of Replication | 386 | 3
{G,R,U} | 5 | Acidic Slime | 544 | 1
{G,R,U} | 5 | Mulldrifter | 481 | 2
{G,R,U} | 5 | Surrak Dragonclaw | 435 | 3
{G,R,U} | 6 | Soul of the Harvest | 483 | 1
{G,R,U} | 6 | Progenitor Mimic | 363 | 2
{G,R,U} | 6 | Prime Speaker Zegana | 333 | 3
{G,R,U} | 7 | Zendikar Resurgent | 437 | 1
{G,R,U} | 7 | Avenger of Zendikar | 293 | 2
{G,R,U} | 7 | Tooth and Nail | 195 | 3
{G,R,U} | 8 | Maelstrom Wanderer | 275 | 1
{G,R,U} | 8 | Craterhoof Behemoth | 195 | 2
{G,R,U} | 8 | Terastodon | 185 | 3
{G,R,U} | 9 | Blasphemous Act | 289 | 1
{G,R,U} | 9 | Artisan of Kozilek | 222 | 2
{G,R,U} | 9 | Void Winnower | 153 | 3
{G,R,U} | 10 | Ulamog, the Ceaseless Hunger | 224 | 1
{G,R,U} | 10 | Kozilek, Butcher of Truth | 212 | 2
{G,R,U} | 10 | Primal Surge | 77 | 3
{G,R,U} | 11 | Ulamog, the Infinite Gyre | 184 | 1
{G,R,U} | 11 | Pathrazer of Ulamog | 71 | 2
{G,R,U} | 11 | Temporal Trespass | 22 | 3
{G,R,U} | 12 | It That Betrays | 103 | 1
{G,R,U} | 12 | Ghalta, Primal Hunger | 49 | 2
{G,R,U} | 12 | Blightsteel Colossus | 38 | 3
{G,R,U} | 13 | Emrakul, the Promised End | 123 | 1
{G,R,U} | 15 | Emrakul, the Aeons Torn | 6 | 1
{G,R,U} | 16 | Draco | 1 | 1
{G,R,U,W} | 0 | Island | 433 | 1
{G,R,U,W} | 0 | Plains | 429 | 2
{G,R,U,W} | 0 | Forest | 427 | 3
{G,R,U,W} | 1 | Sol Ring | 331 | 1
{G,R,U,W} | 1 | Swords to Plowshares | 269 | 2
{G,R,U,W} | 1 | Collective Voyage | 168 | 3
{G,R,U,W} | 1 | Swan Song | 168 | 3
{G,R,U,W} | 2 | Howling Mine | 188 | 1
{G,R,U,W} | 2 | Arcane Denial | 182 | 2
{G,R,U,W} | 2 | Cyclonic Rift | 180 | 3
{G,R,U,W} | 3 | Cultivate | 258 | 1
{G,R,U,W} | 3 | Kodama's Reach | 244 | 2
{G,R,U,W} | 3 | Rites of Flourishing | 242 | 3
{G,R,U,W} | 4 | Tempt with Discovery | 205 | 1
{G,R,U,W} | 4 | Windborn Muse | 147 | 2
{G,R,U,W} | 4 | Supreme Verdict | 144 | 3
{G,R,U,W} | 5 | Sphere of Safety | 192 | 1
{G,R,U,W} | 5 | Sylvan Reclamation | 133 | 2
{G,R,U,W} | 5 | Venser's Journal | 132 | 3
{G,R,U,W} | 6 | Progenitor Mimic | 117 | 1
{G,R,U,W} | 6 | The Locust God | 73 | 2
{G,R,U,W} | 6 | Realm Seekers | 71 | 3
{G,R,U,W} | 7 | Approach of the Second Sun | 112 | 1
{G,R,U,W} | 7 | Omnath, Locus of Rage | 78 | 2
{G,R,U,W} | 7 | Avenger of Zendikar | 65 | 3
{G,R,U,W} | 8 | Treacherous Terrain | 93 | 1
{G,R,U,W} | 8 | Sandwurm Convergence | 84 | 2
{G,R,U,W} | 8 | Insurrection | 67 | 3
{G,R,U,W} | 9 | Blasphemous Act | 145 | 1
{G,R,U,W} | 9 | Blazing Archon | 142 | 2
{G,R,U,W} | 9 | Zacama, Primal Calamity | 17 | 3
{G,R,U,W} | 10 | Omniscience | 14 | 1
{G,R,U,W} | 10 | Kozilek, Butcher of Truth | 14 | 1
{G,R,U,W} | 10 | Jin-Gitaxias, Core Augur | 11 | 3
{G,R,U,W} | 11 | Ulamog, the Infinite Gyre | 11 | 1
{G,R,U,W} | 11 | Worldspine Wurm | 3 | 2
{G,R,U,W} | 11 | Darksteel Colossus | 1 | 3
{G,R,U,W} | 11 | Mycosynth Golem | 1 | 3
{G,R,U,W} | 11 | Temporal Trespass | 1 | 3
{G,R,U,W} | 11 | Metalwork Colossus | 1 | 3
{G,R,U,W} | 12 | Enter the Infinite | 11 | 1
{G,R,U,W} | 12 | Ghalta, Primal Hunger | 4 | 2
{G,R,U,W} | 12 | Blightsteel Colossus | 4 | 2
{G,R,U,W} | 13 | Emrakul, the Promised End | 17 | 1
{G,R,W} | 0 | Forest | 1934 | 1
{G,R,W} | 0 | Plains | 1900 | 2
{G,R,W} | 0 | Mountain | 1890 | 3
{G,R,W} | 1 | Sol Ring | 1488 | 1
{G,R,W} | 1 | Swords to Plowshares | 1033 | 2
{G,R,W} | 1 | Kinjalli's Caller | 580 | 3
{G,R,W} | 2 | Selesnya Signet | 748 | 1
{G,R,W} | 2 | Gruul Signet | 747 | 2
{G,R,W} | 2 | Boros Charm | 715 | 3
{G,R,W} | 3 | Cultivate | 1294 | 1
{G,R,W} | 3 | Kodama's Reach | 1075 | 2
{G,R,W} | 3 | Ranging Raptors | 747 | 3
{G,R,W} | 4 | Ripjaw Raptor | 710 | 1
{G,R,W} | 4 | Explosive Vegetation | 706 | 2
{G,R,W} | 4 | Harmonize | 507 | 3
{G,R,W} | 5 | Mirari's Wake | 905 | 1
{G,R,W} | 5 | Regisaur Alpha | 722 | 2
{G,R,W} | 5 | Raging Swordtooth | 641 | 3
{G,R,W} | 6 | Etali, Primal Storm | 711 | 1
{G,R,W} | 6 | Rishkar's Expertise | 653 | 2
{G,R,W} | 6 | Bellowing Aegisaur | 613 | 3
{G,R,W} | 7 | Verdant Sun's Avatar | 705 | 1
{G,R,W} | 7 | Goring Ceratops | 649 | 2
{G,R,W} | 7 | Zendikar Resurgent | 600 | 3
{G,R,W} | 8 | Wakening Sun's Avatar | 688 | 1
{G,R,W} | 8 | Zetalpa, Primal Dawn | 580 | 2
{G,R,W} | 8 | Polyraptor | 522 | 3
{G,R,W} | 9 | Zacama, Primal Calamity | 443 | 1
{G,R,W} | 9 | Blasphemous Act | 212 | 2
{G,R,W} | 9 | Blazing Archon | 115 | 3
{G,R,W} | 10 | Kozilek, Butcher of Truth | 65 | 1
{G,R,W} | 10 | Ulamog, the Ceaseless Hunger | 49 | 2
{G,R,W} | 10 | Primal Surge | 29 | 3
{G,R,W} | 11 | Worldspine Wurm | 116 | 1
{G,R,W} | 11 | Ulamog, the Infinite Gyre | 61 | 2
{G,R,W} | 11 | Pathrazer of Ulamog | 13 | 3
{G,R,W} | 12 | Ghalta, Primal Hunger | 613 | 1
{G,R,W} | 12 | It That Betrays | 61 | 2
{G,R,W} | 12 | Blightsteel Colossus | 32 | 3
{G,R,W} | 13 | Emrakul, the Promised End | 21 | 1
{G,R,W} | 15 | Autochthon Wurm | 13 | 1
{G,U} | 0 | Island | 2730 | 1
{G,U} | 0 | Forest | 2718 | 2
{G,U} | 0 | Command Tower | 1994 | 3
{G,U} | 1 | Sol Ring | 2007 | 1
{G,U} | 1 | Llanowar Elves | 874 | 2
{G,U} | 1 | Rapid Hybridization | 869 | 3
{G,U} | 2 | Simic Signet | 1591 | 1
{G,U} | 2 | Counterspell | 1554 | 2
{G,U} | 2 | Cyclonic Rift | 1537 | 3
{G,U} | 3 | Cultivate | 1531 | 1
{G,U} | 3 | Kodama's Reach | 1283 | 2
{G,U} | 3 | Beast Within | 1251 | 3
{G,U} | 4 | Explosive Vegetation | 814 | 1
{G,U} | 4 | Mystic Snake | 783 | 2
{G,U} | 4 | Herald of Secret Streams | 736 | 3
{G,U} | 5 | Urban Evolution | 725 | 1
{G,U} | 5 | Acidic Slime | 647 | 2
{G,U} | 5 | Murkfiend Liege | 641 | 3
{G,U} | 6 | Prime Speaker Zegana | 858 | 1
{G,U} | 6 | Progenitor Mimic | 460 | 2
{G,U} | 6 | Bane of Progress | 367 | 3
{G,U} | 7 | Avenger of Zendikar | 586 | 1
{G,U} | 7 | Tishana, Voice of Thunder | 553 | 2
{G,U} | 7 | Zendikar Resurgent | 492 | 3
{G,U} | 8 | Craterhoof Behemoth | 297 | 1
{G,U} | 8 | Praetor's Counsel | 269 | 2
{G,U} | 8 | Terastodon | 235 | 3
{G,U} | 9 | Artisan of Kozilek | 112 | 1
{G,U} | 9 | Inkwell Leviathan | 99 | 2
{G,U} | 9 | Void Winnower | 95 | 3
{G,U} | 10 | Ulamog, the Ceaseless Hunger | 144 | 1
{G,U} | 10 | Jin-Gitaxias, Core Augur | 125 | 2
{G,U} | 10 | Kozilek, the Great Distortion | 95 | 3
{G,U} | 10 | Kozilek, Butcher of Truth | 95 | 3
{G,U} | 11 | Temporal Trespass | 156 | 1
{G,U} | 11 | Ulamog, the Infinite Gyre | 95 | 2
{G,U} | 11 | Pathrazer of Ulamog | 35 | 3
{G,U} | 12 | Enter the Infinite | 78 | 1
{G,U} | 12 | It That Betrays | 59 | 2
{G,U} | 12 | Ghalta, Primal Hunger | 40 | 3
{G,U} | 13 | Emrakul, the Promised End | 71 | 1
{G,U} | 15 | Emrakul, the Aeons Torn | 1 | 1
{G,U} | 16 | Draco | 1 | 1
{G,U,W} | 0 | Forest | 2232 | 1
{G,U,W} | 0 | Island | 2231 | 2
{G,U,W} | 0 | Plains | 2226 | 3
{G,U,W} | 1 | Sol Ring | 1736 | 1
{G,U,W} | 1 | Swords to Plowshares | 1316 | 2
{G,U,W} | 1 | Enlightened Tutor | 716 | 3
{G,U,W} | 2 | Cyclonic Rift | 1090 | 1
{G,U,W} | 2 | Counterspell | 914 | 2
{G,U,W} | 2 | Simic Signet | 902 | 3
{G,U,W} | 3 | Cultivate | 912 | 1
{G,U,W} | 3 | Eternal Witness | 714 | 2
{G,U,W} | 3 | Kodama's Reach | 691 | 3
{G,U,W} | 4 | Supreme Verdict | 693 | 1
{G,U,W} | 4 | Eidolon of Blossoms | 566 | 2
{G,U,W} | 4 | Wrath of God | 418 | 3
{G,U,W} | 5 | Mirari's Wake | 627 | 1
{G,U,W} | 5 | Sphere of Safety | 522 | 2
{G,U,W} | 5 | Sigil of the Empty Throne | 498 | 3
{G,U,W} | 6 | Sun Titan | 618 | 1
{G,U,W} | 6 | Deadeye Navigator | 350 | 2
{G,U,W} | 6 | Austere Command | 339 | 3
{G,U,W} | 7 | Nylea's Colossus | 236 | 1
{G,U,W} | 7 | Zendikar Resurgent | 186 | 2
{G,U,W} | 7 | Elesh Norn, Grand Cenobite | 184 | 3
{G,U,W} | 8 | Sandwurm Convergence | 171 | 1
{G,U,W} | 8 | Terastodon | 169 | 2
{G,U,W} | 8 | Avacyn, Angel of Hope | 129 | 3
{G,U,W} | 9 | Blazing Archon | 59 | 1
{G,U,W} | 9 | Iona, Shield of Emeria | 36 | 2
{G,U,W} | 9 | Clone Legion | 27 | 3
{G,U,W} | 10 | Omniscience | 108 | 1
{G,U,W} | 10 | Jin-Gitaxias, Core Augur | 31 | 2
{G,U,W} | 10 | Storm Herd | 14 | 3
{G,U,W} | 10 | Kozilek, Butcher of Truth | 14 | 3
{G,U,W} | 11 | Ulamog, the Infinite Gyre | 11 | 1
{G,U,W} | 11 | Temporal Trespass | 6 | 2
{G,U,W} | 11 | Worldspine Wurm | 5 | 3
{G,U,W} | 12 | Enter the Infinite | 8 | 1
{G,U,W} | 12 | Blightsteel Colossus | 6 | 2
{G,U,W} | 12 | Ghalta, Primal Hunger | 4 | 3
{G,U,W} | 13 | Emrakul, the Promised End | 8 | 1
{G,U,W} | 15 | Autochthon Wurm | 1 | 1
{G,W} | 0 | Forest | 2350 | 1
{G,W} | 0 | Plains | 2336 | 2
{G,W} | 0 | Command Tower | 1711 | 3
{G,W} | 1 | Sol Ring | 1693 | 1
{G,W} | 1 | Swords to Plowshares | 1422 | 2
{G,W} | 1 | Path to Exile | 828 | 3
{G,W} | 2 | Selesnya Signet | 1014 | 1
{G,W} | 2 | Swiftfoot Boots | 888 | 2
{G,W} | 2 | Lightning Greaves | 870 | 3
{G,W} | 3 | Cultivate | 1277 | 1
{G,W} | 3 | Kodama's Reach | 810 | 2
{G,W} | 3 | Eternal Witness | 760 | 3
{G,W} | 4 | Harmonize | 791 | 1
{G,W} | 4 | Anointed Procession | 553 | 2
{G,W} | 4 | Parallel Lives | 519 | 3
{G,W} | 5 | Mirari's Wake | 1235 | 1
{G,W} | 5 | Cathars' Crusade | 486 | 2
{G,W} | 5 | Acidic Slime | 465 | 3
{G,W} | 6 | Sun Titan | 649 | 1
{G,W} | 6 | Rishkar's Expertise | 413 | 2
{G,W} | 6 | Rampaging Baloths | 395 | 3
{G,W} | 7 | Zendikar Resurgent | 595 | 1
{G,W} | 7 | Elesh Norn, Grand Cenobite | 462 | 2
{G,W} | 7 | Avenger of Zendikar | 374 | 3
{G,W} | 8 | Avacyn, Angel of Hope | 373 | 1
{G,W} | 8 | Sandwurm Convergence | 373 | 1
{G,W} | 8 | Craterhoof Behemoth | 301 | 3
{G,W} | 9 | Iona, Shield of Emeria | 148 | 1
{G,W} | 9 | Reya Dawnbringer | 89 | 2
{G,W} | 9 | Void Winnower | 26 | 3
{G,W} | 10 | Desolation Twin | 127 | 1
{G,W} | 10 | Storm Herd | 91 | 2
{G,W} | 10 | Kozilek, Butcher of Truth | 49 | 3
{G,W} | 11 | Worldspine Wurm | 77 | 1
{G,W} | 11 | Ulamog, the Infinite Gyre | 47 | 2
{G,W} | 11 | Primeval Protector | 8 | 3
{G,W} | 12 | Ghalta, Primal Hunger | 42 | 1
{G,W} | 12 | It That Betrays | 8 | 2
{G,W} | 12 | Blightsteel Colossus | 7 | 3
{G,W} | 13 | Emrakul, the Promised End | 21 | 1
{G,W} | 15 | Autochthon Wurm | 31 | 1
{G,W} | 15 | Emrakul, the Aeons Torn | 1 | 2
{R} | 0 | Mountain | 2666 | 1
{R} | 0 | Forgotten Cave | 1036 | 2
{R} | 0 | Valakut, the Molten Pinnacle | 973 | 3
{R} | 1 | Sol Ring | 2141 | 1
{R} | 1 | Vandalblast | 1389 | 2
{R} | 1 | Faithless Looting | 1040 | 3
{R} | 2 | Mind Stone | 1388 | 1
{R} | 2 | Ruby Medallion | 1245 | 2
{R} | 2 | Swiftfoot Boots | 1205 | 3
{R} | 3 | Chaos Warp | 1594 | 1
{R} | 3 | Hordeling Outburst | 760 | 2
{R} | 3 | Blood Moon | 752 | 3
{R} | 4 | Solemn Simulacrum | 975 | 1
{R} | 4 | Hedron Archive | 805 | 2
{R} | 4 | Beetleback Chief | 791 | 3
{R} | 5 | Siege-Gang Commander | 972 | 1
{R} | 5 | Reforge the Soul | 958 | 2
{R} | 5 | Gilded Lotus | 617 | 3
{R} | 6 | Caged Sun | 969 | 1
{R} | 6 | Steel Hellkite | 584 | 2
{R} | 6 | Combustible Gearhulk | 582 | 3
{R} | 7 | Myr Battlesphere | 567 | 1
{R} | 7 | Chancellor of the Forge | 372 | 2
{R} | 7 | Spine of Ish Sah | 348 | 3
{R} | 8 | Insurrection | 364 | 1
{R} | 8 | Bogardan Hellkite | 230 | 2
{R} | 8 | Bosh, Iron Golem | 209 | 3
{R} | 9 | Blasphemous Act | 1209 | 1
{R} | 9 | Darksteel Forge | 238 | 2
{R} | 9 | Void Winnower | 58 | 3
{R} | 10 | Decree of Annihilation | 121 | 1
{R} | 10 | Ulamog, the Ceaseless Hunger | 108 | 2
{R} | 10 | Kozilek, Butcher of Truth | 105 | 3
{R} | 11 | Metalwork Colossus | 142 | 1
{R} | 11 | Ulamog, the Infinite Gyre | 82 | 2
{R} | 11 | Darksteel Colossus | 57 | 3
{R} | 12 | Blightsteel Colossus | 109 | 1
{R} | 12 | It That Betrays | 66 | 2
{R} | 13 | Emrakul, the Promised End | 53 | 1
{R} | 16 | Draco | 1 | 1
{R,U} | 0 | Island | 2838 | 1
{R,U} | 0 | Mountain | 2818 | 2
{R,U} | 0 | Command Tower | 2167 | 3
{R,U} | 1 | Sol Ring | 2410 | 1
{R,U} | 1 | Brainstorm | 1563 | 2
{R,U} | 1 | Ponder | 1115 | 3
{R,U} | 2 | Izzet Signet | 2346 | 1
{R,U} | 2 | Counterspell | 1650 | 2
{R,U} | 2 | Cyclonic Rift | 1610 | 3
{R,U} | 3 | Commander's Sphere | 1220 | 1
{R,U} | 3 | Chaos Warp | 1076 | 2
{R,U} | 3 | Counterflux | 886 | 3
{R,U} | 4 | Fact or Fiction | 788 | 1
{R,U} | 4 | Thran Dynamo | 758 | 2
{R,U} | 4 | Hedron Archive | 701 | 3
{R,U} | 5 | Gilded Lotus | 937 | 1
{R,U} | 5 | Psychosis Crawler | 732 | 2
{R,U} | 5 | Mystic Confluence | 517 | 3
{R,U} | 6 | Niv-Mizzet, the Firemind | 695 | 1
{R,U} | 6 | The Locust God | 464 | 2
{R,U} | 6 | Consecrated Sphinx | 421 | 3
{R,U} | 7 | Firemind's Foresight | 417 | 1
{R,U} | 7 | Swarm Intelligence | 405 | 2
{R,U} | 7 | Myr Battlesphere | 363 | 3
{R,U} | 8 | Treasure Cruise | 784 | 1
{R,U} | 8 | Dig Through Time | 565 | 2
{R,U} | 8 | Beacon of Tomorrows | 207 | 3
{R,U} | 9 | Blasphemous Act | 1202 | 1
{R,U} | 9 | Darksteel Forge | 212 | 2
{R,U} | 9 | Expropriate | 195 | 3
{R,U} | 10 | Omniscience | 232 | 1
{R,U} | 10 | Kozilek, Butcher of Truth | 185 | 2
{R,U} | 10 | Jin-Gitaxias, Core Augur | 185 | 2
{R,U} | 11 | Metalwork Colossus | 160 | 1
{R,U} | 11 | Temporal Trespass | 149 | 2
{R,U} | 11 | Ulamog, the Infinite Gyre | 134 | 3
{R,U} | 12 | Enter the Infinite | 292 | 1
{R,U} | 12 | It That Betrays | 172 | 2
{R,U} | 12 | Blightsteel Colossus | 140 | 3
{R,U} | 13 | Emrakul, the Promised End | 130 | 1
{R,U} | 14 | Blinkmoth Infusion | 7 | 1
{R,U} | 15 | Emrakul, the Aeons Torn | 1 | 1
{R,U,W} | 0 | Island | 1141 | 1
{R,U,W} | 0 | Plains | 1120 | 2
{R,U,W} | 0 | Mountain | 1099 | 3
{R,U,W} | 1 | Sol Ring | 932 | 1
{R,U,W} | 1 | Swords to Plowshares | 715 | 2
{R,U,W} | 1 | Brainstorm | 492 | 3
{R,U,W} | 2 | Izzet Signet | 900 | 1
{R,U,W} | 2 | Azorius Signet | 885 | 2
{R,U,W} | 2 | Boros Signet | 879 | 3
{R,U,W} | 3 | Commander's Sphere | 424 | 1
{R,U,W} | 3 | Darksteel Ingot | 408 | 2
{R,U,W} | 3 | Ghostly Prison | 396 | 3
{R,U,W} | 4 | Supreme Verdict | 402 | 1
{R,U,W} | 4 | Return to Dust | 326 | 2
{R,U,W} | 4 | Fact or Fiction | 288 | 3
{R,U,W} | 5 | Sphere of Safety | 251 | 1
{R,U,W} | 5 | Gilded Lotus | 243 | 2
{R,U,W} | 5 | Perplexing Chimera | 219 | 3
{R,U,W} | 6 | Austere Command | 203 | 1
{R,U,W} | 6 | Sun Titan | 191 | 2
{R,U,W} | 6 | Part the Waterveil | 185 | 3
{R,U,W} | 7 | Approach of the Second Sun | 252 | 1
{R,U,W} | 7 | Temporal Mastery | 209 | 2
{R,U,W} | 7 | Fury of the Horde | 169 | 3
{R,U,W} | 8 | Treasure Cruise | 227 | 1
{R,U,W} | 8 | Beacon of Tomorrows | 213 | 2
{R,U,W} | 8 | Dig Through Time | 206 | 3
{R,U,W} | 9 | Blasphemous Act | 164 | 1
{R,U,W} | 9 | Expropriate | 150 | 2
{R,U,W} | 9 | Clone Legion | 85 | 3
{R,U,W} | 10 | Time Stretch | 171 | 1
{R,U,W} | 10 | Omniscience | 169 | 2
{R,U,W} | 10 | Storm Herd | 104 | 3
{R,U,W} | 11 | Temporal Trespass | 212 | 1
{R,U,W} | 11 | Ulamog, the Infinite Gyre | 11 | 2
{R,U,W} | 11 | Metalwork Colossus | 9 | 3
{R,U,W} | 12 | Enter the Infinite | 109 | 1
{R,U,W} | 12 | Blightsteel Colossus | 7 | 2
{R,U,W} | 13 | Emrakul, the Promised End | 8 | 1
{R,U,W} | 15 | Emrakul, the Aeons Torn | 1 | 1
{R,W} | 0 | Mountain | 1388 | 1
{R,W} | 0 | Plains | 1380 | 2
{R,W} | 0 | Boros Garrison | 1003 | 3
{R,W} | 1 | Sol Ring | 1112 | 1
{R,W} | 1 | Swords to Plowshares | 857 | 2
{R,W} | 1 | Path to Exile | 426 | 3
{R,W} | 2 | Boros Signet | 1080 | 1
{R,W} | 2 | Boros Charm | 885 | 2
{R,W} | 2 | Lightning Greaves | 601 | 3
{R,W} | 3 | Sunforger | 578 | 1
{R,W} | 3 | Commander's Sphere | 541 | 2
{R,W} | 3 | Darksteel Ingot | 429 | 3
{R,W} | 4 | Return to Dust | 541 | 1
{R,W} | 4 | Solemn Simulacrum | 422 | 2
{R,W} | 4 | Iroas, God of Victory | 385 | 3
{R,W} | 5 | Assemble the Legion | 462 | 1
{R,W} | 5 | Gilded Lotus | 293 | 2
{R,W} | 5 | Anya, Merciless Angel | 259 | 3
{R,W} | 6 | Sun Titan | 489 | 1
{R,W} | 6 | Aurelia, the Warleader | 357 | 2
{R,W} | 6 | Austere Command | 265 | 3
{R,W} | 7 | Gisela, Blade of Goldnight | 554 | 1
{R,W} | 7 | Star of Extinction | 205 | 2
{R,W} | 7 | Emeria Shepherd | 199 | 3
{R,W} | 8 | Avacyn, Angel of Hope | 221 | 1
{R,W} | 8 | Akroma, Angel of Wrath | 100 | 2
{R,W} | 8 | Akroma, Angel of Fury | 98 | 3
{R,W} | 9 | Blasphemous Act | 428 | 1
{R,W} | 9 | Reya Dawnbringer | 83 | 2
{R,W} | 9 | Iona, Shield of Emeria | 69 | 3
{R,W} | 10 | Storm Herd | 11 | 1
{R,W} | 10 | Greater Gargadon | 7 | 2
{R,W} | 10 | Decree of Annihilation | 7 | 2
{R,W} | 10 | Kozilek, Butcher of Truth | 7 | 2
{R,W} | 11 | Metalwork Colossus | 59 | 1
{R,W} | 11 | Ulamog, the Infinite Gyre | 4 | 2
{R,W} | 11 | Darksteel Colossus | 2 | 3
{R,W} | 12 | Blightsteel Colossus | 4 | 1
{R,W} | 12 | It That Betrays | 2 | 2
{R,W} | 13 | Emrakul, the Promised End | 7 | 1
{U} | 0 | Island | 2362 | 1
{U} | 0 | Reliquary Tower | 1413 | 2
{U} | 0 | Temple of the False God | 797 | 3
{U} | 0 | Lonely Sandbar | 797 | 3
{U} | 1 | Sol Ring | 1942 | 1
{U} | 1 | Brainstorm | 1251 | 2
{U} | 1 | Ponder | 1038 | 3
{U} | 2 | Counterspell | 1936 | 1
{U} | 2 | Cyclonic Rift | 1566 | 2
{U} | 2 | Negate | 1070 | 3
{U} | 3 | Blue Sun's Zenith | 1030 | 1
{U} | 3 | Fabricate | 845 | 2
{U} | 3 | Rhystic Study | 833 | 3
{U} | 4 | Fact or Fiction | 940 | 1
{U} | 4 | Thran Dynamo | 837 | 2
{U} | 4 | Rewind | 836 | 3
{U} | 5 | Gilded Lotus | 801 | 1
{U} | 5 | Evacuation | 553 | 2
{U} | 5 | Force of Will | 481 | 3
{U} | 6 | Caged Sun | 777 | 1
{U} | 6 | Arcanis the Omnipotent | 445 | 2
{U} | 6 | Consecrated Sphinx | 431 | 3
{U} | 7 | Scourge of Fleets | 445 | 1
{U} | 7 | Nezahal, Primal Tide | 229 | 2
{U} | 7 | Sphinx of the Final Word | 224 | 3
{U} | 8 | Treasure Cruise | 626 | 1
{U} | 8 | Dig Through Time | 624 | 2
{U} | 8 | Stormtide Leviathan | 505 | 3
{U} | 9 | Inkwell Leviathan | 268 | 1
{U} | 9 | Darksteel Forge | 249 | 2
{U} | 9 | Expropriate | 122 | 3
{U} | 9 | Breaching Leviathan | 122 | 3
{U} | 10 | Omniscience | 198 | 1
{U} | 10 | Jin-Gitaxias, Core Augur | 174 | 2
{U} | 10 | Deep-Sea Kraken | 138 | 3
{U} | 11 | Temporal Trespass | 143 | 1
{U} | 11 | Metalwork Colossus | 129 | 2
{U} | 11 | Darksteel Colossus | 91 | 3
{U} | 12 | Enter the Infinite | 148 | 1
{U} | 12 | Blightsteel Colossus | 141 | 2
{U} | 12 | It That Betrays | 80 | 3
{U} | 13 | Emrakul, the Promised End | 92 | 1
{U} | 14 | Blinkmoth Infusion | 14 | 1
{U} | 15 | Emrakul, the Aeons Torn | 8 | 1
{U,W} | 0 | Island | 2138 | 1
{U,W} | 0 | Plains | 2103 | 2
{U,W} | 0 | Command Tower | 1537 | 3
{U,W} | 1 | Sol Ring | 1650 | 1
{U,W} | 1 | Swords to Plowshares | 1486 | 2
{U,W} | 1 | Path to Exile | 817 | 3
{U,W} | 2 | Azorius Signet | 1639 | 1
{U,W} | 2 | Counterspell | 1358 | 2
{U,W} | 2 | Cyclonic Rift | 1214 | 3
{U,W} | 3 | Render Silent | 782 | 1
{U,W} | 3 | Ghostly Prison | 703 | 2
{U,W} | 3 | Rhystic Study | 661 | 3
{U,W} | 4 | Supreme Verdict | 1084 | 1
{U,W} | 4 | Return to Dust | 742 | 2
{U,W} | 4 | Solemn Simulacrum | 619 | 3
{U,W} | 5 | Gilded Lotus | 589 | 1
{U,W} | 5 | Cloudblazer | 561 | 2
{U,W} | 5 | Mulldrifter | 538 | 3
{U,W} | 6 | Sun Titan | 695 | 1
{U,W} | 6 | Deadeye Navigator | 442 | 2
{U,W} | 6 | Austere Command | 412 | 3
{U,W} | 7 | Approach of the Second Sun | 320 | 1
{U,W} | 7 | Spine of Ish Sah | 262 | 2
{U,W} | 7 | Diluvian Primordial | 250 | 3
{U,W} | 8 | Dig Through Time | 343 | 1
{U,W} | 8 | Treasure Cruise | 265 | 2
{U,W} | 8 | Eldrazi Conscription | 140 | 3
{U,W} | 9 | Iona, Shield of Emeria | 65 | 1
{U,W} | 9 | Expropriate | 59 | 2
{U,W} | 9 | Blazing Archon | 58 | 3
{U,W} | 10 | Omniscience | 78 | 1
{U,W} | 10 | Jin-Gitaxias, Core Augur | 63 | 2
{U,W} | 10 | Time Stretch | 51 | 3
{U,W} | 11 | Temporal Trespass | 35 | 1
{U,W} | 11 | Metalwork Colossus | 20 | 2
{U,W} | 11 | Darksteel Colossus | 10 | 3
{U,W} | 11 | Ulamog, the Infinite Gyre | 10 | 3
{U,W} | 12 | Enter the Infinite | 20 | 1
{U,W} | 12 | Blightsteel Colossus | 13 | 2
{U,W} | 13 | Emrakul, the Promised End | 14 | 1
{W} | 0 | Plains | 1549 | 1
{W} | 0 | Emeria, the Sky Ruin | 943 | 2
{W} | 0 | Temple of the False God | 633 | 3
{W} | 1 | Swords to Plowshares | 1182 | 1
{W} | 1 | Sol Ring | 1179 | 2
{W} | 1 | Path to Exile | 737 | 3
{W} | 2 | Swiftfoot Boots | 852 | 1
{W} | 2 | Lightning Greaves | 717 | 2
{W} | 2 | Pearl Medallion | 647 | 3
{W} | 3 | Oblivion Ring | 545 | 1
{W} | 3 | Mentor of the Meek | 499 | 2
{W} | 3 | Loxodon Warhammer | 481 | 3
{W} | 4 | Return to Dust | 837 | 1
{W} | 4 | Wrath of God | 533 | 2
{W} | 4 | Day of Judgment | 401 | 3
{W} | 5 | Cathars' Crusade | 343 | 1
{W} | 5 | Stonehewer Giant | 312 | 2
{W} | 5 | Gilded Lotus | 275 | 3
{W} | 6 | Sun Titan | 718 | 1
{W} | 6 | Caged Sun | 579 | 2
{W} | 6 | Austere Command | 574 | 3
{W} | 7 | Emeria Shepherd | 547 | 1
{W} | 7 | Mass Calcify | 506 | 2
{W} | 7 | Elesh Norn, Grand Cenobite | 258 | 3
{W} | 8 | Avacyn, Angel of Hope | 312 | 1
{W} | 8 | Akroma, Angel of Wrath | 205 | 2
{W} | 8 | Zetalpa, Primal Dawn | 76 | 3
{W} | 9 | Iona, Shield of Emeria | 200 | 1
{W} | 9 | Reya Dawnbringer | 157 | 2
{W} | 9 | Blazing Archon | 58 | 3
{W} | 10 | Storm Herd | 37 | 1
{W} | 10 | Kozilek, the Great Distortion | 14 | 2
{W} | 10 | Kozilek, Butcher of Truth | 13 | 3
{W} | 11 | Ulamog, the Infinite Gyre | 8 | 1
{W} | 11 | Metalwork Colossus | 6 | 2
{W} | 11 | Darksteel Colossus | 3 | 3
{W} | 11 | Mycosynth Golem | 3 | 3
{W} | 12 | Blightsteel Colossus | 7 | 1
{W} | 12 | It That Betrays | 1 | 2
{W} | 13 | Emrakul, the Promised End | 6 | 1
{W} | 16 | Draco | 1 | 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment