diff --git a/.hgignore b/.hgignore index 980fa5368dd..bc5647318be 100644 --- a/.hgignore +++ b/.hgignore @@ -26,6 +26,7 @@ Mage.Tests/target Mage/target releases +Utils/author.txt syntax: regexp .class .jar diff --git a/Utils/cardExtendedClass.tmpl b/Utils/cardExtendedClass.tmpl index a72ad802a28..b6834fd1c74 100644 --- a/Utils/cardExtendedClass.tmpl +++ b/Utils/cardExtendedClass.tmpl @@ -31,7 +31,7 @@ import java.util.UUID; /** * - * @author North + * @author [=$author=] */ public class [=$className=] extends mage.sets.[=$baseSet=].[=$baseClassName=] { diff --git a/Utils/cardclass.tmpl b/Utils/cardclass.tmpl index 6319aa61a16..ceed9968532 100644 --- a/Utils/cardclass.tmpl +++ b/Utils/cardclass.tmpl @@ -25,8 +25,7 @@ * authors and should not be interpreted as representing official policies, either expressed * or implied, of BetaSteward_at_googlemail.com. */ - -package mage.sets.[=$longset=]; +package mage.sets.[=$set=]; import java.util.UUID; import mage.Constants.CardType; @@ -35,28 +34,27 @@ import mage.cards.CardImpl; /** * - * @author + * @author [=$author=] */ -public class [=$classname=] extends CardImpl<[=$classname=]> { +public class [=$className=] extends CardImpl<[=$className=]> { - public [=$classname=] (UUID ownerId) { - super(ownerId, [=$collector=], "[=$name=]", Rarity.[=$rarity=], new CardType[]{[=$type=]}, "[=$manacost=]"); - this.expansionSetCode = "[=$setcode=]"; -[=$subtype=] [=$colors=] + public [=$className=](UUID ownerId) { + super(ownerId, [=$cardNumber=], "[=$name=]", Rarity.[=$rarity=], new CardType[]{[=$type=]}, "[=$manaCost=]"); + this.expansionSetCode = "[=$expansionSetCode=]"; +[=$subType=] [=$colors=] [=if (defined($power)) { - $OUT .= "this.power = new MageInt($power);\n"; + $OUT .= "this.power = new MageInt($power);\n"; }=][=if (defined($toughness)) { - $OUT .= " this.toughness = new MageInt($toughness);"; + $OUT .= " this.toughness = new MageInt($toughness);"; }=] } - public [=$classname=] (final [=$classname=] card) { + public [=$className=](final [=$className=] card) { super(card); } @Override - public [=$classname=] copy() { - return new [=$classname=](this); + public [=$className=] copy() { + return new [=$className=](this); } - } diff --git a/Utils/gen-card-via-proxy.pl b/Utils/gen-card-via-proxy.pl deleted file mode 100644 index 1240c234723..00000000000 --- a/Utils/gen-card-via-proxy.pl +++ /dev/null @@ -1,402 +0,0 @@ -#!/usr/bin/perl -w - -use WWW::Mechanize; -use HTML::TreeBuilder; -use Text::Template; -use Data::Dumper; -use strict; - -my $datafile = "mtg-cards-data.txt"; - -my @sets; -my @collector; -my %rarities; -my %collectors; -my @multiverses; - -my $manacost = ""; -my $loyality = -1; -my $power = -1; -my $toughness = -1; -my @texts; -my @types; - -my %fulltoshort; - -$fulltoshort{'Tenth Edition'} = '10E'; -$fulltoshort{'Unlimited Edition'} = '2ED'; -$fulltoshort{'Revised Edition'} = '3ED'; -$fulltoshort{'Fourth Edition'} = '4ED'; -$fulltoshort{'Fifth Dawn'} = '5DN'; -$fulltoshort{'Fifth Edition'} = '5ED'; -$fulltoshort{'Classic Sixth Edition'} = '6ED'; -$fulltoshort{'Seventh Edition'} = '7ED'; -$fulltoshort{'Eighth Edition'} = '8ED'; -$fulltoshort{'Alliances'} = 'ALL'; -$fulltoshort{'Apocalypse'} = 'APC'; -$fulltoshort{'Alara Reborn'} = 'ARB'; -$fulltoshort{'Arabian Nights'} = 'ARN'; -$fulltoshort{'Anthologies'} = 'ATH'; -$fulltoshort{'Antiquities'} = 'ATQ'; -$fulltoshort{'Betrayers of Kamigawa'} = 'BOK'; -$fulltoshort{'Battle Royale Box Set'} = 'BRB'; -$fulltoshort{'Beatdown Box Set'} = 'BTD'; -$fulltoshort{'Champions of Kamigawa'} = 'CHK'; -$fulltoshort{'Chronicles'} = 'CHR'; -$fulltoshort{'Conflux'} = 'CON'; -$fulltoshort{'Coldsnap'} = 'CSP'; -$fulltoshort{'Darksteel'} = 'DST'; -$fulltoshort{'Dissension'} = 'DIS'; -$fulltoshort{'Deckmasters'} = 'DKM'; -$fulltoshort{'The Dark'} = 'DRK'; -$fulltoshort{'Darksteel'} = 'DST'; -$fulltoshort{'Duel Decks: Divine vs. Demonic'} = 'DVD'; -$fulltoshort{'Duel Decks: Elves vs. Goblins'} = 'EVG'; -$fulltoshort{'Duel Decks: Garruk vs. Liliana'} = 'GVL'; -$fulltoshort{'Duel Decks: Jace vs. Chandra'} = 'JVC'; -$fulltoshort{'Duel Decks: Phyrexia vs. the Coalition'} = 'PVC'; -$fulltoshort{'Eventide'} = 'EVE'; -$fulltoshort{'Exodus'} = 'EXO'; -$fulltoshort{'Fallen Empires'} = 'FEM'; -$fulltoshort{'Future Sight'} = 'FUT'; -$fulltoshort{'From the Vault: Dragons'} = 'FVD'; -$fulltoshort{'From the Vault: Exiled'} = 'FVE'; -$fulltoshort{'Guildpact'} = 'GPT'; -$fulltoshort{'Homelands'} = 'HML'; -$fulltoshort{'Planechase'} = 'HOP'; -$fulltoshort{'Ice Age'} = 'ICE'; -$fulltoshort{'Invasion'} = 'INV'; -$fulltoshort{'Judgment'} = 'JUD'; -$fulltoshort{'Limited Edition Alpha'} = 'LEA'; -$fulltoshort{'Limited Edition Beta'} = 'LEB'; -$fulltoshort{'Legends'} = 'LEG'; -$fulltoshort{'Legions'} = 'LGN'; -$fulltoshort{'Lorwyn'} = 'LRW'; -$fulltoshort{'Magic 2010'} = 'M10'; -$fulltoshort{'Magic 2011'} = 'M11'; -$fulltoshort{'Masters Edition II'} = 'ME2'; -$fulltoshort{'Masters Edition III'} = 'ME3'; -$fulltoshort{'Masters Edition'} = 'MED'; -$fulltoshort{'Mirage'} = 'MIR'; -$fulltoshort{'Mercadian Masques'} = 'MMQ'; -$fulltoshort{'Morningtide'} = 'MOR'; -$fulltoshort{'Mirrodin'} = 'MRD'; -$fulltoshort{'Ninth Edition'} = '9ED'; -$fulltoshort{'Nemesis'} = 'NEM'; -$fulltoshort{'Odyssey'} = 'ODY'; -$fulltoshort{'Onslaught'} = 'ONS'; -$fulltoshort{'Portal Second Age'} = 'PO2'; -$fulltoshort{'Prophecy'} = 'PCY'; -$fulltoshort{'Planar Chaos'} = 'PLC'; -$fulltoshort{'Planeshift'} = 'PLS'; -$fulltoshort{'Portal'} = 'POR'; -$fulltoshort{'Portal Three Kingdoms'} = 'PTK'; -$fulltoshort{'Premium Deck Series: Slivers'} = 'PDS'; -$fulltoshort{'Ravnica: City of Guilds'} = 'RAV'; -$fulltoshort{'Rise of the Eldrazi'} = 'ROE'; -$fulltoshort{'Starter 2000'} = 'S00'; -$fulltoshort{'Starter 1999'} = 'S99'; -$fulltoshort{'Scourge'} = 'SCG'; -$fulltoshort{'Shadowmoor'} = 'SHM'; -$fulltoshort{'Shards of Alara'} = 'ALA'; -$fulltoshort{'Saviors of Kamigawa'} = 'SOK'; -$fulltoshort{'Stronghold'} = 'STH'; -$fulltoshort{'Tempest'} = 'TMP'; -$fulltoshort{'Torment'} = 'TOR'; -$fulltoshort{'Time Spiral "Timeshifted"'} = 'TSB'; -$fulltoshort{'Time Spiral'} = 'TSP'; -$fulltoshort{'Urza\'s Destiny'} = 'UDS'; -$fulltoshort{'Unglued'} = 'UGL'; -$fulltoshort{'Urza\'s Legacy'} = 'ULG'; -$fulltoshort{'Unhinged'} = 'UNH'; -$fulltoshort{'Urza\'s Saga'} = 'USG'; -$fulltoshort{'Vanguard Set 1'} = 'VG1'; -$fulltoshort{'Vanguard Set 2'} = 'VG2'; -$fulltoshort{'Vanguard Set 3'} = 'VG3'; -$fulltoshort{'Vanguard Set 4'} = 'VG4'; -$fulltoshort{'MTGO Vanguard'} = 'VGO'; -$fulltoshort{'Visions'} = 'VIS'; -$fulltoshort{'Weatherlight'} = 'WTH'; -$fulltoshort{'Worldwake'} = 'WWK'; -$fulltoshort{'Zendikar'} = 'ZEN'; -$fulltoshort{'Archenemy'} = 'ARC'; -$fulltoshort{'Scars of Mirrodin'} = 'SOM'; - -my %wizardstous; -$wizardstous{'6E'} = '6ED'; -$wizardstous{'7E'} = '7ED'; -$wizardstous{'8ED'} = '8ED'; -$wizardstous{'9ED'} = '9ED'; -$wizardstous{'10E'} = '10E'; -$wizardstous{'BD'} = 'BTD'; -$wizardstous{'DDD'} = 'GVL'; -$wizardstous{'CG'} = 'UDS'; -$wizardstous{'ST'} = 'STH'; -$wizardstous{'ONS'} = 'ONS'; -$wizardstous{'P3'} = 'S99'; -$wizardstous{'P4'} = 'S00'; -$wizardstous{'OD'} = 'ODY'; -$wizardstous{'M10'} = 'M10'; -$wizardstous{'M11'} = 'M11'; -$wizardstous{'LRW'} = 'LRW'; -$wizardstous{'DD2'} = 'JVC'; -$wizardstous{'TSB'} = 'TSB'; -$wizardstous{'ZEN'} = 'ZEN'; -$wizardstous{'5E'} = '5ED'; -$wizardstous{'IA'} = 'ICE'; -$wizardstous{'4E'} = '4ED'; -$wizardstous{'3E'} = '3ED'; -$wizardstous{'2U'} = '2ED'; -$wizardstous{'2E'} = 'LEB'; -$wizardstous{'1E'} = 'LEA'; -$wizardstous{'EVG'} = 'EVG'; -$wizardstous{'BR'} = 'BRB'; -$wizardstous{'ME2'} = 'ME2'; -$wizardstous{'ME3'} = 'ME3'; -$wizardstous{'HOP'} = 'HOP'; -$wizardstous{'PO'} = 'POR'; -$wizardstous{'P2'} = 'PO2'; -$wizardstous{'PK'} = 'PTK'; -$wizardstous{'MED'} = 'MED'; -$wizardstous{'EVE'} = 'EVE'; -$wizardstous{'MOR'} = 'MOR'; -$wizardstous{'RAV'} = 'RAV'; -$wizardstous{'SHM'} = 'SHM'; -$wizardstous{'MI'} = 'MIR'; -$wizardstous{'ARB'} = 'ARB'; -$wizardstous{'VI'} = 'VIS'; -$wizardstous{'DST'} = 'DST'; -$wizardstous{'TOR'} = 'TOR'; -$wizardstous{'DDC'} = 'DVD'; -$wizardstous{'AP'} = 'APC'; -$wizardstous{'CON'} = 'CON'; -$wizardstous{'ALA'} = 'ALA'; -$wizardstous{'DDE'} = 'PVC'; -$wizardstous{'JUD'} = 'JUD'; -$wizardstous{'WL'} = 'WTH'; -$wizardstous{'MRD'} = 'MRD'; -$wizardstous{'TE'} = 'TMP'; -$wizardstous{'DRB'} = 'FVD'; -$wizardstous{'PR'} = 'PCY'; -$wizardstous{'UZ'} = 'USG'; -$wizardstous{'IN'} = 'INV'; -$wizardstous{'FUT'} = 'FUT'; -$wizardstous{'TSP'} = 'TSP'; -$wizardstous{'CHK'} = 'CHK'; -$wizardstous{'EX'} = 'EXO'; -$wizardstous{'FE'} = 'FEM'; -$wizardstous{'PLC'} = 'PLC'; -$wizardstous{'CHK'} = 'CHK'; -$wizardstous{'ROE'} = 'ROE'; -$wizardstous{'5DN'} = '5DN'; -$wizardstous{'LE'} = 'LEG'; -$wizardstous{'CH'} = 'CHR'; -$wizardstous{'H09'} = 'PDS'; -$wizardstous{'MM'} = 'MMQ'; -$wizardstous{'GPT'} = 'GPT'; -$wizardstous{'GU'} = 'ULG'; -$wizardstous{'ARC'} = 'ARC'; -$wizardstous{'DIS'} = 'DIS'; -$wizardstous{'NE'} = 'NEM'; -$wizardstous{'PS'} = 'PLS'; -$wizardstous{'LGN'} = 'LGN'; -$wizardstous{'AN'} = 'ARN'; -$wizardstous{'WWK'} = 'WWK'; -$wizardstous{'SOM'} = 'SOM'; - -my %knownSets; -$knownSets{'ARB'} = 'alarareborn'; -$knownSets{'CON'} = 'conflux'; -$knownSets{'M10'} = 'magic2010'; -$knownSets{'M11'} = 'magic2011'; -$knownSets{'HOP'} = 'planechase'; -$knownSets{'RAV'} = 'ravnika'; -$knownSets{'ROE'} = 'riseoftheeldrazi'; -$knownSets{'ALA'} = 'shardsofalara'; -$knownSets{'10E'} = 'tenth'; -$knownSets{'WWK'} = 'worldwake'; -$knownSets{'ZEN'} = 'zendikar'; -$knownSets{'SOM'} = 'scarsofmirrodin'; -$knownSets{'GPT'} = 'guildpact'; -$knownSets{'DIS'} = 'dissension'; - -my %raritiesConversion; -$raritiesConversion{'C'} = 'COMMON'; -$raritiesConversion{'U'} = 'UNCOMMON'; -$raritiesConversion{'R'} = 'RARE'; -$raritiesConversion{'M'} = 'MYTHIC'; - -my %mana; -$mana{'Black'} = '{B}'; -$mana{'Blue'} = '{U}'; -$mana{'Green'} = '{G}'; -$mana{'Red'} = '{R}'; -$mana{'White'} = '{W}'; -$mana{'Variable Colorless'} = '{X}'; -$mana{'White or Black'} = 'W\\\\B'; -$mana{'Green or White'} = 'G\\\\W'; -$mana{'Black or Green'} = 'B\\\\G'; -$mana{'Black or Red'} = 'B\\\\R'; -$mana{'Red or Green'} = 'R\\\\G'; - -my %manatocolor; -$manatocolor{'Black'} = " this.color.setBlack(true);"; -$manatocolor{'Blue'} = " this.color.setBlue(true);"; -$manatocolor{'Green'} = " this.color.setGreen(true);"; -$manatocolor{'Red'} = " this.color.setRed(true);"; -$manatocolor{'White'} = " this.color.setWhite(true);"; - -my %cardtypes; -$cardtypes{'Artifact'} = "CardType.ARTIFACT"; -$cardtypes{'Creature'} = "CardType.CREATURE"; -$cardtypes{'Instant'} = "CardType.INSTANT"; -$cardtypes{'Sorcery'} = "CardType.SORCERY"; - -my %normalid; - -print "Enter a card name: "; -my $cardname = ; -chomp $cardname; -my $finded = 0; - -open DATA, "< $datafile" or die "Can't open datafile: $!"; -while () { - my $str = $_; - my (undef, $name, $set, $rarity, $multiverse, $collector) = split("\\|"); - if ($cardname eq $name) { - die "can't find set: $set" unless defined $fulltoshort{$set}; - push(@sets, $fulltoshort{$set}); - $rarities{$fulltoshort{$set}} = $rarity; - $collectors{$fulltoshort{$set}} = $collector; - push(@multiverses, $multiverse); - $finded = 1; - } -} - -die "card not found" unless $finded; - -my $mech = WWW::Mechanize->new( autocheck => 1 ); -my $parser = HTML::TreeBuilder->new(); - -$ENV{'HTTP_PROXY'} = 'http://login:password@proxyserver:port'; -$mech->env_proxy(); - -$mech->get("http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=" . $multiverses[0] ); -print "card fetched\n"; - -my $template = Text::Template->new(SOURCE => 'cardclass.tmpl', DELIMITERS => [ '[=', '=]' ]); -my %vars; -$vars{'name'} = $cardname; -$cardname =~ s/[-\s\']//g; -$vars{'classname'} = $cardname; - - -$parser->parse($mech->content()); -my @divs = $parser->look_down('_tag', 'div'); -foreach my $div (@divs) { - if (defined($div->attr('id'))) { - my $id = $div->attr('id'); - if ($id =~m/textRow/) { - foreach my $sub ($div->look_down('_tag', 'div')) { - if (defined($sub->attr('class')) && $sub->attr('class') eq 'cardtextbox') { - push(@texts, $sub->as_text()); - } - } - } - if ($id =~m/typeRow/) { - my $typestring = ""; - my $subtype = ""; - foreach my $sub ($div->look_down('_tag', 'div')) { - if (defined($sub->attr('class')) && $sub->attr('class') eq 'value') { - my $type = $sub->as_text(); - chomp $type; - while ( $type =~ m/([a-zA-z]+)( )*/g ) { - push @types, $1; - if (exists($cardtypes{$1})) { - if (length($typestring) > 0) { - $typestring .= ", " . $cardtypes{$1}; - } else { - $typestring = $cardtypes{$1}; - } - } else { - $subtype .= " this.subtype.add(\"$1\");\n"; - } - } - } - } - $vars{'type'} = $typestring; - $vars{'subtype'} = $subtype; - } - if ($id =~m/manaRow/) { - my $findedcolors; - foreach my $sub ($div->look_down('_tag', 'img')) { - if (defined($sub->attr('alt'))) { - my $m = $sub->attr('alt'); - if ($m =~ /^-?\d/) { - $manacost .= "{" . $m . "}"; - } else { - die "unknown manacost: " . $m unless defined $mana{$m}; - $manacost .= $mana{$m}; - $findedcolors .= "\n" . $manatocolor{$m}; - } - } - } - $manacost =~ s/^\s*(\S*(?:\s+\S+)*)\s*$/$1/; - $vars{'manacost'} = $manacost; - $vars{'colors'} = $findedcolors; - print Dumper(%vars); - } - if ($id =~/ptRow/) { - foreach my $sub ($div->look_down('_tag', 'div')) { - if (defined($sub->attr('class')) && $sub->attr('class') eq 'value') { - my $str = $sub->as_text(); - $str =~s/\s//; - $str =~m/(.+)\/(.+)/; - $vars{'power'} = $1; - $vars{'toughness'} = $2; - } - } - } - if ($id =~m/currentSetSymbol/) { - my ($imgurl) = $div->look_down('_tag', 'img'); - $imgurl->attr('src') =~m/set=(\w+)\&.*rarity=(\w+)/; - my $multiverseid = $multiverses[0]; - die "can't find set conversion for $1, multiverse: $multiverseid" unless defined $wizardstous{$1}; - my $set = $wizardstous{$1}; - $normalid{$set} = $multiverseid; - } - if ($id =~m/otherSetsValue/) { - foreach my $sub ($div->look_down('_tag', 'a')) { - my $link = $sub->attr('href'); - $link =~m/multiverseid\=(\d+)/; - my $multiverseid = $1; - my ($imgurl) = $sub->look_down('_tag', 'img'); - $imgurl->attr('src') =~m/set=(\w+)\&.*rarity=(\w+)/; - die "can't find set conversion for $1, multiverse: $multiverseid" unless defined $wizardstous{$1}; - my $set = $wizardstous{$1}; - $normalid{$set} = $multiverseid; - } - } - } -} - - -for my $set (@sets) { - if (exists($knownSets{$set})) { - $vars{'longset'} = $knownSets{$set}; - $vars{'rarity'} = $raritiesConversion{$rarities{$set}}; - $vars{'collector'} = $collectors{$set}; - $vars{'setcode'} = $set; - my $result = $template->fill_in(HASH => \%vars); - if (defined($result)) { - my $filename = "../Mage.Sets/src/mage/sets/". $knownSets{$set} . "/" . $vars{'classname'} . ".java"; - if (-e $filename ) { - print "WARNING $filename already exists!\n"; - } else { - open CARD, "> $filename"; - print CARD $result; - close CARD; - } - } - } -} \ No newline at end of file diff --git a/Utils/gen-card.pl b/Utils/gen-card.pl index 2aca6e7129f..10e8ffc3cdb 100755 --- a/Utils/gen-card.pl +++ b/Utils/gen-card.pl @@ -1,451 +1,157 @@ -#!/usr/bin/perl -w - -use WWW::Mechanize; -use HTML::TreeBuilder; -use Text::Template; -use Data::Dumper; -use strict; - -sub getClassName { - my $string = $_[0]; - $string =~ s/\b(\w+)\b/ucfirst($1)/ge; - $string =~ s/[-,\s\']//g; - $string; -} - -my $datafile = "mtg-cards-data.txt"; - -my @sets; -my @collector; -my %rarities; -my %collectors; -my @multiverses; - -my $manacost = ""; -my $loyality = -1; -my $power = -1; -my $toughness = -1; -my @texts; -my @types; - -my %fulltoshort; - -$fulltoshort{'Tenth Edition'} = '10E'; -$fulltoshort{'Unlimited Edition'} = '2ED'; -$fulltoshort{'Revised Edition'} = '3ED'; -$fulltoshort{'Fourth Edition'} = '4ED'; -$fulltoshort{'Fifth Dawn'} = '5DN'; -$fulltoshort{'Fifth Edition'} = '5ED'; -$fulltoshort{'Classic Sixth Edition'} = '6ED'; -$fulltoshort{'Seventh Edition'} = '7ED'; -$fulltoshort{'Eighth Edition'} = '8ED'; -$fulltoshort{'Alliances'} = 'ALL'; -$fulltoshort{'Apocalypse'} = 'APC'; -$fulltoshort{'Alara Reborn'} = 'ARB'; -$fulltoshort{'Arabian Nights'} = 'ARN'; -$fulltoshort{'Anthologies'} = 'ATH'; -$fulltoshort{'Antiquities'} = 'ATQ'; -$fulltoshort{'Betrayers of Kamigawa'} = 'BOK'; -$fulltoshort{'Battle Royale Box Set'} = 'BRB'; -$fulltoshort{'Beatdown Box Set'} = 'BTD'; -$fulltoshort{'Champions of Kamigawa'} = 'CHK'; -$fulltoshort{'Chronicles'} = 'CHR'; -$fulltoshort{'Conflux'} = 'CON'; -$fulltoshort{'Coldsnap'} = 'CSP'; -$fulltoshort{'Darksteel'} = 'DST'; -$fulltoshort{'Dissension'} = 'DIS'; -$fulltoshort{'Deckmasters'} = 'DKM'; -$fulltoshort{'The Dark'} = 'DRK'; -$fulltoshort{'Darksteel'} = 'DST'; -$fulltoshort{'Duel Decks: Divine vs. Demonic'} = 'DVD'; -$fulltoshort{'Duel Decks: Elves vs. Goblins'} = 'EVG'; -$fulltoshort{'Duel Decks: Garruk vs. Liliana'} = 'GVL'; -$fulltoshort{'Duel Decks: Jace vs. Chandra'} = 'JVC'; -$fulltoshort{'Duel Decks: Phyrexia vs. the Coalition'} = 'PVC'; -$fulltoshort{'Eventide'} = 'EVE'; -$fulltoshort{'Exodus'} = 'EXO'; -$fulltoshort{'Fallen Empires'} = 'FEM'; -$fulltoshort{'Future Sight'} = 'FUT'; -$fulltoshort{'From the Vault: Dragons'} = 'FVD'; -$fulltoshort{'From the Vault: Exiled'} = 'FVE'; -$fulltoshort{'Guildpact'} = 'GPT'; -$fulltoshort{'Homelands'} = 'HML'; -$fulltoshort{'Planechase'} = 'HOP'; -$fulltoshort{'Ice Age'} = 'ICE'; -$fulltoshort{'Invasion'} = 'INV'; -$fulltoshort{'Judgment'} = 'JUD'; -$fulltoshort{'Limited Edition Alpha'} = 'LEA'; -$fulltoshort{'Limited Edition Beta'} = 'LEB'; -$fulltoshort{'Legends'} = 'LEG'; -$fulltoshort{'Legions'} = 'LGN'; -$fulltoshort{'Lorwyn'} = 'LRW'; -$fulltoshort{'Magic 2010'} = 'M10'; -$fulltoshort{'Magic 2011'} = 'M11'; -$fulltoshort{'Magic 2012'} = 'M12'; -$fulltoshort{'Masters Edition II'} = 'ME2'; -$fulltoshort{'Masters Edition III'} = 'ME3'; -$fulltoshort{'Masters Edition IV'} = 'ME4'; -$fulltoshort{'Masters Edition'} = 'MED'; -$fulltoshort{'Mirage'} = 'MIR'; -$fulltoshort{'Mercadian Masques'} = 'MMQ'; -$fulltoshort{'Morningtide'} = 'MOR'; -$fulltoshort{'Mirrodin'} = 'MRD'; -$fulltoshort{'Ninth Edition'} = '9ED'; -$fulltoshort{'Nemesis'} = 'NEM'; -$fulltoshort{'Odyssey'} = 'ODY'; -$fulltoshort{'Onslaught'} = 'ONS'; -$fulltoshort{'Portal Second Age'} = 'PO2'; -$fulltoshort{'Prophecy'} = 'PCY'; -$fulltoshort{'Planar Chaos'} = 'PLC'; -$fulltoshort{'Planeshift'} = 'PLS'; -$fulltoshort{'Portal'} = 'POR'; -$fulltoshort{'Portal Three Kingdoms'} = 'PTK'; -$fulltoshort{'Premium Deck Series: Fire and Lightning'} = 'PD2'; -$fulltoshort{'Premium Deck Series: Slivers'} = 'PDS'; -$fulltoshort{'Ravnica: City of Guilds'} = 'RAV'; -$fulltoshort{'Rise of the Eldrazi'} = 'ROE'; -$fulltoshort{'Starter 2000'} = 'S00'; -$fulltoshort{'Starter 1999'} = 'S99'; -$fulltoshort{'Scourge'} = 'SCG'; -$fulltoshort{'Shadowmoor'} = 'SHM'; -$fulltoshort{'Shards of Alara'} = 'ALA'; -$fulltoshort{'Saviors of Kamigawa'} = 'SOK'; -$fulltoshort{'Stronghold'} = 'STH'; -$fulltoshort{'Tempest'} = 'TMP'; -$fulltoshort{'Torment'} = 'TOR'; -$fulltoshort{'Time Spiral "Timeshifted"'} = 'TSB'; -$fulltoshort{'Time Spiral'} = 'TSP'; -$fulltoshort{'Urza\'s Destiny'} = 'UDS'; -$fulltoshort{'Unglued'} = 'UGL'; -$fulltoshort{'Urza\'s Legacy'} = 'ULG'; -$fulltoshort{'Unhinged'} = 'UNH'; -$fulltoshort{'Urza\'s Saga'} = 'USG'; -$fulltoshort{'Vanguard Set 1'} = 'VG1'; -$fulltoshort{'Vanguard Set 2'} = 'VG2'; -$fulltoshort{'Vanguard Set 3'} = 'VG3'; -$fulltoshort{'Vanguard Set 4'} = 'VG4'; -$fulltoshort{'MTGO Vanguard'} = 'VGO'; -$fulltoshort{'Visions'} = 'VIS'; -$fulltoshort{'Weatherlight'} = 'WTH'; -$fulltoshort{'Worldwake'} = 'WWK'; -$fulltoshort{'Zendikar'} = 'ZEN'; -$fulltoshort{'Archenemy'} = 'ARC'; -$fulltoshort{'Scars of Mirrodin'} = 'SOM'; -$fulltoshort{'From the Vault: Relics'} = 'FVR'; -$fulltoshort{'Duel Decks: Elspeth vs. Tezzeret'} = 'DDF'; -$fulltoshort{'Mirrodin Besieged'} = 'MBS'; -$fulltoshort{'New Phyrexia'} = 'NPH'; - -my %wizardstous; -$wizardstous{'6E'} = '6ED'; -$wizardstous{'7E'} = '7ED'; -$wizardstous{'8ED'} = '8ED'; -$wizardstous{'9ED'} = '9ED'; -$wizardstous{'10E'} = '10E'; -$wizardstous{'BD'} = 'BTD'; -$wizardstous{'DDD'} = 'GVL'; -$wizardstous{'CG'} = 'UDS'; -$wizardstous{'ST'} = 'STH'; -$wizardstous{'ONS'} = 'ONS'; -$wizardstous{'P3'} = 'S99'; -$wizardstous{'P4'} = 'S00'; -$wizardstous{'OD'} = 'ODY'; -$wizardstous{'M10'} = 'M10'; -$wizardstous{'M11'} = 'M11'; -$wizardstous{'M12'} = 'M12'; -$wizardstous{'LRW'} = 'LRW'; -$wizardstous{'DD2'} = 'JVC'; -$wizardstous{'TSB'} = 'TSB'; -$wizardstous{'ZEN'} = 'ZEN'; -$wizardstous{'5E'} = '5ED'; -$wizardstous{'IA'} = 'ICE'; -$wizardstous{'4E'} = '4ED'; -$wizardstous{'3E'} = '3ED'; -$wizardstous{'2U'} = '2ED'; -$wizardstous{'2E'} = 'LEB'; -$wizardstous{'1E'} = 'LEA'; -$wizardstous{'EVG'} = 'EVG'; -$wizardstous{'BR'} = 'BRB'; -$wizardstous{'ME2'} = 'ME2'; -$wizardstous{'ME3'} = 'ME3'; -$wizardstous{'ME4'} = 'ME4'; -$wizardstous{'HOP'} = 'HOP'; -$wizardstous{'PO'} = 'POR'; -$wizardstous{'P2'} = 'PO2'; -$wizardstous{'PK'} = 'PTK'; -$wizardstous{'MED'} = 'MED'; -$wizardstous{'EVE'} = 'EVE'; -$wizardstous{'MOR'} = 'MOR'; -$wizardstous{'RAV'} = 'RAV'; -$wizardstous{'SHM'} = 'SHM'; -$wizardstous{'MI'} = 'MIR'; -$wizardstous{'ARB'} = 'ARB'; -$wizardstous{'VI'} = 'VIS'; -$wizardstous{'DST'} = 'DST'; -$wizardstous{'TOR'} = 'TOR'; -$wizardstous{'DDC'} = 'DVD'; -$wizardstous{'AP'} = 'APC'; -$wizardstous{'CON'} = 'CON'; -$wizardstous{'ALA'} = 'ALA'; -$wizardstous{'DDE'} = 'PVC'; -$wizardstous{'JUD'} = 'JUD'; -$wizardstous{'WL'} = 'WTH'; -$wizardstous{'MRD'} = 'MRD'; -$wizardstous{'TE'} = 'TMP'; -$wizardstous{'DRB'} = 'FVD'; -$wizardstous{'PR'} = 'PCY'; -$wizardstous{'UZ'} = 'USG'; -$wizardstous{'IN'} = 'INV'; -$wizardstous{'FUT'} = 'FUT'; -$wizardstous{'TSP'} = 'TSP'; -$wizardstous{'CHK'} = 'CHK'; -$wizardstous{'EX'} = 'EXO'; -$wizardstous{'FE'} = 'FEM'; -$wizardstous{'PLC'} = 'PLC'; -$wizardstous{'CHK'} = 'CHK'; -$wizardstous{'ROE'} = 'ROE'; -$wizardstous{'5DN'} = '5DN'; -$wizardstous{'LE'} = 'LEG'; -$wizardstous{'CH'} = 'CHR'; -$wizardstous{'H09'} = 'PDS'; -$wizardstous{'MM'} = 'MMQ'; -$wizardstous{'GPT'} = 'GPT'; -$wizardstous{'GU'} = 'ULG'; -$wizardstous{'ARC'} = 'ARC'; -$wizardstous{'DIS'} = 'DIS'; -$wizardstous{'NE'} = 'NEM'; -$wizardstous{'PS'} = 'PLS'; -$wizardstous{'LGN'} = 'LGN'; -$wizardstous{'AN'} = 'ARN'; -$wizardstous{'WWK'} = 'WWK'; -$wizardstous{'SOM'} = 'SOM'; -$wizardstous{'V10'} = 'FVR'; -$wizardstous{'DDF'} = 'DDF'; -$wizardstous{'MBS'} = 'MBS'; -$wizardstous{'NPH'} = 'NPH'; -$wizardstous{'CMD'} = 'CMD'; -$wizardstous{'PD2'} = 'PD2'; - -my %knownSets; -$knownSets{'ARB'} = 'alarareborn'; -$knownSets{'APC'} = 'apocalypse'; -$knownSets{'CON'} = 'conflux'; -$knownSets{'DST'} = 'darksteel'; -$knownSets{'EVE'} = 'eventide'; -$knownSets{'M10'} = 'magic2010'; -$knownSets{'M11'} = 'magic2011'; -$knownSets{'M12'} = 'magic2012'; -$knownSets{'HOP'} = 'planechase'; -$knownSets{'RAV'} = 'ravnika'; -$knownSets{'ROE'} = 'riseoftheeldrazi'; -$knownSets{'ALA'} = 'shardsofalara'; -$knownSets{'10E'} = 'tenth'; -$knownSets{'WWK'} = 'worldwake'; -$knownSets{'ZEN'} = 'zendikar'; -$knownSets{'SOM'} = 'scarsofmirrodin'; -$knownSets{'GPT'} = 'guildpact'; -$knownSets{'DIS'} = 'dissension'; -$knownSets{'MRD'} = 'mirrodin'; -$knownSets{'DDF'} = 'elspethvstezzeret'; -$knownSets{'MBS'} = 'mirrodinbesieged'; -$knownSets{'NPH'} = 'newphyrexia'; -$knownSets{'TMP'} = 'tempest'; -$knownSets{'CHK'} = 'championsofkamigawa'; - -my %raritiesConversion; -$raritiesConversion{'C'} = 'COMMON'; -$raritiesConversion{'U'} = 'UNCOMMON'; -$raritiesConversion{'R'} = 'RARE'; -$raritiesConversion{'M'} = 'MYTHIC'; - -my %mana; -$mana{'Black'} = '{B}'; -$mana{'Blue'} = '{U}'; -$mana{'Green'} = '{G}'; -$mana{'Red'} = '{R}'; -$mana{'White'} = '{W}'; -$mana{'Variable Colorless'} = '{X}'; -$mana{'White or Black'} = '{W/B}'; -$mana{'Green or White'} = '{G/W}'; -$mana{'Black or Green'} = '{B/G}'; -$mana{'Black or Red'} = '{B/R}'; -$mana{'Blue or Red'} = '{U/R}'; -$mana{'Red or Green'} = '{R/G}'; -$mana{'Red or White'} = '{R/W}'; -$mana{'Green or Blue'} = '{B/G}'; -$mana{'Phyrexian Green'} = '{GP}'; -$mana{'Phyrexian Red'} = '{RP}'; -$mana{'Phyrexian Black'} = '{BP}'; -$mana{'Phyrexian Blue'} = '{UP}'; -$mana{'Phyrexian White'} = '{WP}'; - -my %manatocolor; -$manatocolor{'Black'} = " this.color.setBlack(true);"; -$manatocolor{'Blue'} = " this.color.setBlue(true);"; -$manatocolor{'Green'} = " this.color.setGreen(true);"; -$manatocolor{'Red'} = " this.color.setRed(true);"; -$manatocolor{'White'} = " this.color.setWhite(true);"; -$manatocolor{'Red or White'} = " this.color.setWhite(true);\n this.color.setRed(true);"; -$manatocolor{'Green or Blue'} = " this.color.setGreen(true);\n this.color.setBlue(true);"; -$manatocolor{'Phyrexian Green'} = " this.color.setGreen(true);"; -$manatocolor{'Phyrexian Red'} = " this.color.setRed(true);"; -$manatocolor{'Phyrexian Black'} = " this.color.setBlack(true);"; -$manatocolor{'Phyrexian Blue'} = " this.color.setBlue(true);"; -$manatocolor{'Phyrexian White'} = " this.color.setWhite(true);"; - -my %cardtypes; -$cardtypes{'Artifact'} = "CardType.ARTIFACT"; -$cardtypes{'Creature'} = "CardType.CREATURE"; -$cardtypes{'Enchantment'} = "CardType.ENCHANTMENT"; -$cardtypes{'Instant'} = "CardType.INSTANT"; -$cardtypes{'Land'} = "CardType.LAND"; -$cardtypes{'Sorcery'} = "CardType.SORCERY"; - -my %normalid; - -print "Enter a card name: "; -my $cardname = ; -chomp $cardname; -my $finded = 0; - -open DATA, "< $datafile" or die "Can't open datafile: $!"; -while () { - my $str = $_; - my (undef, $name, $set, $rarity, $multiverse, $collector) = split("\\|"); - if ($cardname eq $name) { - die "can't find set: $set" unless defined $fulltoshort{$set}; - push(@sets, $fulltoshort{$set}); - $rarities{$fulltoshort{$set}} = $rarity; - $collectors{$fulltoshort{$set}} = $collector; - push(@multiverses, $multiverse); - $finded = 1; - } -} - -die "card not found" unless $finded; - -my $mech = WWW::Mechanize->new( autocheck => 1 ); -my $parser = HTML::TreeBuilder->new(); - -$mech->get("http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=" . $multiverses[0] ); -print "card fetched\n"; - -my $template = Text::Template->new(SOURCE => 'cardclass.tmpl', DELIMITERS => [ '[=', '=]' ]); -my %vars; -$vars{'name'} = $cardname; -$vars{'classname'} = getClassName($cardname); - - -$parser->parse($mech->content()); -my @divs = $parser->look_down('_tag', 'div'); -foreach my $div (@divs) { - if (defined($div->attr('id'))) { - my $id = $div->attr('id'); - if ($id =~m/textRow/) { - foreach my $sub ($div->look_down('_tag', 'div')) { - if (defined($sub->attr('class')) && $sub->attr('class') eq 'cardtextbox') { - push(@texts, $sub->as_text()); - } - } - } - if ($id =~m/typeRow/) { - my $typestring = ""; - my $subtype = ""; - foreach my $sub ($div->look_down('_tag', 'div')) { - if (defined($sub->attr('class')) && $sub->attr('class') eq 'value') { - my $type = $sub->as_text(); - chomp $type; - while ( $type =~ m/([a-zA-z]+)( )*/g ) { - push @types, $1; - if (exists($cardtypes{$1})) { - if (length($typestring) > 0) { - $typestring .= ", " . $cardtypes{$1}; - } else { - $typestring = $cardtypes{$1}; - } - } else { - $subtype .= " this.subtype.add(\"$1\");\n"; - } - } - } - } - $vars{'type'} = $typestring; - $vars{'subtype'} = $subtype; - } - if ($id =~m/manaRow/) { - my $findedcolors; - foreach my $sub ($div->look_down('_tag', 'img')) { - if (defined($sub->attr('alt'))) { - my $m = $sub->attr('alt'); - if ($m =~ /^-?\d/) { - $manacost .= "{" . $m . "}"; - } else { - die "unknown manacost: " . $m unless defined $mana{$m}; - - $manacost .= $mana{$m}; - print "$m"; - print "$manatocolor{$m}"; - $findedcolors .= "\n" . $manatocolor{$m}; - } - } - } - $manacost =~ s/^\s*(\S*(?:\s+\S+)*)\s*$/$1/; - $vars{'manacost'} = $manacost; - $vars{'colors'} = $findedcolors; - print Dumper(%vars); - } - if ($id =~/ptRow/) { - foreach my $sub ($div->look_down('_tag', 'div')) { - if (defined($sub->attr('class')) && $sub->attr('class') eq 'value') { - my $str = $sub->as_text(); - $str =~s/\s//; - $str =~m/(.+)\/(.+)/; - $vars{'power'} = $1; - $vars{'toughness'} = $2; - } - } - } - if ($id =~m/currentSetSymbol/) { - print "*** " . $div->as_HTML(); - my ($imgurl) = $div->look_down('_tag', 'img'); - $imgurl->attr('src') =~m/set=(\w+)\&.*rarity=(\w+)/; - my $multiverseid = $multiverses[0]; - die "can't find set conversion for $1, multiverse: $multiverseid" unless defined $wizardstous{$1}; - my $set = $wizardstous{$1}; - $normalid{$set} = $multiverseid; - } - if ($id =~m/otherSetsValue/) { - foreach my $sub ($div->look_down('_tag', 'a')) { - my $link = $sub->attr('href'); - $link =~m/multiverseid\=(\d+)/; - my $multiverseid = $1; - my ($imgurl) = $sub->look_down('_tag', 'img'); - $imgurl->attr('src') =~m/set=(\w+)\&.*rarity=(\w+)/; - die "can't find set conversion for $1, multiverse: $multiverseid" unless defined $wizardstous{$1}; - my $set = $wizardstous{$1}; - $normalid{$set} = $multiverseid; - } - } - } -} - - -for my $set (@sets) { - if (exists($knownSets{$set})) { - $vars{'longset'} = $knownSets{$set}; - $vars{'rarity'} = $raritiesConversion{$rarities{$set}}; - $vars{'collector'} = $collectors{$set}; - $vars{'setcode'} = $set; - my $result = $template->fill_in(HASH => \%vars); - if (defined($result)) { - my $filename = "../Mage.Sets/src/mage/sets/". $knownSets{$set} . "/" . $vars{'classname'} . ".java"; - if (-e $filename ) { - print "WARNING $filename already exists!\n"; - } else { - open CARD, "> $filename"; - print CARD $result; - close CARD; - } - } - } -} \ No newline at end of file +#!/usr/bin/perl -w + +use Text::Template; +use strict; + + +my $authorFile = 'author.txt'; +my $dataFile = 'mtg-cards-data.txt'; +my $setsFile = 'mtg-sets-data.txt'; +my $knownSetsFile = 'known-sets.txt'; + + +my %cards; +my %sets; +my %knownSets; + +sub getClassName { + my $string = $_[0]; + $string =~ s/\b([\w']+)\b/ucfirst($1)/ge; + $string =~ s/[-,\s\']//g; + $string; +} + +my $author; +if (-e $authorFile) { + open (DATA, $authorFile); + $author = ; + close(DATA); +} else { + $author = 'anonymous'; +} + +open (DATA, $dataFile) || die "can't open $dataFile"; +while(my $line = ) { + my @data = split('\\|', $line); + $cards{$data[0]}{$data[1]} = \@data; +} +close(DATA); + +open (DATA, $setsFile) || die "can't open $setsFile"; +while(my $line = ) { + my @data = split('\\|', $line); + $sets{$data[0]}= $data[1]; +} +close(DATA); + +open (DATA, $knownSetsFile) || die "can't open $knownSetsFile"; +while(my $line = ) { + my @data = split('\\|', $line); + $knownSets{$data[0]}= $data[1]; +} +close(DATA); + +my %cardTypes; +$cardTypes{'Artifact'} = 'CardType.ARTIFACT'; +$cardTypes{'Creature'} = 'CardType.CREATURE'; +$cardTypes{'Enchantment'} = 'CardType.ENCHANTMENT'; +$cardTypes{'Instant'} = 'CardType.INSTANT'; +$cardTypes{'Land'} = 'CardType.LAND'; +$cardTypes{'Sorcery'} = 'CardType.SORCERY'; + +my %raritiesConversion; +$raritiesConversion{'C'} = 'COMMON'; +$raritiesConversion{'U'} = 'UNCOMMON'; +$raritiesConversion{'R'} = 'RARE'; +$raritiesConversion{'M'} = 'MYTHIC'; + +my %manaToColor; +$manaToColor{'B'} = 'Black'; +$manaToColor{'U'} = 'Blue'; +$manaToColor{'G'} = 'Green'; +$manaToColor{'R'} = 'Red'; +$manaToColor{'W'} = 'White'; + + +# Get card name +print 'Enter a card name: '; +my $cardName = ; +chomp $cardName; + +# Check if card is already implemented +foreach my $setName (keys %{$cards{$cardName}}) { + if (exists $knownSets{$setName}) { + my $fileName = "../Mage.Sets/src/mage/sets/" . $knownSets{$setName} . "/" . getClassName($cardName) . ".java"; + if(-e $fileName) { + die "$cardName is already implemented (set found: $setName).\n"; + } + } +} + +# Generate the cards +my $template = Text::Template->new(SOURCE => 'cardClass.tmpl', DELIMITERS => [ '[=', '=]' ]); +my $templateExtended = Text::Template->new(SOURCE => 'cardExtendedClass.tmpl', DELIMITERS => [ '[=', '=]' ]); +my %vars; + +$vars{'author'} = $author; +$vars{'name'} = $cardName; +$vars{'className'} = getClassName($cardName); + +print "Files generated:\n"; +my $baseSet = ''; +foreach my $setName (keys %{$cards{$cardName}}) { + if (exists $knownSets{$setName}) { + my $fileName = "../Mage.Sets/src/mage/sets/" . $knownSets{$setName} . "/" . getClassName($cardName) . ".java"; + my $result; + + $vars{'set'} = $knownSets{$setName}; + $vars{'expansionSetCode'} = $sets{$setName}; + $vars{'cardNumber'} = $cards{$cardName}{$setName}[2]; + $vars{'rarity'} = $raritiesConversion{$cards{$cardName}{$setName}[3]}; + + if (!$baseSet) { + $baseSet = $knownSets{$setName}; + $vars{'manaCost'} = $cards{$cardName}{$setName}[4]; + $vars{'power'} = $cards{$cardName}{$setName}[6]; + $vars{'toughness'} = $cards{$cardName}{$setName}[7]; + + my @types; + $vars{'subType'} = ''; + my $type = $cards{$cardName}{$setName}[5]; + while ($type =~ m/([a-zA-Z]+)( )*/g) { + if (exists($cardTypes{$1})) { + push(@types, $cardTypes{$1}); + } else { + if (@types) { + $vars{'subType'} .= " this.subtype.add(\"$1\");\n"; + } else { + $vars{'subType'} .= " this.supertype.add(\"$1\");\n"; + } + } + } + $vars{'type'} = join(', ', @types); + + my %colors; + while ($vars{'manaCost'} =~ m/([BUGRW])/g) { + $colors{$manaToColor{$1}} = 1; + } + + $vars{'colors'} = ''; + foreach my $color (keys %colors) { + $vars{'colors'} .= "\n this.color.set$color(true);"; + } + + $vars{'baseSet'} = $vars{'set'}; + $vars{'baseClassName'} = $vars{'className'}; + + $result = $template->fill_in(HASH => \%vars); + } else { + $result = $templateExtended->fill_in(HASH => \%vars); + } + open CARD, "> $fileName"; + print CARD $result; + close CARD; + + print "$fileName\n"; + } +} diff --git a/Utils/gen-collector-to-mtgo.pl b/Utils/gen-collector-to-mtgo.pl deleted file mode 100644 index 425ff2b9545..00000000000 --- a/Utils/gen-collector-to-mtgo.pl +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/perl -w - -use strict; - -opendir SETS, "sets/"; - -my $out; - -open $out, "> ImagesMapping.java"; - -print_header(); - -while (readdir SETS) { - my $filename = $_; - if ($filename =~m/s?(.+).txt/) { - my $set = uc($1); - print "processing $set\n"; - print_set_start($set); - open FILE, "< sets/$filename"; - my $lastcollector = -1; - my $lastimage = -1; - while () { - if (m/image:(\d+)/) { - $lastimage = $1; - } elsif (m/card No:(\d+)/) { - $lastcollector = $1; - } elsif (m/------------------------------/) { - if ($lastcollector != -1) { - print_card($lastcollector, $lastimage); - } - } - } - } -} - -print_footer(); -close $out; - -sub print_header { - print $out "// WARNING! THIS FILE ARE GENERATED BY A SCRIPT\n"; - print $out "package mage.client.cards;\n\n"; - print $out "import java.util.HashMap;\n"; - print $out "public class ImagesMapping {\n"; - print $out "\tpublic final static HashMap> mapping = new HashMap>();\n\n"; - print $out "\tstatic {\n\t\tHashMap set;\n"; -} - -sub print_set_start { - my ($set) = @_; - print $out "\t\tset = new HashMap();\n\t\tmapping.put(\"$set\", set);\n"; -} - -sub print_card { - my ($cid, $mtgo) = @_; - print $out "\t\tset.put($cid, \"" . $mtgo . "_typ_reg_sty_010.jpg\");\n"; -} - -sub print_footer { - print $out "\t}\n}"; -} \ No newline at end of file diff --git a/Utils/gen-existing-cards-by-set.pl b/Utils/gen-existing-cards-by-set.pl index 9044fde139b..681a8f0bd7d 100644 --- a/Utils/gen-existing-cards-by-set.pl +++ b/Utils/gen-existing-cards-by-set.pl @@ -3,6 +3,8 @@ use Text::Template; use strict; + +my $authorFile = 'author.txt'; my $dataFile = "mtg-cards-data.txt"; my $setsFile = "mtg-sets-data.txt"; my $knownSetsFile = "known-sets.txt"; @@ -10,6 +12,7 @@ my $knownSetsFile = "known-sets.txt"; my %cards; my %sets; my %knownSets; + my @setCards; print "Enter a set name: "; @@ -20,50 +23,60 @@ my $template = Text::Template->new(SOURCE => 'cardExtendedClass.tmpl', DELIMITER sub getClassName { my $string = $_[0]; - $string =~ s/\b(\w+)\b/ucfirst($1)/ge; + $string =~ s/\b([\w']+)\b/ucfirst($1)/ge; $string =~ s/[-,\s\']//g; $string; } -open (DATA, $dataFile) || die "can't open $dataFile"; -while(my $line = ) { - my @cardData = split('\\|', $line); - - $cards{$cardData[1]}{$cardData[2]} = \@cardData; - - if ($cardData[2] eq $setName) { - push(@setCards, $cardData[1]); - } +my $author; +if (-e $authorFile) { + open (DATA, $authorFile); + $author = ; + close(DATA); +} else { + $author = 'anonymous'; } +open (DATA, $dataFile) || die "can't open $dataFile"; +while(my $line = ) { + my @data = split('\\|', $line); + $cards{$data[0]}{$data[1]} = \@data; + + if ($data[1] eq $setName) { + push(@setCards, $data[0]); + } +} close(DATA); open (DATA, $setsFile) || die "can't open $setsFile"; while(my $line = ) { - my @setData = split('\\|', $line); - $sets{$setData[0]}= \@setData; + my @data = split('\\|', $line); + $sets{$data[0]}= $data[1]; } close(DATA); open (DATA, $knownSetsFile) || die "can't open $knownSetsFile"; while(my $line = ) { - my @setData = split('\\|', $line); - $knownSets{$setData[0]}= $setData[2]; + my @data = split('\\|', $line); + $knownSets{$data[0]}= $data[1]; } close(DATA); +# Generate the cards my %vars; +$vars{'author'} = $author; $vars{'set'} = $knownSets{$setName}; -$vars{'expansionSetCode'} = $sets{$setName}[1]; +$vars{'expansionSetCode'} = $sets{$setName}; +print "Files generated:\n"; foreach my $cardName (@setCards) { my $className = getClassName($cardName); my $currentFileName = "../Mage.Sets/src/mage/sets/" . $knownSets{$setName} . "/" . $className . ".java"; if(! -e $currentFileName) { $vars{'className'} = $className; - $vars{'cardNumber'} = $cards{$cardName}{$setName}[5]; + $vars{'cardNumber'} = $cards{$cardName}{$setName}[2]; my $found = 0; foreach my $key (keys %{$cards{$cardName}}) { @@ -93,4 +106,4 @@ foreach my $cardName (@setCards) { } } } -} \ No newline at end of file +} diff --git a/Utils/gen-mtg-data.php b/Utils/gen-mtg-data.php deleted file mode 100644 index 561eb11ae3f..00000000000 --- a/Utils/gen-mtg-data.php +++ /dev/null @@ -1,26 +0,0 @@ -(\d*?)<\/td>(.*?)Details.aspx\?multiverseid=(\d+)\"(.*?);\">(.*?)<\/a>(.*?)(.{1})<\/td>(.*?)<\/td>/s", $data, $matches); -preg_match_all("/Details.aspx?\?multiverseid=(\d+)/", $data, $ids); -$filename = 'mtg-cards-data.txt'; -$file = fopen($filename, 'w'); -$data = array(); -$i = 0; -foreach($matches[3] as $id){ - $data[$i] = array(str_replace("\r\n", '', $matches[5][$i]), str_replace("\r\n", '', $matches[8][$i]), $matches[7][$i], $matches[3][$i], $matches[1][$i]); - @fwrite($file, "|".$data[$i][0]."|".$data[$i][1]."|".$data[$i][2]."|".$data[$i][3]."|".$data[$i][4]."|\n"); - $i++; - $found = array_search($id, $ids[1]); - if($found === FALSE) - echo ''.$id."\n"; - else - unset($ids[1][$found]); - -} -fclose($file); - -print_r($ids[1]); -?> diff --git a/Utils/known-sets.txt b/Utils/known-sets.txt index e24b9dfa0a6..ad3809f3b69 100644 --- a/Utils/known-sets.txt +++ b/Utils/known-sets.txt @@ -1,24 +1,24 @@ -Alara Reborn|ARB|alarareborn| -Apocalypse|APC|apocalypse| -Conflux|CON|conflux| -Darksteel|DST|darksteel| -Eventide|EVE|eventide| -Magic 2010|M10|magic2010| -Magic 2011|M11|magic2011| -Magic 2012|M12|magic2012| -Planechase|HOP|planechase| -Ravnica: City of Guilds|RAV|ravnika| -Rise of the Eldrazi|ROE|riseoftheeldrazi| -Shards of Alara|ALA|shardsofalara| -Tenth Edition|10E|tenth| -Worldwake|WWK|worldwake| -Zendikar|ZEN|zendikar| -Scars of Mirrodin|SOM|scarsofmirrodin| -Guildpact|GPT|guildpact| -Dissension|DIS|dissension| -Mirrodin|MRD|mirrodin| -Duel Decks: Elspeth vs. Tezzeret|DDF|elspethvstezzeret| -Mirrodin Besieged|MBS|mirrodinbesieged| -New Phyrexia|NPH|newphyrexia| -Tempest|TMP|tempest| -Champions of Kamigawa|CHK|championsofkamigawa| \ No newline at end of file +Tenth Edition|tenth| +Magic 2010|magic2010| +Magic 2011|magic2011| +Magic 2012|magic2012| +Planechase|planechase| +Duel Decks: Elspeth vs. Tezzeret|elspethvstezzeret| +Tempest|tempest| +Apocalypse|apocalypse| +Mirrodin|mirrodin| +Darksteel|darksteel| +Champions of Kamigawa|championsofkamigawa| +Ravnica: City of Guilds|ravnika| +Guildpact|guildpact| +Dissension|dissension| +Eventide|eventide| +Shards of Alara|shardsofalara| +Conflux|conflux| +Alara Reborn|alarareborn| +Zendikar|zendikar| +Worldwake|worldwake| +Rise of the Eldrazi|riseoftheeldrazi| +Scars of Mirrodin|scarsofmirrodin| +Mirrodin Besieged|mirrodinbesieged| +New Phyrexia|newphyrexia| \ No newline at end of file diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index 80d7665410e..fc9c350079a 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -1,19515 +1,19515 @@ -|Ankh of Mishra|Limited Edition Alpha|R|1|| -|Basalt Monolith|Limited Edition Alpha|U|2|| -|Black Lotus|Limited Edition Alpha|R|3|| -|Black Vise|Limited Edition Alpha|U|4|| -|Celestial Prism|Limited Edition Alpha|U|5|| -|Chaos Orb|Limited Edition Alpha|R|6|| -|Clockwork Beast|Limited Edition Alpha|R|7|| -|Conservator|Limited Edition Alpha|U|8|| -|Copper Tablet|Limited Edition Alpha|U|9|| -|Crystal Rod|Limited Edition Alpha|U|10|| -|Cyclopean Tomb|Limited Edition Alpha|R|11|| -|Dingus Egg|Limited Edition Alpha|R|12|| -|Disrupting Scepter|Limited Edition Alpha|R|13|| -|Forcefield|Limited Edition Alpha|R|14|| -|Gauntlet of Might|Limited Edition Alpha|R|15|| -|Glasses of Urza|Limited Edition Alpha|U|16|| -|Helm of Chatzuk|Limited Edition Alpha|R|17|| -|Howling Mine|Limited Edition Alpha|R|18|| -|Icy Manipulator|Limited Edition Alpha|U|19|| -|Illusionary Mask|Limited Edition Alpha|R|20|| -|Iron Star|Limited Edition Alpha|U|21|| -|Ivory Cup|Limited Edition Alpha|U|22|| -|Jade Monolith|Limited Edition Alpha|R|23|| -|Jade Statue|Limited Edition Alpha|U|24|| -|Jayemdae Tome|Limited Edition Alpha|R|25|| -|Juggernaut|Limited Edition Alpha|U|26|| -|Kormus Bell|Limited Edition Alpha|R|27|| -|Library of Leng|Limited Edition Alpha|U|28|| -|Living Wall|Limited Edition Alpha|U|29|| -|Mana Vault|Limited Edition Alpha|R|30|| -|Meekstone|Limited Edition Alpha|R|31|| -|Mox Emerald|Limited Edition Alpha|R|32|| -|Mox Jet|Limited Edition Alpha|R|33|| -|Mox Pearl|Limited Edition Alpha|R|34|| -|Mox Ruby|Limited Edition Alpha|R|35|| -|Mox Sapphire|Limited Edition Alpha|R|36|| -|Nevinyrral's Disk|Limited Edition Alpha|R|37|| -|Obsianus Golem|Limited Edition Alpha|U|38|| -|Rod of Ruin|Limited Edition Alpha|U|39|| -|Sol Ring|Limited Edition Alpha|U|40|| -|Soul Net|Limited Edition Alpha|U|41|| -|Sunglasses of Urza|Limited Edition Alpha|R|42|| -|The Hive|Limited Edition Alpha|R|43|| -|Throne of Bone|Limited Edition Alpha|U|44|| -|Time Vault|Limited Edition Alpha|R|45|| -|Winter Orb|Limited Edition Alpha|R|46|| -|Wooden Sphere|Limited Edition Alpha|U|47|| -|Animate Dead|Limited Edition Alpha|U|48|| -|Bad Moon|Limited Edition Alpha|R|49|| -|Black Knight|Limited Edition Alpha|U|50|| -|Bog Wraith|Limited Edition Alpha|U|51|| -|Contract from Below|Limited Edition Alpha|R|52|| -|Cursed Land|Limited Edition Alpha|U|53|| -|Dark Ritual|Limited Edition Alpha|C|54|| -|Darkpact|Limited Edition Alpha|R|55|| -|Deathgrip|Limited Edition Alpha|U|56|| -|Deathlace|Limited Edition Alpha|R|57|| -|Demonic Attorney|Limited Edition Alpha|R|58|| -|Demonic Hordes|Limited Edition Alpha|R|59|| -|Demonic Tutor|Limited Edition Alpha|U|60|| -|Drain Life|Limited Edition Alpha|C|61|| -|Drudge Skeletons|Limited Edition Alpha|C|62|| -|Evil Presence|Limited Edition Alpha|U|63|| -|Fear|Limited Edition Alpha|C|64|| -|Frozen Shade|Limited Edition Alpha|C|65|| -|Gloom|Limited Edition Alpha|U|66|| -|Howl from Beyond|Limited Edition Alpha|C|67|| -|Hypnotic Specter|Limited Edition Alpha|U|68|| -|Lich|Limited Edition Alpha|R|69|| -|Lord of the Pit|Limited Edition Alpha|R|70|| -|Mind Twist|Limited Edition Alpha|R|71|| -|Nether Shadow|Limited Edition Alpha|R|72|| -|Nettling Imp|Limited Edition Alpha|U|73|| -|Nightmare|Limited Edition Alpha|R|74|| -|Paralyze|Limited Edition Alpha|C|75|| -|Pestilence|Limited Edition Alpha|C|76|| -|Plague Rats|Limited Edition Alpha|C|77|| -|Raise Dead|Limited Edition Alpha|C|78|| -|Royal Assassin|Limited Edition Alpha|R|79|| -|Sacrifice|Limited Edition Alpha|U|80|| -|Scathe Zombies|Limited Edition Alpha|C|81|| -|Scavenging Ghoul|Limited Edition Alpha|U|82|| -|Sengir Vampire|Limited Edition Alpha|U|83|| -|Simulacrum|Limited Edition Alpha|U|84|| -|Sinkhole|Limited Edition Alpha|C|85|| -|Terror|Limited Edition Alpha|C|86|| -|Unholy Strength|Limited Edition Alpha|C|87|| -|Wall of Bone|Limited Edition Alpha|U|88|| -|Warp Artifact|Limited Edition Alpha|R|89|| -|Weakness|Limited Edition Alpha|C|90|| -|Will-o'-the-Wisp|Limited Edition Alpha|R|91|| -|Word of Command|Limited Edition Alpha|R|92|| -|Zombie Master|Limited Edition Alpha|R|93|| -|Air Elemental|Limited Edition Alpha|U|94|| -|Ancestral Recall|Limited Edition Alpha|R|95|| -|Animate Artifact|Limited Edition Alpha|U|96|| -|Blue Elemental Blast|Limited Edition Alpha|C|97|| -|Braingeyser|Limited Edition Alpha|R|98|| -|Clone|Limited Edition Alpha|U|99|| -|Control Magic|Limited Edition Alpha|U|100|| -|Copy Artifact|Limited Edition Alpha|R|101|| -|Counterspell|Limited Edition Alpha|U|102|| -|Creature Bond|Limited Edition Alpha|C|103|| -|Drain Power|Limited Edition Alpha|R|104|| -|Feedback|Limited Edition Alpha|U|105|| -|Flight|Limited Edition Alpha|C|106|| -|Invisibility|Limited Edition Alpha|C|107|| -|Jump|Limited Edition Alpha|C|108|| -|Lifetap|Limited Edition Alpha|U|109|| -|Lord of Atlantis|Limited Edition Alpha|R|110|| -|Magical Hack|Limited Edition Alpha|R|111|| -|Mahamoti Djinn|Limited Edition Alpha|R|112|| -|Mana Short|Limited Edition Alpha|R|113|| -|Merfolk of the Pearl Trident|Limited Edition Alpha|C|114|| -|Phantasmal Forces|Limited Edition Alpha|U|115|| -|Phantasmal Terrain|Limited Edition Alpha|C|116|| -|Phantom Monster|Limited Edition Alpha|U|117|| -|Pirate Ship|Limited Edition Alpha|R|118|| -|Power Leak|Limited Edition Alpha|C|119|| -|Power Sink|Limited Edition Alpha|C|120|| -|Prodigal Sorcerer|Limited Edition Alpha|C|121|| -|Psionic Blast|Limited Edition Alpha|U|122|| -|Psychic Venom|Limited Edition Alpha|C|123|| -|Sea Serpent|Limited Edition Alpha|C|124|| -|Siren's Call|Limited Edition Alpha|U|125|| -|Sleight of Mind|Limited Edition Alpha|R|126|| -|Spell Blast|Limited Edition Alpha|C|127|| -|Stasis|Limited Edition Alpha|R|128|| -|Steal Artifact|Limited Edition Alpha|U|129|| -|Thoughtlace|Limited Edition Alpha|R|130|| -|Time Walk|Limited Edition Alpha|R|131|| -|Timetwister|Limited Edition Alpha|R|132|| -|Twiddle|Limited Edition Alpha|C|133|| -|Unsummon|Limited Edition Alpha|C|134|| -|Vesuvan Doppelganger|Limited Edition Alpha|R|135|| -|Volcanic Eruption|Limited Edition Alpha|R|136|| -|Wall of Air|Limited Edition Alpha|U|137|| -|Wall of Water|Limited Edition Alpha|U|138|| -|Water Elemental|Limited Edition Alpha|U|139|| -|Aspect of Wolf|Limited Edition Alpha|R|140|| -|Berserk|Limited Edition Alpha|U|141|| -|Birds of Paradise|Limited Edition Alpha|R|142|| -|Camouflage|Limited Edition Alpha|U|143|| -|Channel|Limited Edition Alpha|U|144|| -|Cockatrice|Limited Edition Alpha|R|145|| -|Craw Wurm|Limited Edition Alpha|C|146|| -|Elvish Archers|Limited Edition Alpha|R|147|| -|Fastbond|Limited Edition Alpha|R|148|| -|Fog|Limited Edition Alpha|C|149|| -|Force of Nature|Limited Edition Alpha|R|150|| -|Fungusaur|Limited Edition Alpha|R|151|| -|Gaea's Liege|Limited Edition Alpha|R|152|| -|Giant Growth|Limited Edition Alpha|C|153|| -|Giant Spider|Limited Edition Alpha|C|154|| -|Grizzly Bears|Limited Edition Alpha|C|155|| -|Hurricane|Limited Edition Alpha|U|156|| -|Ice Storm|Limited Edition Alpha|U|157|| -|Instill Energy|Limited Edition Alpha|U|158|| -|Ironroot Treefolk|Limited Edition Alpha|C|159|| -|Kudzu|Limited Edition Alpha|R|160|| -|Ley Druid|Limited Edition Alpha|U|161|| -|Lifeforce|Limited Edition Alpha|U|162|| -|Lifelace|Limited Edition Alpha|R|163|| -|Living Artifact|Limited Edition Alpha|R|164|| -|Living Lands|Limited Edition Alpha|R|165|| -|Llanowar Elves|Limited Edition Alpha|C|166|| -|Lure|Limited Edition Alpha|U|167|| -|Natural Selection|Limited Edition Alpha|R|168|| -|Regeneration|Limited Edition Alpha|C|169|| -|Regrowth|Limited Edition Alpha|U|170|| -|Scryb Sprites|Limited Edition Alpha|C|171|| -|Shanodin Dryads|Limited Edition Alpha|C|172|| -|Stream of Life|Limited Edition Alpha|C|173|| -|Thicket Basilisk|Limited Edition Alpha|U|174|| -|Timber Wolves|Limited Edition Alpha|R|175|| -|Tranquility|Limited Edition Alpha|C|176|| -|Tsunami|Limited Edition Alpha|U|177|| -|Verduran Enchantress|Limited Edition Alpha|R|178|| -|Wall of Brambles|Limited Edition Alpha|U|179|| -|Wall of Ice|Limited Edition Alpha|U|180|| -|Wall of Wood|Limited Edition Alpha|C|181|| -|Wanderlust|Limited Edition Alpha|U|182|| -|War Mammoth|Limited Edition Alpha|C|183|| -|Web|Limited Edition Alpha|R|184|| -|Wild Growth|Limited Edition Alpha|C|185|| -|Burrowing|Limited Edition Alpha|U|186|| -|Chaoslace|Limited Edition Alpha|R|187|| -|Disintegrate|Limited Edition Alpha|C|188|| -|Dragon Whelp|Limited Edition Alpha|U|189|| -|Dwarven Demolition Team|Limited Edition Alpha|U|190|| -|Dwarven Warriors|Limited Edition Alpha|C|191|| -|Earth Elemental|Limited Edition Alpha|U|192|| -|Earthbind|Limited Edition Alpha|C|193|| -|Earthquake|Limited Edition Alpha|R|194|| -|False Orders|Limited Edition Alpha|C|195|| -|Fire Elemental|Limited Edition Alpha|U|196|| -|Fireball|Limited Edition Alpha|C|197|| -|Firebreathing|Limited Edition Alpha|C|198|| -|Flashfires|Limited Edition Alpha|U|199|| -|Fork|Limited Edition Alpha|R|200|| -|Goblin Balloon Brigade|Limited Edition Alpha|U|201|| -|Goblin King|Limited Edition Alpha|R|202|| -|Granite Gargoyle|Limited Edition Alpha|R|203|| -|Gray Ogre|Limited Edition Alpha|C|204|| -|Hill Giant|Limited Edition Alpha|C|205|| -|Hurloon Minotaur|Limited Edition Alpha|C|206|| -|Ironclaw Orcs|Limited Edition Alpha|C|207|| -|Keldon Warlord|Limited Edition Alpha|U|208|| -|Lightning Bolt|Limited Edition Alpha|C|209|| -|Mana Flare|Limited Edition Alpha|R|210|| -|Manabarbs|Limited Edition Alpha|R|211|| -|Mons's Goblin Raiders|Limited Edition Alpha|C|212|| -|Orcish Artillery|Limited Edition Alpha|U|213|| -|Orcish Oriflamme|Limited Edition Alpha|U|214|| -|Power Surge|Limited Edition Alpha|R|215|| -|Raging River|Limited Edition Alpha|R|216|| -|Red Elemental Blast|Limited Edition Alpha|C|217|| -|Roc of Kher Ridges|Limited Edition Alpha|R|218|| -|Rock Hydra|Limited Edition Alpha|R|219|| -|Sedge Troll|Limited Edition Alpha|R|220|| -|Shatter|Limited Edition Alpha|C|221|| -|Shivan Dragon|Limited Edition Alpha|R|222|| -|Smoke|Limited Edition Alpha|R|223|| -|Stone Giant|Limited Edition Alpha|U|224|| -|Stone Rain|Limited Edition Alpha|C|225|| -|Tunnel|Limited Edition Alpha|U|226|| -|Two-Headed Giant of Foriys|Limited Edition Alpha|R|227|| -|Uthden Troll|Limited Edition Alpha|U|228|| -|Wall of Fire|Limited Edition Alpha|U|229|| -|Wall of Stone|Limited Edition Alpha|U|230|| -|Wheel of Fortune|Limited Edition Alpha|R|231|| -|Animate Wall|Limited Edition Alpha|R|232|| -|Armageddon|Limited Edition Alpha|R|233|| -|Balance|Limited Edition Alpha|R|234|| -|Benalish Hero|Limited Edition Alpha|C|235|| -|Black Ward|Limited Edition Alpha|U|236|| -|Blaze of Glory|Limited Edition Alpha|R|237|| -|Blessing|Limited Edition Alpha|R|238|| -|Blue Ward|Limited Edition Alpha|U|239|| -|Castle|Limited Edition Alpha|U|240|| -|Circle of Protection: Blue|Limited Edition Alpha|C|241|| -|Circle of Protection: Green|Limited Edition Alpha|C|242|| -|Circle of Protection: Red|Limited Edition Alpha|C|243|| -|Circle of Protection: White|Limited Edition Alpha|C|244|| -|Consecrate Land|Limited Edition Alpha|U|245|| -|Conversion|Limited Edition Alpha|U|246|| -|Crusade|Limited Edition Alpha|R|247|| -|Death Ward|Limited Edition Alpha|C|248|| -|Disenchant|Limited Edition Alpha|C|249|| -|Farmstead|Limited Edition Alpha|R|250|| -|Green Ward|Limited Edition Alpha|U|251|| -|Guardian Angel|Limited Edition Alpha|C|252|| -|Healing Salve|Limited Edition Alpha|C|253|| -|Holy Armor|Limited Edition Alpha|C|254|| -|Holy Strength|Limited Edition Alpha|C|255|| -|Island Sanctuary|Limited Edition Alpha|R|256|| -|Karma|Limited Edition Alpha|U|257|| -|Lance|Limited Edition Alpha|U|258|| -|Mesa Pegasus|Limited Edition Alpha|C|259|| -|Northern Paladin|Limited Edition Alpha|R|260|| -|Pearled Unicorn|Limited Edition Alpha|C|261|| -|Personal Incarnation|Limited Edition Alpha|R|262|| -|Purelace|Limited Edition Alpha|R|263|| -|Red Ward|Limited Edition Alpha|U|264|| -|Resurrection|Limited Edition Alpha|U|265|| -|Reverse Damage|Limited Edition Alpha|R|266|| -|Righteousness|Limited Edition Alpha|R|267|| -|Samite Healer|Limited Edition Alpha|C|268|| -|Savannah Lions|Limited Edition Alpha|R|269|| -|Serra Angel|Limited Edition Alpha|U|270|| -|Swords to Plowshares|Limited Edition Alpha|U|271|| -|Veteran Bodyguard|Limited Edition Alpha|R|272|| -|Wall of Swords|Limited Edition Alpha|U|273|| -|White Knight|Limited Edition Alpha|U|274|| -|White Ward|Limited Edition Alpha|U|275|| -|Wrath of God|Limited Edition Alpha|R|276|| -|Swamp|Limited Edition Alpha|L|277|| -|Swamp|Limited Edition Alpha|L|278|| -|Badlands|Limited Edition Alpha|R|279|| -|Bayou|Limited Edition Alpha|R|280|| -|Plateau|Limited Edition Alpha|R|281|| -|Savannah|Limited Edition Alpha|R|282|| -|Scrubland|Limited Edition Alpha|R|283|| -|Taiga|Limited Edition Alpha|R|284|| -|Tropical Island|Limited Edition Alpha|R|285|| -|Tundra|Limited Edition Alpha|R|286|| -|Underground Sea|Limited Edition Alpha|R|287|| -|Forest|Limited Edition Alpha|L|288|| -|Forest|Limited Edition Alpha|L|289|| -|Mountain|Limited Edition Alpha|L|290|| -|Mountain|Limited Edition Alpha|L|291|| -|Island|Limited Edition Alpha|L|292|| -|Island|Limited Edition Alpha|L|293|| -|Plains|Limited Edition Alpha|L|294|| -|Plains|Limited Edition Alpha|L|295|| -|Ankh of Mishra|Limited Edition Beta|R|296|| -|Basalt Monolith|Limited Edition Beta|U|297|| -|Black Lotus|Limited Edition Beta|R|298|| -|Black Vise|Limited Edition Beta|U|299|| -|Celestial Prism|Limited Edition Beta|U|300|| -|Chaos Orb|Limited Edition Beta|R|301|| -|Clockwork Beast|Limited Edition Beta|R|302|| -|Conservator|Limited Edition Beta|U|303|| -|Copper Tablet|Limited Edition Beta|U|304|| -|Crystal Rod|Limited Edition Beta|U|305|| -|Cyclopean Tomb|Limited Edition Beta|R|306|| -|Dingus Egg|Limited Edition Beta|R|307|| -|Disrupting Scepter|Limited Edition Beta|R|308|| -|Forcefield|Limited Edition Beta|R|309|| -|Gauntlet of Might|Limited Edition Beta|R|310|| -|Glasses of Urza|Limited Edition Beta|U|311|| -|Helm of Chatzuk|Limited Edition Beta|R|312|| -|Howling Mine|Limited Edition Beta|R|313|| -|Icy Manipulator|Limited Edition Beta|U|314|| -|Illusionary Mask|Limited Edition Beta|R|315|| -|Iron Star|Limited Edition Beta|U|316|| -|Ivory Cup|Limited Edition Beta|U|317|| -|Jade Monolith|Limited Edition Beta|R|318|| -|Jade Statue|Limited Edition Beta|U|319|| -|Jayemdae Tome|Limited Edition Beta|R|320|| -|Juggernaut|Limited Edition Beta|U|321|| -|Kormus Bell|Limited Edition Beta|R|322|| -|Library of Leng|Limited Edition Beta|U|323|| -|Living Wall|Limited Edition Beta|U|324|| -|Mana Vault|Limited Edition Beta|R|325|| -|Meekstone|Limited Edition Beta|R|326|| -|Mox Emerald|Limited Edition Beta|R|327|| -|Mox Jet|Limited Edition Beta|R|328|| -|Mox Pearl|Limited Edition Beta|R|329|| -|Mox Ruby|Limited Edition Beta|R|330|| -|Mox Sapphire|Limited Edition Beta|R|331|| -|Nevinyrral's Disk|Limited Edition Beta|R|332|| -|Obsianus Golem|Limited Edition Beta|U|333|| -|Rod of Ruin|Limited Edition Beta|U|334|| -|Sol Ring|Limited Edition Beta|U|335|| -|Soul Net|Limited Edition Beta|U|336|| -|Sunglasses of Urza|Limited Edition Beta|R|337|| -|The Hive|Limited Edition Beta|R|338|| -|Throne of Bone|Limited Edition Beta|U|339|| -|Time Vault|Limited Edition Beta|R|340|| -|Winter Orb|Limited Edition Beta|R|341|| -|Wooden Sphere|Limited Edition Beta|U|342|| -|Animate Dead|Limited Edition Beta|U|343|| -|Bad Moon|Limited Edition Beta|R|344|| -|Black Knight|Limited Edition Beta|U|345|| -|Bog Wraith|Limited Edition Beta|U|346|| -|Contract from Below|Limited Edition Beta|R|347|| -|Cursed Land|Limited Edition Beta|U|348|| -|Dark Ritual|Limited Edition Beta|C|349|| -|Darkpact|Limited Edition Beta|R|350|| -|Deathgrip|Limited Edition Beta|U|351|| -|Deathlace|Limited Edition Beta|R|352|| -|Demonic Attorney|Limited Edition Beta|R|353|| -|Demonic Hordes|Limited Edition Beta|R|354|| -|Demonic Tutor|Limited Edition Beta|U|355|| -|Drain Life|Limited Edition Beta|C|356|| -|Drudge Skeletons|Limited Edition Beta|C|357|| -|Evil Presence|Limited Edition Beta|U|358|| -|Fear|Limited Edition Beta|C|359|| -|Frozen Shade|Limited Edition Beta|C|360|| -|Gloom|Limited Edition Beta|U|361|| -|Howl from Beyond|Limited Edition Beta|C|362|| -|Hypnotic Specter|Limited Edition Beta|U|363|| -|Lich|Limited Edition Beta|R|364|| -|Lord of the Pit|Limited Edition Beta|R|365|| -|Mind Twist|Limited Edition Beta|R|366|| -|Nether Shadow|Limited Edition Beta|R|367|| -|Nettling Imp|Limited Edition Beta|U|368|| -|Nightmare|Limited Edition Beta|R|369|| -|Paralyze|Limited Edition Beta|C|370|| -|Pestilence|Limited Edition Beta|C|371|| -|Plague Rats|Limited Edition Beta|C|372|| -|Raise Dead|Limited Edition Beta|C|373|| -|Royal Assassin|Limited Edition Beta|R|374|| -|Sacrifice|Limited Edition Beta|U|375|| -|Scathe Zombies|Limited Edition Beta|C|376|| -|Scavenging Ghoul|Limited Edition Beta|U|377|| -|Sengir Vampire|Limited Edition Beta|U|378|| -|Simulacrum|Limited Edition Beta|U|379|| -|Sinkhole|Limited Edition Beta|C|380|| -|Terror|Limited Edition Beta|C|381|| -|Unholy Strength|Limited Edition Beta|C|382|| -|Wall of Bone|Limited Edition Beta|U|383|| -|Warp Artifact|Limited Edition Beta|R|384|| -|Weakness|Limited Edition Beta|C|385|| -|Will-o'-the-Wisp|Limited Edition Beta|R|386|| -|Word of Command|Limited Edition Beta|R|387|| -|Zombie Master|Limited Edition Beta|R|388|| -|Air Elemental|Limited Edition Beta|U|389|| -|Ancestral Recall|Limited Edition Beta|R|390|| -|Animate Artifact|Limited Edition Beta|U|391|| -|Blue Elemental Blast|Limited Edition Beta|C|392|| -|Braingeyser|Limited Edition Beta|R|393|| -|Clone|Limited Edition Beta|U|394|| -|Control Magic|Limited Edition Beta|U|395|| -|Copy Artifact|Limited Edition Beta|R|396|| -|Counterspell|Limited Edition Beta|U|397|| -|Creature Bond|Limited Edition Beta|C|398|| -|Drain Power|Limited Edition Beta|R|399|| -|Feedback|Limited Edition Beta|U|400|| -|Flight|Limited Edition Beta|C|401|| -|Invisibility|Limited Edition Beta|C|402|| -|Jump|Limited Edition Beta|C|403|| -|Lifetap|Limited Edition Beta|U|404|| -|Lord of Atlantis|Limited Edition Beta|R|405|| -|Magical Hack|Limited Edition Beta|R|406|| -|Mahamoti Djinn|Limited Edition Beta|R|407|| -|Mana Short|Limited Edition Beta|R|408|| -|Merfolk of the Pearl Trident|Limited Edition Beta|C|409|| -|Phantasmal Forces|Limited Edition Beta|U|410|| -|Phantasmal Terrain|Limited Edition Beta|C|411|| -|Phantom Monster|Limited Edition Beta|U|412|| -|Pirate Ship|Limited Edition Beta|R|413|| -|Power Leak|Limited Edition Beta|C|414|| -|Power Sink|Limited Edition Beta|C|415|| -|Prodigal Sorcerer|Limited Edition Beta|C|416|| -|Psionic Blast|Limited Edition Beta|U|417|| -|Psychic Venom|Limited Edition Beta|C|418|| -|Sea Serpent|Limited Edition Beta|C|419|| -|Siren's Call|Limited Edition Beta|U|420|| -|Sleight of Mind|Limited Edition Beta|R|421|| -|Spell Blast|Limited Edition Beta|C|422|| -|Stasis|Limited Edition Beta|R|423|| -|Steal Artifact|Limited Edition Beta|U|424|| -|Thoughtlace|Limited Edition Beta|R|425|| -|Time Walk|Limited Edition Beta|R|426|| -|Timetwister|Limited Edition Beta|R|427|| -|Twiddle|Limited Edition Beta|C|428|| -|Unsummon|Limited Edition Beta|C|429|| -|Vesuvan Doppelganger|Limited Edition Beta|R|430|| -|Volcanic Eruption|Limited Edition Beta|R|431|| -|Wall of Air|Limited Edition Beta|U|432|| -|Wall of Water|Limited Edition Beta|U|433|| -|Water Elemental|Limited Edition Beta|U|434|| -|Aspect of Wolf|Limited Edition Beta|R|435|| -|Berserk|Limited Edition Beta|U|436|| -|Birds of Paradise|Limited Edition Beta|R|437|| -|Camouflage|Limited Edition Beta|U|438|| -|Channel|Limited Edition Beta|U|439|| -|Cockatrice|Limited Edition Beta|R|440|| -|Craw Wurm|Limited Edition Beta|C|441|| -|Elvish Archers|Limited Edition Beta|R|442|| -|Fastbond|Limited Edition Beta|R|443|| -|Fog|Limited Edition Beta|C|444|| -|Force of Nature|Limited Edition Beta|R|445|| -|Fungusaur|Limited Edition Beta|R|446|| -|Gaea's Liege|Limited Edition Beta|R|447|| -|Giant Growth|Limited Edition Beta|C|448|| -|Giant Spider|Limited Edition Beta|C|449|| -|Grizzly Bears|Limited Edition Beta|C|450|| -|Hurricane|Limited Edition Beta|U|451|| -|Ice Storm|Limited Edition Beta|U|452|| -|Instill Energy|Limited Edition Beta|U|453|| -|Ironroot Treefolk|Limited Edition Beta|C|454|| -|Kudzu|Limited Edition Beta|R|455|| -|Ley Druid|Limited Edition Beta|U|456|| -|Lifeforce|Limited Edition Beta|U|457|| -|Lifelace|Limited Edition Beta|R|458|| -|Living Artifact|Limited Edition Beta|R|459|| -|Living Lands|Limited Edition Beta|R|460|| -|Llanowar Elves|Limited Edition Beta|C|461|| -|Lure|Limited Edition Beta|U|462|| -|Natural Selection|Limited Edition Beta|R|463|| -|Regeneration|Limited Edition Beta|C|464|| -|Regrowth|Limited Edition Beta|U|465|| -|Scryb Sprites|Limited Edition Beta|C|466|| -|Shanodin Dryads|Limited Edition Beta|C|467|| -|Stream of Life|Limited Edition Beta|C|468|| -|Thicket Basilisk|Limited Edition Beta|U|469|| -|Timber Wolves|Limited Edition Beta|R|470|| -|Tranquility|Limited Edition Beta|C|471|| -|Tsunami|Limited Edition Beta|U|472|| -|Verduran Enchantress|Limited Edition Beta|R|473|| -|Wall of Brambles|Limited Edition Beta|U|474|| -|Wall of Ice|Limited Edition Beta|U|475|| -|Wall of Wood|Limited Edition Beta|C|476|| -|Wanderlust|Limited Edition Beta|U|477|| -|War Mammoth|Limited Edition Beta|C|478|| -|Web|Limited Edition Beta|R|479|| -|Wild Growth|Limited Edition Beta|C|480|| -|Burrowing|Limited Edition Beta|U|481|| -|Chaoslace|Limited Edition Beta|R|482|| -|Disintegrate|Limited Edition Beta|C|483|| -|Dragon Whelp|Limited Edition Beta|U|484|| -|Dwarven Demolition Team|Limited Edition Beta|U|485|| -|Dwarven Warriors|Limited Edition Beta|C|486|| -|Earth Elemental|Limited Edition Beta|U|487|| -|Earthbind|Limited Edition Beta|C|488|| -|Earthquake|Limited Edition Beta|R|489|| -|False Orders|Limited Edition Beta|C|490|| -|Fire Elemental|Limited Edition Beta|U|491|| -|Fireball|Limited Edition Beta|C|492|| -|Firebreathing|Limited Edition Beta|C|493|| -|Flashfires|Limited Edition Beta|U|494|| -|Fork|Limited Edition Beta|R|495|| -|Goblin Balloon Brigade|Limited Edition Beta|U|496|| -|Goblin King|Limited Edition Beta|R|497|| -|Granite Gargoyle|Limited Edition Beta|R|498|| -|Gray Ogre|Limited Edition Beta|C|499|| -|Hill Giant|Limited Edition Beta|C|500|| -|Hurloon Minotaur|Limited Edition Beta|C|501|| -|Ironclaw Orcs|Limited Edition Beta|C|502|| -|Keldon Warlord|Limited Edition Beta|U|503|| -|Lightning Bolt|Limited Edition Beta|C|504|| -|Mana Flare|Limited Edition Beta|R|505|| -|Manabarbs|Limited Edition Beta|R|506|| -|Mons's Goblin Raiders|Limited Edition Beta|C|507|| -|Orcish Artillery|Limited Edition Beta|U|508|| -|Orcish Oriflamme|Limited Edition Beta|U|509|| -|Power Surge|Limited Edition Beta|R|510|| -|Raging River|Limited Edition Beta|R|511|| -|Red Elemental Blast|Limited Edition Beta|C|512|| -|Roc of Kher Ridges|Limited Edition Beta|R|513|| -|Rock Hydra|Limited Edition Beta|R|514|| -|Sedge Troll|Limited Edition Beta|R|515|| -|Shatter|Limited Edition Beta|C|516|| -|Shivan Dragon|Limited Edition Beta|R|517|| -|Smoke|Limited Edition Beta|R|518|| -|Stone Giant|Limited Edition Beta|U|519|| -|Stone Rain|Limited Edition Beta|C|520|| -|Tunnel|Limited Edition Beta|U|521|| -|Two-Headed Giant of Foriys|Limited Edition Beta|R|522|| -|Uthden Troll|Limited Edition Beta|U|523|| -|Wall of Fire|Limited Edition Beta|U|524|| -|Wall of Stone|Limited Edition Beta|U|525|| -|Wheel of Fortune|Limited Edition Beta|R|526|| -|Animate Wall|Limited Edition Beta|R|527|| -|Armageddon|Limited Edition Beta|R|528|| -|Balance|Limited Edition Beta|R|529|| -|Benalish Hero|Limited Edition Beta|C|530|| -|Black Ward|Limited Edition Beta|U|531|| -|Blaze of Glory|Limited Edition Beta|R|532|| -|Blessing|Limited Edition Beta|R|533|| -|Blue Ward|Limited Edition Beta|U|534|| -|Castle|Limited Edition Beta|U|535|| -|Circle of Protection: Black|Limited Edition Beta|C|536|| -|Circle of Protection: Blue|Limited Edition Beta|C|537|| -|Circle of Protection: Green|Limited Edition Beta|C|538|| -|Circle of Protection: Red|Limited Edition Beta|C|539|| -|Circle of Protection: White|Limited Edition Beta|C|540|| -|Consecrate Land|Limited Edition Beta|U|541|| -|Conversion|Limited Edition Beta|U|542|| -|Crusade|Limited Edition Beta|R|543|| -|Death Ward|Limited Edition Beta|C|544|| -|Disenchant|Limited Edition Beta|C|545|| -|Farmstead|Limited Edition Beta|R|546|| -|Green Ward|Limited Edition Beta|U|547|| -|Guardian Angel|Limited Edition Beta|C|548|| -|Healing Salve|Limited Edition Beta|C|549|| -|Holy Armor|Limited Edition Beta|C|550|| -|Holy Strength|Limited Edition Beta|C|551|| -|Island Sanctuary|Limited Edition Beta|R|552|| -|Karma|Limited Edition Beta|U|553|| -|Lance|Limited Edition Beta|U|554|| -|Mesa Pegasus|Limited Edition Beta|C|555|| -|Northern Paladin|Limited Edition Beta|R|556|| -|Pearled Unicorn|Limited Edition Beta|C|557|| -|Personal Incarnation|Limited Edition Beta|R|558|| -|Purelace|Limited Edition Beta|R|559|| -|Red Ward|Limited Edition Beta|U|560|| -|Resurrection|Limited Edition Beta|U|561|| -|Reverse Damage|Limited Edition Beta|R|562|| -|Righteousness|Limited Edition Beta|R|563|| -|Samite Healer|Limited Edition Beta|C|564|| -|Savannah Lions|Limited Edition Beta|R|565|| -|Serra Angel|Limited Edition Beta|U|566|| -|Swords to Plowshares|Limited Edition Beta|U|567|| -|Veteran Bodyguard|Limited Edition Beta|R|568|| -|Wall of Swords|Limited Edition Beta|U|569|| -|White Knight|Limited Edition Beta|U|570|| -|White Ward|Limited Edition Beta|U|571|| -|Wrath of God|Limited Edition Beta|R|572|| -|Swamp|Limited Edition Beta|L|573|| -|Swamp|Limited Edition Beta|L|574|| -|Swamp|Limited Edition Beta|L|575|| -|Badlands|Limited Edition Beta|R|576|| -|Bayou|Limited Edition Beta|R|577|| -|Plateau|Limited Edition Beta|R|578|| -|Savannah|Limited Edition Beta|R|579|| -|Scrubland|Limited Edition Beta|R|580|| -|Taiga|Limited Edition Beta|R|581|| -|Tropical Island|Limited Edition Beta|R|582|| -|Tundra|Limited Edition Beta|R|583|| -|Underground Sea|Limited Edition Beta|R|584|| -|Volcanic Island|Limited Edition Beta|R|585|| -|Forest|Limited Edition Beta|L|586|| -|Forest|Limited Edition Beta|L|587|| -|Forest|Limited Edition Beta|L|588|| -|Mountain|Limited Edition Beta|L|589|| -|Mountain|Limited Edition Beta|L|590|| -|Mountain|Limited Edition Beta|L|591|| -|Island|Limited Edition Beta|L|592|| -|Island|Limited Edition Beta|L|593|| -|Island|Limited Edition Beta|L|594|| -|Plains|Limited Edition Beta|L|595|| -|Plains|Limited Edition Beta|L|596|| -|Plains|Limited Edition Beta|L|597|| -|Ankh of Mishra|Unlimited Edition|R|598|| -|Basalt Monolith|Unlimited Edition|U|599|| -|Black Lotus|Unlimited Edition|R|600|| -|Black Vise|Unlimited Edition|U|601|| -|Celestial Prism|Unlimited Edition|U|602|| -|Chaos Orb|Unlimited Edition|R|603|| -|Clockwork Beast|Unlimited Edition|R|604|| -|Conservator|Unlimited Edition|U|605|| -|Copper Tablet|Unlimited Edition|U|606|| -|Crystal Rod|Unlimited Edition|U|607|| -|Cyclopean Tomb|Unlimited Edition|R|608|| -|Dingus Egg|Unlimited Edition|R|609|| -|Disrupting Scepter|Unlimited Edition|R|610|| -|Forcefield|Unlimited Edition|R|611|| -|Gauntlet of Might|Unlimited Edition|R|612|| -|Glasses of Urza|Unlimited Edition|U|613|| -|Helm of Chatzuk|Unlimited Edition|R|614|| -|Howling Mine|Unlimited Edition|R|615|| -|Icy Manipulator|Unlimited Edition|U|616|| -|Illusionary Mask|Unlimited Edition|R|617|| -|Iron Star|Unlimited Edition|U|618|| -|Ivory Cup|Unlimited Edition|U|619|| -|Jade Monolith|Unlimited Edition|R|620|| -|Jade Statue|Unlimited Edition|U|621|| -|Jayemdae Tome|Unlimited Edition|R|622|| -|Juggernaut|Unlimited Edition|U|623|| -|Kormus Bell|Unlimited Edition|R|624|| -|Library of Leng|Unlimited Edition|U|625|| -|Living Wall|Unlimited Edition|U|626|| -|Mana Vault|Unlimited Edition|R|627|| -|Meekstone|Unlimited Edition|R|628|| -|Mox Emerald|Unlimited Edition|R|629|| -|Mox Jet|Unlimited Edition|R|630|| -|Mox Pearl|Unlimited Edition|R|631|| -|Mox Ruby|Unlimited Edition|R|632|| -|Mox Sapphire|Unlimited Edition|R|633|| -|Nevinyrral's Disk|Unlimited Edition|R|634|| -|Obsianus Golem|Unlimited Edition|U|635|| -|Rod of Ruin|Unlimited Edition|U|636|| -|Sol Ring|Unlimited Edition|U|637|| -|Soul Net|Unlimited Edition|U|638|| -|Sunglasses of Urza|Unlimited Edition|R|639|| -|The Hive|Unlimited Edition|R|640|| -|Throne of Bone|Unlimited Edition|U|641|| -|Time Vault|Unlimited Edition|R|642|| -|Winter Orb|Unlimited Edition|R|643|| -|Wooden Sphere|Unlimited Edition|U|644|| -|Animate Dead|Unlimited Edition|U|645|| -|Bad Moon|Unlimited Edition|R|646|| -|Black Knight|Unlimited Edition|U|647|| -|Bog Wraith|Unlimited Edition|U|648|| -|Contract from Below|Unlimited Edition|R|649|| -|Cursed Land|Unlimited Edition|U|650|| -|Dark Ritual|Unlimited Edition|C|651|| -|Darkpact|Unlimited Edition|R|652|| -|Deathgrip|Unlimited Edition|U|653|| -|Deathlace|Unlimited Edition|R|654|| -|Demonic Attorney|Unlimited Edition|R|655|| -|Demonic Hordes|Unlimited Edition|R|656|| -|Demonic Tutor|Unlimited Edition|U|657|| -|Drain Life|Unlimited Edition|C|658|| -|Drudge Skeletons|Unlimited Edition|C|659|| -|Evil Presence|Unlimited Edition|U|660|| -|Fear|Unlimited Edition|C|661|| -|Frozen Shade|Unlimited Edition|C|662|| -|Gloom|Unlimited Edition|U|663|| -|Howl from Beyond|Unlimited Edition|C|664|| -|Hypnotic Specter|Unlimited Edition|U|665|| -|Lich|Unlimited Edition|R|666|| -|Lord of the Pit|Unlimited Edition|R|667|| -|Mind Twist|Unlimited Edition|R|668|| -|Nether Shadow|Unlimited Edition|R|669|| -|Nettling Imp|Unlimited Edition|U|670|| -|Nightmare|Unlimited Edition|R|671|| -|Paralyze|Unlimited Edition|C|672|| -|Pestilence|Unlimited Edition|C|673|| -|Plague Rats|Unlimited Edition|C|674|| -|Raise Dead|Unlimited Edition|C|675|| -|Royal Assassin|Unlimited Edition|R|676|| -|Sacrifice|Unlimited Edition|U|677|| -|Scathe Zombies|Unlimited Edition|C|678|| -|Scavenging Ghoul|Unlimited Edition|U|679|| -|Sengir Vampire|Unlimited Edition|U|680|| -|Simulacrum|Unlimited Edition|U|681|| -|Sinkhole|Unlimited Edition|C|682|| -|Terror|Unlimited Edition|C|683|| -|Unholy Strength|Unlimited Edition|C|684|| -|Wall of Bone|Unlimited Edition|U|685|| -|Warp Artifact|Unlimited Edition|R|686|| -|Weakness|Unlimited Edition|C|687|| -|Will-o'-the-Wisp|Unlimited Edition|R|688|| -|Word of Command|Unlimited Edition|R|689|| -|Zombie Master|Unlimited Edition|R|690|| -|Air Elemental|Unlimited Edition|U|691|| -|Ancestral Recall|Unlimited Edition|R|692|| -|Animate Artifact|Unlimited Edition|U|693|| -|Blue Elemental Blast|Unlimited Edition|C|694|| -|Braingeyser|Unlimited Edition|R|695|| -|Clone|Unlimited Edition|U|696|| -|Control Magic|Unlimited Edition|U|697|| -|Copy Artifact|Unlimited Edition|R|698|| -|Counterspell|Unlimited Edition|U|699|| -|Creature Bond|Unlimited Edition|C|700|| -|Drain Power|Unlimited Edition|R|701|| -|Feedback|Unlimited Edition|U|702|| -|Flight|Unlimited Edition|C|703|| -|Invisibility|Unlimited Edition|C|704|| -|Jump|Unlimited Edition|C|705|| -|Lifetap|Unlimited Edition|U|706|| -|Lord of Atlantis|Unlimited Edition|R|707|| -|Magical Hack|Unlimited Edition|R|708|| -|Mahamoti Djinn|Unlimited Edition|R|709|| -|Mana Short|Unlimited Edition|R|710|| -|Merfolk of the Pearl Trident|Unlimited Edition|C|711|| -|Phantasmal Forces|Unlimited Edition|U|712|| -|Phantasmal Terrain|Unlimited Edition|C|713|| -|Phantom Monster|Unlimited Edition|U|714|| -|Pirate Ship|Unlimited Edition|R|715|| -|Power Leak|Unlimited Edition|C|716|| -|Power Sink|Unlimited Edition|C|717|| -|Prodigal Sorcerer|Unlimited Edition|C|718|| -|Psionic Blast|Unlimited Edition|U|719|| -|Psychic Venom|Unlimited Edition|C|720|| -|Sea Serpent|Unlimited Edition|C|721|| -|Siren's Call|Unlimited Edition|U|722|| -|Sleight of Mind|Unlimited Edition|R|723|| -|Spell Blast|Unlimited Edition|C|724|| -|Stasis|Unlimited Edition|R|725|| -|Steal Artifact|Unlimited Edition|U|726|| -|Thoughtlace|Unlimited Edition|R|727|| -|Time Walk|Unlimited Edition|R|728|| -|Timetwister|Unlimited Edition|R|729|| -|Twiddle|Unlimited Edition|C|730|| -|Unsummon|Unlimited Edition|C|731|| -|Vesuvan Doppelganger|Unlimited Edition|R|732|| -|Volcanic Eruption|Unlimited Edition|R|733|| -|Wall of Air|Unlimited Edition|U|734|| -|Wall of Water|Unlimited Edition|U|735|| -|Water Elemental|Unlimited Edition|U|736|| -|Aspect of Wolf|Unlimited Edition|R|737|| -|Berserk|Unlimited Edition|U|738|| -|Birds of Paradise|Unlimited Edition|R|739|| -|Camouflage|Unlimited Edition|U|740|| -|Channel|Unlimited Edition|U|741|| -|Cockatrice|Unlimited Edition|R|742|| -|Craw Wurm|Unlimited Edition|C|743|| -|Elvish Archers|Unlimited Edition|R|744|| -|Fastbond|Unlimited Edition|R|745|| -|Fog|Unlimited Edition|C|746|| -|Force of Nature|Unlimited Edition|R|747|| -|Fungusaur|Unlimited Edition|R|748|| -|Gaea's Liege|Unlimited Edition|R|749|| -|Giant Growth|Unlimited Edition|C|750|| -|Giant Spider|Unlimited Edition|C|751|| -|Grizzly Bears|Unlimited Edition|C|752|| -|Hurricane|Unlimited Edition|U|753|| -|Ice Storm|Unlimited Edition|U|754|| -|Instill Energy|Unlimited Edition|U|755|| -|Ironroot Treefolk|Unlimited Edition|C|756|| -|Kudzu|Unlimited Edition|R|757|| -|Ley Druid|Unlimited Edition|U|758|| -|Lifeforce|Unlimited Edition|U|759|| -|Lifelace|Unlimited Edition|R|760|| -|Living Artifact|Unlimited Edition|R|761|| -|Living Lands|Unlimited Edition|R|762|| -|Llanowar Elves|Unlimited Edition|C|763|| -|Lure|Unlimited Edition|U|764|| -|Natural Selection|Unlimited Edition|R|765|| -|Regeneration|Unlimited Edition|C|766|| -|Regrowth|Unlimited Edition|U|767|| -|Scryb Sprites|Unlimited Edition|C|768|| -|Shanodin Dryads|Unlimited Edition|C|769|| -|Stream of Life|Unlimited Edition|C|770|| -|Thicket Basilisk|Unlimited Edition|U|771|| -|Timber Wolves|Unlimited Edition|R|772|| -|Tranquility|Unlimited Edition|C|773|| -|Tsunami|Unlimited Edition|U|774|| -|Verduran Enchantress|Unlimited Edition|R|775|| -|Wall of Brambles|Unlimited Edition|U|776|| -|Wall of Ice|Unlimited Edition|U|777|| -|Wall of Wood|Unlimited Edition|C|778|| -|Wanderlust|Unlimited Edition|U|779|| -|War Mammoth|Unlimited Edition|C|780|| -|Web|Unlimited Edition|R|781|| -|Wild Growth|Unlimited Edition|C|782|| -|Burrowing|Unlimited Edition|U|783|| -|Chaoslace|Unlimited Edition|R|784|| -|Disintegrate|Unlimited Edition|C|785|| -|Dragon Whelp|Unlimited Edition|U|786|| -|Dwarven Demolition Team|Unlimited Edition|U|787|| -|Dwarven Warriors|Unlimited Edition|C|788|| -|Earth Elemental|Unlimited Edition|U|789|| -|Earthbind|Unlimited Edition|C|790|| -|Earthquake|Unlimited Edition|R|791|| -|False Orders|Unlimited Edition|C|792|| -|Fire Elemental|Unlimited Edition|U|793|| -|Fireball|Unlimited Edition|C|794|| -|Firebreathing|Unlimited Edition|C|795|| -|Flashfires|Unlimited Edition|U|796|| -|Fork|Unlimited Edition|R|797|| -|Goblin Balloon Brigade|Unlimited Edition|U|798|| -|Goblin King|Unlimited Edition|R|799|| -|Granite Gargoyle|Unlimited Edition|R|800|| -|Gray Ogre|Unlimited Edition|C|801|| -|Hill Giant|Unlimited Edition|C|802|| -|Hurloon Minotaur|Unlimited Edition|C|803|| -|Ironclaw Orcs|Unlimited Edition|C|804|| -|Keldon Warlord|Unlimited Edition|U|805|| -|Lightning Bolt|Unlimited Edition|C|806|| -|Mana Flare|Unlimited Edition|R|807|| -|Manabarbs|Unlimited Edition|R|808|| -|Mons's Goblin Raiders|Unlimited Edition|C|809|| -|Orcish Artillery|Unlimited Edition|U|810|| -|Orcish Oriflamme|Unlimited Edition|U|811|| -|Power Surge|Unlimited Edition|R|812|| -|Raging River|Unlimited Edition|R|813|| -|Red Elemental Blast|Unlimited Edition|C|814|| -|Roc of Kher Ridges|Unlimited Edition|R|815|| -|Rock Hydra|Unlimited Edition|R|816|| -|Sedge Troll|Unlimited Edition|R|817|| -|Shatter|Unlimited Edition|C|818|| -|Shivan Dragon|Unlimited Edition|R|819|| -|Smoke|Unlimited Edition|R|820|| -|Stone Giant|Unlimited Edition|U|821|| -|Stone Rain|Unlimited Edition|C|822|| -|Tunnel|Unlimited Edition|U|823|| -|Two-Headed Giant of Foriys|Unlimited Edition|R|824|| -|Uthden Troll|Unlimited Edition|U|825|| -|Wall of Fire|Unlimited Edition|U|826|| -|Wall of Stone|Unlimited Edition|U|827|| -|Wheel of Fortune|Unlimited Edition|R|828|| -|Animate Wall|Unlimited Edition|R|829|| -|Armageddon|Unlimited Edition|R|830|| -|Balance|Unlimited Edition|R|831|| -|Benalish Hero|Unlimited Edition|C|832|| -|Black Ward|Unlimited Edition|U|833|| -|Blaze of Glory|Unlimited Edition|R|834|| -|Blessing|Unlimited Edition|R|835|| -|Blue Ward|Unlimited Edition|U|836|| -|Castle|Unlimited Edition|U|837|| -|Circle of Protection: Black|Unlimited Edition|C|838|| -|Circle of Protection: Blue|Unlimited Edition|C|839|| -|Circle of Protection: Green|Unlimited Edition|C|840|| -|Circle of Protection: Red|Unlimited Edition|C|841|| -|Circle of Protection: White|Unlimited Edition|C|842|| -|Consecrate Land|Unlimited Edition|U|843|| -|Conversion|Unlimited Edition|U|844|| -|Crusade|Unlimited Edition|R|845|| -|Death Ward|Unlimited Edition|C|846|| -|Disenchant|Unlimited Edition|C|847|| -|Farmstead|Unlimited Edition|R|848|| -|Green Ward|Unlimited Edition|U|849|| -|Guardian Angel|Unlimited Edition|C|850|| -|Healing Salve|Unlimited Edition|C|851|| -|Holy Armor|Unlimited Edition|C|852|| -|Holy Strength|Unlimited Edition|C|853|| -|Island Sanctuary|Unlimited Edition|R|854|| -|Karma|Unlimited Edition|U|855|| -|Lance|Unlimited Edition|U|856|| -|Mesa Pegasus|Unlimited Edition|C|857|| -|Northern Paladin|Unlimited Edition|R|858|| -|Pearled Unicorn|Unlimited Edition|C|859|| -|Personal Incarnation|Unlimited Edition|R|860|| -|Purelace|Unlimited Edition|R|861|| -|Red Ward|Unlimited Edition|U|862|| -|Resurrection|Unlimited Edition|U|863|| -|Reverse Damage|Unlimited Edition|R|864|| -|Righteousness|Unlimited Edition|R|865|| -|Samite Healer|Unlimited Edition|C|866|| -|Savannah Lions|Unlimited Edition|R|867|| -|Serra Angel|Unlimited Edition|U|868|| -|Swords to Plowshares|Unlimited Edition|U|869|| -|Veteran Bodyguard|Unlimited Edition|R|870|| -|Wall of Swords|Unlimited Edition|U|871|| -|White Knight|Unlimited Edition|U|872|| -|White Ward|Unlimited Edition|U|873|| -|Wrath of God|Unlimited Edition|R|874|| -|Swamp|Unlimited Edition|L|875|| -|Swamp|Unlimited Edition|L|876|| -|Swamp|Unlimited Edition|L|877|| -|Badlands|Unlimited Edition|R|878|| -|Bayou|Unlimited Edition|R|879|| -|Plateau|Unlimited Edition|R|880|| -|Savannah|Unlimited Edition|R|881|| -|Scrubland|Unlimited Edition|R|882|| -|Taiga|Unlimited Edition|R|883|| -|Tropical Island|Unlimited Edition|R|884|| -|Tundra|Unlimited Edition|R|885|| -|Underground Sea|Unlimited Edition|R|886|| -|Volcanic Island|Unlimited Edition|R|887|| -|Forest|Unlimited Edition|L|888|| -|Forest|Unlimited Edition|L|889|| -|Forest|Unlimited Edition|L|890|| -|Mountain|Unlimited Edition|L|891|| -|Mountain|Unlimited Edition|L|892|| -|Mountain|Unlimited Edition|L|893|| -|Island|Unlimited Edition|L|894|| -|Island|Unlimited Edition|L|895|| -|Island|Unlimited Edition|L|896|| -|Plains|Unlimited Edition|L|897|| -|Plains|Unlimited Edition|L|898|| -|Plains|Unlimited Edition|L|899|| -|Aladdin's Lamp|Arabian Nights|R|900|| -|Aladdin's Ring|Arabian Nights|R|901|| -|Bottle of Suleiman|Arabian Nights|R|902|| -|Brass Man|Arabian Nights|U|903|| -|City in a Bottle|Arabian Nights|R|904|| -|Dancing Scimitar|Arabian Nights|R|905|| -|Ebony Horse|Arabian Nights|R|906|| -|Flying Carpet|Arabian Nights|U|907|| -|Jandor's Ring|Arabian Nights|R|908|| -|Jandor's Saddlebags|Arabian Nights|R|909|| -|Jeweled Bird|Arabian Nights|U|910|| -|Pyramids|Arabian Nights|R|911|| -|Ring of Ma'rϋf|Arabian Nights|R|912|| -|Sandals of Abdallah|Arabian Nights|U|913|| -|Cuombajj Witches|Arabian Nights|C|914|| -|El-Hajjβj|Arabian Nights|R|915|| -|Erg Raiders|Arabian Nights|C|916|| -|Erg Raiders|Arabian Nights|C|917|| -|Guardian Beast|Arabian Nights|R|918|| -|Hasran Ogress|Arabian Nights|C|919|| -|Hasran Ogress|Arabian Nights|C|920|| -|Junϊn Efreet|Arabian Nights|R|921|| -|Juzαm Djinn|Arabian Nights|R|922|| -|Khabαl Ghoul|Arabian Nights|U|923|| -|Oubliette|Arabian Nights|C|924|| -|Oubliette|Arabian Nights|C|925|| -|Sorceress Queen|Arabian Nights|U|926|| -|Stone-Throwing Devils|Arabian Nights|C|927|| -|Stone-Throwing Devils|Arabian Nights|C|928|| -|Dandβn|Arabian Nights|C|929|| -|Fishliver Oil|Arabian Nights|C|930|| -|Fishliver Oil|Arabian Nights|C|931|| -|Flying Men|Arabian Nights|C|932|| -|Giant Tortoise|Arabian Nights|C|933|| -|Giant Tortoise|Arabian Nights|C|934|| -|Island Fish Jasconius|Arabian Nights|R|935|| -|Merchant Ship|Arabian Nights|U|936|| -|Old Man of the Sea|Arabian Nights|R|937|| -|Serendib Djinn|Arabian Nights|R|938|| -|Serendib Efreet|Arabian Nights|R|939|| -|Sindbad|Arabian Nights|U|940|| -|Unstable Mutation|Arabian Nights|C|941|| -|Cyclone|Arabian Nights|U|942|| -|Desert Twister|Arabian Nights|U|943|| -|Drop of Honey|Arabian Nights|R|944|| -|Erhnam Djinn|Arabian Nights|R|945|| -|Ghazbαn Ogre|Arabian Nights|C|946|| -|Ifh-Bνff Efreet|Arabian Nights|R|947|| -|Metamorphosis|Arabian Nights|C|948|| -|Nafs Asp|Arabian Nights|C|949|| -|Nafs Asp|Arabian Nights|C|950|| -|Sandstorm|Arabian Nights|C|951|| -|Singing Tree|Arabian Nights|R|952|| -|Wyluli Wolf|Arabian Nights|C|953|| -|Wyluli Wolf|Arabian Nights|C|954|| -|Aladdin|Arabian Nights|R|955|| -|Ali Baba|Arabian Nights|U|956|| -|Ali from Cairo|Arabian Nights|R|957|| -|Bird Maiden|Arabian Nights|C|958|| -|Bird Maiden|Arabian Nights|C|959|| -|Desert Nomads|Arabian Nights|C|960|| -|Hurr Jackal|Arabian Nights|C|961|| -|Kird Ape|Arabian Nights|C|962|| -|Magnetic Mountain|Arabian Nights|U|963|| -|Mijae Djinn|Arabian Nights|R|964|| -|Rukh Egg|Arabian Nights|C|965|| -|Rukh Egg|Arabian Nights|C|966|| -|Ydwen Efreet|Arabian Nights|R|967|| -|Abu Ja'far|Arabian Nights|U|968|| -|Army of Allah|Arabian Nights|C|969|| -|Army of Allah|Arabian Nights|C|970|| -|Camel|Arabian Nights|C|971|| -|Eye for an Eye|Arabian Nights|U|972|| -|Jihad|Arabian Nights|R|973|| -|King Suleiman|Arabian Nights|R|974|| -|Moorish Cavalry|Arabian Nights|C|975|| -|Moorish Cavalry|Arabian Nights|C|976|| -|Piety|Arabian Nights|C|977|| -|Piety|Arabian Nights|C|978|| -|Repentant Blacksmith|Arabian Nights|R|979|| -|Shahrazad|Arabian Nights|R|980|| -|War Elephant|Arabian Nights|C|981|| -|War Elephant|Arabian Nights|C|982|| -|Mountain|Arabian Nights|C|983|| -|Bazaar of Baghdad|Arabian Nights|U|984|| -|City of Brass|Arabian Nights|U|985|| -|Desert|Arabian Nights|C|986|| -|Diamond Valley|Arabian Nights|U|987|| -|Elephant Graveyard|Arabian Nights|R|988|| -|Island of Wak-Wak|Arabian Nights|R|989|| -|Library of Alexandria|Arabian Nights|U|990|| -|Oasis|Arabian Nights|U|991|| -|Amulet of Kroog|Antiquities|C|992|| -|Armageddon Clock|Antiquities|U|993|| -|Ashnod's Altar|Antiquities|U|994|| -|Ashnod's Battle Gear|Antiquities|U|995|| -|Ashnod's Transmogrant|Antiquities|U|996|| -|Battering Ram|Antiquities|C|997|| -|Bronze Tablet|Antiquities|R|998|| -|Candelabra of Tawnos|Antiquities|R|999|| -|Clay Statue|Antiquities|C|1000|| -|Clockwork Avian|Antiquities|R|1001|| -|Colossus of Sardia|Antiquities|R|1002|| -|Coral Helm|Antiquities|R|1003|| -|Cursed Rack|Antiquities|U|1004|| -|Dragon Engine|Antiquities|C|1005|| -|Feldon's Cane|Antiquities|U|1006|| -|Golgothian Sylex|Antiquities|R|1007|| -|Grapeshot Catapult|Antiquities|C|1008|| -|Ivory Tower|Antiquities|U|1009|| -|Jalum Tome|Antiquities|U|1010|| -|Mightstone|Antiquities|U|1011|| -|Millstone|Antiquities|U|1012|| -|Mishra's War Machine|Antiquities|R|1013|| -|Obelisk of Undoing|Antiquities|R|1014|| -|Onulet|Antiquities|U|1015|| -|Ornithopter|Antiquities|C|1016|| -|Primal Clay|Antiquities|U|1017|| -|Rakalite|Antiquities|U|1018|| -|Rocket Launcher|Antiquities|U|1019|| -|Shapeshifter|Antiquities|R|1020|| -|Staff of Zegon|Antiquities|C|1021|| -|Su-Chi|Antiquities|U|1022|| -|Tablet of Epityr|Antiquities|C|1023|| -|Tawnos's Coffin|Antiquities|R|1024|| -|Tawnos's Wand|Antiquities|U|1025|| -|Tawnos's Weaponry|Antiquities|U|1026|| -|Tetravus|Antiquities|R|1027|| -|The Rack|Antiquities|U|1028|| -|Triskelion|Antiquities|R|1029|| -|Urza's Avenger|Antiquities|R|1030|| -|Urza's Chalice|Antiquities|C|1031|| -|Urza's Miter|Antiquities|R|1032|| -|Wall of Spears|Antiquities|U|1033|| -|Weakstone|Antiquities|U|1034|| -|Yotian Soldier|Antiquities|C|1035|| -|Artifact Possession|Antiquities|C|1036|| -|Drafna's Restoration|Antiquities|C|1037|| -|Energy Flux|Antiquities|U|1038|| -|Gate to Phyrexia|Antiquities|U|1039|| -|Haunting Wind|Antiquities|U|1040|| -|Hurkyl's Recall|Antiquities|R|1041|| -|Phyrexian Gremlins|Antiquities|C|1042|| -|Power Artifact|Antiquities|U|1043|| -|Priest of Yawgmoth|Antiquities|C|1044|| -|Reconstruction|Antiquities|C|1045|| -|Sage of Lat-Nam|Antiquities|C|1046|| -|Transmute Artifact|Antiquities|U|1047|| -|Xenic Poltergeist|Antiquities|U|1048|| -|Yawgmoth Demon|Antiquities|R|1049|| -|Argothian Pixies|Antiquities|C|1050|| -|Argothian Treefolk|Antiquities|C|1051|| -|Citanul Druid|Antiquities|U|1052|| -|Crumble|Antiquities|C|1053|| -|Gaea's Avenger|Antiquities|R|1054|| -|Powerleech|Antiquities|U|1055|| -|Titania's Song|Antiquities|U|1056|| -|Artifact Blast|Antiquities|C|1057|| -|Atog|Antiquities|C|1058|| -|Detonate|Antiquities|U|1059|| -|Dwarven Weaponsmith|Antiquities|U|1060|| -|Goblin Artisans|Antiquities|U|1061|| -|Orcish Mechanics|Antiquities|C|1062|| -|Shatterstorm|Antiquities|R|1063|| -|Argivian Archaeologist|Antiquities|R|1064|| -|Argivian Blacksmith|Antiquities|C|1065|| -|Artifact Ward|Antiquities|C|1066|| -|Circle of Protection: Artifacts|Antiquities|U|1067|| -|Damping Field|Antiquities|U|1068|| -|Martyrs of Korlis|Antiquities|U|1069|| -|Reverse Polarity|Antiquities|C|1070|| -|Mishra's Factory|Antiquities|R|1071|| -|Mishra's Factory|Antiquities|R|1072|| -|Mishra's Factory|Antiquities|R|1073|| -|Mishra's Factory|Antiquities|U|1074|| -|Mishra's Workshop|Antiquities|R|1075|| -|Strip Mine|Antiquities|R|1076|| -|Strip Mine|Antiquities|R|1077|| -|Strip Mine|Antiquities|R|1078|| -|Strip Mine|Antiquities|U|1079|| -|Urza's Mine|Antiquities|C|1080|| -|Urza's Mine|Antiquities|U|1081|| -|Urza's Mine|Antiquities|C|1082|| -|Urza's Mine|Antiquities|U|1083|| -|Urza's Power Plant|Antiquities|U|1084|| -|Urza's Power Plant|Antiquities|C|1085|| -|Urza's Power Plant|Antiquities|C|1086|| -|Urza's Power Plant|Antiquities|U|1087|| -|Urza's Tower|Antiquities|U|1088|| -|Urza's Tower|Antiquities|U|1089|| -|Urza's Tower|Antiquities|C|1090|| -|Urza's Tower|Antiquities|U|1091|| -|Aladdin's Lamp|Revised Edition|R|1092|| -|Aladdin's Ring|Revised Edition|R|1093|| -|Ankh of Mishra|Revised Edition|R|1094|| -|Armageddon Clock|Revised Edition|R|1095|| -|Basalt Monolith|Revised Edition|U|1096|| -|Black Vise|Revised Edition|U|1097|| -|Bottle of Suleiman|Revised Edition|R|1098|| -|Brass Man|Revised Edition|U|1099|| -|Celestial Prism|Revised Edition|U|1100|| -|Clockwork Beast|Revised Edition|R|1101|| -|Conservator|Revised Edition|U|1102|| -|Crystal Rod|Revised Edition|U|1103|| -|Dancing Scimitar|Revised Edition|R|1104|| -|Dingus Egg|Revised Edition|R|1105|| -|Disrupting Scepter|Revised Edition|R|1106|| -|Dragon Engine|Revised Edition|R|1107|| -|Ebony Horse|Revised Edition|R|1108|| -|Flying Carpet|Revised Edition|R|1109|| -|Glasses of Urza|Revised Edition|U|1110|| -|Helm of Chatzuk|Revised Edition|R|1111|| -|Howling Mine|Revised Edition|R|1112|| -|Iron Star|Revised Edition|U|1113|| -|Ivory Cup|Revised Edition|U|1114|| -|Ivory Tower|Revised Edition|R|1115|| -|Jade Monolith|Revised Edition|R|1116|| -|Jandor's Ring|Revised Edition|R|1117|| -|Jandor's Saddlebags|Revised Edition|R|1118|| -|Jayemdae Tome|Revised Edition|R|1119|| -|Juggernaut|Revised Edition|U|1120|| -|Kormus Bell|Revised Edition|R|1121|| -|Library of Leng|Revised Edition|U|1122|| -|Living Wall|Revised Edition|U|1123|| -|Mana Vault|Revised Edition|R|1124|| -|Meekstone|Revised Edition|R|1125|| -|Millstone|Revised Edition|R|1126|| -|Mishra's War Machine|Revised Edition|R|1127|| -|Nevinyrral's Disk|Revised Edition|R|1128|| -|Obsianus Golem|Revised Edition|U|1129|| -|Onulet|Revised Edition|R|1130|| -|Ornithopter|Revised Edition|U|1131|| -|Primal Clay|Revised Edition|R|1132|| -|Rocket Launcher|Revised Edition|R|1133|| -|Rod of Ruin|Revised Edition|U|1134|| -|Sol Ring|Revised Edition|U|1135|| -|Soul Net|Revised Edition|U|1136|| -|Sunglasses of Urza|Revised Edition|R|1137|| -|The Hive|Revised Edition|R|1138|| -|The Rack|Revised Edition|U|1139|| -|Throne of Bone|Revised Edition|U|1140|| -|Winter Orb|Revised Edition|R|1141|| -|Wooden Sphere|Revised Edition|U|1142|| -|Animate Dead|Revised Edition|U|1143|| -|Bad Moon|Revised Edition|R|1144|| -|Black Knight|Revised Edition|U|1145|| -|Bog Wraith|Revised Edition|U|1146|| -|Contract from Below|Revised Edition|R|1147|| -|Cursed Land|Revised Edition|U|1148|| -|Dark Ritual|Revised Edition|C|1149|| -|Darkpact|Revised Edition|R|1150|| -|Deathgrip|Revised Edition|U|1151|| -|Deathlace|Revised Edition|R|1152|| -|Demonic Attorney|Revised Edition|R|1153|| -|Demonic Hordes|Revised Edition|R|1154|| -|Demonic Tutor|Revised Edition|U|1155|| -|Drain Life|Revised Edition|C|1156|| -|Drudge Skeletons|Revised Edition|C|1157|| -|El-Hajjβj|Revised Edition|R|1158|| -|Erg Raiders|Revised Edition|C|1159|| -|Evil Presence|Revised Edition|U|1160|| -|Fear|Revised Edition|C|1161|| -|Frozen Shade|Revised Edition|C|1162|| -|Gloom|Revised Edition|U|1163|| -|Howl from Beyond|Revised Edition|C|1164|| -|Hypnotic Specter|Revised Edition|U|1165|| -|Lord of the Pit|Revised Edition|R|1166|| -|Mind Twist|Revised Edition|R|1167|| -|Nether Shadow|Revised Edition|R|1168|| -|Nettling Imp|Revised Edition|U|1169|| -|Nightmare|Revised Edition|R|1170|| -|Paralyze|Revised Edition|C|1171|| -|Pestilence|Revised Edition|C|1172|| -|Plague Rats|Revised Edition|C|1173|| -|Raise Dead|Revised Edition|C|1174|| -|Royal Assassin|Revised Edition|R|1175|| -|Sacrifice|Revised Edition|U|1176|| -|Scathe Zombies|Revised Edition|C|1177|| -|Scavenging Ghoul|Revised Edition|U|1178|| -|Sengir Vampire|Revised Edition|U|1179|| -|Simulacrum|Revised Edition|U|1180|| -|Sorceress Queen|Revised Edition|R|1181|| -|Terror|Revised Edition|C|1182|| -|Unholy Strength|Revised Edition|C|1183|| -|Wall of Bone|Revised Edition|U|1184|| -|Warp Artifact|Revised Edition|R|1185|| -|Weakness|Revised Edition|C|1186|| -|Will-o'-the-Wisp|Revised Edition|R|1187|| -|Zombie Master|Revised Edition|R|1188|| -|Air Elemental|Revised Edition|U|1189|| -|Animate Artifact|Revised Edition|U|1190|| -|Blue Elemental Blast|Revised Edition|C|1191|| -|Braingeyser|Revised Edition|R|1192|| -|Clone|Revised Edition|U|1193|| -|Control Magic|Revised Edition|U|1194|| -|Copy Artifact|Revised Edition|R|1195|| -|Counterspell|Revised Edition|U|1196|| -|Creature Bond|Revised Edition|C|1197|| -|Drain Power|Revised Edition|R|1198|| -|Energy Flux|Revised Edition|U|1199|| -|Feedback|Revised Edition|U|1200|| -|Flight|Revised Edition|C|1201|| -|Hurkyl's Recall|Revised Edition|R|1202|| -|Island Fish Jasconius|Revised Edition|R|1203|| -|Jump|Revised Edition|C|1204|| -|Lifetap|Revised Edition|U|1205|| -|Lord of Atlantis|Revised Edition|R|1206|| -|Magical Hack|Revised Edition|R|1207|| -|Mahamoti Djinn|Revised Edition|R|1208|| -|Mana Short|Revised Edition|R|1209|| -|Merfolk of the Pearl Trident|Revised Edition|C|1210|| -|Phantasmal Forces|Revised Edition|U|1211|| -|Phantasmal Terrain|Revised Edition|C|1212|| -|Phantom Monster|Revised Edition|U|1213|| -|Pirate Ship|Revised Edition|R|1214|| -|Power Leak|Revised Edition|C|1215|| -|Power Sink|Revised Edition|C|1216|| -|Prodigal Sorcerer|Revised Edition|C|1217|| -|Psychic Venom|Revised Edition|C|1218|| -|Reconstruction|Revised Edition|C|1219|| -|Sea Serpent|Revised Edition|C|1220|| -|Serendib Efreet|Revised Edition|R|1221|| -|Siren's Call|Revised Edition|U|1222|| -|Sleight of Mind|Revised Edition|R|1223|| -|Spell Blast|Revised Edition|C|1224|| -|Stasis|Revised Edition|R|1225|| -|Steal Artifact|Revised Edition|U|1226|| -|Thoughtlace|Revised Edition|R|1227|| -|Unstable Mutation|Revised Edition|C|1228|| -|Unsummon|Revised Edition|C|1229|| -|Vesuvan Doppelganger|Revised Edition|R|1230|| -|Volcanic Eruption|Revised Edition|R|1231|| -|Wall of Air|Revised Edition|U|1232|| -|Wall of Water|Revised Edition|U|1233|| -|Water Elemental|Revised Edition|U|1234|| -|Aspect of Wolf|Revised Edition|R|1235|| -|Birds of Paradise|Revised Edition|R|1236|| -|Channel|Revised Edition|U|1237|| -|Cockatrice|Revised Edition|R|1238|| -|Craw Wurm|Revised Edition|C|1239|| -|Crumble|Revised Edition|U|1240|| -|Desert Twister|Revised Edition|U|1241|| -|Elvish Archers|Revised Edition|R|1242|| -|Fastbond|Revised Edition|R|1243|| -|Fog|Revised Edition|C|1244|| -|Force of Nature|Revised Edition|R|1245|| -|Fungusaur|Revised Edition|R|1246|| -|Gaea's Liege|Revised Edition|R|1247|| -|Giant Growth|Revised Edition|C|1248|| -|Giant Spider|Revised Edition|C|1249|| -|Grizzly Bears|Revised Edition|C|1250|| -|Hurricane|Revised Edition|U|1251|| -|Instill Energy|Revised Edition|U|1252|| -|Ironroot Treefolk|Revised Edition|C|1253|| -|Kudzu|Revised Edition|R|1254|| -|Ley Druid|Revised Edition|U|1255|| -|Lifeforce|Revised Edition|U|1256|| -|Lifelace|Revised Edition|R|1257|| -|Living Artifact|Revised Edition|R|1258|| -|Living Lands|Revised Edition|R|1259|| -|Llanowar Elves|Revised Edition|C|1260|| -|Lure|Revised Edition|U|1261|| -|Regeneration|Revised Edition|C|1262|| -|Regrowth|Revised Edition|U|1263|| -|Scryb Sprites|Revised Edition|C|1264|| -|Shanodin Dryads|Revised Edition|C|1265|| -|Stream of Life|Revised Edition|C|1266|| -|Thicket Basilisk|Revised Edition|U|1267|| -|Timber Wolves|Revised Edition|R|1268|| -|Titania's Song|Revised Edition|R|1269|| -|Tranquility|Revised Edition|C|1270|| -|Tsunami|Revised Edition|U|1271|| -|Verduran Enchantress|Revised Edition|R|1272|| -|Wall of Brambles|Revised Edition|U|1273|| -|Wall of Ice|Revised Edition|U|1274|| -|Wall of Wood|Revised Edition|C|1275|| -|Wanderlust|Revised Edition|U|1276|| -|War Mammoth|Revised Edition|C|1277|| -|Web|Revised Edition|R|1278|| -|Wild Growth|Revised Edition|C|1279|| -|Atog|Revised Edition|C|1280|| -|Burrowing|Revised Edition|U|1281|| -|Chaoslace|Revised Edition|R|1282|| -|Disintegrate|Revised Edition|C|1283|| -|Dragon Whelp|Revised Edition|U|1284|| -|Dwarven Warriors|Revised Edition|C|1285|| -|Dwarven Weaponsmith|Revised Edition|U|1286|| -|Earth Elemental|Revised Edition|U|1287|| -|Earthbind|Revised Edition|C|1288|| -|Earthquake|Revised Edition|R|1289|| -|Fire Elemental|Revised Edition|U|1290|| -|Fireball|Revised Edition|C|1291|| -|Firebreathing|Revised Edition|C|1292|| -|Flashfires|Revised Edition|U|1293|| -|Fork|Revised Edition|R|1294|| -|Goblin Balloon Brigade|Revised Edition|U|1295|| -|Goblin King|Revised Edition|R|1296|| -|Granite Gargoyle|Revised Edition|R|1297|| -|Gray Ogre|Revised Edition|C|1298|| -|Hill Giant|Revised Edition|C|1299|| -|Hurloon Minotaur|Revised Edition|C|1300|| -|Keldon Warlord|Revised Edition|U|1301|| -|Kird Ape|Revised Edition|C|1302|| -|Lightning Bolt|Revised Edition|C|1303|| -|Magnetic Mountain|Revised Edition|R|1304|| -|Mana Flare|Revised Edition|R|1305|| -|Manabarbs|Revised Edition|R|1306|| -|Mijae Djinn|Revised Edition|R|1307|| -|Mons's Goblin Raiders|Revised Edition|C|1308|| -|Orcish Artillery|Revised Edition|U|1309|| -|Orcish Oriflamme|Revised Edition|U|1310|| -|Power Surge|Revised Edition|R|1311|| -|Red Elemental Blast|Revised Edition|C|1312|| -|Roc of Kher Ridges|Revised Edition|R|1313|| -|Rock Hydra|Revised Edition|R|1314|| -|Sedge Troll|Revised Edition|R|1315|| -|Shatter|Revised Edition|C|1316|| -|Shatterstorm|Revised Edition|U|1317|| -|Shivan Dragon|Revised Edition|R|1318|| -|Smoke|Revised Edition|R|1319|| -|Stone Giant|Revised Edition|U|1320|| -|Stone Rain|Revised Edition|C|1321|| -|Tunnel|Revised Edition|U|1322|| -|Uthden Troll|Revised Edition|U|1323|| -|Wall of Fire|Revised Edition|U|1324|| -|Wall of Stone|Revised Edition|U|1325|| -|Wheel of Fortune|Revised Edition|R|1326|| -|Animate Wall|Revised Edition|R|1327|| -|Armageddon|Revised Edition|R|1328|| -|Balance|Revised Edition|R|1329|| -|Benalish Hero|Revised Edition|C|1330|| -|Black Ward|Revised Edition|U|1331|| -|Blessing|Revised Edition|R|1332|| -|Blue Ward|Revised Edition|U|1333|| -|Castle|Revised Edition|U|1334|| -|Circle of Protection: Black|Revised Edition|C|1335|| -|Circle of Protection: Blue|Revised Edition|C|1336|| -|Circle of Protection: Green|Revised Edition|C|1337|| -|Circle of Protection: Red|Revised Edition|C|1338|| -|Circle of Protection: White|Revised Edition|C|1339|| -|Conversion|Revised Edition|U|1340|| -|Crusade|Revised Edition|R|1341|| -|Death Ward|Revised Edition|C|1342|| -|Disenchant|Revised Edition|C|1343|| -|Eye for an Eye|Revised Edition|R|1344|| -|Farmstead|Revised Edition|R|1345|| -|Green Ward|Revised Edition|U|1346|| -|Guardian Angel|Revised Edition|C|1347|| -|Healing Salve|Revised Edition|C|1348|| -|Holy Armor|Revised Edition|C|1349|| -|Holy Strength|Revised Edition|C|1350|| -|Island Sanctuary|Revised Edition|R|1351|| -|Karma|Revised Edition|U|1352|| -|Lance|Revised Edition|U|1353|| -|Mesa Pegasus|Revised Edition|C|1354|| -|Northern Paladin|Revised Edition|R|1355|| -|Pearled Unicorn|Revised Edition|C|1356|| -|Personal Incarnation|Revised Edition|R|1357|| -|Purelace|Revised Edition|R|1358|| -|Red Ward|Revised Edition|U|1359|| -|Resurrection|Revised Edition|U|1360|| -|Reverse Damage|Revised Edition|R|1361|| -|Reverse Polarity|Revised Edition|U|1362|| -|Righteousness|Revised Edition|R|1363|| -|Samite Healer|Revised Edition|C|1364|| -|Savannah Lions|Revised Edition|R|1365|| -|Serra Angel|Revised Edition|U|1366|| -|Swords to Plowshares|Revised Edition|U|1367|| -|Veteran Bodyguard|Revised Edition|R|1368|| -|Wall of Swords|Revised Edition|U|1369|| -|White Knight|Revised Edition|U|1370|| -|White Ward|Revised Edition|U|1371|| -|Wrath of God|Revised Edition|R|1372|| -|Swamp|Revised Edition|L|1373|| -|Swamp|Revised Edition|L|1374|| -|Swamp|Revised Edition|L|1375|| -|Badlands|Revised Edition|R|1376|| -|Bayou|Revised Edition|R|1377|| -|Plateau|Revised Edition|R|1378|| -|Savannah|Revised Edition|R|1379|| -|Scrubland|Revised Edition|R|1380|| -|Taiga|Revised Edition|R|1381|| -|Tropical Island|Revised Edition|R|1382|| -|Tundra|Revised Edition|R|1383|| -|Underground Sea|Revised Edition|R|1384|| -|Volcanic Island|Revised Edition|R|1385|| -|Forest|Revised Edition|L|1386|| -|Forest|Revised Edition|L|1387|| -|Forest|Revised Edition|L|1388|| -|Mountain|Revised Edition|L|1389|| -|Mountain|Revised Edition|L|1390|| -|Mountain|Revised Edition|L|1391|| -|Island|Revised Edition|L|1392|| -|Island|Revised Edition|L|1393|| -|Island|Revised Edition|L|1394|| -|Plains|Revised Edition|L|1395|| -|Plains|Revised Edition|L|1396|| -|Plains|Revised Edition|L|1397|| -|Al-abara's Carpet|Legends|R|1398|| -|Alchor's Tomb|Legends|R|1399|| -|Arena of the Ancients|Legends|R|1400|| -|Black Mana Battery|Legends|U|1401|| -|Blue Mana Battery|Legends|U|1402|| -|Bronze Horse|Legends|R|1403|| -|Forethought Amulet|Legends|R|1404|| -|Gauntlets of Chaos|Legends|R|1405|| -|Green Mana Battery|Legends|U|1406|| -|Horn of Deafening|Legends|R|1407|| -|Knowledge Vault|Legends|R|1408|| -|Kry Shield|Legends|U|1409|| -|Life Chisel|Legends|U|1410|| -|Life Matrix|Legends|R|1411|| -|Mana Matrix|Legends|R|1412|| -|Marble Priest|Legends|U|1413|| -|Mirror Universe|Legends|R|1414|| -|North Star|Legends|R|1415|| -|Nova Pentacle|Legends|R|1416|| -|Planar Gate|Legends|R|1417|| -|Red Mana Battery|Legends|U|1418|| -|Relic Barrier|Legends|U|1419|| -|Ring of Immortals|Legends|R|1420|| -|Sentinel|Legends|R|1421|| -|Serpent Generator|Legends|R|1422|| -|Sword of the Ages|Legends|R|1423|| -|Triassic Egg|Legends|R|1424|| -|Voodoo Doll|Legends|R|1425|| -|White Mana Battery|Legends|U|1426|| -|Abomination|Legends|U|1427|| -|All Hallow's Eve|Legends|R|1428|| -|Blight|Legends|U|1429|| -|Carrion Ants|Legends|R|1430|| -|Chains of Mephistopheles|Legends|R|1431|| -|Cosmic Horror|Legends|R|1432|| -|Cyclopean Mummy|Legends|C|1433|| -|Darkness|Legends|C|1434|| -|Demonic Torment|Legends|U|1435|| -|Evil Eye of Orms-by-Gore|Legends|U|1436|| -|Fallen Angel|Legends|U|1437|| -|Ghosts of the Damned|Legends|C|1438|| -|Giant Slug|Legends|C|1439|| -|Glyph of Doom|Legends|C|1440|| -|Greed|Legends|R|1441|| -|Headless Horseman|Legends|C|1442|| -|Hell Swarm|Legends|C|1443|| -|Hell's Caretaker|Legends|R|1444|| -|Hellfire|Legends|R|1445|| -|Horror of Horrors|Legends|U|1446|| -|Imprison|Legends|R|1447|| -|Infernal Medusa|Legends|U|1448|| -|Jovial Evil|Legends|R|1449|| -|Lesser Werewolf|Legends|U|1450|| -|Lost Soul|Legends|C|1451|| -|Mold Demon|Legends|R|1452|| -|Nether Void|Legends|R|1453|| -|Pit Scorpion|Legends|C|1454|| -|Quagmire|Legends|U|1455|| -|Shimian Night Stalker|Legends|U|1456|| -|Spirit Shackle|Legends|C|1457|| -|Syphon Soul|Legends|C|1458|| -|Takklemaggot|Legends|U|1459|| -|The Abyss|Legends|R|1460|| -|The Wretched|Legends|R|1461|| -|Touch of Darkness|Legends|U|1462|| -|Transmutation|Legends|C|1463|| -|Underworld Dreams|Legends|U|1464|| -|Vampire Bats|Legends|C|1465|| -|Walking Dead|Legends|C|1466|| -|Wall of Putrid Flesh|Legends|U|1467|| -|Wall of Shadows|Legends|C|1468|| -|Wall of Tombstones|Legends|U|1469|| -|Acid Rain|Legends|R|1470|| -|Anti-Magic Aura|Legends|C|1471|| -|Azure Drake|Legends|U|1472|| -|Backfire|Legends|U|1473|| -|Boomerang|Legends|C|1474|| -|Brine Hag|Legends|U|1475|| -|Devouring Deep|Legends|C|1476|| -|Dream Coat|Legends|U|1477|| -|Elder Spawn|Legends|R|1478|| -|Enchantment Alteration|Legends|C|1479|| -|Energy Tap|Legends|C|1480|| -|Field of Dreams|Legends|R|1481|| -|Flash Counter|Legends|C|1482|| -|Flash Flood|Legends|C|1483|| -|Force Spike|Legends|C|1484|| -|Gaseous Form|Legends|C|1485|| -|Glyph of Delusion|Legends|C|1486|| -|In the Eye of Chaos|Legends|R|1487|| -|Invoke Prejudice|Legends|R|1488|| -|Juxtapose|Legends|R|1489|| -|Land Equilibrium|Legends|R|1490|| -|Mana Drain|Legends|U|1491|| -|Part Water|Legends|U|1492|| -|Psionic Entity|Legends|R|1493|| -|Psychic Purge|Legends|C|1494|| -|Puppet Master|Legends|U|1495|| -|Recall|Legends|R|1496|| -|Relic Bind|Legends|U|1497|| -|Remove Soul|Legends|C|1498|| -|Reset|Legends|U|1499|| -|Reverberation|Legends|R|1500|| -|Sea Kings' Blessing|Legends|U|1501|| -|Segovian Leviathan|Legends|U|1502|| -|Silhouette|Legends|U|1503|| -|Spectral Cloak|Legends|U|1504|| -|Telekinesis|Legends|R|1505|| -|Teleport|Legends|R|1506|| -|Time Elemental|Legends|R|1507|| -|Undertow|Legends|U|1508|| -|Venarian Gold|Legends|C|1509|| -|Wall of Vapor|Legends|C|1510|| -|Wall of Wonder|Legends|U|1511|| -|Zephyr Falcon|Legends|C|1512|| -|Aisling Leprechaun|Legends|C|1513|| -|Arboria|Legends|U|1514|| -|Avoid Fate|Legends|C|1515|| -|Barbary Apes|Legends|C|1516|| -|Cat Warriors|Legends|C|1517|| -|Cocoon|Legends|U|1518|| -|Concordant Crossroads|Legends|R|1519|| -|Craw Giant|Legends|U|1520|| -|Deadfall|Legends|U|1521|| -|Durkwood Boars|Legends|C|1522|| -|Elven Riders|Legends|R|1523|| -|Emerald Dragonfly|Legends|C|1524|| -|Eureka|Legends|R|1525|| -|Fire Sprites|Legends|C|1526|| -|Floral Spuzzem|Legends|U|1527|| -|Giant Turtle|Legends|C|1528|| -|Glyph of Reincarnation|Legends|C|1529|| -|Hornet Cobra|Legends|C|1530|| -|Ichneumon Druid|Legends|U|1531|| -|Killer Bees|Legends|R|1532|| -|Living Plane|Legends|R|1533|| -|Master of the Hunt|Legends|R|1534|| -|Moss Monster|Legends|C|1535|| -|Pixie Queen|Legends|R|1536|| -|Pradesh Gypsies|Legends|U|1537|| -|Rabid Wombat|Legends|U|1538|| -|Radjan Spirit|Legends|U|1539|| -|Rebirth|Legends|R|1540|| -|Reincarnation|Legends|U|1541|| -|Revelation|Legends|R|1542|| -|Rust|Legends|C|1543|| -|Shelkin Brownie|Legends|C|1544|| -|Storm Seeker|Legends|U|1545|| -|Subdue|Legends|C|1546|| -|Sylvan Library|Legends|U|1547|| -|Sylvan Paradise|Legends|U|1548|| -|Typhoon|Legends|R|1549|| -|Untamed Wilds|Legends|U|1550|| -|Whirling Dervish|Legends|U|1551|| -|Willow Satyr|Legends|R|1552|| -|Winter Blast|Legends|R|1553|| -|Wolverine Pack|Legends|C|1554|| -|Wood Elemental|Legends|R|1555|| -|Active Volcano|Legends|C|1556|| -|Ζrathi Berserker|Legends|U|1557|| -|Backdraft|Legends|U|1558|| -|Beasts of Bogardan|Legends|U|1559|| -|Blazing Effigy|Legends|C|1560|| -|Blood Lust|Legends|U|1561|| -|Caverns of Despair|Legends|R|1562|| -|Chain Lightning|Legends|C|1563|| -|Crevasse|Legends|U|1564|| -|Crimson Kobolds|Legends|C|1565|| -|Crimson Manticore|Legends|R|1566|| -|Crookshank Kobolds|Legends|C|1567|| -|Disharmony|Legends|R|1568|| -|Dwarven Song|Legends|U|1569|| -|Eternal Warrior|Legends|U|1570|| -|Falling Star|Legends|R|1571|| -|Feint|Legends|C|1572|| -|Firestorm Phoenix|Legends|R|1573|| -|Frost Giant|Legends|U|1574|| -|Giant Strength|Legends|C|1575|| -|Glyph of Destruction|Legends|C|1576|| -|Gravity Sphere|Legends|R|1577|| -|Hyperion Blacksmith|Legends|U|1578|| -|Immolation|Legends|C|1579|| -|Kobold Drill Sergeant|Legends|U|1580|| -|Kobold Overlord|Legends|R|1581|| -|Kobold Taskmaster|Legends|U|1582|| -|Kobolds of Kher Keep|Legends|C|1583|| -|Land's Edge|Legends|R|1584|| -|Mountain Yeti|Legends|U|1585|| -|Primordial Ooze|Legends|U|1586|| -|Pyrotechnics|Legends|C|1587|| -|Quarum Trench Gnomes|Legends|R|1588|| -|Raging Bull|Legends|C|1589|| -|Spinal Villain|Legends|R|1590|| -|Storm World|Legends|R|1591|| -|Tempest Efreet|Legends|R|1592|| -|The Brute|Legends|C|1593|| -|Wall of Dust|Legends|U|1594|| -|Wall of Earth|Legends|C|1595|| -|Wall of Heat|Legends|C|1596|| -|Wall of Opposition|Legends|R|1597|| -|Winds of Change|Legends|U|1598|| -|Akron Legionnaire|Legends|R|1599|| -|Alabaster Potion|Legends|C|1600|| -|Amrou Kithkin|Legends|C|1601|| -|Angelic Voices|Legends|R|1602|| -|Cleanse|Legends|R|1603|| -|Clergy of the Holy Nimbus|Legends|C|1604|| -|D'Avenant Archer|Legends|C|1605|| -|Divine Intervention|Legends|R|1606|| -|Divine Offering|Legends|C|1607|| -|Divine Transformation|Legends|R|1608|| -|Elder Land Wurm|Legends|R|1609|| -|Enchanted Being|Legends|C|1610|| -|Equinox|Legends|C|1611|| -|Fortified Area|Legends|U|1612|| -|Glyph of Life|Legends|C|1613|| -|Great Defender|Legends|U|1614|| -|Great Wall|Legends|U|1615|| -|Greater Realm of Preservation|Legends|U|1616|| -|Heaven's Gate|Legends|U|1617|| -|Holy Day|Legends|C|1618|| -|Indestructible Aura|Legends|C|1619|| -|Infinite Authority|Legends|R|1620|| -|Ivory Guardians|Legends|U|1621|| -|Keepers of the Faith|Legends|C|1622|| -|Kismet|Legends|U|1623|| -|Land Tax|Legends|U|1624|| -|Lifeblood|Legends|R|1625|| -|Moat|Legends|R|1626|| -|Osai Vultures|Legends|C|1627|| -|Petra Sphinx|Legends|R|1628|| -|Presence of the Master|Legends|U|1629|| -|Rapid Fire|Legends|R|1630|| -|Remove Enchantments|Legends|C|1631|| -|Righteous Avengers|Legends|U|1632|| -|Seeker|Legends|U|1633|| -|Shield Wall|Legends|U|1634|| -|Spirit Link|Legends|U|1635|| -|Spiritual Sanctuary|Legends|R|1636|| -|Thunder Spirit|Legends|R|1637|| -|Tundra Wolves|Legends|C|1638|| -|Visions|Legends|U|1639|| -|Wall of Caltrops|Legends|C|1640|| -|Wall of Light|Legends|U|1641|| -|Adun Oakenshield|Legends|R|1642|| -|Angus Mackenzie|Legends|R|1643|| -|Arcades Sabboth|Legends|R|1644|| -|Axelrod Gunnarson|Legends|R|1645|| -|Ayesha Tanaka|Legends|R|1646|| -|Barktooth Warbeard|Legends|U|1647|| -|Bartel Runeaxe|Legends|R|1648|| -|Boris Devilboon|Legends|R|1649|| -|Chromium|Legends|R|1650|| -|Dakkon Blackblade|Legends|R|1651|| -|Gabriel Angelfire|Legends|R|1652|| -|Gosta Dirk|Legends|R|1653|| -|Gwendlyn Di Corci|Legends|R|1654|| -|Halfdane|Legends|R|1655|| -|Hazezon Tamar|Legends|R|1656|| -|Hunding Gjornersen|Legends|U|1657|| -|Jacques le Vert|Legends|R|1658|| -|Jasmine Boreal|Legends|U|1659|| -|Jedit Ojanen|Legends|U|1660|| -|Jerrard of the Closed Fist|Legends|U|1661|| -|Johan|Legends|R|1662|| -|Kasimir the Lone Wolf|Legends|U|1663|| -|Kei Takahashi|Legends|R|1664|| -|Lady Caleria|Legends|R|1665|| -|Lady Evangela|Legends|R|1666|| -|Lady Orca|Legends|U|1667|| -|Livonya Silone|Legends|R|1668|| -|Lord Magnus|Legends|U|1669|| -|Marhault Elsdragon|Legends|U|1670|| -|Nebuchadnezzar|Legends|R|1671|| -|Nicol Bolas|Legends|R|1672|| -|Palladia-Mors|Legends|R|1673|| -|Pavel Maliki|Legends|U|1674|| -|Princess Lucrezia|Legends|U|1675|| -|Ragnar|Legends|R|1676|| -|Ramirez DePietro|Legends|U|1677|| -|Ramses Overdark|Legends|R|1678|| -|Rasputin Dreamweaver|Legends|R|1679|| -|Riven Turnbull|Legends|U|1680|| -|Rohgahh of Kher Keep|Legends|R|1681|| -|Rubinia Soulsinger|Legends|R|1682|| -|Sir Shandlar of Eberyn|Legends|U|1683|| -|Sivitri Scarzam|Legends|U|1684|| -|Sol'kanar the Swamp King|Legends|R|1685|| -|Stangg|Legends|R|1686|| -|Sunastian Falconer|Legends|U|1687|| -|Tetsuo Umezawa|Legends|R|1688|| -|The Lady of the Mountain|Legends|U|1689|| -|The Tabernacle at Pendrell Vale|Legends|R|1690|| -|Tobias Andrion|Legends|U|1691|| -|Tor Wauki|Legends|U|1692|| -|Torsten Von Ursus|Legends|U|1693|| -|Tuknir Deathlock|Legends|R|1694|| -|Ur-Drago|Legends|R|1695|| -|Vaevictis Asmadi|Legends|R|1696|| -|Xira Arien|Legends|R|1697|| -|Adventurers' Guildhouse|Legends|U|1698|| -|Cathedral of Serra|Legends|U|1699|| -|Hammerheim|Legends|U|1700|| -|Karakas|Legends|U|1701|| -|Mountain Stronghold|Legends|U|1702|| -|Pendelhaven|Legends|U|1703|| -|Seafarer's Quay|Legends|U|1704|| -|Tolaria|Legends|U|1705|| -|Unholy Citadel|Legends|U|1706|| -|Urborg|Legends|U|1707|| -|Barl's Cage|The Dark|R|1708|| -|Bone Flute|The Dark|U|1709|| -|Book of Rass|The Dark|U|1710|| -|Coal Golem|The Dark|U|1711|| -|Dark Sphere|The Dark|U|1712|| -|Diabolic Machine|The Dark|U|1713|| -|Fellwar Stone|The Dark|U|1714|| -|Fountain of Youth|The Dark|U|1715|| -|Living Armor|The Dark|U|1716|| -|Necropolis|The Dark|U|1717|| -|Reflecting Mirror|The Dark|U|1718|| -|Runesword|The Dark|U|1719|| -|Scarecrow|The Dark|U|1720|| -|Skull of Orm|The Dark|U|1721|| -|Standing Stones|The Dark|U|1722|| -|Stone Calendar|The Dark|R|1723|| -|Tormod's Crypt|The Dark|U|1724|| -|Tower of Coireall|The Dark|U|1725|| -|Wand of Ith|The Dark|U|1726|| -|War Barge|The Dark|U|1727|| -|Ashes to Ashes|The Dark|C|1728|| -|Banshee|The Dark|U|1729|| -|Bog Imp|The Dark|C|1730|| -|Bog Rats|The Dark|C|1731|| -|Curse Artifact|The Dark|U|1732|| -|Eater of the Dead|The Dark|U|1733|| -|Frankenstein's Monster|The Dark|R|1734|| -|Grave Robbers|The Dark|R|1735|| -|Inquisition|The Dark|C|1736|| -|Marsh Gas|The Dark|C|1737|| -|Murk Dwellers|The Dark|C|1738|| -|Nameless Race|The Dark|R|1739|| -|Rag Man|The Dark|R|1740|| -|Season of the Witch|The Dark|R|1741|| -|The Fallen|The Dark|U|1742|| -|Uncle Istvan|The Dark|U|1743|| -|Word of Binding|The Dark|C|1744|| -|Worms of the Earth|The Dark|R|1745|| -|Amnesia|The Dark|U|1746|| -|Apprentice Wizard|The Dark|R|1747|| -|Dance of Many|The Dark|R|1748|| -|Deep Water|The Dark|C|1749|| -|Drowned|The Dark|C|1750|| -|Electric Eel|The Dark|U|1751|| -|Erosion|The Dark|C|1752|| -|Flood|The Dark|U|1753|| -|Ghost Ship|The Dark|C|1754|| -|Giant Shark|The Dark|C|1755|| -|Leviathan|The Dark|R|1756|| -|Mana Vortex|The Dark|R|1757|| -|Merfolk Assassin|The Dark|U|1758|| -|Mind Bomb|The Dark|R|1759|| -|Psychic Allergy|The Dark|R|1760|| -|Riptide|The Dark|C|1761|| -|Sunken City|The Dark|C|1762|| -|Tangle Kelp|The Dark|U|1763|| -|Water Wurm|The Dark|C|1764|| -|Carnivorous Plant|The Dark|C|1765|| -|Elves of Deep Shadow|The Dark|U|1766|| -|Gaea's Touch|The Dark|C|1767|| -|Hidden Path|The Dark|R|1768|| -|Land Leeches|The Dark|C|1769|| -|Lurker|The Dark|R|1770|| -|Marsh Viper|The Dark|C|1771|| -|Niall Silvain|The Dark|R|1772|| -|People of the Woods|The Dark|U|1773|| -|Savaen Elves|The Dark|C|1774|| -|Scarwood Bandits|The Dark|R|1775|| -|Scarwood Hag|The Dark|U|1776|| -|Scavenger Folk|The Dark|C|1777|| -|Spitting Slug|The Dark|U|1778|| -|Tracker|The Dark|R|1779|| -|Venom|The Dark|C|1780|| -|Whippoorwill|The Dark|U|1781|| -|Wormwood Treefolk|The Dark|R|1782|| -|Ball Lightning|The Dark|R|1783|| -|Blood Moon|The Dark|R|1784|| -|Brothers of Fire|The Dark|U|1785|| -|Cave People|The Dark|U|1786|| -|Eternal Flame|The Dark|R|1787|| -|Fire Drake|The Dark|U|1788|| -|Fissure|The Dark|C|1789|| -|Goblin Caves|The Dark|C|1790|| -|Goblin Digging Team|The Dark|C|1791|| -|Goblin Hero|The Dark|C|1792|| -|Goblin Rock Sled|The Dark|C|1793|| -|Goblin Shrine|The Dark|C|1794|| -|Goblin Wizard|The Dark|R|1795|| -|Goblins of the Flarg|The Dark|C|1796|| -|Inferno|The Dark|R|1797|| -|Mana Clash|The Dark|R|1798|| -|Orc General|The Dark|U|1799|| -|Sisters of the Flame|The Dark|U|1800|| -|Angry Mob|The Dark|U|1801|| -|Blood of the Martyr|The Dark|U|1802|| -|Brainwash|The Dark|C|1803|| -|Cleansing|The Dark|R|1804|| -|Dust to Dust|The Dark|C|1805|| -|Exorcist|The Dark|R|1806|| -|Fasting|The Dark|U|1807|| -|Festival|The Dark|C|1808|| -|Fire and Brimstone|The Dark|U|1809|| -|Holy Light|The Dark|C|1810|| -|Knights of Thorn|The Dark|R|1811|| -|Martyr's Cry|The Dark|R|1812|| -|Miracle Worker|The Dark|C|1813|| -|Morale|The Dark|C|1814|| -|Pikemen|The Dark|C|1815|| -|Preacher|The Dark|R|1816|| -|Squire|The Dark|C|1817|| -|Tivadar's Crusade|The Dark|U|1818|| -|Witch Hunter|The Dark|R|1819|| -|Dark Heart of the Wood|The Dark|C|1820|| -|Marsh Goblins|The Dark|C|1821|| -|Scarwood Goblins|The Dark|C|1822|| -|City of Shadows|The Dark|R|1823|| -|Maze of Ith|The Dark|U|1824|| -|Safe Haven|The Dark|R|1825|| -|Sorrow's Path|The Dark|R|1826|| -|Aeolipile|Fallen Empires|R|1827|| -|Balm of Restoration|Fallen Empires|R|1828|| -|Conch Horn|Fallen Empires|R|1829|| -|Delif's Cone|Fallen Empires|C|1830|| -|Delif's Cube|Fallen Empires|R|1831|| -|Draconian Cylix|Fallen Empires|R|1832|| -|Elven Lyre|Fallen Empires|R|1833|| -|Implements of Sacrifice|Fallen Empires|R|1834|| -|Ring of Renewal|Fallen Empires|R|1835|| -|Spirit Shield|Fallen Empires|R|1836|| -|Zelyon Sword|Fallen Empires|R|1837|| -|Armor Thrull|Fallen Empires|C|1838|| -|Armor Thrull|Fallen Empires|C|1839|| -|Armor Thrull|Fallen Empires|C|1840|| -|Armor Thrull|Fallen Empires|C|1841|| -|Basal Thrull|Fallen Empires|C|1842|| -|Basal Thrull|Fallen Empires|C|1843|| -|Basal Thrull|Fallen Empires|C|1844|| -|Basal Thrull|Fallen Empires|C|1845|| -|Breeding Pit|Fallen Empires|U|1846|| -|Derelor|Fallen Empires|R|1847|| -|Ebon Praetor|Fallen Empires|R|1848|| -|Hymn to Tourach|Fallen Empires|C|1849|| -|Hymn to Tourach|Fallen Empires|C|1850|| -|Hymn to Tourach|Fallen Empires|C|1851|| -|Hymn to Tourach|Fallen Empires|C|1852|| -|Initiates of the Ebon Hand|Fallen Empires|C|1853|| -|Initiates of the Ebon Hand|Fallen Empires|C|1854|| -|Initiates of the Ebon Hand|Fallen Empires|C|1855|| -|Mindstab Thrull|Fallen Empires|C|1856|| -|Mindstab Thrull|Fallen Empires|C|1857|| -|Mindstab Thrull|Fallen Empires|C|1858|| -|Necrite|Fallen Empires|C|1859|| -|Necrite|Fallen Empires|C|1860|| -|Necrite|Fallen Empires|C|1861|| -|Order of the Ebon Hand|Fallen Empires|C|1862|| -|Order of the Ebon Hand|Fallen Empires|C|1863|| -|Order of the Ebon Hand|Fallen Empires|C|1864|| -|Soul Exchange|Fallen Empires|U|1865|| -|Thrull Champion|Fallen Empires|R|1866|| -|Thrull Retainer|Fallen Empires|U|1867|| -|Thrull Wizard|Fallen Empires|U|1868|| -|Tourach's Chant|Fallen Empires|U|1869|| -|Tourach's Gate|Fallen Empires|R|1870|| -|Deep Spawn|Fallen Empires|U|1871|| -|High Tide|Fallen Empires|C|1872|| -|High Tide|Fallen Empires|C|1873|| -|High Tide|Fallen Empires|C|1874|| -|Homarid|Fallen Empires|C|1875|| -|Homarid|Fallen Empires|C|1876|| -|Homarid|Fallen Empires|C|1877|| -|Homarid|Fallen Empires|C|1878|| -|Homarid Shaman|Fallen Empires|R|1879|| -|Homarid Spawning Bed|Fallen Empires|U|1880|| -|Homarid Warrior|Fallen Empires|C|1881|| -|Homarid Warrior|Fallen Empires|C|1882|| -|Homarid Warrior|Fallen Empires|C|1883|| -|Merseine|Fallen Empires|C|1884|| -|Merseine|Fallen Empires|C|1885|| -|Merseine|Fallen Empires|C|1886|| -|Merseine|Fallen Empires|C|1887|| -|River Merfolk|Fallen Empires|R|1888|| -|Seasinger|Fallen Empires|U|1889|| -|Svyelunite Priest|Fallen Empires|U|1890|| -|Tidal Flats|Fallen Empires|C|1891|| -|Tidal Flats|Fallen Empires|C|1892|| -|Tidal Flats|Fallen Empires|C|1893|| -|Tidal Influence|Fallen Empires|U|1894|| -|Vodalian Knights|Fallen Empires|R|1895|| -|Vodalian Mage|Fallen Empires|C|1896|| -|Vodalian Mage|Fallen Empires|C|1897|| -|Vodalian Mage|Fallen Empires|C|1898|| -|Vodalian Soldiers|Fallen Empires|C|1899|| -|Vodalian Soldiers|Fallen Empires|C|1900|| -|Vodalian Soldiers|Fallen Empires|C|1901|| -|Vodalian Soldiers|Fallen Empires|C|1902|| -|Vodalian War Machine|Fallen Empires|R|1903|| -|Elven Fortress|Fallen Empires|C|1904|| -|Elven Fortress|Fallen Empires|C|1905|| -|Elven Fortress|Fallen Empires|C|1906|| -|Elven Fortress|Fallen Empires|C|1907|| -|Elvish Farmer|Fallen Empires|R|1908|| -|Elvish Hunter|Fallen Empires|C|1909|| -|Elvish Hunter|Fallen Empires|C|1910|| -|Elvish Hunter|Fallen Empires|C|1911|| -|Elvish Scout|Fallen Empires|C|1912|| -|Elvish Scout|Fallen Empires|C|1913|| -|Elvish Scout|Fallen Empires|C|1914|| -|Feral Thallid|Fallen Empires|U|1915|| -|Fungal Bloom|Fallen Empires|R|1916|| -|Night Soil|Fallen Empires|C|1917|| -|Night Soil|Fallen Empires|C|1918|| -|Night Soil|Fallen Empires|C|1919|| -|Spore Cloud|Fallen Empires|C|1920|| -|Spore Cloud|Fallen Empires|C|1921|| -|Spore Cloud|Fallen Empires|C|1922|| -|Spore Flower|Fallen Empires|U|1923|| -|Thallid|Fallen Empires|C|1924|| -|Thallid|Fallen Empires|C|1925|| -|Thallid|Fallen Empires|C|1926|| -|Thallid|Fallen Empires|C|1927|| -|Thallid Devourer|Fallen Empires|U|1928|| -|Thelon's Chant|Fallen Empires|U|1929|| -|Thelon's Curse|Fallen Empires|R|1930|| -|Thelonite Druid|Fallen Empires|U|1931|| -|Thelonite Monk|Fallen Empires|R|1932|| -|Thorn Thallid|Fallen Empires|C|1933|| -|Thorn Thallid|Fallen Empires|C|1934|| -|Thorn Thallid|Fallen Empires|C|1935|| -|Thorn Thallid|Fallen Empires|C|1936|| -|Brassclaw Orcs|Fallen Empires|C|1937|| -|Brassclaw Orcs|Fallen Empires|C|1938|| -|Orcish Veteran|Fallen Empires|C|1939|| -|Brassclaw Orcs|Fallen Empires|C|1940|| -|Dwarven Armorer|Fallen Empires|R|1941|| -|Dwarven Catapult|Fallen Empires|U|1942|| -|Dwarven Lieutenant|Fallen Empires|U|1943|| -|Dwarven Soldier|Fallen Empires|C|1944|| -|Dwarven Soldier|Fallen Empires|C|1945|| -|Dwarven Soldier|Fallen Empires|C|1946|| -|Goblin Chirurgeon|Fallen Empires|C|1947|| -|Goblin Chirurgeon|Fallen Empires|C|1948|| -|Goblin Chirurgeon|Fallen Empires|C|1949|| -|Goblin Flotilla|Fallen Empires|R|1950|| -|Goblin Grenade|Fallen Empires|C|1951|| -|Goblin Grenade|Fallen Empires|C|1952|| -|Goblin Grenade|Fallen Empires|C|1953|| -|Goblin Kites|Fallen Empires|U|1954|| -|Goblin War Drums|Fallen Empires|C|1955|| -|Goblin War Drums|Fallen Empires|C|1956|| -|Goblin War Drums|Fallen Empires|C|1957|| -|Goblin War Drums|Fallen Empires|C|1958|| -|Goblin Warrens|Fallen Empires|R|1959|| -|Orcish Captain|Fallen Empires|U|1960|| -|Orcish Spy|Fallen Empires|C|1961|| -|Orcish Spy|Fallen Empires|C|1962|| -|Orcish Spy|Fallen Empires|C|1963|| -|Orcish Veteran|Fallen Empires|C|1964|| -|Orcish Veteran|Fallen Empires|C|1965|| -|Brassclaw Orcs|Fallen Empires|C|1966|| -|Orcish Veteran|Fallen Empires|C|1967|| -|Orgg|Fallen Empires|R|1968|| -|Raiding Party|Fallen Empires|U|1969|| -|Combat Medic|Fallen Empires|C|1970|| -|Combat Medic|Fallen Empires|C|1971|| -|Combat Medic|Fallen Empires|C|1972|| -|Combat Medic|Fallen Empires|C|1973|| -|Farrel's Mantle|Fallen Empires|U|1974|| -|Farrel's Zealot|Fallen Empires|C|1975|| -|Farrel's Zealot|Fallen Empires|C|1976|| -|Farrel's Zealot|Fallen Empires|C|1977|| -|Farrelite Priest|Fallen Empires|U|1978|| -|Hand of Justice|Fallen Empires|R|1979|| -|Heroism|Fallen Empires|U|1980|| -|Icatian Infantry|Fallen Empires|C|1981|| -|Icatian Infantry|Fallen Empires|C|1982|| -|Icatian Infantry|Fallen Empires|C|1983|| -|Icatian Infantry|Fallen Empires|C|1984|| -|Icatian Javelineers|Fallen Empires|C|1985|| -|Icatian Javelineers|Fallen Empires|C|1986|| -|Icatian Javelineers|Fallen Empires|C|1987|| -|Icatian Lieutenant|Fallen Empires|R|1988|| -|Icatian Moneychanger|Fallen Empires|C|1989|| -|Icatian Moneychanger|Fallen Empires|C|1990|| -|Icatian Moneychanger|Fallen Empires|C|1991|| -|Icatian Phalanx|Fallen Empires|U|1992|| -|Icatian Priest|Fallen Empires|U|1993|| -|Icatian Scout|Fallen Empires|C|1994|| -|Icatian Scout|Fallen Empires|C|1995|| -|Icatian Scout|Fallen Empires|C|1996|| -|Icatian Scout|Fallen Empires|C|1997|| -|Icatian Skirmishers|Fallen Empires|R|1998|| -|Icatian Town|Fallen Empires|R|1999|| -|Order of Leitbur|Fallen Empires|C|2000|| -|Order of Leitbur|Fallen Empires|C|2001|| -|Order of Leitbur|Fallen Empires|C|2002|| -|Bottomless Vault|Fallen Empires|R|2003|| -|Dwarven Hold|Fallen Empires|R|2004|| -|Dwarven Ruins|Fallen Empires|U|2005|| -|Ebon Stronghold|Fallen Empires|U|2006|| -|Havenwood Battleground|Fallen Empires|U|2007|| -|Hollow Trees|Fallen Empires|R|2008|| -|Icatian Store|Fallen Empires|R|2009|| -|Rainbow Vale|Fallen Empires|R|2010|| -|Ruins of Trokair|Fallen Empires|U|2011|| -|Sand Silos|Fallen Empires|R|2012|| -|Svyelunite Temple|Fallen Empires|U|2013|| -|Aladdin's Lamp|Fourth Edition|R|2014|| -|Aladdin's Ring|Fourth Edition|R|2015|| -|Amulet of Kroog|Fourth Edition|C|2016|| -|Ankh of Mishra|Fourth Edition|R|2017|| -|Armageddon Clock|Fourth Edition|R|2018|| -|Ashnod's Battle Gear|Fourth Edition|U|2019|| -|Battering Ram|Fourth Edition|C|2020|| -|Black Mana Battery|Fourth Edition|R|2021|| -|Black Vise|Fourth Edition|U|2022|| -|Blue Mana Battery|Fourth Edition|R|2023|| -|Bottle of Suleiman|Fourth Edition|R|2024|| -|Brass Man|Fourth Edition|U|2025|| -|Bronze Tablet|Fourth Edition|R|2026|| -|Celestial Prism|Fourth Edition|U|2027|| -|Clay Statue|Fourth Edition|C|2028|| -|Clockwork Avian|Fourth Edition|R|2029|| -|Clockwork Beast|Fourth Edition|R|2030|| -|Colossus of Sardia|Fourth Edition|R|2031|| -|Conservator|Fourth Edition|U|2032|| -|Coral Helm|Fourth Edition|R|2033|| -|Crystal Rod|Fourth Edition|U|2034|| -|Cursed Rack|Fourth Edition|U|2035|| -|Dancing Scimitar|Fourth Edition|R|2036|| -|Diabolic Machine|Fourth Edition|U|2037|| -|Dingus Egg|Fourth Edition|R|2038|| -|Disrupting Scepter|Fourth Edition|R|2039|| -|Dragon Engine|Fourth Edition|R|2040|| -|Ebony Horse|Fourth Edition|R|2041|| -|Fellwar Stone|Fourth Edition|U|2042|| -|Flying Carpet|Fourth Edition|R|2043|| -|Glasses of Urza|Fourth Edition|U|2044|| -|Grapeshot Catapult|Fourth Edition|C|2045|| -|Green Mana Battery|Fourth Edition|R|2046|| -|Helm of Chatzuk|Fourth Edition|R|2047|| -|Howling Mine|Fourth Edition|R|2048|| -|Iron Star|Fourth Edition|U|2049|| -|Ivory Cup|Fourth Edition|U|2050|| -|Ivory Tower|Fourth Edition|R|2051|| -|Jade Monolith|Fourth Edition|R|2052|| -|Jandor's Saddlebags|Fourth Edition|R|2053|| -|Jayemdae Tome|Fourth Edition|R|2054|| -|Kormus Bell|Fourth Edition|R|2055|| -|Library of Leng|Fourth Edition|U|2056|| -|Mana Vault|Fourth Edition|R|2057|| -|Meekstone|Fourth Edition|R|2058|| -|Millstone|Fourth Edition|R|2059|| -|Mishra's War Machine|Fourth Edition|R|2060|| -|Nevinyrral's Disk|Fourth Edition|R|2061|| -|Obsianus Golem|Fourth Edition|U|2062|| -|Onulet|Fourth Edition|R|2063|| -|Ornithopter|Fourth Edition|U|2064|| -|Primal Clay|Fourth Edition|R|2065|| -|Red Mana Battery|Fourth Edition|R|2066|| -|Rod of Ruin|Fourth Edition|U|2067|| -|Shapeshifter|Fourth Edition|U|2068|| -|Soul Net|Fourth Edition|U|2069|| -|Sunglasses of Urza|Fourth Edition|R|2070|| -|Tawnos's Wand|Fourth Edition|U|2071|| -|Tawnos's Weaponry|Fourth Edition|U|2072|| -|Tetravus|Fourth Edition|R|2073|| -|The Hive|Fourth Edition|R|2074|| -|The Rack|Fourth Edition|U|2075|| -|Throne of Bone|Fourth Edition|U|2076|| -|Triskelion|Fourth Edition|R|2077|| -|Urza's Avenger|Fourth Edition|R|2078|| -|Wall of Spears|Fourth Edition|C|2079|| -|White Mana Battery|Fourth Edition|R|2080|| -|Winter Orb|Fourth Edition|R|2081|| -|Wooden Sphere|Fourth Edition|U|2082|| -|Yotian Soldier|Fourth Edition|C|2083|| -|Abomination|Fourth Edition|U|2084|| -|Animate Dead|Fourth Edition|U|2085|| -|Ashes to Ashes|Fourth Edition|U|2086|| -|Bad Moon|Fourth Edition|R|2087|| -|Black Knight|Fourth Edition|U|2088|| -|Blight|Fourth Edition|U|2089|| -|Bog Imp|Fourth Edition|C|2090|| -|Bog Wraith|Fourth Edition|U|2091|| -|Carrion Ants|Fourth Edition|U|2092|| -|Cosmic Horror|Fourth Edition|R|2093|| -|Cursed Land|Fourth Edition|U|2094|| -|Cyclopean Mummy|Fourth Edition|C|2095|| -|Dark Ritual|Fourth Edition|C|2096|| -|Deathgrip|Fourth Edition|U|2097|| -|Deathlace|Fourth Edition|R|2098|| -|Drain Life|Fourth Edition|C|2099|| -|Drudge Skeletons|Fourth Edition|C|2100|| -|El-Hajjβj|Fourth Edition|R|2101|| -|Erg Raiders|Fourth Edition|C|2102|| -|Evil Presence|Fourth Edition|U|2103|| -|Fear|Fourth Edition|C|2104|| -|Frozen Shade|Fourth Edition|C|2105|| -|Gloom|Fourth Edition|U|2106|| -|Greed|Fourth Edition|R|2107|| -|Howl from Beyond|Fourth Edition|C|2108|| -|Hypnotic Specter|Fourth Edition|U|2109|| -|Junϊn Efreet|Fourth Edition|U|2110|| -|Lord of the Pit|Fourth Edition|R|2111|| -|Lost Soul|Fourth Edition|C|2112|| -|Marsh Gas|Fourth Edition|C|2113|| -|Mind Twist|Fourth Edition|R|2114|| -|Murk Dwellers|Fourth Edition|C|2115|| -|Nether Shadow|Fourth Edition|R|2116|| -|Nightmare|Fourth Edition|R|2117|| -|Paralyze|Fourth Edition|C|2118|| -|Pestilence|Fourth Edition|C|2119|| -|Pit Scorpion|Fourth Edition|C|2120|| -|Plague Rats|Fourth Edition|C|2121|| -|Rag Man|Fourth Edition|R|2122|| -|Raise Dead|Fourth Edition|C|2123|| -|Royal Assassin|Fourth Edition|R|2124|| -|Scathe Zombies|Fourth Edition|C|2125|| -|Scavenging Ghoul|Fourth Edition|U|2126|| -|Sengir Vampire|Fourth Edition|U|2127|| -|Simulacrum|Fourth Edition|U|2128|| -|Sorceress Queen|Fourth Edition|R|2129|| -|Spirit Shackle|Fourth Edition|U|2130|| -|Terror|Fourth Edition|C|2131|| -|Uncle Istvan|Fourth Edition|U|2132|| -|Unholy Strength|Fourth Edition|C|2133|| -|Vampire Bats|Fourth Edition|C|2134|| -|Wall of Bone|Fourth Edition|U|2135|| -|Warp Artifact|Fourth Edition|R|2136|| -|Weakness|Fourth Edition|C|2137|| -|Will-o'-the-Wisp|Fourth Edition|R|2138|| -|Word of Binding|Fourth Edition|C|2139|| -|Xenic Poltergeist|Fourth Edition|R|2140|| -|Zombie Master|Fourth Edition|R|2141|| -|Air Elemental|Fourth Edition|U|2142|| -|Animate Artifact|Fourth Edition|U|2143|| -|Apprentice Wizard|Fourth Edition|C|2144|| -|Backfire|Fourth Edition|U|2145|| -|Blue Elemental Blast|Fourth Edition|C|2146|| -|Control Magic|Fourth Edition|U|2147|| -|Counterspell|Fourth Edition|U|2148|| -|Creature Bond|Fourth Edition|C|2149|| -|Drain Power|Fourth Edition|R|2150|| -|Energy Flux|Fourth Edition|U|2151|| -|Energy Tap|Fourth Edition|C|2152|| -|Erosion|Fourth Edition|C|2153|| -|Feedback|Fourth Edition|U|2154|| -|Flight|Fourth Edition|C|2155|| -|Flood|Fourth Edition|C|2156|| -|Gaseous Form|Fourth Edition|C|2157|| -|Ghost Ship|Fourth Edition|U|2158|| -|Giant Tortoise|Fourth Edition|C|2159|| -|Hurkyl's Recall|Fourth Edition|R|2160|| -|Island Fish Jasconius|Fourth Edition|R|2161|| -|Jump|Fourth Edition|C|2162|| -|Leviathan|Fourth Edition|R|2163|| -|Lifetap|Fourth Edition|U|2164|| -|Lord of Atlantis|Fourth Edition|R|2165|| -|Magical Hack|Fourth Edition|R|2166|| -|Mahamoti Djinn|Fourth Edition|R|2167|| -|Mana Short|Fourth Edition|R|2168|| -|Merfolk of the Pearl Trident|Fourth Edition|C|2169|| -|Mind Bomb|Fourth Edition|U|2170|| -|Phantasmal Forces|Fourth Edition|U|2171|| -|Phantasmal Terrain|Fourth Edition|C|2172|| -|Phantom Monster|Fourth Edition|U|2173|| -|Pirate Ship|Fourth Edition|R|2174|| -|Power Leak|Fourth Edition|C|2175|| -|Power Sink|Fourth Edition|C|2176|| -|Prodigal Sorcerer|Fourth Edition|C|2177|| -|Psionic Entity|Fourth Edition|R|2178|| -|Psychic Venom|Fourth Edition|C|2179|| -|Relic Bind|Fourth Edition|R|2180|| -|Sea Serpent|Fourth Edition|C|2181|| -|Segovian Leviathan|Fourth Edition|U|2182|| -|Sindbad|Fourth Edition|U|2183|| -|Siren's Call|Fourth Edition|U|2184|| -|Sleight of Mind|Fourth Edition|R|2185|| -|Spell Blast|Fourth Edition|C|2186|| -|Stasis|Fourth Edition|R|2187|| -|Steal Artifact|Fourth Edition|U|2188|| -|Sunken City|Fourth Edition|C|2189|| -|Thoughtlace|Fourth Edition|R|2190|| -|Time Elemental|Fourth Edition|R|2191|| -|Twiddle|Fourth Edition|C|2192|| -|Unstable Mutation|Fourth Edition|C|2193|| -|Unsummon|Fourth Edition|C|2194|| -|Volcanic Eruption|Fourth Edition|R|2195|| -|Wall of Air|Fourth Edition|U|2196|| -|Wall of Water|Fourth Edition|U|2197|| -|Water Elemental|Fourth Edition|U|2198|| -|Zephyr Falcon|Fourth Edition|C|2199|| -|Aspect of Wolf|Fourth Edition|R|2200|| -|Birds of Paradise|Fourth Edition|R|2201|| -|Carnivorous Plant|Fourth Edition|C|2202|| -|Channel|Fourth Edition|U|2203|| -|Cockatrice|Fourth Edition|R|2204|| -|Craw Wurm|Fourth Edition|C|2205|| -|Crumble|Fourth Edition|U|2206|| -|Desert Twister|Fourth Edition|U|2207|| -|Durkwood Boars|Fourth Edition|C|2208|| -|Elven Riders|Fourth Edition|U|2209|| -|Elvish Archers|Fourth Edition|R|2210|| -|Fog|Fourth Edition|C|2211|| -|Force of Nature|Fourth Edition|R|2212|| -|Fungusaur|Fourth Edition|R|2213|| -|Gaea's Liege|Fourth Edition|R|2214|| -|Giant Growth|Fourth Edition|C|2215|| -|Giant Spider|Fourth Edition|C|2216|| -|Grizzly Bears|Fourth Edition|C|2217|| -|Hurricane|Fourth Edition|U|2218|| -|Instill Energy|Fourth Edition|U|2219|| -|Ironroot Treefolk|Fourth Edition|C|2220|| -|Killer Bees|Fourth Edition|U|2221|| -|Land Leeches|Fourth Edition|C|2222|| -|Ley Druid|Fourth Edition|U|2223|| -|Lifeforce|Fourth Edition|U|2224|| -|Lifelace|Fourth Edition|R|2225|| -|Living Artifact|Fourth Edition|R|2226|| -|Living Lands|Fourth Edition|R|2227|| -|Llanowar Elves|Fourth Edition|C|2228|| -|Lure|Fourth Edition|U|2229|| -|Marsh Viper|Fourth Edition|C|2230|| -|Nafs Asp|Fourth Edition|C|2231|| -|Pradesh Gypsies|Fourth Edition|C|2232|| -|Radjan Spirit|Fourth Edition|U|2233|| -|Rebirth|Fourth Edition|R|2234|| -|Regeneration|Fourth Edition|C|2235|| -|Sandstorm|Fourth Edition|C|2236|| -|Scryb Sprites|Fourth Edition|C|2237|| -|Shanodin Dryads|Fourth Edition|C|2238|| -|Stream of Life|Fourth Edition|C|2239|| -|Sylvan Library|Fourth Edition|R|2240|| -|Thicket Basilisk|Fourth Edition|U|2241|| -|Timber Wolves|Fourth Edition|R|2242|| -|Titania's Song|Fourth Edition|R|2243|| -|Tranquility|Fourth Edition|C|2244|| -|Tsunami|Fourth Edition|U|2245|| -|Untamed Wilds|Fourth Edition|U|2246|| -|Venom|Fourth Edition|C|2247|| -|Verduran Enchantress|Fourth Edition|R|2248|| -|Wall of Brambles|Fourth Edition|U|2249|| -|Wall of Ice|Fourth Edition|U|2250|| -|Wall of Wood|Fourth Edition|C|2251|| -|Wanderlust|Fourth Edition|U|2252|| -|War Mammoth|Fourth Edition|C|2253|| -|Web|Fourth Edition|R|2254|| -|Whirling Dervish|Fourth Edition|U|2255|| -|Wild Growth|Fourth Edition|C|2256|| -|Winter Blast|Fourth Edition|U|2257|| -|Ali Baba|Fourth Edition|U|2258|| -|Ball Lightning|Fourth Edition|R|2259|| -|Bird Maiden|Fourth Edition|C|2260|| -|Blood Lust|Fourth Edition|C|2261|| -|Brothers of Fire|Fourth Edition|C|2262|| -|Burrowing|Fourth Edition|U|2263|| -|Cave People|Fourth Edition|U|2264|| -|Chaoslace|Fourth Edition|R|2265|| -|Crimson Manticore|Fourth Edition|R|2266|| -|Detonate|Fourth Edition|U|2267|| -|Disintegrate|Fourth Edition|C|2268|| -|Dragon Whelp|Fourth Edition|U|2269|| -|Dwarven Warriors|Fourth Edition|C|2270|| -|Earth Elemental|Fourth Edition|U|2271|| -|Earthquake|Fourth Edition|R|2272|| -|Eternal Warrior|Fourth Edition|C|2273|| -|Fire Elemental|Fourth Edition|U|2274|| -|Fireball|Fourth Edition|C|2275|| -|Firebreathing|Fourth Edition|C|2276|| -|Fissure|Fourth Edition|C|2277|| -|Flashfires|Fourth Edition|U|2278|| -|Giant Strength|Fourth Edition|C|2279|| -|Goblin Balloon Brigade|Fourth Edition|U|2280|| -|Goblin King|Fourth Edition|R|2281|| -|Goblin Rock Sled|Fourth Edition|C|2282|| -|Gray Ogre|Fourth Edition|C|2283|| -|Hill Giant|Fourth Edition|C|2284|| -|Hurloon Minotaur|Fourth Edition|C|2285|| -|Hurr Jackal|Fourth Edition|R|2286|| -|Immolation|Fourth Edition|C|2287|| -|Inferno|Fourth Edition|R|2288|| -|Ironclaw Orcs|Fourth Edition|C|2289|| -|Keldon Warlord|Fourth Edition|U|2290|| -|Lightning Bolt|Fourth Edition|C|2291|| -|Magnetic Mountain|Fourth Edition|R|2292|| -|Mana Clash|Fourth Edition|R|2293|| -|Mana Flare|Fourth Edition|R|2294|| -|Manabarbs|Fourth Edition|R|2295|| -|Mons's Goblin Raiders|Fourth Edition|C|2296|| -|Orcish Artillery|Fourth Edition|U|2297|| -|Orcish Oriflamme|Fourth Edition|U|2298|| -|Power Surge|Fourth Edition|R|2299|| -|Pyrotechnics|Fourth Edition|U|2300|| -|Red Elemental Blast|Fourth Edition|C|2301|| -|Shatter|Fourth Edition|C|2302|| -|Shivan Dragon|Fourth Edition|R|2303|| -|Sisters of the Flame|Fourth Edition|C|2304|| -|Smoke|Fourth Edition|R|2305|| -|Stone Giant|Fourth Edition|U|2306|| -|Stone Rain|Fourth Edition|C|2307|| -|Tempest Efreet|Fourth Edition|R|2308|| -|The Brute|Fourth Edition|C|2309|| -|Tunnel|Fourth Edition|U|2310|| -|Uthden Troll|Fourth Edition|U|2311|| -|Wall of Dust|Fourth Edition|U|2312|| -|Wall of Fire|Fourth Edition|U|2313|| -|Wall of Stone|Fourth Edition|U|2314|| -|Winds of Change|Fourth Edition|R|2315|| -|Alabaster Potion|Fourth Edition|C|2316|| -|Amrou Kithkin|Fourth Edition|C|2317|| -|Angry Mob|Fourth Edition|U|2318|| -|Animate Wall|Fourth Edition|R|2319|| -|Armageddon|Fourth Edition|R|2320|| -|Balance|Fourth Edition|R|2321|| -|Benalish Hero|Fourth Edition|C|2322|| -|Black Ward|Fourth Edition|U|2323|| -|Blessing|Fourth Edition|R|2324|| -|Blue Ward|Fourth Edition|U|2325|| -|Brainwash|Fourth Edition|C|2326|| -|Castle|Fourth Edition|U|2327|| -|Circle of Protection: Artifacts|Fourth Edition|U|2328|| -|Circle of Protection: Black|Fourth Edition|C|2329|| -|Circle of Protection: Blue|Fourth Edition|C|2330|| -|Circle of Protection: Green|Fourth Edition|C|2331|| -|Circle of Protection: Red|Fourth Edition|C|2332|| -|Circle of Protection: White|Fourth Edition|C|2333|| -|Conversion|Fourth Edition|U|2334|| -|Crusade|Fourth Edition|R|2335|| -|Death Ward|Fourth Edition|C|2336|| -|Disenchant|Fourth Edition|C|2337|| -|Divine Transformation|Fourth Edition|U|2338|| -|Elder Land Wurm|Fourth Edition|R|2339|| -|Eye for an Eye|Fourth Edition|R|2340|| -|Fortified Area|Fourth Edition|C|2341|| -|Green Ward|Fourth Edition|U|2342|| -|Healing Salve|Fourth Edition|C|2343|| -|Holy Armor|Fourth Edition|C|2344|| -|Holy Strength|Fourth Edition|C|2345|| -|Island Sanctuary|Fourth Edition|R|2346|| -|Karma|Fourth Edition|U|2347|| -|Kismet|Fourth Edition|U|2348|| -|Land Tax|Fourth Edition|R|2349|| -|Mesa Pegasus|Fourth Edition|C|2350|| -|Morale|Fourth Edition|C|2351|| -|Northern Paladin|Fourth Edition|R|2352|| -|Osai Vultures|Fourth Edition|U|2353|| -|Pearled Unicorn|Fourth Edition|C|2354|| -|Personal Incarnation|Fourth Edition|R|2355|| -|Piety|Fourth Edition|C|2356|| -|Pikemen|Fourth Edition|C|2357|| -|Purelace|Fourth Edition|R|2358|| -|Red Ward|Fourth Edition|U|2359|| -|Reverse Damage|Fourth Edition|R|2360|| -|Righteousness|Fourth Edition|R|2361|| -|Samite Healer|Fourth Edition|C|2362|| -|Savannah Lions|Fourth Edition|R|2363|| -|Seeker|Fourth Edition|C|2364|| -|Serra Angel|Fourth Edition|U|2365|| -|Spirit Link|Fourth Edition|U|2366|| -|Swords to Plowshares|Fourth Edition|U|2367|| -|Tundra Wolves|Fourth Edition|C|2368|| -|Visions|Fourth Edition|U|2369|| -|Wall of Swords|Fourth Edition|U|2370|| -|White Knight|Fourth Edition|U|2371|| -|White Ward|Fourth Edition|U|2372|| -|Wrath of God|Fourth Edition|R|2373|| -|Swamp|Fourth Edition|L|2374|| -|Swamp|Fourth Edition|L|2375|| -|Swamp|Fourth Edition|L|2376|| -|Forest|Fourth Edition|L|2377|| -|Forest|Fourth Edition|L|2378|| -|Forest|Fourth Edition|L|2379|| -|Strip Mine|Fourth Edition|U|2380|| -|Mountain|Fourth Edition|L|2381|| -|Mountain|Fourth Edition|L|2382|| -|Mountain|Fourth Edition|L|2383|| -|Plains|Fourth Edition|L|2384|| -|Plains|Fourth Edition|L|2385|| -|Plains|Fourth Edition|L|2386|| -|Mishra's Factory|Fourth Edition|U|2387|| -|Oasis|Fourth Edition|U|2388|| -|Island|Fourth Edition|L|2389|| -|Island|Fourth Edition|L|2390|| -|Island|Fourth Edition|L|2391|| -|Adarkar Sentinel|Ice Age|U|2392|| -|Aegis of the Meek|Ice Age|R|2393|| -|Amulet of Quoz|Ice Age|R|2394|| -|Arcum's Sleigh|Ice Age|U|2395|| -|Arcum's Weathervane|Ice Age|U|2396|| -|Arcum's Whistle|Ice Age|U|2397|| -|Barbed Sextant|Ice Age|C|2398|| -|Baton of Morale|Ice Age|U|2399|| -|Celestial Sword|Ice Age|R|2400|| -|Crown of the Ages|Ice Age|R|2401|| -|Despotic Scepter|Ice Age|R|2402|| -|Elkin Bottle|Ice Age|R|2403|| -|Fyndhorn Bow|Ice Age|U|2404|| -|Goblin Lyre|Ice Age|R|2405|| -|Hematite Talisman|Ice Age|U|2406|| -|Ice Cauldron|Ice Age|R|2407|| -|Icy Manipulator|Ice Age|U|2408|| -|Infinite Hourglass|Ice Age|R|2409|| -|Jester's Cap|Ice Age|R|2410|| -|Jester's Mask|Ice Age|R|2411|| -|Jeweled Amulet|Ice Age|U|2412|| -|Lapis Lazuli Talisman|Ice Age|U|2413|| -|Malachite Talisman|Ice Age|U|2414|| -|Nacre Talisman|Ice Age|U|2415|| -|Naked Singularity|Ice Age|R|2416|| -|Onyx Talisman|Ice Age|U|2417|| -|Pentagram of the Ages|Ice Age|R|2418|| -|Pit Trap|Ice Age|U|2419|| -|Runed Arch|Ice Age|R|2420|| -|Shield of the Ages|Ice Age|U|2421|| -|Skull Catapult|Ice Age|U|2422|| -|Snow Fortress|Ice Age|R|2423|| -|Soldevi Golem|Ice Age|R|2424|| -|Soldevi Simulacrum|Ice Age|U|2425|| -|Staff of the Ages|Ice Age|R|2426|| -|Sunstone|Ice Age|U|2427|| -|Time Bomb|Ice Age|R|2428|| -|Urza's Bauble|Ice Age|U|2429|| -|Vexing Arcanix|Ice Age|R|2430|| -|Vibrating Sphere|Ice Age|R|2431|| -|Walking Wall|Ice Age|U|2432|| -|Wall of Shields|Ice Age|U|2433|| -|War Chariot|Ice Age|U|2434|| -|Whalebone Glider|Ice Age|U|2435|| -|Zuran Orb|Ice Age|U|2436|| -|Abyssal Specter|Ice Age|U|2437|| -|Ashen Ghoul|Ice Age|U|2438|| -|Brine Shaman|Ice Age|C|2439|| -|Burnt Offering|Ice Age|C|2440|| -|Cloak of Confusion|Ice Age|C|2441|| -|Dance of the Dead|Ice Age|U|2442|| -|Dark Banishing|Ice Age|C|2443|| -|Dark Ritual|Ice Age|C|2444|| -|Demonic Consultation|Ice Age|U|2445|| -|Dread Wight|Ice Age|R|2446|| -|Drift of the Dead|Ice Age|U|2447|| -|Fear|Ice Age|C|2448|| -|Flow of Maggots|Ice Age|R|2449|| -|Foul Familiar|Ice Age|C|2450|| -|Gangrenous Zombies|Ice Age|C|2451|| -|Gaze of Pain|Ice Age|C|2452|| -|Gravebind|Ice Age|R|2453|| -|Hecatomb|Ice Age|R|2454|| -|Hoar Shade|Ice Age|C|2455|| -|Howl from Beyond|Ice Age|C|2456|| -|Hyalopterous Lemure|Ice Age|U|2457|| -|Icequake|Ice Age|U|2458|| -|Infernal Darkness|Ice Age|R|2459|| -|Infernal Denizen|Ice Age|R|2460|| -|Kjeldoran Dead|Ice Age|C|2461|| -|Knight of Stromgald|Ice Age|U|2462|| -|Krovikan Elementalist|Ice Age|U|2463|| -|Krovikan Fetish|Ice Age|C|2464|| -|Krovikan Vampire|Ice Age|U|2465|| -|Legions of Lim-Dϋl|Ice Age|C|2466|| -|Leshrac's Rite|Ice Age|U|2467|| -|Leshrac's Sigil|Ice Age|U|2468|| -|Lim-Dϋl's Cohort|Ice Age|C|2469|| -|Lim-Dϋl's Hex|Ice Age|U|2470|| -|Mind Ravel|Ice Age|C|2471|| -|Mind Warp|Ice Age|U|2472|| -|Mind Whip|Ice Age|R|2473|| -|Minion of Leshrac|Ice Age|R|2474|| -|Minion of Tevesh Szat|Ice Age|R|2475|| -|Mole Worms|Ice Age|U|2476|| -|Moor Fiend|Ice Age|C|2477|| -|Necropotence|Ice Age|R|2478|| -|Norritt|Ice Age|C|2479|| -|Oath of Lim-Dϋl|Ice Age|R|2480|| -|Pestilence Rats|Ice Age|C|2481|| -|Pox|Ice Age|R|2482|| -|Seizures|Ice Age|C|2483|| -|Songs of the Damned|Ice Age|C|2484|| -|Soul Burn|Ice Age|C|2485|| -|Soul Kiss|Ice Age|C|2486|| -|Spoils of Evil|Ice Age|R|2487|| -|Spoils of War|Ice Age|R|2488|| -|Stench of Evil|Ice Age|U|2489|| -|Stromgald Cabal|Ice Age|R|2490|| -|Touch of Death|Ice Age|C|2491|| -|Withering Wisps|Ice Age|U|2492|| -|Arnjlot's Ascent|Ice Age|C|2493|| -|Balduvian Conjurer|Ice Age|U|2494|| -|Balduvian Shaman|Ice Age|C|2495|| -|Binding Grasp|Ice Age|U|2496|| -|Brainstorm|Ice Age|C|2497|| -|Breath of Dreams|Ice Age|U|2498|| -|Clairvoyance|Ice Age|C|2499|| -|Counterspell|Ice Age|C|2500|| -|Deflection|Ice Age|R|2501|| -|Dreams of the Dead|Ice Age|U|2502|| -|Enervate|Ice Age|C|2503|| -|Errant Minion|Ice Age|C|2504|| -|Essence Flare|Ice Age|C|2505|| -|Force Void|Ice Age|U|2506|| -|Glacial Wall|Ice Age|U|2507|| -|Hydroblast|Ice Age|C|2508|| -|Iceberg|Ice Age|U|2509|| -|Icy Prison|Ice Age|R|2510|| -|Illusionary Forces|Ice Age|C|2511|| -|Illusionary Presence|Ice Age|R|2512|| -|Illusionary Terrain|Ice Age|U|2513|| -|Illusionary Wall|Ice Age|C|2514|| -|Illusions of Grandeur|Ice Age|R|2515|| -|Infuse|Ice Age|C|2516|| -|Krovikan Sorcerer|Ice Age|C|2517|| -|Magus of the Unseen|Ice Age|R|2518|| -|Mesmeric Trance|Ice Age|R|2519|| -|Mistfolk|Ice Age|C|2520|| -|Musician|Ice Age|R|2521|| -|Mystic Might|Ice Age|R|2522|| -|Mystic Remora|Ice Age|C|2523|| -|Phantasmal Mount|Ice Age|U|2524|| -|Polar Kraken|Ice Age|R|2525|| -|Portent|Ice Age|C|2526|| -|Power Sink|Ice Age|C|2527|| -|Ray of Command|Ice Age|C|2528|| -|Ray of Erasure|Ice Age|C|2529|| -|Reality Twist|Ice Age|R|2530|| -|Sea Spirit|Ice Age|U|2531|| -|Shyft|Ice Age|R|2532|| -|Sibilant Spirit|Ice Age|R|2533|| -|Silver Erne|Ice Age|U|2534|| -|Sleight of Mind|Ice Age|U|2535|| -|Snow Devil|Ice Age|C|2536|| -|Snowfall|Ice Age|C|2537|| -|Soldevi Machinist|Ice Age|U|2538|| -|Soul Barrier|Ice Age|U|2539|| -|Thunder Wall|Ice Age|U|2540|| -|Updraft|Ice Age|U|2541|| -|Wind Spirit|Ice Age|U|2542|| -|Winter's Chill|Ice Age|R|2543|| -|Word of Undoing|Ice Age|C|2544|| -|Wrath of Marit Lage|Ice Age|R|2545|| -|Zur's Weirding|Ice Age|R|2546|| -|Zuran Enchanter|Ice Age|C|2547|| -|Zuran Spellcaster|Ice Age|C|2548|| -|Aurochs|Ice Age|C|2549|| -|Balduvian Bears|Ice Age|C|2550|| -|Blizzard|Ice Age|R|2551|| -|Brown Ouphe|Ice Age|C|2552|| -|Chub Toad|Ice Age|C|2553|| -|Dire Wolves|Ice Age|C|2554|| -|Earthlore|Ice Age|C|2555|| -|Elder Druid|Ice Age|R|2556|| -|Essence Filter|Ice Age|C|2557|| -|Fanatical Fever|Ice Age|U|2558|| -|Folk of the Pines|Ice Age|C|2559|| -|Forbidden Lore|Ice Age|R|2560|| -|Forgotten Lore|Ice Age|U|2561|| -|Foxfire|Ice Age|C|2562|| -|Freyalise Supplicant|Ice Age|U|2563|| -|Freyalise's Charm|Ice Age|U|2564|| -|Freyalise's Winds|Ice Age|R|2565|| -|Fyndhorn Brownie|Ice Age|C|2566|| -|Fyndhorn Elder|Ice Age|U|2567|| -|Fyndhorn Elves|Ice Age|C|2568|| -|Fyndhorn Pollen|Ice Age|R|2569|| -|Giant Growth|Ice Age|C|2570|| -|Gorilla Pack|Ice Age|C|2571|| -|Hot Springs|Ice Age|R|2572|| -|Hurricane|Ice Age|U|2573|| -|Johtull Wurm|Ice Age|U|2574|| -|Juniper Order Druid|Ice Age|C|2575|| -|Lhurgoyf|Ice Age|R|2576|| -|Lure|Ice Age|U|2577|| -|Maddening Wind|Ice Age|U|2578|| -|Nature's Lore|Ice Age|U|2579|| -|Pale Bears|Ice Age|R|2580|| -|Pygmy Allosaurus|Ice Age|R|2581|| -|Pyknite|Ice Age|C|2582|| -|Regeneration|Ice Age|C|2583|| -|Rime Dryad|Ice Age|C|2584|| -|Ritual of Subdual|Ice Age|R|2585|| -|Scaled Wurm|Ice Age|C|2586|| -|Shambling Strider|Ice Age|C|2587|| -|Snowblind|Ice Age|R|2588|| -|Stampede|Ice Age|R|2589|| -|Stunted Growth|Ice Age|R|2590|| -|Tarpan|Ice Age|C|2591|| -|Thermokarst|Ice Age|U|2592|| -|Thoughtleech|Ice Age|U|2593|| -|Tinder Wall|Ice Age|C|2594|| -|Touch of Vitae|Ice Age|U|2595|| -|Trailblazer|Ice Age|R|2596|| -|Venomous Breath|Ice Age|U|2597|| -|Wall of Pine Needles|Ice Age|U|2598|| -|Whiteout|Ice Age|U|2599|| -|Wiitigo|Ice Age|R|2600|| -|Wild Growth|Ice Age|C|2601|| -|Woolly Mammoths|Ice Age|C|2602|| -|Woolly Spider|Ice Age|C|2603|| -|Yavimaya Gnats|Ice Age|U|2604|| -|Aggression|Ice Age|U|2605|| -|Anarchy|Ice Age|U|2606|| -|Avalanche|Ice Age|U|2607|| -|Balduvian Barbarians|Ice Age|C|2608|| -|Balduvian Hydra|Ice Age|R|2609|| -|Barbarian Guides|Ice Age|C|2610|| -|Battle Frenzy|Ice Age|C|2611|| -|Bone Shaman|Ice Age|C|2612|| -|Brand of Ill Omen|Ice Age|R|2613|| -|Chaos Lord|Ice Age|R|2614|| -|Chaos Moon|Ice Age|R|2615|| -|Conquer|Ice Age|U|2616|| -|Curse of Marit Lage|Ice Age|R|2617|| -|Dwarven Armory|Ice Age|R|2618|| -|Errantry|Ice Age|C|2619|| -|Flame Spirit|Ice Age|U|2620|| -|Flare|Ice Age|C|2621|| -|Game of Chaos|Ice Age|R|2622|| -|Glacial Crevasses|Ice Age|R|2623|| -|Goblin Mutant|Ice Age|U|2624|| -|Goblin Sappers|Ice Age|C|2625|| -|Goblin Ski Patrol|Ice Age|C|2626|| -|Goblin Snowman|Ice Age|U|2627|| -|Grizzled Wolverine|Ice Age|C|2628|| -|Imposing Visage|Ice Age|C|2629|| -|Incinerate|Ice Age|C|2630|| -|Jokulhaups|Ice Age|R|2631|| -|Karplusan Giant|Ice Age|U|2632|| -|Karplusan Yeti|Ice Age|R|2633|| -|Lava Burst|Ice Age|C|2634|| -|Mαrton Stromgald|Ice Age|R|2635|| -|Melee|Ice Age|U|2636|| -|Melting|Ice Age|U|2637|| -|Meteor Shower|Ice Age|C|2638|| -|Mountain Goat|Ice Age|C|2639|| -|Mudslide|Ice Age|R|2640|| -|Orcish Cannoneers|Ice Age|U|2641|| -|Orcish Conscripts|Ice Age|C|2642|| -|Orcish Farmer|Ice Age|C|2643|| -|Orcish Healer|Ice Age|U|2644|| -|Orcish Librarian|Ice Age|R|2645|| -|Orcish Lumberjack|Ice Age|C|2646|| -|Orcish Squatters|Ice Age|R|2647|| -|Panic|Ice Age|C|2648|| -|Pyroblast|Ice Age|C|2649|| -|Pyroclasm|Ice Age|U|2650|| -|Sabretooth Tiger|Ice Age|C|2651|| -|Shatter|Ice Age|C|2652|| -|Stone Rain|Ice Age|C|2653|| -|Stone Spirit|Ice Age|U|2654|| -|Stonehands|Ice Age|C|2655|| -|Tor Giant|Ice Age|C|2656|| -|Total War|Ice Age|R|2657|| -|Vertigo|Ice Age|U|2658|| -|Wall of Lava|Ice Age|U|2659|| -|Word of Blasting|Ice Age|U|2660|| -|Adarkar Unicorn|Ice Age|C|2661|| -|Arctic Foxes|Ice Age|C|2662|| -|Arenson's Aura|Ice Age|C|2663|| -|Armor of Faith|Ice Age|C|2664|| -|Battle Cry|Ice Age|U|2665|| -|Black Scarab|Ice Age|U|2666|| -|Blessed Wine|Ice Age|C|2667|| -|Blinking Spirit|Ice Age|R|2668|| -|Blue Scarab|Ice Age|U|2669|| -|Call to Arms|Ice Age|R|2670|| -|Caribou Range|Ice Age|R|2671|| -|Circle of Protection: Black|Ice Age|C|2672|| -|Circle of Protection: Blue|Ice Age|C|2673|| -|Circle of Protection: Green|Ice Age|C|2674|| -|Circle of Protection: Red|Ice Age|C|2675|| -|Circle of Protection: White|Ice Age|C|2676|| -|Cold Snap|Ice Age|U|2677|| -|Cooperation|Ice Age|C|2678|| -|Death Ward|Ice Age|C|2679|| -|Disenchant|Ice Age|C|2680|| -|Drought|Ice Age|U|2681|| -|Elvish Healer|Ice Age|C|2682|| -|Enduring Renewal|Ice Age|R|2683|| -|Energy Storm|Ice Age|R|2684|| -|Formation|Ice Age|R|2685|| -|Fylgja|Ice Age|C|2686|| -|General Jarkeld|Ice Age|R|2687|| -|Green Scarab|Ice Age|U|2688|| -|Hallowed Ground|Ice Age|U|2689|| -|Heal|Ice Age|C|2690|| -|Hipparion|Ice Age|U|2691|| -|Justice|Ice Age|U|2692|| -|Kelsinko Ranger|Ice Age|C|2693|| -|Kjeldoran Elite Guard|Ice Age|U|2694|| -|Kjeldoran Guard|Ice Age|C|2695|| -|Kjeldoran Knight|Ice Age|R|2696|| -|Kjeldoran Phalanx|Ice Age|R|2697|| -|Kjeldoran Royal Guard|Ice Age|R|2698|| -|Kjeldoran Skycaptain|Ice Age|U|2699|| -|Kjeldoran Skyknight|Ice Age|C|2700|| -|Kjeldoran Warrior|Ice Age|C|2701|| -|Lightning Blow|Ice Age|R|2702|| -|Lost Order of Jarkeld|Ice Age|R|2703|| -|Mercenaries|Ice Age|R|2704|| -|Order of the Sacred Torch|Ice Age|R|2705|| -|Order of the White Shield|Ice Age|U|2706|| -|Prismatic Ward|Ice Age|C|2707|| -|Rally|Ice Age|C|2708|| -|Red Scarab|Ice Age|U|2709|| -|Sacred Boon|Ice Age|U|2710|| -|Seraph|Ice Age|R|2711|| -|Shield Bearer|Ice Age|C|2712|| -|Snow Hound|Ice Age|U|2713|| -|Swords to Plowshares|Ice Age|U|2714|| -|Warning|Ice Age|C|2715|| -|White Scarab|Ice Age|U|2716|| -|Altar of Bone|Ice Age|R|2717|| -|Centaur Archer|Ice Age|U|2718|| -|Chromatic Armor|Ice Age|R|2719|| -|Diabolic Vision|Ice Age|U|2720|| -|Earthlink|Ice Age|R|2721|| -|Elemental Augury|Ice Age|R|2722|| -|Essence Vortex|Ice Age|U|2723|| -|Fiery Justice|Ice Age|R|2724|| -|Fire Covenant|Ice Age|U|2725|| -|Flooded Woodlands|Ice Age|R|2726|| -|Fumarole|Ice Age|U|2727|| -|Ghostly Flame|Ice Age|R|2728|| -|Giant Trap Door Spider|Ice Age|U|2729|| -|Glaciers|Ice Age|R|2730|| -|Hymn of Rebirth|Ice Age|U|2731|| -|Kjeldoran Frostbeast|Ice Age|U|2732|| -|Merieke Ri Berit|Ice Age|R|2733|| -|Monsoon|Ice Age|R|2734|| -|Mountain Titan|Ice Age|R|2735|| -|Reclamation|Ice Age|R|2736|| -|Skeleton Ship|Ice Age|R|2737|| -|Spectral Shield|Ice Age|U|2738|| -|Storm Spirit|Ice Age|R|2739|| -|Stormbind|Ice Age|R|2740|| -|Wings of Aesthir|Ice Age|U|2741|| -|Snow-Covered Swamp|Ice Age|L|2742|| -|Swamp|Ice Age|L|2743|| -|Swamp|Ice Age|L|2744|| -|Swamp|Ice Age|L|2745|| -|Forest|Ice Age|L|2746|| -|Forest|Ice Age|L|2747|| -|Forest|Ice Age|L|2748|| -|Snow-Covered Forest|Ice Age|L|2749|| -|Adarkar Wastes|Ice Age|R|2750|| -|Brushland|Ice Age|R|2751|| -|Glacial Chasm|Ice Age|U|2752|| -|Halls of Mist|Ice Age|R|2753|| -|Ice Floe|Ice Age|U|2754|| -|Karplusan Forest|Ice Age|R|2755|| -|Land Cap|Ice Age|R|2756|| -|Lava Tubes|Ice Age|R|2757|| -|River Delta|Ice Age|R|2758|| -|Sulfurous Springs|Ice Age|R|2759|| -|Timberline Ridge|Ice Age|R|2760|| -|Underground River|Ice Age|R|2761|| -|Veldt|Ice Age|R|2762|| -|Mountain|Ice Age|L|2763|| -|Mountain|Ice Age|L|2764|| -|Mountain|Ice Age|L|2765|| -|Snow-Covered Mountain|Ice Age|L|2766|| -|Island|Ice Age|L|2767|| -|Island|Ice Age|L|2768|| -|Island|Ice Age|L|2769|| -|Snow-Covered Island|Ice Age|L|2770|| -|Plains|Ice Age|L|2771|| -|Plains|Ice Age|L|2772|| -|Plains|Ice Age|L|2773|| -|Snow-Covered Plains|Ice Age|L|2774|| -|Arena of the Ancients|Chronicles|R|2775|| -|Ashnod's Altar|Chronicles|C|2776|| -|Ashnod's Transmogrant|Chronicles|C|2777|| -|Barl's Cage|Chronicles|R|2778|| -|Book of Rass|Chronicles|R|2779|| -|Bronze Horse|Chronicles|R|2780|| -|Feldon's Cane|Chronicles|C|2781|| -|Fountain of Youth|Chronicles|C|2782|| -|Gauntlets of Chaos|Chronicles|R|2783|| -|Horn of Deafening|Chronicles|R|2784|| -|Jalum Tome|Chronicles|R|2785|| -|Jeweled Bird|Chronicles|R|2786|| -|Living Armor|Chronicles|C|2787|| -|Obelisk of Undoing|Chronicles|R|2788|| -|Rakalite|Chronicles|R|2789|| -|Runesword|Chronicles|C|2790|| -|Sentinel|Chronicles|R|2791|| -|Serpent Generator|Chronicles|R|2792|| -|Tormod's Crypt|Chronicles|C|2793|| -|Triassic Egg|Chronicles|R|2794|| -|Voodoo Doll|Chronicles|R|2795|| -|Azure Drake|Chronicles|U|2796|| -|Banshee|Chronicles|U|2797|| -|Bog Rats|Chronicles|C|2798|| -|Boomerang|Chronicles|C|2799|| -|Cuombajj Witches|Chronicles|C|2800|| -|Dance of Many|Chronicles|R|2801|| -|Dandβn|Chronicles|C|2802|| -|Enchantment Alteration|Chronicles|U|2803|| -|Fallen Angel|Chronicles|U|2804|| -|Fishliver Oil|Chronicles|C|2805|| -|Flash Flood|Chronicles|C|2806|| -|Giant Slug|Chronicles|C|2807|| -|Hasran Ogress|Chronicles|C|2808|| -|Hell's Caretaker|Chronicles|R|2809|| -|Juxtapose|Chronicles|R|2810|| -|Puppet Master|Chronicles|U|2811|| -|Recall|Chronicles|U|2812|| -|Remove Soul|Chronicles|C|2813|| -|Shimian Night Stalker|Chronicles|U|2814|| -|Takklemaggot|Chronicles|U|2815|| -|Teleport|Chronicles|R|2816|| -|The Fallen|Chronicles|U|2817|| -|The Wretched|Chronicles|R|2818|| -|Transmutation|Chronicles|C|2819|| -|Wall of Shadows|Chronicles|C|2820|| -|Wall of Vapor|Chronicles|C|2821|| -|Wall of Wonder|Chronicles|U|2822|| -|Yawgmoth Demon|Chronicles|R|2823|| -|Argothian Pixies|Chronicles|C|2824|| -|Cat Warriors|Chronicles|C|2825|| -|Cocoon|Chronicles|U|2826|| -|Concordant Crossroads|Chronicles|R|2827|| -|Craw Giant|Chronicles|U|2828|| -|Cyclone|Chronicles|R|2829|| -|Emerald Dragonfly|Chronicles|C|2830|| -|Erhnam Djinn|Chronicles|U|2831|| -|Ghazbαn Ogre|Chronicles|C|2832|| -|Metamorphosis|Chronicles|C|2833|| -|Rabid Wombat|Chronicles|U|2834|| -|Revelation|Chronicles|R|2835|| -|Scavenger Folk|Chronicles|C|2836|| -|Storm Seeker|Chronicles|U|2837|| -|Abu Ja'far|Chronicles|U|2838|| -|Active Volcano|Chronicles|C|2839|| -|Aladdin|Chronicles|U|2840|| -|Beasts of Bogardan|Chronicles|U|2841|| -|Blood Moon|Chronicles|R|2842|| -|Fire Drake|Chronicles|U|2843|| -|Goblin Artisans|Chronicles|U|2844|| -|Goblin Digging Team|Chronicles|C|2845|| -|Goblin Shrine|Chronicles|C|2846|| -|Goblins of the Flarg|Chronicles|C|2847|| -|Land's Edge|Chronicles|R|2848|| -|Mountain Yeti|Chronicles|C|2849|| -|Primordial Ooze|Chronicles|U|2850|| -|Wall of Heat|Chronicles|C|2851|| -|Wall of Opposition|Chronicles|U|2852|| -|Akron Legionnaire|Chronicles|R|2853|| -|Angelic Voices|Chronicles|R|2854|| -|Blood of the Martyr|Chronicles|U|2855|| -|D'Avenant Archer|Chronicles|C|2856|| -|Divine Offering|Chronicles|C|2857|| -|Indestructible Aura|Chronicles|C|2858|| -|Ivory Guardians|Chronicles|U|2859|| -|Keepers of the Faith|Chronicles|C|2860|| -|Petra Sphinx|Chronicles|R|2861|| -|Repentant Blacksmith|Chronicles|C|2862|| -|Shield Wall|Chronicles|U|2863|| -|War Elephant|Chronicles|C|2864|| -|Witch Hunter|Chronicles|U|2865|| -|Arcades Sabboth|Chronicles|R|2866|| -|Axelrod Gunnarson|Chronicles|R|2867|| -|Ayesha Tanaka|Chronicles|R|2868|| -|Chromium|Chronicles|R|2869|| -|Dakkon Blackblade|Chronicles|R|2870|| -|Gabriel Angelfire|Chronicles|R|2871|| -|Johan|Chronicles|R|2872|| -|Kei Takahashi|Chronicles|U|2873|| -|Marhault Elsdragon|Chronicles|U|2874|| -|Nebuchadnezzar|Chronicles|R|2875|| -|Nicol Bolas|Chronicles|R|2876|| -|Palladia-Mors|Chronicles|R|2877|| -|Rubinia Soulsinger|Chronicles|R|2878|| -|Sivitri Scarzam|Chronicles|U|2879|| -|Sol'kanar the Swamp King|Chronicles|R|2880|| -|Stangg|Chronicles|R|2881|| -|Tobias Andrion|Chronicles|U|2882|| -|Tor Wauki|Chronicles|U|2883|| -|Vaevictis Asmadi|Chronicles|R|2884|| -|Xira Arien|Chronicles|R|2885|| -|City of Brass|Chronicles|R|2886|| -|Safe Haven|Chronicles|R|2887|| -|Urza's Mine|Chronicles|U|2888|| -|Urza's Mine|Chronicles|U|2889|| -|Urza's Mine|Chronicles|U|2890|| -|Urza's Mine|Chronicles|U|2891|| -|Urza's Power Plant|Chronicles|U|2892|| -|Urza's Power Plant|Chronicles|U|2893|| -|Urza's Power Plant|Chronicles|U|2894|| -|Urza's Power Plant|Chronicles|U|2895|| -|Urza's Tower|Chronicles|U|2896|| -|Urza's Tower|Chronicles|U|2897|| -|Urza's Tower|Chronicles|U|2898|| -|Urza's Tower|Chronicles|U|2899|| -|Apocalypse Chime|Homelands|R|2900|| -|Clockwork Gnomes|Homelands|C|2901|| -|Clockwork Steed|Homelands|C|2902|| -|Clockwork Swarm|Homelands|C|2903|| -|Didgeridoo|Homelands|R|2904|| -|Ebony Rhino|Homelands|C|2905|| -|Feroz's Ban|Homelands|R|2906|| -|Joven's Tools|Homelands|U|2907|| -|Roterothopter|Homelands|C|2908|| -|Serrated Arrows|Homelands|C|2909|| -|Baron Sengir|Homelands|R|2910|| -|Black Carriage|Homelands|R|2911|| -|Broken Visage|Homelands|R|2912|| -|Cemetery Gate|Homelands|C|2913|| -|Cemetery Gate|Homelands|C|2914|| -|Drudge Spell|Homelands|U|2915|| -|Dry Spell|Homelands|C|2916|| -|Dry Spell|Homelands|C|2917|| -|Feast of the Unicorn|Homelands|C|2918|| -|Feast of the Unicorn|Homelands|C|2919|| -|Funeral March|Homelands|C|2920|| -|Ghost Hounds|Homelands|U|2921|| -|Grandmother Sengir|Homelands|R|2922|| -|Greater Werewolf|Homelands|C|2923|| -|Headstone|Homelands|C|2924|| -|Ihsan's Shade|Homelands|U|2925|| -|Irini Sengir|Homelands|U|2926|| -|Koskun Falls|Homelands|R|2927|| -|Sengir Autocrat|Homelands|U|2928|| -|Sengir Bats|Homelands|C|2929|| -|Sengir Bats|Homelands|C|2930|| -|Timmerian Fiends|Homelands|R|2931|| -|Torture|Homelands|C|2932|| -|Torture|Homelands|C|2933|| -|Veldrane of Sengir|Homelands|R|2934|| -|Ζther Storm|Homelands|U|2935|| -|Baki's Curse|Homelands|R|2936|| -|Chain Stasis|Homelands|R|2937|| -|Coral Reef|Homelands|C|2938|| -|Dark Maze|Homelands|C|2939|| -|Dark Maze|Homelands|C|2940|| -|Forget|Homelands|R|2941|| -|Giant Albatross|Homelands|C|2942|| -|Giant Albatross|Homelands|C|2943|| -|Giant Oyster|Homelands|U|2944|| -|Jinx|Homelands|C|2945|| -|Labyrinth Minotaur|Homelands|C|2946|| -|Labyrinth Minotaur|Homelands|C|2947|| -|Marjhan|Homelands|R|2948|| -|Memory Lapse|Homelands|C|2949|| -|Memory Lapse|Homelands|C|2950|| -|Merchant Scroll|Homelands|C|2951|| -|Mystic Decree|Homelands|R|2952|| -|Narwhal|Homelands|R|2953|| -|Reef Pirates|Homelands|C|2954|| -|Reef Pirates|Homelands|C|2955|| -|Reveka, Wizard Savant|Homelands|R|2956|| -|Sea Sprite|Homelands|U|2957|| -|Sea Troll|Homelands|U|2958|| -|Wall of Kelp|Homelands|R|2959|| -|An-Havva Constable|Homelands|R|2960|| -|An-Havva Inn|Homelands|U|2961|| -|Autumn Willow|Homelands|R|2962|| -|Carapace|Homelands|C|2963|| -|Carapace|Homelands|C|2964|| -|Daughter of Autumn|Homelands|R|2965|| -|Faerie Noble|Homelands|R|2966|| -|Folk of An-Havva|Homelands|C|2967|| -|Folk of An-Havva|Homelands|C|2968|| -|Hungry Mist|Homelands|C|2969|| -|Hungry Mist|Homelands|C|2970|| -|Joven's Ferrets|Homelands|C|2971|| -|Leaping Lizard|Homelands|C|2972|| -|Mammoth Harness|Homelands|R|2973|| -|Primal Order|Homelands|R|2974|| -|Renewal|Homelands|C|2975|| -|Root Spider|Homelands|U|2976|| -|Roots|Homelands|U|2977|| -|Rysorian Badger|Homelands|R|2978|| -|Shrink|Homelands|C|2979|| -|Shrink|Homelands|C|2980|| -|Spectral Bears|Homelands|U|2981|| -|Willow Faerie|Homelands|C|2982|| -|Willow Faerie|Homelands|C|2983|| -|Willow Priestess|Homelands|R|2984|| -|Aliban's Tower|Homelands|C|2985|| -|Aliban's Tower|Homelands|C|2986|| -|Ambush|Homelands|C|2987|| -|Ambush Party|Homelands|C|2988|| -|Ambush Party|Homelands|C|2989|| -|An-Zerrin Ruins|Homelands|R|2990|| -|Anaba Ancestor|Homelands|R|2991|| -|Anaba Bodyguard|Homelands|C|2992|| -|Anaba Bodyguard|Homelands|C|2993|| -|Anaba Shaman|Homelands|C|2994|| -|Anaba Shaman|Homelands|C|2995|| -|Anaba Spirit Crafter|Homelands|R|2996|| -|Chandler|Homelands|C|2997|| -|Dwarven Pony|Homelands|R|2998|| -|Dwarven Sea Clan|Homelands|R|2999|| -|Dwarven Trader|Homelands|C|3000|| -|Dwarven Trader|Homelands|C|3001|| -|Eron the Relentless|Homelands|U|3002|| -|Evaporate|Homelands|U|3003|| -|Heart Wolf|Homelands|R|3004|| -|Ironclaw Curse|Homelands|R|3005|| -|Joven|Homelands|C|3006|| -|Orcish Mine|Homelands|U|3007|| -|Retribution|Homelands|U|3008|| -|Winter Sky|Homelands|R|3009|| -|Abbey Gargoyles|Homelands|U|3010|| -|Abbey Matron|Homelands|C|3011|| -|Abbey Matron|Homelands|C|3012|| -|Aysen Bureaucrats|Homelands|C|3013|| -|Aysen Bureaucrats|Homelands|C|3014|| -|Aysen Crusader|Homelands|R|3015|| -|Aysen Highway|Homelands|R|3016|| -|Beast Walkers|Homelands|R|3017|| -|Death Speakers|Homelands|U|3018|| -|Hazduhr the Abbot|Homelands|R|3019|| -|Leeches|Homelands|R|3020|| -|Mesa Falcon|Homelands|C|3021|| -|Mesa Falcon|Homelands|C|3022|| -|Prophecy|Homelands|C|3023|| -|Rashka the Slayer|Homelands|U|3024|| -|Samite Alchemist|Homelands|C|3025|| -|Samite Alchemist|Homelands|C|3026|| -|Serra Aviary|Homelands|R|3027|| -|Serra Bestiary|Homelands|C|3028|| -|Serra Inquisitors|Homelands|U|3029|| -|Serra Paladin|Homelands|C|3030|| -|Soraya the Falconer|Homelands|R|3031|| -|Trade Caravan|Homelands|C|3032|| -|Trade Caravan|Homelands|C|3033|| -|Truce|Homelands|R|3034|| -|An-Havva Township|Homelands|U|3035|| -|Aysen Abbey|Homelands|U|3036|| -|Castle Sengir|Homelands|U|3037|| -|Koskun Keep|Homelands|U|3038|| -|Wizards' School|Homelands|U|3039|| -|Aesthir Glider|Alliances|C|3040|| -|Aesthir Glider|Alliances|C|3041|| -|Ashnod's Cylix|Alliances|R|3042|| -|Astrolabe|Alliances|C|3043|| -|Astrolabe|Alliances|C|3044|| -|Floodwater Dam|Alliances|R|3045|| -|Gustha's Scepter|Alliances|R|3046|| -|Helm of Obedience|Alliances|R|3047|| -|Lodestone Bauble|Alliances|R|3048|| -|Mishra's Groundbreaker|Alliances|U|3049|| -|Mystic Compass|Alliances|U|3050|| -|Phyrexian Devourer|Alliances|R|3051|| -|Phyrexian Portal|Alliances|R|3052|| -|Phyrexian War Beast|Alliances|C|3053|| -|Phyrexian War Beast|Alliances|C|3054|| -|Scarab of the Unseen|Alliances|U|3055|| -|Shield Sphere|Alliances|U|3056|| -|Sol Grail|Alliances|U|3057|| -|Soldevi Digger|Alliances|R|3058|| -|Soldevi Sentry|Alliances|C|3059|| -|Soldevi Sentry|Alliances|C|3060|| -|Soldevi Steam Beast|Alliances|C|3061|| -|Soldevi Steam Beast|Alliances|C|3062|| -|Storm Cauldron|Alliances|R|3063|| -|Urza's Engine|Alliances|U|3064|| -|Whirling Catapult|Alliances|U|3065|| -|Balduvian Dead|Alliances|U|3066|| -|Casting of Bones|Alliances|C|3067|| -|Casting of Bones|Alliances|C|3068|| -|Contagion|Alliances|U|3069|| -|Diseased Vermin|Alliances|U|3070|| -|Dystopia|Alliances|R|3071|| -|Fatal Lore|Alliances|R|3072|| -|Feast or Famine|Alliances|C|3073|| -|Feast or Famine|Alliances|C|3074|| -|Fevered Strength|Alliances|C|3075|| -|Fevered Strength|Alliances|C|3076|| -|Insidious Bookworms|Alliances|C|3077|| -|Insidious Bookworms|Alliances|C|3078|| -|Keeper of Tresserhorn|Alliances|R|3079|| -|Krovikan Horror|Alliances|R|3080|| -|Krovikan Plague|Alliances|U|3081|| -|Lim-Dϋl's High Guard|Alliances|C|3082|| -|Lim-Dϋl's High Guard|Alliances|C|3083|| -|Misinformation|Alliances|U|3084|| -|Phantasmal Fiend|Alliances|C|3085|| -|Phantasmal Fiend|Alliances|C|3086|| -|Phyrexian Boon|Alliances|C|3087|| -|Phyrexian Boon|Alliances|C|3088|| -|Ritual of the Machine|Alliances|R|3089|| -|Soldevi Adnate|Alliances|C|3090|| -|Soldevi Adnate|Alliances|C|3091|| -|Stench of Decay|Alliances|C|3092|| -|Stench of Decay|Alliances|C|3093|| -|Stromgald Spy|Alliances|U|3094|| -|Swamp Mosquito|Alliances|C|3095|| -|Swamp Mosquito|Alliances|C|3096|| -|Arcane Denial|Alliances|C|3097|| -|Arcane Denial|Alliances|C|3098|| -|Awesome Presence|Alliances|C|3099|| -|Awesome Presence|Alliances|C|3100|| -|Benthic Explorers|Alliances|C|3101|| -|Benthic Explorers|Alliances|C|3102|| -|Browse|Alliances|U|3103|| -|Diminishing Returns|Alliances|R|3104|| -|False Demise|Alliances|C|3105|| -|False Demise|Alliances|C|3106|| -|Force of Will|Alliances|U|3107|| -|Foresight|Alliances|C|3108|| -|Foresight|Alliances|C|3109|| -|Lat-Nam's Legacy|Alliances|C|3110|| -|Lat-Nam's Legacy|Alliances|C|3111|| -|Library of Lat-Nam|Alliances|R|3112|| -|Phantasmal Sphere|Alliances|R|3113|| -|Soldevi Heretic|Alliances|C|3114|| -|Soldevi Heretic|Alliances|C|3115|| -|Soldevi Sage|Alliances|C|3116|| -|Soldevi Sage|Alliances|C|3117|| -|Spiny Starfish|Alliances|U|3118|| -|Storm Crow|Alliances|C|3119|| -|Storm Crow|Alliances|C|3120|| -|Storm Elemental|Alliances|U|3121|| -|Suffocation|Alliances|U|3122|| -|Thought Lash|Alliances|R|3123|| -|Tidal Control|Alliances|R|3124|| -|Viscerid Armor|Alliances|C|3125|| -|Viscerid Armor|Alliances|C|3126|| -|Viscerid Drone|Alliances|U|3127|| -|Bounty of the Hunt|Alliances|U|3128|| -|Deadly Insect|Alliances|C|3129|| -|Deadly Insect|Alliances|C|3130|| -|Elvish Bard|Alliances|U|3131|| -|Elvish Ranger|Alliances|C|3132|| -|Elvish Ranger|Alliances|C|3133|| -|Elvish Spirit Guide|Alliances|U|3134|| -|Fyndhorn Druid|Alliances|C|3135|| -|Fyndhorn Druid|Alliances|C|3136|| -|Gargantuan Gorilla|Alliances|R|3137|| -|Gift of the Woods|Alliances|C|3138|| -|Gift of the Woods|Alliances|C|3139|| -|Gorilla Berserkers|Alliances|C|3140|| -|Gorilla Berserkers|Alliances|C|3141|| -|Gorilla Chieftain|Alliances|C|3142|| -|Gorilla Chieftain|Alliances|C|3143|| -|Hail Storm|Alliances|U|3144|| -|Kaysa|Alliances|R|3145|| -|Nature's Chosen|Alliances|U|3146|| -|Nature's Wrath|Alliances|R|3147|| -|Splintering Wind|Alliances|R|3148|| -|Taste of Paradise|Alliances|C|3149|| -|Taste of Paradise|Alliances|C|3150|| -|Tornado|Alliances|R|3151|| -|Undergrowth|Alliances|C|3152|| -|Undergrowth|Alliances|C|3153|| -|Whip Vine|Alliances|C|3154|| -|Whip Vine|Alliances|C|3155|| -|Yavimaya Ancients|Alliances|C|3156|| -|Yavimaya Ancients|Alliances|C|3157|| -|Yavimaya Ants|Alliances|U|3158|| -|Agent of Stromgald|Alliances|C|3159|| -|Agent of Stromgald|Alliances|C|3160|| -|Balduvian Horde|Alliances|R|3161|| -|Balduvian War-Makers|Alliances|C|3162|| -|Balduvian War-Makers|Alliances|C|3163|| -|Bestial Fury|Alliances|C|3164|| -|Bestial Fury|Alliances|C|3165|| -|Burnout|Alliances|U|3166|| -|Chaos Harlequin|Alliances|R|3167|| -|Death Spark|Alliances|U|3168|| -|Enslaved Scout|Alliances|C|3169|| -|Enslaved Scout|Alliances|C|3170|| -|Gorilla Shaman|Alliances|C|3171|| -|Gorilla Shaman|Alliances|C|3172|| -|Gorilla War Cry|Alliances|C|3173|| -|Gorilla War Cry|Alliances|C|3174|| -|Guerrilla Tactics|Alliances|C|3175|| -|Guerrilla Tactics|Alliances|C|3176|| -|Omen of Fire|Alliances|R|3177|| -|Pillage|Alliances|U|3178|| -|Primitive Justice|Alliances|U|3179|| -|Pyrokinesis|Alliances|U|3180|| -|Rogue Skycaptain|Alliances|R|3181|| -|Soldier of Fortune|Alliances|U|3182|| -|Storm Shaman|Alliances|C|3183|| -|Storm Shaman|Alliances|C|3184|| -|Varchild's Crusader|Alliances|C|3185|| -|Varchild's Crusader|Alliances|C|3186|| -|Varchild's War-Riders|Alliances|R|3187|| -|Veteran's Voice|Alliances|C|3188|| -|Veteran's Voice|Alliances|C|3189|| -|Carrier Pigeons|Alliances|C|3190|| -|Carrier Pigeons|Alliances|C|3191|| -|Errand of Duty|Alliances|C|3192|| -|Errand of Duty|Alliances|C|3193|| -|Exile|Alliances|R|3194|| -|Inheritance|Alliances|U|3195|| -|Ivory Gargoyle|Alliances|R|3196|| -|Juniper Order Advocate|Alliances|U|3197|| -|Kjeldoran Escort|Alliances|C|3198|| -|Kjeldoran Escort|Alliances|C|3199|| -|Kjeldoran Home Guard|Alliances|U|3200|| -|Kjeldoran Pride|Alliances|C|3201|| -|Kjeldoran Pride|Alliances|C|3202|| -|Martyrdom|Alliances|C|3203|| -|Martyrdom|Alliances|C|3204|| -|Noble Steeds|Alliances|C|3205|| -|Noble Steeds|Alliances|C|3206|| -|Reinforcements|Alliances|C|3207|| -|Reinforcements|Alliances|C|3208|| -|Reprisal|Alliances|C|3209|| -|Reprisal|Alliances|C|3210|| -|Royal Decree|Alliances|R|3211|| -|Royal Herbalist|Alliances|C|3212|| -|Royal Herbalist|Alliances|C|3213|| -|Scars of the Veteran|Alliances|U|3214|| -|Seasoned Tactician|Alliances|U|3215|| -|Sustaining Spirit|Alliances|R|3216|| -|Sworn Defender|Alliances|R|3217|| -|Unlikely Alliance|Alliances|U|3218|| -|Wild Aesthir|Alliances|C|3219|| -|Wild Aesthir|Alliances|C|3220|| -|Energy Arc|Alliances|U|3221|| -|Lim-Dϋl's Paladin|Alliances|U|3222|| -|Lim-Dϋl's Vault|Alliances|U|3223|| -|Lord of Tresserhorn|Alliances|R|3224|| -|Misfortune|Alliances|R|3225|| -|Nature's Blessing|Alliances|U|3226|| -|Phelddagrif|Alliances|R|3227|| -|Surge of Strength|Alliances|U|3228|| -|Wandering Mage|Alliances|R|3229|| -|Winter's Night|Alliances|R|3230|| -|Balduvian Trading Post|Alliances|R|3231|| -|Heart of Yavimaya|Alliances|R|3232|| -|Kjeldoran Outpost|Alliances|R|3233|| -|Lake of the Dead|Alliances|R|3234|| -|School of the Unseen|Alliances|U|3235|| -|Sheltered Valley|Alliances|R|3236|| -|Soldevi Excavations|Alliances|R|3237|| -|Thawing Glaciers|Alliances|R|3238|| -|Acidic Dagger|Mirage|R|3239|| -|Amber Prison|Mirage|R|3240|| -|Amulet of Unmaking|Mirage|R|3241|| -|Basalt Golem|Mirage|U|3242|| -|Bone Mask|Mirage|R|3243|| -|Charcoal Diamond|Mirage|U|3244|| -|Chariot of the Sun|Mirage|U|3245|| -|Crystal Golem|Mirage|U|3246|| -|Cursed Totem|Mirage|R|3247|| -|Elixir of Vitality|Mirage|U|3248|| -|Ersatz Gnomes|Mirage|U|3249|| -|Fire Diamond|Mirage|U|3250|| -|Grinning Totem|Mirage|R|3251|| -|Horrible Hordes|Mirage|U|3252|| -|Igneous Golem|Mirage|U|3253|| -|Lead Golem|Mirage|U|3254|| -|Lion's Eye Diamond|Mirage|R|3255|| -|Mana Prism|Mirage|U|3256|| -|Mangara's Tome|Mirage|R|3257|| -|Marble Diamond|Mirage|U|3258|| -|Misers' Cage|Mirage|R|3259|| -|Moss Diamond|Mirage|U|3260|| -|Patagia Golem|Mirage|U|3261|| -|Paupers' Cage|Mirage|R|3262|| -|Phyrexian Dreadnought|Mirage|R|3263|| -|Phyrexian Vault|Mirage|U|3264|| -|Razor Pendulum|Mirage|R|3265|| -|Sand Golem|Mirage|U|3266|| -|Sky Diamond|Mirage|U|3267|| -|Teeka's Dragon|Mirage|R|3268|| -|Telim'Tor's Darts|Mirage|U|3269|| -|Unerring Sling|Mirage|U|3270|| -|Ventifact Bottle|Mirage|R|3271|| -|Abyssal Hunter|Mirage|R|3272|| -|Ashen Powder|Mirage|R|3273|| -|Barbed-Back Wurm|Mirage|U|3274|| -|Binding Agony|Mirage|C|3275|| -|Blighted Shaman|Mirage|U|3276|| -|Bone Harvest|Mirage|C|3277|| -|Breathstealer|Mirage|C|3278|| -|Cadaverous Knight|Mirage|C|3279|| -|Carrion|Mirage|R|3280|| -|Catacomb Dragon|Mirage|R|3281|| -|Choking Sands|Mirage|C|3282|| -|Crypt Cobra|Mirage|U|3283|| -|Dark Banishing|Mirage|C|3284|| -|Dark Ritual|Mirage|C|3285|| -|Dirtwater Wraith|Mirage|C|3286|| -|Drain Life|Mirage|C|3287|| -|Dread Specter|Mirage|U|3288|| -|Ebony Charm|Mirage|C|3289|| -|Enfeeblement|Mirage|C|3290|| -|Feral Shadow|Mirage|C|3291|| -|Fetid Horror|Mirage|C|3292|| -|Forbidden Crypt|Mirage|R|3293|| -|Forsaken Wastes|Mirage|R|3294|| -|Grave Servitude|Mirage|C|3295|| -|Gravebane Zombie|Mirage|C|3296|| -|Harbinger of Night|Mirage|R|3297|| -|Infernal Contract|Mirage|R|3298|| -|Kaervek's Hex|Mirage|U|3299|| -|Mire Shade|Mirage|U|3300|| -|Nocturnal Raid|Mirage|U|3301|| -|Painful Memories|Mirage|U|3302|| -|Phyrexian Tribute|Mirage|R|3303|| -|Purraj of Urborg|Mirage|R|3304|| -|Ravenous Vampire|Mirage|U|3305|| -|Reign of Terror|Mirage|U|3306|| -|Restless Dead|Mirage|C|3307|| -|Sewer Rats|Mirage|C|3308|| -|Shadow Guildmage|Mirage|C|3309|| -|Shallow Grave|Mirage|R|3310|| -|Shauku, Endbringer|Mirage|R|3311|| -|Skulking Ghost|Mirage|C|3312|| -|Soul Rend|Mirage|U|3313|| -|Soulshriek|Mirage|C|3314|| -|Spirit of the Night|Mirage|R|3315|| -|Stupor|Mirage|U|3316|| -|Tainted Specter|Mirage|R|3317|| -|Tombstone Stairwell|Mirage|R|3318|| -|Urborg Panther|Mirage|C|3319|| -|Wall of Corpses|Mirage|C|3320|| -|Withering Boon|Mirage|U|3321|| -|Zombie Mob|Mirage|U|3322|| -|Ancestral Memories|Mirage|R|3323|| -|Azimaet Drake|Mirage|C|3324|| -|Bay Falcon|Mirage|C|3325|| -|Bazaar of Wonders|Mirage|R|3326|| -|Boomerang|Mirage|C|3327|| -|Cerulean Wyvern|Mirage|U|3328|| -|Cloak of Invisibility|Mirage|C|3329|| -|Coral Fighters|Mirage|U|3330|| -|Daring Apprentice|Mirage|R|3331|| -|Dissipate|Mirage|U|3332|| -|Dream Cache|Mirage|C|3333|| -|Dream Fighter|Mirage|C|3334|| -|Energy Vortex|Mirage|R|3335|| -|Ether Well|Mirage|U|3336|| -|Flash|Mirage|R|3337|| -|Floodgate|Mirage|U|3338|| -|Hakim, Loreweaver|Mirage|R|3339|| -|Harmattan Efreet|Mirage|U|3340|| -|Jolt|Mirage|C|3341|| -|Kukemssa Pirates|Mirage|R|3342|| -|Kukemssa Serpent|Mirage|C|3343|| -|Meddle|Mirage|U|3344|| -|Memory Lapse|Mirage|C|3345|| -|Merfolk Raiders|Mirage|C|3346|| -|Merfolk Seer|Mirage|C|3347|| -|Mind Bend|Mirage|U|3348|| -|Mind Harness|Mirage|U|3349|| -|Mist Dragon|Mirage|R|3350|| -|Mystical Tutor|Mirage|U|3351|| -|Political Trickery|Mirage|R|3352|| -|Polymorph|Mirage|R|3353|| -|Power Sink|Mirage|C|3354|| -|Prismatic Lace|Mirage|R|3355|| -|Psychic Transfer|Mirage|R|3356|| -|Ray of Command|Mirage|C|3357|| -|Reality Ripple|Mirage|C|3358|| -|Sandbar Crocodile|Mirage|C|3359|| -|Sapphire Charm|Mirage|C|3360|| -|Sea Scryer|Mirage|C|3361|| -|Shaper Guildmage|Mirage|C|3362|| -|Shimmer|Mirage|R|3363|| -|Soar|Mirage|C|3364|| -|Suq'Ata Firewalker|Mirage|U|3365|| -|Taniwha|Mirage|R|3366|| -|Teferi's Curse|Mirage|C|3367|| -|Teferi's Drake|Mirage|C|3368|| -|Teferi's Imp|Mirage|R|3369|| -|Thirst|Mirage|C|3370|| -|Tidal Wave|Mirage|U|3371|| -|Vaporous Djinn|Mirage|U|3372|| -|Wave Elemental|Mirage|U|3373|| -|Afiya Grove|Mirage|R|3374|| -|Armor of Thorns|Mirage|C|3375|| -|Barbed Foliage|Mirage|U|3376|| -|Brushwagg|Mirage|R|3377|| -|Canopy Dragon|Mirage|R|3378|| -|Crash of Rhinos|Mirage|C|3379|| -|Cycle of Life|Mirage|R|3380|| -|Decomposition|Mirage|U|3381|| -|Early Harvest|Mirage|R|3382|| -|Fallow Earth|Mirage|U|3383|| -|Femeref Archers|Mirage|U|3384|| -|Fog|Mirage|C|3385|| -|Foratog|Mirage|U|3386|| -|Giant Mantis|Mirage|C|3387|| -|Gibbering Hyenas|Mirage|C|3388|| -|Granger Guildmage|Mirage|C|3389|| -|Hall of Gemstone|Mirage|R|3390|| -|Jolrael's Centaur|Mirage|C|3391|| -|Jungle Patrol|Mirage|R|3392|| -|Jungle Wurm|Mirage|C|3393|| -|Karoo Meerkat|Mirage|U|3394|| -|Locust Swarm|Mirage|U|3395|| -|Lure of Prey|Mirage|R|3396|| -|Maro|Mirage|R|3397|| -|Mindbender Spores|Mirage|R|3398|| -|Mtenda Lion|Mirage|C|3399|| -|Natural Balance|Mirage|R|3400|| -|Nettletooth Djinn|Mirage|U|3401|| -|Preferred Selection|Mirage|R|3402|| -|Quirion Elves|Mirage|C|3403|| -|Rampant Growth|Mirage|C|3404|| -|Regeneration|Mirage|C|3405|| -|Roots of Life|Mirage|U|3406|| -|Sabertooth Cobra|Mirage|C|3407|| -|Sandstorm|Mirage|C|3408|| -|Seedling Charm|Mirage|C|3409|| -|Seeds of Innocence|Mirage|R|3410|| -|Serene Heart|Mirage|C|3411|| -|Stalking Tiger|Mirage|C|3412|| -|Superior Numbers|Mirage|U|3413|| -|Tranquil Domain|Mirage|C|3414|| -|Tropical Storm|Mirage|U|3415|| -|Uktabi Faerie|Mirage|C|3416|| -|Uktabi Wildcats|Mirage|R|3417|| -|Unseen Walker|Mirage|U|3418|| -|Unyaro Bee Sting|Mirage|U|3419|| -|Village Elder|Mirage|C|3420|| -|Waiting in the Weeds|Mirage|R|3421|| -|Wall of Roots|Mirage|C|3422|| -|Wild Elephant|Mirage|C|3423|| -|Worldly Tutor|Mirage|U|3424|| -|Agility|Mirage|C|3425|| -|Aleatory|Mirage|U|3426|| -|Armorer Guildmage|Mirage|C|3427|| -|Barreling Attack|Mirage|R|3428|| -|Blind Fury|Mirage|U|3429|| -|Blistering Barrier|Mirage|C|3430|| -|Builder's Bane|Mirage|C|3431|| -|Burning Palm Efreet|Mirage|U|3432|| -|Burning Shield Askari|Mirage|C|3433|| -|Chaos Charm|Mirage|C|3434|| -|Chaosphere|Mirage|R|3435|| -|Cinder Cloud|Mirage|U|3436|| -|Consuming Ferocity|Mirage|U|3437|| -|Crimson Hellkite|Mirage|R|3438|| -|Crimson Roc|Mirage|U|3439|| -|Dwarven Miner|Mirage|U|3440|| -|Dwarven Nomad|Mirage|C|3441|| -|Ekundu Cyclops|Mirage|C|3442|| -|Emberwilde Djinn|Mirage|R|3443|| -|Final Fortune|Mirage|R|3444|| -|Firebreathing|Mirage|C|3445|| -|Flame Elemental|Mirage|U|3446|| -|Flare|Mirage|C|3447|| -|Goblin Elite Infantry|Mirage|C|3448|| -|Goblin Scouts|Mirage|U|3449|| -|Goblin Soothsayer|Mirage|U|3450|| -|Goblin Tinkerer|Mirage|C|3451|| -|Hammer of Bogardan|Mirage|R|3452|| -|Hivis of the Scale|Mirage|R|3453|| -|Illicit Auction|Mirage|R|3454|| -|Incinerate|Mirage|C|3455|| -|Kaervek's Torch|Mirage|C|3456|| -|Lightning Reflexes|Mirage|C|3457|| -|Pyric Salamander|Mirage|C|3458|| -|Raging Spirit|Mirage|C|3459|| -|Reckless Embermage|Mirage|R|3460|| -|Reign of Chaos|Mirage|U|3461|| -|Searing Spear Askari|Mirage|C|3462|| -|Sirocco|Mirage|U|3463|| -|Spitting Earth|Mirage|C|3464|| -|Stone Rain|Mirage|C|3465|| -|Subterranean Spirit|Mirage|R|3466|| -|Talruum Minotaur|Mirage|C|3467|| -|Telim'Tor|Mirage|R|3468|| -|Telim'Tor's Edict|Mirage|R|3469|| -|Torrent of Lava|Mirage|R|3470|| -|Viashino Warrior|Mirage|C|3471|| -|Volcanic Dragon|Mirage|R|3472|| -|Volcanic Geyser|Mirage|U|3473|| -|Wildfire Emissary|Mirage|U|3474|| -|Zirilan of the Claw|Mirage|R|3475|| -|Afterlife|Mirage|U|3476|| -|Alarum|Mirage|C|3477|| -|Auspicious Ancestor|Mirage|R|3478|| -|Benevolent Unicorn|Mirage|C|3479|| -|Blinding Light|Mirage|U|3480|| -|Celestial Dawn|Mirage|R|3481|| -|Civic Guildmage|Mirage|C|3482|| -|Dazzling Beauty|Mirage|C|3483|| -|Disempower|Mirage|C|3484|| -|Disenchant|Mirage|C|3485|| -|Divine Offering|Mirage|C|3486|| -|Divine Retribution|Mirage|R|3487|| -|Ekundu Griffin|Mirage|C|3488|| -|Enlightened Tutor|Mirage|U|3489|| -|Ethereal Champion|Mirage|R|3490|| -|Favorable Destiny|Mirage|U|3491|| -|Femeref Healer|Mirage|C|3492|| -|Femeref Knight|Mirage|C|3493|| -|Femeref Scouts|Mirage|C|3494|| -|Healing Salve|Mirage|C|3495|| -|Illumination|Mirage|U|3496|| -|Iron Tusk Elephant|Mirage|U|3497|| -|Ivory Charm|Mirage|C|3498|| -|Jabari's Influence|Mirage|R|3499|| -|Mangara's Blessing|Mirage|U|3500|| -|Mangara's Equity|Mirage|U|3501|| -|Melesse Spirit|Mirage|U|3502|| -|Mtenda Griffin|Mirage|U|3503|| -|Mtenda Herder|Mirage|C|3504|| -|Noble Elephant|Mirage|C|3505|| -|Null Chamber|Mirage|R|3506|| -|Pacifism|Mirage|C|3507|| -|Pearl Dragon|Mirage|R|3508|| -|Prismatic Circle|Mirage|C|3509|| -|Rashida Scalebane|Mirage|R|3510|| -|Ritual of Steel|Mirage|C|3511|| -|Sacred Mesa|Mirage|R|3512|| -|Shadowbane|Mirage|U|3513|| -|Sidar Jabari|Mirage|R|3514|| -|Soul Echo|Mirage|R|3515|| -|Spectral Guardian|Mirage|R|3516|| -|Sunweb|Mirage|R|3517|| -|Teremko Griffin|Mirage|C|3518|| -|Unyaro Griffin|Mirage|U|3519|| -|Vigilant Martyr|Mirage|U|3520|| -|Wall of Resistance|Mirage|C|3521|| -|Ward of Lights|Mirage|C|3522|| -|Yare|Mirage|R|3523|| -|Zhalfirin Commander|Mirage|U|3524|| -|Zhalfirin Knight|Mirage|C|3525|| -|Zuberi, Golden Feather|Mirage|R|3526|| -|Asmira, Holy Avenger|Mirage|R|3527|| -|Benthic Djinn|Mirage|R|3528|| -|Cadaverous Bloom|Mirage|R|3529|| -|Circle of Despair|Mirage|R|3530|| -|Delirium|Mirage|U|3531|| -|Discordant Spirit|Mirage|R|3532|| -|Emberwilde Caliph|Mirage|R|3533|| -|Energy Bolt|Mirage|R|3534|| -|Frenetic Efreet|Mirage|R|3535|| -|Grim Feast|Mirage|R|3536|| -|Harbor Guardian|Mirage|U|3537|| -|Haunting Apparition|Mirage|U|3538|| -|Hazerider Drake|Mirage|U|3539|| -|Jungle Troll|Mirage|U|3540|| -|Kaervek's Purge|Mirage|U|3541|| -|Leering Gargoyle|Mirage|R|3542|| -|Malignant Growth|Mirage|R|3543|| -|Phyrexian Purge|Mirage|R|3544|| -|Prismatic Boon|Mirage|U|3545|| -|Purgatory|Mirage|R|3546|| -|Radiant Essence|Mirage|U|3547|| -|Reflect Damage|Mirage|R|3548|| -|Reparations|Mirage|R|3549|| -|Rock Basilisk|Mirage|R|3550|| -|Savage Twister|Mirage|U|3551|| -|Sawback Manticore|Mirage|R|3552|| -|Sealed Fate|Mirage|U|3553|| -|Shauku's Minion|Mirage|U|3554|| -|Spatial Binding|Mirage|U|3555|| -|Unfulfilled Desires|Mirage|R|3556|| -|Vitalizing Cascade|Mirage|U|3557|| -|Warping Wurm|Mirage|R|3558|| -|Wellspring|Mirage|R|3559|| -|Windreaper Falcon|Mirage|U|3560|| -|Zebra Unicorn|Mirage|U|3561|| -|Swamp|Mirage|L|3562|| -|Swamp|Mirage|L|3563|| -|Swamp|Mirage|L|3564|| -|Swamp|Mirage|L|3565|| -|Forest|Mirage|L|3566|| -|Forest|Mirage|L|3567|| -|Forest|Mirage|L|3568|| -|Forest|Mirage|L|3569|| -|Bad River|Mirage|U|3570|| -|Crystal Vein|Mirage|U|3571|| -|Flood Plain|Mirage|U|3572|| -|Grasslands|Mirage|U|3573|| -|Mountain Valley|Mirage|U|3574|| -|Rocky Tar Pit|Mirage|U|3575|| -|Teferi's Isle|Mirage|R|3576|| -|Mountain|Mirage|L|3577|| -|Mountain|Mirage|L|3578|| -|Mountain|Mirage|L|3579|| -|Mountain|Mirage|L|3580|| -|Island|Mirage|L|3581|| -|Island|Mirage|L|3582|| -|Island|Mirage|L|3583|| -|Island|Mirage|L|3584|| -|Plains|Mirage|L|3585|| -|Plains|Mirage|L|3586|| -|Plains|Mirage|L|3587|| -|Plains|Mirage|L|3588|| -|Anvil of Bogardan|Visions|R|3589|| -|Brass-Talon Chimera|Visions|U|3590|| -|Diamond Kaleidoscope|Visions|R|3591|| -|Dragon Mask|Visions|U|3592|| -|Phyrexian Marauder|Visions|R|3599|| -|Phyrexian Walker|Visions|C|3600|| -|Sands of Time|Visions|R|3601|| -|Sisay's Ring|Visions|C|3602|| -|Snake Basket|Visions|R|3603|| -|Teferi's Puzzle Box|Visions|R|3604|| -|Tin-Wing Chimera|Visions|U|3605|| -|Triangle of War|Visions|R|3606|| -|Wand of Denial|Visions|R|3607|| -|Aku Djinn|Visions|R|3608|| -|Blanket of Night|Visions|U|3609|| -|Brood of Cockroaches|Visions|U|3610|| -|Coercion|Visions|C|3611|| -|Crypt Rats|Visions|C|3612|| -|Dark Privilege|Visions|C|3613|| -|Death Watch|Visions|C|3614|| -|Desolation|Visions|U|3615|| -|Funeral Charm|Visions|C|3618|| -|Necromancy|Visions|U|3621|| -|Necrosavant|Visions|R|3622|| -|Nekrataal|Visions|U|3623|| -|Pillar Tombs of Aku|Visions|R|3624|| -|Python|Visions|C|3625|| -|Suq'Ata Assassin|Visions|U|3626|| -|Tar Pit Warrior|Visions|C|3627|| -|Urborg Mindsucker|Visions|C|3628|| -|Vampiric Tutor|Visions|R|3629|| -|Vampirism|Visions|U|3630|| -|Wake of Vultures|Visions|C|3631|| -|Wicked Reward|Visions|C|3632|| -|Betrayal|Visions|C|3633|| -|Breezekeeper|Visions|C|3634|| -|Chronatog|Visions|R|3635|| -|Cloud Elemental|Visions|C|3636|| -|Desertion|Visions|R|3637|| -|Dream Tides|Visions|U|3638|| -|Impulse|Visions|C|3641|| -|Inspiration|Visions|C|3642|| -|Man-o'-War|Visions|C|3644|| -|Mystic Veil|Visions|C|3645|| -|Ovinomancer|Visions|U|3646|| -|Prosperity|Visions|U|3647|| -|Rainbow Efreet|Visions|R|3648|| -|Shimmering Efreet|Visions|U|3649|| -|Shrieking Drake|Visions|C|3650|| -|Teferi's Realm|Visions|R|3651|| -|Three Wishes|Visions|R|3652|| -|Time and Tide|Visions|U|3653|| -|Undo|Visions|C|3654|| -|Vanishing|Visions|C|3655|| -|Vision Charm|Visions|C|3656|| -|Waterspout Djinn|Visions|U|3657|| -|Bull Elephant|Visions|C|3658|| -|City of Solitude|Visions|R|3659|| -|Creeping Mold|Visions|U|3660|| -|Elven Cache|Visions|C|3662|| -|Giant Caterpillar|Visions|C|3665|| -|King Cheetah|Visions|C|3667|| -|Mortal Wound|Visions|C|3670|| -|Natural Order|Visions|R|3671|| -|Panther Warriors|Visions|C|3672|| -|Quirion Druid|Visions|R|3673|| -|Quirion Ranger|Visions|C|3674|| -|River Boa|Visions|C|3675|| -|Rowen|Visions|R|3676|| -|Spider Climb|Visions|C|3677|| -|Stampeding Wildebeests|Visions|U|3678|| -|Summer Bloom|Visions|U|3679|| -|Uktabi Orangutan|Visions|U|3680|| -|Warthog|Visions|C|3681|| -|Wind Shear|Visions|U|3682|| -|Bogardan Phoenix|Visions|R|3683|| -|Dwarven Vigilantes|Visions|C|3684|| -|Fireblast|Visions|C|3686|| -|Goblin Recruiter|Visions|U|3687|| -|Hulking Cyclops|Visions|U|3691|| -|Mob Mentality|Visions|U|3695|| -|Ogre Enforcer|Visions|R|3696|| -|Raging Gorilla|Visions|C|3697|| -|Relentless Assault|Visions|R|3698|| -|Rock Slide|Visions|C|3699|| -|Solfatara|Visions|C|3700|| -|Song of Blood|Visions|C|3701|| -|Spitting Drake|Visions|U|3702|| -|Suq'Ata Lancer|Visions|C|3703|| -|Talruum Champion|Visions|C|3704|| -|Talruum Piper|Visions|U|3705|| -|Tremor|Visions|C|3706|| -|Viashino Sandstalker|Visions|U|3707|| -|Archangel|Visions|R|3708|| -|Daraja Griffin|Visions|U|3709|| -|Honorable Passage|Visions|U|3714|| -|Infantry Veteran|Visions|C|3716|| -|Longbow Archer|Visions|U|3719|| -|Miraculous Recovery|Visions|U|3720|| -|Parapet|Visions|C|3721|| -|Peace Talks|Visions|U|3722|| -|Relic Ward|Visions|U|3723|| -|Remedy|Visions|C|3724|| -|Resistance Fighter|Visions|C|3725|| -|Retribution of the Meek|Visions|R|3726|| -|Righteous Aura|Visions|C|3727|| -|Sun Clasp|Visions|C|3728|| -|Teferi's Honor Guard|Visions|U|3729|| -|Tithe|Visions|R|3730|| -|Warrior's Honor|Visions|C|3731|| -|Zhalfirin Crusader|Visions|R|3732|| -|Army Ants|Visions|U|3733|| -|Breathstealer's Crypt|Visions|R|3734|| -|Corrosion|Visions|R|3735|| -|Mundungu|Visions|U|3739|| -|Pygmy Hippo|Visions|R|3740|| -|Righteous War|Visions|R|3741|| -|Scalebane's Elite|Visions|U|3742|| -|Simoon|Visions|U|3743|| -|Squandered Resources|Visions|R|3744|| -|Suleiman's Legacy|Visions|R|3745|| -|Tempest Drake|Visions|U|3746|| -|Viashivan Dragon|Visions|R|3747|| -|Coral Atoll|Visions|U|3748|| -|Dormant Volcano|Visions|U|3749|| -|Quicksand|Visions|U|3754|| -|Undiscovered Paradise|Visions|R|3755|| -|Aladdin's Ring|Fifth Edition|R|3758|| -|Amulet of Kroog|Fifth Edition|C|3759|| -|Ankh of Mishra|Fifth Edition|R|3760|| -|Ashnod's Altar|Fifth Edition|U|3761|| -|Ashnod's Transmogrant|Fifth Edition|C|3762|| -|Barbed Sextant|Fifth Edition|C|3763|| -|Barl's Cage|Fifth Edition|R|3764|| -|Battering Ram|Fifth Edition|C|3765|| -|Bottle of Suleiman|Fifth Edition|R|3766|| -|Clay Statue|Fifth Edition|C|3767|| -|Clockwork Beast|Fifth Edition|R|3768|| -|Clockwork Steed|Fifth Edition|U|3769|| -|Colossus of Sardia|Fifth Edition|R|3770|| -|Coral Helm|Fifth Edition|R|3771|| -|Crown of the Ages|Fifth Edition|R|3772|| -|Crystal Rod|Fifth Edition|U|3773|| -|Dancing Scimitar|Fifth Edition|R|3774|| -|Diabolic Machine|Fifth Edition|U|3775|| -|Dingus Egg|Fifth Edition|R|3776|| -|Disrupting Scepter|Fifth Edition|R|3777|| -|Dragon Engine|Fifth Edition|R|3778|| -|Elkin Bottle|Fifth Edition|R|3779|| -|Feldon's Cane|Fifth Edition|U|3780|| -|Fellwar Stone|Fifth Edition|U|3781|| -|Feroz's Ban|Fifth Edition|R|3782|| -|Flying Carpet|Fifth Edition|R|3783|| -|Fountain of Youth|Fifth Edition|U|3784|| -|Gauntlets of Chaos|Fifth Edition|R|3785|| -|Glasses of Urza|Fifth Edition|U|3786|| -|Grapeshot Catapult|Fifth Edition|C|3787|| -|Helm of Chatzuk|Fifth Edition|R|3788|| -|Howling Mine|Fifth Edition|R|3789|| -|Infinite Hourglass|Fifth Edition|R|3790|| -|Iron Star|Fifth Edition|U|3791|| -|Ivory Cup|Fifth Edition|U|3792|| -|Jade Monolith|Fifth Edition|R|3793|| -|Jalum Tome|Fifth Edition|R|3794|| -|Jandor's Saddlebags|Fifth Edition|R|3795|| -|Jayemdae Tome|Fifth Edition|R|3796|| -|Jester's Cap|Fifth Edition|R|3797|| -|Joven's Tools|Fifth Edition|U|3798|| -|Library of Leng|Fifth Edition|U|3799|| -|Mana Vault|Fifth Edition|R|3800|| -|Meekstone|Fifth Edition|R|3801|| -|Millstone|Fifth Edition|R|3802|| -|Nevinyrral's Disk|Fifth Edition|R|3803|| -|Obelisk of Undoing|Fifth Edition|R|3804|| -|Ornithopter|Fifth Edition|U|3805|| -|Pentagram of the Ages|Fifth Edition|R|3806|| -|Primal Clay|Fifth Edition|R|3807|| -|Rod of Ruin|Fifth Edition|U|3808|| -|Serpent Generator|Fifth Edition|R|3809|| -|Shapeshifter|Fifth Edition|U|3810|| -|Skull Catapult|Fifth Edition|U|3811|| -|Soul Net|Fifth Edition|U|3812|| -|Tawnos's Weaponry|Fifth Edition|U|3813|| -|The Hive|Fifth Edition|R|3814|| -|Throne of Bone|Fifth Edition|U|3815|| -|Time Bomb|Fifth Edition|R|3816|| -|Urza's Avenger|Fifth Edition|R|3817|| -|Urza's Bauble|Fifth Edition|U|3818|| -|Wall of Spears|Fifth Edition|C|3819|| -|Winter Orb|Fifth Edition|R|3820|| -|Wooden Sphere|Fifth Edition|U|3821|| -|Abyssal Specter|Fifth Edition|U|3822|| -|Animate Dead|Fifth Edition|U|3823|| -|Ashes to Ashes|Fifth Edition|U|3824|| -|Bad Moon|Fifth Edition|R|3825|| -|Black Knight|Fifth Edition|U|3826|| -|Blight|Fifth Edition|U|3827|| -|Bog Imp|Fifth Edition|C|3828|| -|Bog Rats|Fifth Edition|C|3829|| -|Bog Wraith|Fifth Edition|U|3830|| -|Breeding Pit|Fifth Edition|U|3831|| -|Broken Visage|Fifth Edition|R|3832|| -|Carrion Ants|Fifth Edition|U|3833|| -|Cloak of Confusion|Fifth Edition|C|3834|| -|Cursed Land|Fifth Edition|U|3835|| -|Dark Ritual|Fifth Edition|C|3836|| -|Deathgrip|Fifth Edition|U|3837|| -|Derelor|Fifth Edition|R|3838|| -|Drain Life|Fifth Edition|C|3839|| -|Drudge Skeletons|Fifth Edition|C|3840|| -|Erg Raiders|Fifth Edition|C|3841|| -|Evil Eye of Orms-by-Gore|Fifth Edition|U|3842|| -|Evil Presence|Fifth Edition|U|3843|| -|Fallen Angel|Fifth Edition|U|3844|| -|Fear|Fifth Edition|C|3845|| -|Frozen Shade|Fifth Edition|C|3846|| -|Funeral March|Fifth Edition|C|3847|| -|Gloom|Fifth Edition|U|3848|| -|Greater Werewolf|Fifth Edition|U|3849|| -|Hecatomb|Fifth Edition|R|3850|| -|Howl from Beyond|Fifth Edition|C|3851|| -|Initiates of the Ebon Hand|Fifth Edition|C|3852|| -|Kjeldoran Dead|Fifth Edition|C|3853|| -|Knight of Stromgald|Fifth Edition|U|3854|| -|Krovikan Fetish|Fifth Edition|C|3855|| -|Leshrac's Rite|Fifth Edition|U|3856|| -|Lord of the Pit|Fifth Edition|R|3857|| -|Lost Soul|Fifth Edition|C|3858|| -|Mind Ravel|Fifth Edition|C|3859|| -|Mind Warp|Fifth Edition|U|3860|| -|Mindstab Thrull|Fifth Edition|C|3861|| -|Mole Worms|Fifth Edition|U|3862|| -|Murk Dwellers|Fifth Edition|C|3863|| -|Necrite|Fifth Edition|C|3864|| -|Necropotence|Fifth Edition|R|3865|| -|Nether Shadow|Fifth Edition|R|3866|| -|Nightmare|Fifth Edition|R|3867|| -|Paralyze|Fifth Edition|C|3868|| -|Pestilence|Fifth Edition|C|3869|| -|Pit Scorpion|Fifth Edition|C|3870|| -|Plague Rats|Fifth Edition|C|3871|| -|Pox|Fifth Edition|R|3872|| -|Rag Man|Fifth Edition|R|3873|| -|Raise Dead|Fifth Edition|C|3874|| -|Scathe Zombies|Fifth Edition|C|3875|| -|Sengir Autocrat|Fifth Edition|R|3876|| -|Sorceress Queen|Fifth Edition|R|3877|| -|Stromgald Cabal|Fifth Edition|R|3878|| -|Terror|Fifth Edition|C|3879|| -|The Wretched|Fifth Edition|R|3880|| -|Thrull Retainer|Fifth Edition|U|3881|| -|Torture|Fifth Edition|C|3882|| -|Touch of Death|Fifth Edition|C|3883|| -|Unholy Strength|Fifth Edition|C|3884|| -|Vampire Bats|Fifth Edition|C|3885|| -|Wall of Bone|Fifth Edition|U|3886|| -|Warp Artifact|Fifth Edition|R|3887|| -|Weakness|Fifth Edition|C|3888|| -|Xenic Poltergeist|Fifth Edition|R|3889|| -|Zombie Master|Fifth Edition|R|3890|| -|Ζther Storm|Fifth Edition|U|3891|| -|Air Elemental|Fifth Edition|U|3892|| -|Anti-Magic Aura|Fifth Edition|U|3893|| -|Azure Drake|Fifth Edition|U|3894|| -|Binding Grasp|Fifth Edition|U|3895|| -|Boomerang|Fifth Edition|C|3896|| -|Brainstorm|Fifth Edition|C|3897|| -|Counterspell|Fifth Edition|C|3898|| -|Dance of Many|Fifth Edition|R|3899|| -|Dandβn|Fifth Edition|C|3900|| -|Dark Maze|Fifth Edition|C|3901|| -|Deflection|Fifth Edition|R|3902|| -|Drain Power|Fifth Edition|R|3903|| -|Energy Flux|Fifth Edition|U|3904|| -|Enervate|Fifth Edition|C|3905|| -|Feedback|Fifth Edition|U|3906|| -|Flight|Fifth Edition|C|3907|| -|Flood|Fifth Edition|C|3908|| -|Force Spike|Fifth Edition|C|3909|| -|Forget|Fifth Edition|R|3910|| -|Gaseous Form|Fifth Edition|C|3911|| -|Glacial Wall|Fifth Edition|U|3912|| -|Homarid Warrior|Fifth Edition|C|3913|| -|Hurkyl's Recall|Fifth Edition|R|3914|| -|Hydroblast|Fifth Edition|U|3915|| -|Juxtapose|Fifth Edition|R|3916|| -|Krovikan Sorcerer|Fifth Edition|C|3917|| -|Labyrinth Minotaur|Fifth Edition|C|3918|| -|Leviathan|Fifth Edition|R|3919|| -|Lifetap|Fifth Edition|U|3920|| -|Lord of Atlantis|Fifth Edition|R|3921|| -|Magical Hack|Fifth Edition|R|3922|| -|Magus of the Unseen|Fifth Edition|R|3923|| -|Memory Lapse|Fifth Edition|C|3924|| -|Merfolk of the Pearl Trident|Fifth Edition|C|3925|| -|Mind Bomb|Fifth Edition|U|3926|| -|Phantasmal Forces|Fifth Edition|U|3927|| -|Phantasmal Terrain|Fifth Edition|C|3928|| -|Phantom Monster|Fifth Edition|U|3929|| -|Pirate Ship|Fifth Edition|R|3930|| -|Portent|Fifth Edition|C|3931|| -|Power Sink|Fifth Edition|U|3932|| -|Prodigal Sorcerer|Fifth Edition|C|3933|| -|Psychic Venom|Fifth Edition|C|3934|| -|Ray of Command|Fifth Edition|C|3935|| -|Recall|Fifth Edition|R|3936|| -|Reef Pirates|Fifth Edition|C|3937|| -|Remove Soul|Fifth Edition|C|3938|| -|Sea Serpent|Fifth Edition|C|3939|| -|Sea Spirit|Fifth Edition|U|3940|| -|Sea Sprite|Fifth Edition|U|3941|| -|Seasinger|Fifth Edition|U|3942|| -|Segovian Leviathan|Fifth Edition|U|3943|| -|Sibilant Spirit|Fifth Edition|R|3944|| -|Sleight of Mind|Fifth Edition|R|3945|| -|Soul Barrier|Fifth Edition|C|3946|| -|Spell Blast|Fifth Edition|C|3947|| -|Stasis|Fifth Edition|R|3948|| -|Steal Artifact|Fifth Edition|U|3949|| -|Time Elemental|Fifth Edition|R|3950|| -|Twiddle|Fifth Edition|C|3951|| -|Unstable Mutation|Fifth Edition|C|3952|| -|Unsummon|Fifth Edition|C|3953|| -|Updraft|Fifth Edition|C|3954|| -|Vodalian Soldiers|Fifth Edition|C|3955|| -|Wall of Air|Fifth Edition|U|3956|| -|Wind Spirit|Fifth Edition|U|3957|| -|Zephyr Falcon|Fifth Edition|C|3958|| -|Zur's Weirding|Fifth Edition|R|3959|| -|An-Havva Constable|Fifth Edition|R|3960|| -|Aspect of Wolf|Fifth Edition|R|3961|| -|Aurochs|Fifth Edition|C|3962|| -|Birds of Paradise|Fifth Edition|R|3963|| -|Carapace|Fifth Edition|C|3964|| -|Cat Warriors|Fifth Edition|C|3965|| -|Chub Toad|Fifth Edition|C|3966|| -|Cockatrice|Fifth Edition|R|3967|| -|Craw Giant|Fifth Edition|U|3968|| -|Craw Wurm|Fifth Edition|C|3969|| -|Crumble|Fifth Edition|U|3970|| -|Desert Twister|Fifth Edition|U|3971|| -|Durkwood Boars|Fifth Edition|C|3972|| -|Elder Druid|Fifth Edition|R|3973|| -|Elven Riders|Fifth Edition|U|3974|| -|Elvish Archers|Fifth Edition|R|3975|| -|Fog|Fifth Edition|C|3976|| -|Force of Nature|Fifth Edition|R|3977|| -|Foxfire|Fifth Edition|C|3978|| -|Fungusaur|Fifth Edition|R|3979|| -|Fyndhorn Elder|Fifth Edition|U|3980|| -|Ghazbαn Ogre|Fifth Edition|C|3981|| -|Giant Growth|Fifth Edition|C|3982|| -|Giant Spider|Fifth Edition|C|3983|| -|Grizzly Bears|Fifth Edition|C|3984|| -|Hungry Mist|Fifth Edition|C|3985|| -|Hurricane|Fifth Edition|U|3986|| -|Instill Energy|Fifth Edition|U|3987|| -|Ironroot Treefolk|Fifth Edition|C|3988|| -|Johtull Wurm|Fifth Edition|U|3989|| -|Killer Bees|Fifth Edition|U|3990|| -|Ley Druid|Fifth Edition|C|3991|| -|Lhurgoyf|Fifth Edition|R|3992|| -|Lifeforce|Fifth Edition|U|3993|| -|Living Artifact|Fifth Edition|R|3994|| -|Living Lands|Fifth Edition|R|3995|| -|Llanowar Elves|Fifth Edition|C|3996|| -|Lure|Fifth Edition|U|3997|| -|Marsh Viper|Fifth Edition|C|3998|| -|Nature's Lore|Fifth Edition|C|3999|| -|Pradesh Gypsies|Fifth Edition|C|4000|| -|Primal Order|Fifth Edition|R|4001|| -|Rabid Wombat|Fifth Edition|U|4002|| -|Radjan Spirit|Fifth Edition|U|4003|| -|Regeneration|Fifth Edition|C|4004|| -|Scaled Wurm|Fifth Edition|C|4005|| -|Scavenger Folk|Fifth Edition|C|4006|| -|Scryb Sprites|Fifth Edition|C|4007|| -|Shanodin Dryads|Fifth Edition|C|4008|| -|Shrink|Fifth Edition|C|4009|| -|Stampede|Fifth Edition|R|4010|| -|Stream of Life|Fifth Edition|C|4011|| -|Sylvan Library|Fifth Edition|R|4012|| -|Tarpan|Fifth Edition|C|4013|| -|Thicket Basilisk|Fifth Edition|U|4014|| -|Titania's Song|Fifth Edition|R|4015|| -|Tranquility|Fifth Edition|C|4016|| -|Tsunami|Fifth Edition|U|4017|| -|Untamed Wilds|Fifth Edition|U|4018|| -|Venom|Fifth Edition|C|4019|| -|Verduran Enchantress|Fifth Edition|R|4020|| -|Wall of Brambles|Fifth Edition|U|4021|| -|Wanderlust|Fifth Edition|U|4022|| -|War Mammoth|Fifth Edition|C|4023|| -|Whirling Dervish|Fifth Edition|U|4024|| -|Wild Growth|Fifth Edition|C|4025|| -|Winter Blast|Fifth Edition|U|4026|| -|Wolverine Pack|Fifth Edition|U|4027|| -|Wyluli Wolf|Fifth Edition|R|4028|| -|Ambush Party|Fifth Edition|C|4029|| -|Atog|Fifth Edition|U|4030|| -|Ball Lightning|Fifth Edition|R|4031|| -|Bird Maiden|Fifth Edition|C|4032|| -|Blood Lust|Fifth Edition|C|4033|| -|Brassclaw Orcs|Fifth Edition|C|4034|| -|Brothers of Fire|Fifth Edition|C|4035|| -|Cave People|Fifth Edition|U|4036|| -|Conquer|Fifth Edition|U|4037|| -|Crimson Manticore|Fifth Edition|R|4038|| -|Detonate|Fifth Edition|U|4039|| -|Disintegrate|Fifth Edition|C|4040|| -|Dwarven Catapult|Fifth Edition|U|4041|| -|Dwarven Soldier|Fifth Edition|C|4042|| -|Dwarven Warriors|Fifth Edition|C|4043|| -|Earthquake|Fifth Edition|R|4044|| -|Errantry|Fifth Edition|C|4045|| -|Eternal Warrior|Fifth Edition|C|4046|| -|Fire Drake|Fifth Edition|U|4047|| -|Fireball|Fifth Edition|C|4048|| -|Firebreathing|Fifth Edition|C|4049|| -|Flame Spirit|Fifth Edition|U|4050|| -|Flare|Fifth Edition|C|4051|| -|Flashfires|Fifth Edition|U|4052|| -|Game of Chaos|Fifth Edition|R|4053|| -|Giant Strength|Fifth Edition|C|4054|| -|Goblin Digging Team|Fifth Edition|C|4055|| -|Goblin Hero|Fifth Edition|C|4056|| -|Goblin King|Fifth Edition|R|4057|| -|Goblin War Drums|Fifth Edition|C|4058|| -|Goblin Warrens|Fifth Edition|R|4059|| -|Hill Giant|Fifth Edition|C|4060|| -|Hurloon Minotaur|Fifth Edition|C|4061|| -|Imposing Visage|Fifth Edition|C|4062|| -|Incinerate|Fifth Edition|C|4063|| -|Inferno|Fifth Edition|R|4064|| -|Ironclaw Curse|Fifth Edition|R|4065|| -|Ironclaw Orcs|Fifth Edition|C|4066|| -|Jokulhaups|Fifth Edition|R|4067|| -|Keldon Warlord|Fifth Edition|U|4068|| -|Mana Clash|Fifth Edition|R|4069|| -|Mana Flare|Fifth Edition|R|4070|| -|Manabarbs|Fifth Edition|R|4071|| -|Mons's Goblin Raiders|Fifth Edition|C|4072|| -|Mountain Goat|Fifth Edition|C|4073|| -|Orcish Artillery|Fifth Edition|U|4074|| -|Orcish Captain|Fifth Edition|U|4075|| -|Orcish Conscripts|Fifth Edition|C|4076|| -|Orcish Farmer|Fifth Edition|C|4077|| -|Orcish Oriflamme|Fifth Edition|U|4078|| -|Orcish Squatters|Fifth Edition|R|4079|| -|Orgg|Fifth Edition|R|4080|| -|Panic|Fifth Edition|C|4081|| -|Primordial Ooze|Fifth Edition|U|4082|| -|Pyroblast|Fifth Edition|U|4083|| -|Pyrotechnics|Fifth Edition|U|4084|| -|Sabretooth Tiger|Fifth Edition|C|4085|| -|Shatter|Fifth Edition|C|4086|| -|Shatterstorm|Fifth Edition|U|4087|| -|Shivan Dragon|Fifth Edition|R|4088|| -|Smoke|Fifth Edition|R|4089|| -|Stone Giant|Fifth Edition|U|4090|| -|Stone Rain|Fifth Edition|C|4091|| -|Stone Spirit|Fifth Edition|U|4092|| -|The Brute|Fifth Edition|C|4093|| -|Wall of Fire|Fifth Edition|U|4094|| -|Wall of Stone|Fifth Edition|U|4095|| -|Winds of Change|Fifth Edition|R|4096|| -|Word of Blasting|Fifth Edition|U|4097|| -|Abbey Gargoyles|Fifth Edition|U|4098|| -|Akron Legionnaire|Fifth Edition|R|4099|| -|Alabaster Potion|Fifth Edition|C|4100|| -|Angry Mob|Fifth Edition|U|4101|| -|Animate Wall|Fifth Edition|R|4102|| -|Arenson's Aura|Fifth Edition|U|4103|| -|Armageddon|Fifth Edition|R|4104|| -|Armor of Faith|Fifth Edition|C|4105|| -|Aysen Bureaucrats|Fifth Edition|C|4106|| -|Benalish Hero|Fifth Edition|C|4107|| -|Blessed Wine|Fifth Edition|C|4108|| -|Blinking Spirit|Fifth Edition|R|4109|| -|Brainwash|Fifth Edition|C|4110|| -|Caribou Range|Fifth Edition|R|4111|| -|Castle|Fifth Edition|U|4112|| -|Circle of Protection: Artifacts|Fifth Edition|U|4113|| -|Circle of Protection: Black|Fifth Edition|C|4114|| -|Circle of Protection: Blue|Fifth Edition|C|4115|| -|Circle of Protection: Green|Fifth Edition|C|4116|| -|Circle of Protection: Red|Fifth Edition|C|4117|| -|Circle of Protection: White|Fifth Edition|C|4118|| -|Crusade|Fifth Edition|R|4119|| -|D'Avenant Archer|Fifth Edition|C|4120|| -|Death Speakers|Fifth Edition|C|4121|| -|Death Ward|Fifth Edition|C|4122|| -|Disenchant|Fifth Edition|C|4123|| -|Divine Offering|Fifth Edition|C|4124|| -|Divine Transformation|Fifth Edition|U|4125|| -|Dust to Dust|Fifth Edition|U|4126|| -|Eye for an Eye|Fifth Edition|R|4127|| -|Greater Realm of Preservation|Fifth Edition|U|4128|| -|Heal|Fifth Edition|C|4129|| -|Healing Salve|Fifth Edition|C|4130|| -|Hipparion|Fifth Edition|C|4131|| -|Holy Strength|Fifth Edition|C|4132|| -|Icatian Phalanx|Fifth Edition|U|4133|| -|Icatian Scout|Fifth Edition|C|4134|| -|Icatian Town|Fifth Edition|R|4135|| -|Island Sanctuary|Fifth Edition|R|4136|| -|Ivory Guardians|Fifth Edition|U|4137|| -|Justice|Fifth Edition|U|4138|| -|Karma|Fifth Edition|U|4139|| -|Kismet|Fifth Edition|U|4140|| -|Kjeldoran Royal Guard|Fifth Edition|R|4141|| -|Kjeldoran Skycaptain|Fifth Edition|U|4142|| -|Mesa Falcon|Fifth Edition|C|4143|| -|Mesa Pegasus|Fifth Edition|C|4144|| -|Order of the Sacred Torch|Fifth Edition|R|4145|| -|Order of the White Shield|Fifth Edition|U|4146|| -|Pearled Unicorn|Fifth Edition|C|4147|| -|Personal Incarnation|Fifth Edition|R|4148|| -|Pikemen|Fifth Edition|C|4149|| -|Prismatic Ward|Fifth Edition|C|4150|| -|Repentant Blacksmith|Fifth Edition|C|4151|| -|Reverse Damage|Fifth Edition|R|4152|| -|Righteousness|Fifth Edition|R|4153|| -|Sacred Boon|Fifth Edition|U|4154|| -|Samite Healer|Fifth Edition|C|4155|| -|Seraph|Fifth Edition|R|4156|| -|Serra Bestiary|Fifth Edition|U|4157|| -|Serra Paladin|Fifth Edition|U|4158|| -|Shield Bearer|Fifth Edition|C|4159|| -|Shield Wall|Fifth Edition|C|4160|| -|Spirit Link|Fifth Edition|U|4161|| -|Truce|Fifth Edition|R|4162|| -|Tundra Wolves|Fifth Edition|C|4163|| -|Wall of Swords|Fifth Edition|U|4164|| -|White Knight|Fifth Edition|U|4165|| -|Wrath of God|Fifth Edition|R|4166|| -|Swamp|Fifth Edition|L|4167|| -|Swamp|Fifth Edition|L|4168|| -|Swamp|Fifth Edition|L|4169|| -|Swamp|Fifth Edition|L|4170|| -|Forest|Fifth Edition|L|4171|| -|Forest|Fifth Edition|L|4172|| -|Forest|Fifth Edition|L|4173|| -|Forest|Fifth Edition|L|4174|| -|Adarkar Wastes|Fifth Edition|R|4175|| -|Bottomless Vault|Fifth Edition|R|4176|| -|Brushland|Fifth Edition|R|4177|| -|City of Brass|Fifth Edition|R|4178|| -|Dwarven Hold|Fifth Edition|R|4179|| -|Dwarven Ruins|Fifth Edition|U|4180|| -|Ebon Stronghold|Fifth Edition|U|4181|| -|Havenwood Battleground|Fifth Edition|U|4182|| -|Hollow Trees|Fifth Edition|R|4183|| -|Icatian Store|Fifth Edition|R|4184|| -|Ice Floe|Fifth Edition|U|4185|| -|Karplusan Forest|Fifth Edition|R|4186|| -|Ruins of Trokair|Fifth Edition|U|4187|| -|Sand Silos|Fifth Edition|R|4188|| -|Sulfurous Springs|Fifth Edition|R|4189|| -|Svyelunite Temple|Fifth Edition|U|4190|| -|Underground River|Fifth Edition|R|4191|| -|Urza's Mine|Fifth Edition|C|4192|| -|Urza's Power Plant|Fifth Edition|C|4193|| -|Urza's Tower|Fifth Edition|C|4194|| -|Mountain|Fifth Edition|L|4195|| -|Mountain|Fifth Edition|L|4196|| -|Mountain|Fifth Edition|L|4197|| -|Mountain|Fifth Edition|L|4198|| -|Island|Fifth Edition|L|4199|| -|Island|Fifth Edition|L|4200|| -|Island|Fifth Edition|L|4201|| -|Island|Fifth Edition|L|4202|| -|Plains|Fifth Edition|L|4203|| -|Plains|Fifth Edition|L|4204|| -|Plains|Fifth Edition|L|4205|| -|Plains|Fifth Edition|L|4206|| -|Arrogant Vampire|Portal|U|4207|| -|Assassin's Blade|Portal|U|4208|| -|Bog Imp|Portal|C|4209|| -|Bog Raiders|Portal|C|4210|| -|Bog Wraith|Portal|U|4211|| -|Charging Bandits|Portal|U|4212|| -|Craven Knight|Portal|C|4213|| -|Cruel Bargain|Portal|R|4214|| -|Cruel Tutor|Portal|R|4215|| -|Dread Charge|Portal|R|4216|| -|Dread Reaper|Portal|R|4217|| -|Dry Spell|Portal|U|4218|| -|Ebon Dragon|Portal|R|4219|| -|Endless Cockroaches|Portal|R|4220|| -|Feral Shadow|Portal|C|4221|| -|Final Strike|Portal|R|4222|| -|Gravedigger|Portal|U|4223|| -|Hand of Death|Portal|C|4224|| -|Hand of Death|Portal|C|4225|| -|Howling Fury|Portal|C|4226|| -|King's Assassin|Portal|R|4227|| -|Mercenary Knight|Portal|R|4228|| -|Mind Knives|Portal|C|4229|| -|Mind Rot|Portal|C|4230|| -|Muck Rats|Portal|C|4231|| -|Nature's Ruin|Portal|U|4232|| -|Noxious Toad|Portal|U|4233|| -|Python|Portal|C|4234|| -|Rain of Tears|Portal|U|4235|| -|Raise Dead|Portal|C|4236|| -|Serpent Assassin|Portal|R|4237|| -|Serpent Warrior|Portal|C|4238|| -|Skeletal Crocodile|Portal|C|4239|| -|Skeletal Snake|Portal|C|4240|| -|Soul Shred|Portal|C|4241|| -|Undying Beast|Portal|C|4242|| -|Vampiric Feast|Portal|U|4243|| -|Vampiric Touch|Portal|C|4244|| -|Virtue's Ruin|Portal|U|4245|| -|Wicked Pact|Portal|R|4246|| -|Ancestral Memories|Portal|R|4247|| -|Balance of Power|Portal|R|4248|| -|Baleful Stare|Portal|U|4249|| -|Capricious Sorcerer|Portal|R|4250|| -|Cloak of Feathers|Portal|C|4251|| -|Cloud Dragon|Portal|R|4252|| -|Cloud Pirates|Portal|C|4253|| -|Cloud Spirit|Portal|U|4254|| -|Command of Unsummoning|Portal|U|4255|| -|Coral Eel|Portal|C|4256|| -|Cruel Fate|Portal|R|4257|| -|Deep-Sea Serpent|Portal|U|4258|| -|Dιjΰ Vu|Portal|C|4259|| -|Djinn of the Lamp|Portal|R|4260|| -|Exhaustion|Portal|R|4261|| -|Flux|Portal|U|4262|| -|Giant Octopus|Portal|C|4263|| -|Horned Turtle|Portal|C|4264|| -|Ingenious Thief|Portal|U|4265|| -|Man-o'-War|Portal|U|4266|| -|Merfolk of the Pearl Trident|Portal|C|4267|| -|Mystic Denial|Portal|U|4268|| -|Omen|Portal|C|4269|| -|Owl Familiar|Portal|C|4270|| -|Personal Tutor|Portal|U|4271|| -|Phantom Warrior|Portal|R|4272|| -|Prosperity|Portal|R|4273|| -|Snapping Drake|Portal|C|4274|| -|Sorcerous Sight|Portal|C|4275|| -|Storm Crow|Portal|C|4276|| -|Symbol of Unsummoning|Portal|C|4277|| -|Taunt|Portal|R|4278|| -|Theft of Dreams|Portal|U|4279|| -|Thing from the Deep|Portal|R|4280|| -|Tidal Surge|Portal|C|4281|| -|Time Ebb|Portal|C|4282|| -|Touch of Brilliance|Portal|C|4283|| -|Wind Drake|Portal|C|4284|| -|Withering Gaze|Portal|U|4285|| -|Alluring Scent|Portal|R|4286|| -|Anaconda|Portal|U|4287|| -|Anaconda|Portal|U|4288|| -|Bee Sting|Portal|U|4289|| -|Bull Hippo|Portal|U|4290|| -|Charging Rhino|Portal|R|4291|| -|Deep Wood|Portal|U|4292|| -|Elite Cat Warrior|Portal|C|4293|| -|Elite Cat Warrior|Portal|C|4294|| -|Elven Cache|Portal|C|4295|| -|Elvish Ranger|Portal|C|4296|| -|Fruition|Portal|C|4297|| -|Giant Spider|Portal|C|4298|| -|Gorilla Warrior|Portal|C|4299|| -|Grizzly Bears|Portal|C|4300|| -|Hurricane|Portal|R|4301|| -|Jungle Lion|Portal|C|4302|| -|Mobilize|Portal|C|4303|| -|Monstrous Growth|Portal|C|4304|| -|Monstrous Growth|Portal|C|4305|| -|Moon Sprite|Portal|U|4306|| -|Natural Order|Portal|R|4307|| -|Natural Spring|Portal|U|4308|| -|Nature's Cloak|Portal|R|4309|| -|Nature's Lore|Portal|C|4310|| -|Needle Storm|Portal|U|4311|| -|Plant Elemental|Portal|U|4313|| -|Primeval Force|Portal|R|4314|| -|Redwood Treefolk|Portal|C|4315|| -|Rowan Treefolk|Portal|C|4316|| -|Spined Wurm|Portal|C|4317|| -|Stalking Tiger|Portal|C|4318|| -|Summer Bloom|Portal|R|4319|| -|Sylvan Tutor|Portal|R|4320|| -|Thundering Wurm|Portal|R|4321|| -|Treetop Defense|Portal|R|4322|| -|Untamed Wilds|Portal|U|4323|| -|Whiptail Wurm|Portal|U|4324|| -|Willow Dryad|Portal|C|4325|| -|Winter's Grasp|Portal|U|4326|| -|Wood Elves|Portal|R|4327|| -|Blaze|Portal|U|4328|| -|Blaze|Portal|U|4329|| -|Boiling Seas|Portal|U|4330|| -|Burning Cloak|Portal|C|4331|| -|Craven Giant|Portal|C|4332|| -|Desert Drake|Portal|U|4333|| -|Devastation|Portal|R|4334|| -|Earthquake|Portal|R|4335|| -|Fire Dragon|Portal|R|4336|| -|Fire Imp|Portal|U|4337|| -|Fire Snake|Portal|C|4338|| -|Fire Tempest|Portal|R|4339|| -|Flashfires|Portal|U|4340|| -|Forked Lightning|Portal|R|4341|| -|Goblin Bully|Portal|C|4342|| -|Highland Giant|Portal|C|4343|| -|Hill Giant|Portal|C|4344|| -|Hulking Cyclops|Portal|U|4345|| -|Hulking Goblin|Portal|C|4346|| -|Last Chance|Portal|R|4347|| -|Lava Axe|Portal|C|4348|| -|Lava Flow|Portal|U|4349|| -|Lizard Warrior|Portal|C|4350|| -|Minotaur Warrior|Portal|C|4351|| -|Mountain Goat|Portal|U|4352|| -|Pillaging Horde|Portal|R|4353|| -|Pyroclasm|Portal|R|4354|| -|Raging Cougar|Portal|C|4355|| -|Raging Goblin|Portal|C|4356|| -|Raging Goblin|Portal|C|4357|| -|Raging Minotaur|Portal|C|4358|| -|Rain of Salt|Portal|U|4359|| -|Scorching Spear|Portal|C|4360|| -|Scorching Winds|Portal|U|4361|| -|Spitting Earth|Portal|C|4362|| -|Stone Rain|Portal|C|4363|| -|Thundermare|Portal|R|4364|| -|Volcanic Dragon|Portal|R|4365|| -|Volcanic Hammer|Portal|C|4366|| -|Wall of Granite|Portal|U|4367|| -|Winds of Change|Portal|R|4368|| -|Alabaster Dragon|Portal|R|4369|| -|Angelic Blessing|Portal|C|4370|| -|Archangel|Portal|R|4371|| -|Ardent Militia|Portal|U|4372|| -|Armageddon|Portal|R|4373|| -|Armored Pegasus|Portal|C|4374|| -|Blessed Reversal|Portal|R|4375|| -|Blinding Light|Portal|R|4376|| -|Border Guard|Portal|C|4377|| -|Breath of Life|Portal|C|4378|| -|Charging Paladin|Portal|U|4379|| -|Defiant Stand|Portal|U|4380|| -|Devoted Hero|Portal|C|4381|| -|False Peace|Portal|C|4382|| -|Fleet-Footed Monk|Portal|C|4383|| -|Foot Soldiers|Portal|C|4384|| -|Gift of Estates|Portal|R|4385|| -|Harsh Justice|Portal|R|4386|| -|Keen-Eyed Archers|Portal|C|4387|| -|Knight Errant|Portal|C|4388|| -|Path of Peace|Portal|C|4389|| -|Regal Unicorn|Portal|C|4390|| -|Renewing Dawn|Portal|U|4391|| -|Sacred Knight|Portal|C|4392|| -|Sacred Nectar|Portal|C|4393|| -|Seasoned Marshal|Portal|U|4394|| -|Spiritual Guardian|Portal|R|4395|| -|Spotted Griffin|Portal|C|4396|| -|Starlight|Portal|U|4397|| -|Starlit Angel|Portal|U|4398|| -|Steadfastness|Portal|C|4399|| -|Stern Marshal|Portal|R|4400|| -|Temporary Truce|Portal|R|4401|| -|Valorous Charge|Portal|U|4402|| -|Venerable Monk|Portal|U|4403|| -|Vengeance|Portal|U|4404|| -|Wall of Swords|Portal|U|4405|| -|Warrior's Charge|Portal|C|4406|| -|Warrior's Charge|Portal|C|4407|| -|Wrath of God|Portal|R|4408|| -|Swamp|Portal|L|4409|| -|Swamp|Portal|L|4410|| -|Swamp|Portal|L|4411|| -|Swamp|Portal|L|4412|| -|Forest|Portal|L|4413|| -|Forest|Portal|L|4414|| -|Forest|Portal|L|4415|| -|Forest|Portal|L|4416|| -|Mountain|Portal|L|4417|| -|Mountain|Portal|L|4418|| -|Mountain|Portal|L|4419|| -|Mountain|Portal|L|4420|| -|Island|Portal|L|4421|| -|Island|Portal|L|4422|| -|Island|Portal|L|4423|| -|Island|Portal|L|4424|| -|Plains|Portal|L|4425|| -|Plains|Portal|L|4426|| -|Plains|Portal|L|4427|| -|Plains|Portal|L|4428|| -|Bφsium Strip|Weatherlight|R|4429|| -|Bubble Matrix|Weatherlight|R|4430|| -|Chimeric Sphere|Weatherlight|U|4431|| -|Dingus Staff|Weatherlight|U|4432|| -|Jabari's Banner|Weatherlight|U|4433|| -|Jangling Automaton|Weatherlight|C|4434|| -|Mana Web|Weatherlight|R|4435|| -|Mind Stone|Weatherlight|C|4436|| -|Null Rod|Weatherlight|R|4437|| -|Phyrexian Furnace|Weatherlight|U|4438|| -|Serrated Biskelion|Weatherlight|U|4439|| -|Steel Golem|Weatherlight|U|4440|| -|Straw Golem|Weatherlight|U|4441|| -|Thran Forge|Weatherlight|U|4442|| -|Thran Tome|Weatherlight|R|4443|| -|Touchstone|Weatherlight|U|4444|| -|Well of Knowledge|Weatherlight|R|4445|| -|Xanthic Statue|Weatherlight|R|4446|| -|Abyssal Gatekeeper|Weatherlight|C|4447|| -|Agonizing Memories|Weatherlight|U|4448|| -|Barrow Ghoul|Weatherlight|C|4449|| -|Bone Dancer|Weatherlight|R|4450|| -|Buried Alive|Weatherlight|U|4451|| -|Circling Vultures|Weatherlight|U|4452|| -|Coils of the Medusa|Weatherlight|C|4453|| -|Doomsday|Weatherlight|R|4454|| -|Fatal Blow|Weatherlight|C|4455|| -|Festering Evil|Weatherlight|U|4456|| -|Fledgling Djinn|Weatherlight|C|4457|| -|Gallowbraid|Weatherlight|R|4458|| -|Haunting Misery|Weatherlight|C|4459|| -|Hidden Horror|Weatherlight|U|4460|| -|Infernal Tribute|Weatherlight|R|4461|| -|Mischievous Poltergeist|Weatherlight|U|4462|| -|Morinfen|Weatherlight|R|4463|| -|Necratog|Weatherlight|U|4464|| -|Odylic Wraith|Weatherlight|U|4465|| -|Razortooth Rats|Weatherlight|C|4466|| -|Shadow Rider|Weatherlight|C|4467|| -|Shattered Crypt|Weatherlight|C|4468|| -|Spinning Darkness|Weatherlight|C|4469|| -|Strands of Night|Weatherlight|U|4470|| -|Tendrils of Despair|Weatherlight|C|4471|| -|Urborg Justice|Weatherlight|R|4472|| -|Urborg Stalker|Weatherlight|R|4473|| -|Wave of Terror|Weatherlight|R|4474|| -|Zombie Scavengers|Weatherlight|C|4475|| -|Abduction|Weatherlight|U|4476|| -|Abjure|Weatherlight|C|4477|| -|Ancestral Knowledge|Weatherlight|R|4478|| -|Apathy|Weatherlight|C|4479|| -|Argivian Restoration|Weatherlight|U|4480|| -|Avizoa|Weatherlight|R|4481|| -|Cloud Djinn|Weatherlight|U|4482|| -|Disrupt|Weatherlight|C|4483|| -|Ertai's Familiar|Weatherlight|R|4484|| -|Flux|Weatherlight|C|4485|| -|Fog Elemental|Weatherlight|C|4486|| -|Mana Chains|Weatherlight|C|4487|| -|Manta Ray|Weatherlight|C|4488|| -|Merfolk Traders|Weatherlight|C|4489|| -|Noble Benefactor|Weatherlight|U|4490|| -|Ophidian|Weatherlight|C|4491|| -|Paradigm Shift|Weatherlight|R|4492|| -|Pendrell Mists|Weatherlight|R|4493|| -|Phantom Warrior|Weatherlight|U|4494|| -|Phantom Wings|Weatherlight|C|4495|| -|Psychic Vortex|Weatherlight|R|4496|| -|Relearn|Weatherlight|U|4497|| -|Sage Owl|Weatherlight|C|4498|| -|Teferi's Veil|Weatherlight|U|4499|| -|Timid Drake|Weatherlight|U|4500|| -|Tolarian Drake|Weatherlight|C|4501|| -|Tolarian Entrancer|Weatherlight|R|4502|| -|Tolarian Serpent|Weatherlight|R|4503|| -|Vodalian Illusionist|Weatherlight|U|4504|| -|Aboroth|Weatherlight|R|4505|| -|Arctic Wolves|Weatherlight|U|4506|| -|Barishi|Weatherlight|U|4507|| -|Blossoming Wreath|Weatherlight|C|4508|| -|Briar Shield|Weatherlight|C|4509|| -|Call of the Wild|Weatherlight|R|4510|| -|Choking Vines|Weatherlight|C|4511|| -|Dense Foliage|Weatherlight|R|4512|| -|Downdraft|Weatherlight|U|4513|| -|Fallow Wurm|Weatherlight|U|4514|| -|Familiar Ground|Weatherlight|U|4515|| -|Fungus Elemental|Weatherlight|R|4516|| -|Gaea's Blessing|Weatherlight|U|4517|| -|Harvest Wurm|Weatherlight|C|4518|| -|Liege of the Hollows|Weatherlight|R|4519|| -|Llanowar Behemoth|Weatherlight|U|4520|| -|Llanowar Druid|Weatherlight|C|4521|| -|Llanowar Sentinel|Weatherlight|C|4522|| -|Mwonvuli Ooze|Weatherlight|R|4523|| -|Nature's Kiss|Weatherlight|C|4524|| -|Nature's Resurgence|Weatherlight|R|4525|| -|Redwood Treefolk|Weatherlight|C|4526|| -|Rogue Elephant|Weatherlight|C|4527|| -|Striped Bears|Weatherlight|C|4528|| -|Sylvan Hierophant|Weatherlight|U|4529|| -|Tranquil Grove|Weatherlight|R|4530|| -|Uktabi Efreet|Weatherlight|C|4531|| -|Veteran Explorer|Weatherlight|U|4532|| -|Vitalize|Weatherlight|C|4533|| -|Ζther Flash|Weatherlight|U|4534|| -|Betrothed of Fire|Weatherlight|C|4535|| -|Bloodrock Cyclops|Weatherlight|C|4536|| -|Bogardan Firefiend|Weatherlight|C|4537|| -|Boiling Blood|Weatherlight|C|4538|| -|Cinder Giant|Weatherlight|U|4539|| -|Cinder Wall|Weatherlight|C|4540|| -|Cone of Flame|Weatherlight|U|4541|| -|Desperate Gambit|Weatherlight|U|4542|| -|Dwarven Berserker|Weatherlight|C|4543|| -|Dwarven Thaumaturgist|Weatherlight|R|4544|| -|Fervor|Weatherlight|R|4545|| -|Fire Whip|Weatherlight|C|4546|| -|Firestorm|Weatherlight|R|4547|| -|Fit of Rage|Weatherlight|C|4548|| -|Goblin Bomb|Weatherlight|R|4549|| -|Goblin Grenadiers|Weatherlight|U|4550|| -|Goblin Vandal|Weatherlight|C|4551|| -|Heart of Bogardan|Weatherlight|R|4552|| -|Heat Stroke|Weatherlight|R|4553|| -|Hurloon Shaman|Weatherlight|U|4554|| -|Lava Hounds|Weatherlight|U|4555|| -|Lava Storm|Weatherlight|C|4556|| -|Maraxus of Keld|Weatherlight|R|4557|| -|Orcish Settlers|Weatherlight|U|4558|| -|Roc Hatchling|Weatherlight|U|4559|| -|Sawtooth Ogre|Weatherlight|C|4560|| -|Thunderbolt|Weatherlight|C|4561|| -|Thundermare|Weatherlight|R|4562|| -|Abeyance|Weatherlight|R|4563|| -|Alabaster Dragon|Weatherlight|R|4564|| -|Alms|Weatherlight|C|4565|| -|Angelic Renewal|Weatherlight|C|4566|| -|Ardent Militia|Weatherlight|C|4567|| -|Argivian Find|Weatherlight|U|4568|| -|Aura of Silence|Weatherlight|U|4569|| -|Benalish Infantry|Weatherlight|C|4570|| -|Benalish Knight|Weatherlight|C|4571|| -|Benalish Missionary|Weatherlight|C|4572|| -|Debt of Loyalty|Weatherlight|R|4573|| -|Duskrider Falcon|Weatherlight|C|4574|| -|Empyrial Armor|Weatherlight|C|4575|| -|Foriysian Brigade|Weatherlight|U|4576|| -|Gerrard's Wisdom|Weatherlight|U|4577|| -|Guided Strike|Weatherlight|C|4578|| -|Heavy Ballista|Weatherlight|C|4579|| -|Inner Sanctum|Weatherlight|R|4580|| -|Kithkin Armor|Weatherlight|C|4581|| -|Master of Arms|Weatherlight|U|4582|| -|Mistmoon Griffin|Weatherlight|U|4583|| -|Peacekeeper|Weatherlight|R|4584|| -|Revered Unicorn|Weatherlight|U|4585|| -|Serenity|Weatherlight|R|4586|| -|Serra's Blessing|Weatherlight|U|4587|| -|Soul Shepherd|Weatherlight|C|4588|| -|Southern Paladin|Weatherlight|R|4589|| -|Tariff|Weatherlight|R|4590|| -|Volunteer Reserves|Weatherlight|U|4591|| -|Gemstone Mine|Weatherlight|U|4592|| -|Lotus Vale|Weatherlight|R|4593|| -|Scorched Ruins|Weatherlight|R|4594|| -|Winding Canyons|Weatherlight|R|4595|| -|Altar of Dementia|Tempest|R|4596|| -|Booby Trap|Tempest|R|4597|| -|Bottle Gnomes|Tempest|U|4598|| -|Coiled Tinviper|Tempest|C|4599|| -|Cold Storage|Tempest|R|4600|| -|Cursed Scroll|Tempest|R|4601|| -|Echo Chamber|Tempest|R|4602|| -|Emerald Medallion|Tempest|R|4603|| -|Emmessi Tome|Tempest|R|4604|| -|Energizer|Tempest|R|4605|| -|Essence Bottle|Tempest|U|4606|| -|Excavator|Tempest|U|4607|| -|Flowstone Sculpture|Tempest|R|4608|| -|Fool's Tome|Tempest|R|4609|| -|Grindstone|Tempest|R|4610|| -|Helm of Possession|Tempest|R|4611|| -|Jet Medallion|Tempest|R|4612|| -|Jinxed Idol|Tempest|R|4613|| -|Lotus Petal|Tempest|C|4614|| -|Magnetic Web|Tempest|R|4615|| -|Manakin|Tempest|C|4616|| -|Metallic Sliver|Tempest|C|4617|| -|Mogg Cannon|Tempest|U|4618|| -|Patchwork Gnomes|Tempest|U|4619|| -|Pearl Medallion|Tempest|R|4620|| -|Phyrexian Grimoire|Tempest|R|4621|| -|Phyrexian Hulk|Tempest|U|4622|| -|Phyrexian Splicer|Tempest|U|4623|| -|Puppet Strings|Tempest|U|4624|| -|Ruby Medallion|Tempest|R|4625|| -|Sapphire Medallion|Tempest|R|4626|| -|Scalding Tongs|Tempest|R|4627|| -|Scroll Rack|Tempest|R|4628|| -|Squee's Toy|Tempest|C|4629|| -|Static Orb|Tempest|R|4630|| -|Telethopter|Tempest|U|4631|| -|Thumbscrews|Tempest|R|4632|| -|Torture Chamber|Tempest|R|4633|| -|Watchdog|Tempest|U|4634|| -|Abandon Hope|Tempest|U|4635|| -|Ancient Tomb|Tempest|U|4636|| -|Bellowing Fiend|Tempest|R|4637|| -|Bounty Hunter|Tempest|R|4638|| -|Carrionette|Tempest|R|4639|| -|Clot Sliver|Tempest|C|4640|| -|Coercion|Tempest|C|4641|| -|Coffin Queen|Tempest|R|4642|| -|Commander Greven il-Vec|Tempest|R|4643|| -|Corpse Dance|Tempest|R|4644|| -|Dark Banishing|Tempest|C|4645|| -|Dark Ritual|Tempest|C|4646|| -|Darkling Stalker|Tempest|C|4647|| -|Dauthi Embrace|Tempest|U|4648|| -|Dauthi Ghoul|Tempest|U|4649|| -|Dauthi Horror|Tempest|C|4650|| -|Dauthi Marauder|Tempest|C|4651|| -|Dauthi Mercenary|Tempest|U|4652|| -|Dauthi Mindripper|Tempest|U|4653|| -|Dauthi Slayer|Tempest|C|4654|| -|Death Pits of Rath|Tempest|R|4655|| -|Diabolic Edict|Tempest|C|4656|| -|Disturbed Burial|Tempest|C|4657|| -|Dread of Night|Tempest|U|4658|| -|Dregs of Sorrow|Tempest|R|4659|| -|Endless Scream|Tempest|C|4660|| -|Enfeeblement|Tempest|C|4661|| -|Evincar's Justice|Tempest|C|4662|| -|Extinction|Tempest|R|4663|| -|Fevered Convulsions|Tempest|R|4664|| -|Gravedigger|Tempest|C|4665|| -|Imps' Taunt|Tempest|U|4666|| -|Kezzerdrix|Tempest|R|4667|| -|Knight of Dusk|Tempest|U|4668|| -|Leeching Licid|Tempest|U|4670|| -|Living Death|Tempest|R|4671|| -|Maddening Imp|Tempest|R|4672|| -|Marsh Lurker|Tempest|C|4673|| -|Mindwhip Sliver|Tempest|U|4674|| -|Minion of the Wastes|Tempest|R|4675|| -|Perish|Tempest|U|4676|| -|Pit Imp|Tempest|C|4677|| -|Rain of Tears|Tempest|U|4678|| -|Rats of Rath|Tempest|C|4679|| -|Reanimate|Tempest|U|4680|| -|Reckless Spite|Tempest|U|4681|| -|Sadistic Glee|Tempest|C|4682|| -|Sarcomancy|Tempest|R|4683|| -|Screeching Harpy|Tempest|U|4684|| -|Servant of Volrath|Tempest|C|4685|| -|Skyshroud Vampire|Tempest|U|4686|| -|Souldrinker|Tempest|U|4687|| -|Spinal Graft|Tempest|C|4688|| -|Armor Sliver|Tempest|U|4689|| -|Benthic Behemoth|Tempest|R|4690|| -|Capsize|Tempest|C|4691|| -|Chill|Tempest|U|4692|| -|Counterspell|Tempest|C|4693|| -|Dismiss|Tempest|U|4695|| -|Dream Cache|Tempest|C|4696|| -|Duplicity|Tempest|R|4697|| -|Ertai's Meddling|Tempest|R|4698|| -|Escaped Shapeshifter|Tempest|R|4699|| -|Fighting Drake|Tempest|U|4700|| -|Fylamarid|Tempest|U|4701|| -|Gaseous Form|Tempest|C|4702|| -|Giant Crab|Tempest|C|4703|| -|Horned Turtle|Tempest|C|4704|| -|Insight|Tempest|U|4705|| -|Interdict|Tempest|U|4706|| -|Intuition|Tempest|R|4707|| -|Legacy's Allure|Tempest|U|4708|| -|Legerdemain|Tempest|U|4709|| -|Mana Severance|Tempest|R|4710|| -|Manta Riders|Tempest|C|4711|| -|Mawcor|Tempest|R|4712|| -|Meditate|Tempest|R|4713|| -|Mnemonic Sliver|Tempest|U|4714|| -|Power Sink|Tempest|C|4716|| -|Precognition|Tempest|R|4717|| -|Propaganda|Tempest|U|4718|| -|Rootwater Diver|Tempest|U|4720|| -|Rootwater Hunter|Tempest|C|4721|| -|Rootwater Matriarch|Tempest|R|4722|| -|Rootwater Shaman|Tempest|R|4723|| -|Sea Monster|Tempest|C|4724|| -|Shadow Rift|Tempest|C|4725|| -|Shimmering Wings|Tempest|C|4726|| -|Skyshroud Condor|Tempest|U|4727|| -|Spell Blast|Tempest|C|4728|| -|Steal Enchantment|Tempest|U|4729|| -|Stinging Licid|Tempest|U|4730|| -|Thalakos Dreamsower|Tempest|U|4732|| -|Thalakos Mistfolk|Tempest|C|4733|| -|Thalakos Seer|Tempest|C|4734|| -|Thalakos Sentry|Tempest|C|4735|| -|Time Ebb|Tempest|C|4736|| -|Time Warp|Tempest|R|4737|| -|Tradewind Rider|Tempest|R|4738|| -|Twitch|Tempest|C|4739|| -|Unstable Shapeshifter|Tempest|R|4740|| -|Volrath's Curse|Tempest|C|4741|| -|Whim of Volrath|Tempest|R|4742|| -|Whispers of the Muse|Tempest|U|4743|| -|Wind Dancer|Tempest|U|4744|| -|Wind Drake|Tempest|C|4745|| -|Winged Sliver|Tempest|C|4746|| -|Aluren|Tempest|R|4747|| -|Apes of Rath|Tempest|U|4748|| -|Bayou Dragonfly|Tempest|C|4749|| -|Broken Fall|Tempest|C|4750|| -|Canopy Spider|Tempest|C|4751|| -|Charging Rhino|Tempest|U|4752|| -|Choke|Tempest|U|4753|| -|Crazed Armodon|Tempest|R|4754|| -|Dirtcowl Wurm|Tempest|R|4755|| -|Earthcraft|Tempest|R|4756|| -|Eladamri, Lord of Leaves|Tempest|R|4757|| -|Eladamri's Vineyard|Tempest|R|4758|| -|Elven Warhounds|Tempest|R|4759|| -|Elvish Fury|Tempest|C|4760|| -|Flailing Drake|Tempest|U|4761|| -|Frog Tongue|Tempest|C|4762|| -|Fugitive Druid|Tempest|R|4763|| -|Harrow|Tempest|U|4764|| -|Heartwood Dryad|Tempest|C|4765|| -|Heartwood Giant|Tempest|R|4766|| -|Heartwood Treefolk|Tempest|U|4767|| -|Horned Sliver|Tempest|U|4768|| -|Krakilin|Tempest|U|4769|| -|Mirri's Guile|Tempest|R|4770|| -|Mongrel Pack|Tempest|R|4771|| -|Muscle Sliver|Tempest|C|4772|| -|Natural Spring|Tempest|C|4773|| -|Nature's Revolt|Tempest|R|4774|| -|Needle Storm|Tempest|U|4775|| -|Nurturing Licid|Tempest|U|4776|| -|Overrun|Tempest|U|4777|| -|Pincher Beetles|Tempest|C|4778|| -|Rampant Growth|Tempest|C|4779|| -|Reality Anchor|Tempest|C|4780|| -|Reap|Tempest|U|4781|| -|Recycle|Tempest|R|4782|| -|Respite|Tempest|C|4783|| -|Root Maze|Tempest|R|4784|| -|Rootbreaker Wurm|Tempest|C|4785|| -|Rootwalla|Tempest|C|4786|| -|Scragnoth|Tempest|U|4787|| -|Seeker of Skybreak|Tempest|C|4788|| -|Skyshroud Elf|Tempest|C|4789|| -|Skyshroud Ranger|Tempest|C|4790|| -|Skyshroud Troll|Tempest|C|4791|| -|Spike Drone|Tempest|C|4792|| -|Storm Front|Tempest|U|4793|| -|Trained Armodon|Tempest|C|4794|| -|Tranquility|Tempest|C|4795|| -|Trumpeting Armodon|Tempest|U|4796|| -|Verdant Force|Tempest|R|4797|| -|Verdigris|Tempest|U|4798|| -|Winter's Grasp|Tempest|U|4799|| -|Aftershock|Tempest|C|4800|| -|Ancient Runes|Tempest|U|4801|| -|Apocalypse|Tempest|R|4802|| -|Barbed Sliver|Tempest|U|4803|| -|Blood Frenzy|Tempest|C|4804|| -|Boil|Tempest|U|4805|| -|Canyon Drake|Tempest|R|4806|| -|Canyon Wildcat|Tempest|C|4807|| -|Chaotic Goo|Tempest|R|4808|| -|Crown of Flames|Tempest|C|4809|| -|Deadshot|Tempest|R|4810|| -|Enraging Licid|Tempest|U|4811|| -|Firefly|Tempest|U|4813|| -|Fireslinger|Tempest|C|4814|| -|Flowstone Giant|Tempest|C|4816|| -|Flowstone Salamander|Tempest|U|4817|| -|Flowstone Wyvern|Tempest|R|4818|| -|Furnace of Rath|Tempest|R|4819|| -|Giant Strength|Tempest|C|4820|| -|Goblin Bombardment|Tempest|U|4821|| -|Hand to Hand|Tempest|R|4822|| -|Havoc|Tempest|U|4823|| -|Heart Sliver|Tempest|C|4824|| -|Jackal Pup|Tempest|U|4825|| -|Kindle|Tempest|C|4826|| -|Lightning Blast|Tempest|C|4827|| -|Lightning Elemental|Tempest|C|4828|| -|Lowland Giant|Tempest|C|4829|| -|Magmasaur|Tempest|R|4830|| -|Mogg Conscripts|Tempest|C|4831|| -|Mogg Fanatic|Tempest|C|4832|| -|Mogg Raider|Tempest|C|4833|| -|Mogg Squad|Tempest|U|4834|| -|No Quarter|Tempest|R|4835|| -|Opportunist|Tempest|U|4836|| -|Pallimud|Tempest|R|4837|| -|Rathi Dragon|Tempest|R|4838|| -|Renegade Warlord|Tempest|U|4839|| -|Rolling Thunder|Tempest|C|4840|| -|Sandstone Warrior|Tempest|C|4841|| -|Scorched Earth|Tempest|R|4842|| -|Searing Touch|Tempest|U|4843|| -|Shadowstorm|Tempest|U|4846|| -|Shatter|Tempest|C|4847|| -|Shocker|Tempest|R|4848|| -|Starke of Rath|Tempest|R|4849|| -|Stone Rain|Tempest|C|4850|| -|Stun|Tempest|C|4851|| -|Sudden Impact|Tempest|U|4852|| -|Tahngarth's Rage|Tempest|U|4853|| -|Tooth and Claw|Tempest|R|4854|| -|Wall of Diffusion|Tempest|C|4855|| -|Wild Wurm|Tempest|U|4856|| -|Advance Scout|Tempest|C|4857|| -|Angelic Protector|Tempest|U|4858|| -|Anoint|Tempest|C|4859|| -|Armored Pegasus|Tempest|C|4861|| -|Auratog|Tempest|R|4862|| -|Avenging Angel|Tempest|R|4863|| -|Circle of Protection: Black|Tempest|C|4864|| -|Circle of Protection: Blue|Tempest|C|4865|| -|Circle of Protection: Green|Tempest|C|4866|| -|Circle of Protection: Red|Tempest|C|4867|| -|Circle of Protection: Shadow|Tempest|C|4868|| -|Circle of Protection: White|Tempest|C|4869|| -|Clergy en-Vec|Tempest|C|4870|| -|Cloudchaser Eagle|Tempest|C|4871|| -|Disenchant|Tempest|C|4872|| -|Elite Javelineer|Tempest|C|4873|| -|Field of Souls|Tempest|R|4874|| -|Flickering Ward|Tempest|U|4875|| -|Gallantry|Tempest|U|4876|| -|Gerrard's Battle Cry|Tempest|R|4877|| -|Hanna's Custody|Tempest|R|4878|| -|Hero's Resolve|Tempest|C|4879|| -|Humility|Tempest|R|4881|| -|Invulnerability|Tempest|U|4882|| -|Knight of Dawn|Tempest|U|4883|| -|Light of Day|Tempest|U|4884|| -|Marble Titan|Tempest|R|4886|| -|Master Decoy|Tempest|C|4887|| -|Mounted Archers|Tempest|C|4888|| -|Oracle en-Vec|Tempest|R|4889|| -|Orim, Samite Healer|Tempest|R|4890|| -|Orim's Prayer|Tempest|U|4891|| -|Pacifism|Tempest|C|4892|| -|Pegasus Refuge|Tempest|R|4893|| -|Quickening Licid|Tempest|U|4894|| -|Repentance|Tempest|U|4895|| -|Sacred Guide|Tempest|R|4896|| -|Safeguard|Tempest|R|4897|| -|Serene Offering|Tempest|U|4898|| -|Soltari Crusader|Tempest|U|4899|| -|Soltari Emissary|Tempest|R|4900|| -|Soltari Foot Soldier|Tempest|C|4901|| -|Soltari Lancer|Tempest|C|4902|| -|Soltari Monk|Tempest|U|4903|| -|Soltari Priest|Tempest|U|4904|| -|Soltari Trooper|Tempest|C|4905|| -|Spirit Mirror|Tempest|R|4906|| -|Staunch Defenders|Tempest|U|4907|| -|Talon Sliver|Tempest|C|4908|| -|Warmth|Tempest|U|4909|| -|Winds of Rath|Tempest|R|4910|| -|Worthy Cause|Tempest|U|4911|| -|Dracoplasm|Tempest|R|4912|| -|Lobotomy|Tempest|U|4913|| -|Ranger en-Vec|Tempest|U|4914|| -|Segmented Wurm|Tempest|U|4915|| -|Selenia, Dark Angel|Tempest|R|4916|| -|Sky Spirit|Tempest|U|4917|| -|Soltari Guerrillas|Tempest|R|4918|| -|Spontaneous Combustion|Tempest|U|4919|| -|Vhati il-Dal|Tempest|R|4920|| -|Wood Sage|Tempest|R|4921|| -|Swamp|Tempest|L|4922|| -|Swamp|Tempest|L|4923|| -|Swamp|Tempest|L|4924|| -|Swamp|Tempest|L|4925|| -|Forest|Tempest|L|4926|| -|Forest|Tempest|L|4927|| -|Forest|Tempest|L|4928|| -|Forest|Tempest|L|4929|| -|Caldera Lake|Tempest|R|4930|| -|Cinder Marsh|Tempest|U|4931|| -|Ghost Town|Tempest|U|4932|| -|Maze of Shadows|Tempest|U|4933|| -|Mogg Hollows|Tempest|U|4934|| -|Pine Barrens|Tempest|R|4935|| -|Reflecting Pool|Tempest|R|4936|| -|Rootwater Depths|Tempest|U|4937|| -|Salt Flats|Tempest|R|4938|| -|Scabland|Tempest|R|4939|| -|Skyshroud Forest|Tempest|R|4940|| -|Stalking Stones|Tempest|U|4941|| -|Thalakos Lowlands|Tempest|U|4942|| -|Vec Townships|Tempest|U|4943|| -|Wasteland|Tempest|U|4944|| -|Mountain|Tempest|L|4945|| -|Mountain|Tempest|L|4946|| -|Mountain|Tempest|L|4947|| -|Mountain|Tempest|L|4948|| -|Island|Tempest|L|4949|| -|Island|Tempest|L|4950|| -|Island|Tempest|L|4951|| -|Island|Tempest|L|4952|| -|Plains|Tempest|L|4953|| -|Plains|Tempest|L|4954|| -|Plains|Tempest|L|4955|| -|Plains|Tempest|L|4956|| -|Mogg Bombers|Stronghold|C|4980|| -|Mogg Flunkies|Stronghold|C|5100|| -|Mob Justice|Stronghold|C|5101|| -|Silver Wyvern|Stronghold|R|5103|| -|Dream Halls|Stronghold|R|5105|| -|Crovax the Cursed|Stronghold|R|5106|| -|Mogg Infestation|Stronghold|R|5107|| -|Acidic Sliver|Stronghold|U|5108|| -|Amok|Stronghold|R|5109|| -|Awakening|Stronghold|R|5110|| -|Bandage|Stronghold|C|5111|| -|Bottomless Pit|Stronghold|U|5113|| -|Brush with Death|Stronghold|C|5114|| -|Bullwhip|Stronghold|U|5115|| -|Burgeoning|Stronghold|R|5116|| -|Calming Licid|Stronghold|U|5117|| -|Cannibalize|Stronghold|C|5118|| -|Mogg Maniac|Stronghold|U|5120|| -|Change of Heart|Stronghold|C|5121|| -|Cloud Spirit|Stronghold|C|5122|| -|Constant Mists|Stronghold|U|5123|| -|Ensnaring Bridge|Stronghold|R|5124|| -|Contemplation|Stronghold|U|5125|| -|Contempt|Stronghold|C|5126|| -|Conviction|Stronghold|C|5127|| -|Corrupting Licid|Stronghold|U|5128|| -|Convulsing Licid|Stronghold|U|5129|| -|Craven Giant|Stronghold|C|5130|| -|Crossbow Ambush|Stronghold|C|5131|| -|Pit Spawn|Exodus|R|5133|70| -|Crystalline Sliver|Stronghold|U|5134|| -|Dauthi Trapper|Stronghold|U|5135|| -|Grave Pact|Stronghold|R|5136|| -|Death Stroke|Stronghold|C|5137|| -|Scapegoat|Stronghold|U|5138|| -|Dominating Licid|Exodus|R|5139|30| -|Dream Prowler|Stronghold|C|5140|| -|Duct Crawler|Stronghold|C|5141|| -|Dungeon Shade|Stronghold|C|5142|| -|Shock|Stronghold|C|5143|| -|Elven Rite|Stronghold|U|5144|| -|Endangered Armodon|Stronghold|C|5145|| -|Ertai, Wizard Adept|Exodus|R|5146|33| -|Evacuation|Stronghold|R|5147|| -|Fanning the Flames|Stronghold|U|5148|| -|Primal Rage|Stronghold|U|5149|| -|Flame Wave|Stronghold|U|5150|| -|Fling|Stronghold|C|5151|| -|Flowstone Blade|Stronghold|C|5152|| -|Flowstone Hellion|Stronghold|U|5153|| -|Flowstone Mauler|Stronghold|R|5154|| -|Shard Phoenix|Stronghold|R|5155|| -|Flowstone Shambler|Stronghold|C|5156|| -|Forbid|Exodus|U|5157|35| -|Foul Imp|Stronghold|C|5158|| -|Fugue|Exodus|U|5159|62| -|Furnace Spirit|Stronghold|C|5160|| -|Gliding Licid|Stronghold|U|5162|| -|Hammerhead Shark|Stronghold|C|5163|| -|Heartstone|Stronghold|U|5164|| -|Heat of Battle|Stronghold|U|5165|| -|Hermit Druid|Stronghold|R|5166|| -|Hesitation|Stronghold|U|5167|| -|Hibernation Sliver|Stronghold|U|5168|| -|Hidden Retreat|Stronghold|R|5169|| -|Honor Guard|Stronghold|C|5170|| -|Mindless Automaton|Exodus|R|5171|135| -|Horn of Greed|Stronghold|R|5172|| -|Hornet Cannon|Stronghold|U|5173|| -|Intruder Alarm|Stronghold|R|5174|| -|Invasion Plans|Stronghold|R|5175|| -|Null Brooch|Exodus|R|5176|136| -|Jinxed Ring|Stronghold|R|5177|| -|Lab Rats|Stronghold|C|5178|| -|Lancers en-Kor|Stronghold|U|5179|| -|Leap|Stronghold|C|5180|| -|Lowland Basilisk|Stronghold|C|5181|| -|Mana Leak|Stronghold|C|5182|| -|Mask of the Mimic|Stronghold|U|5183|| -|Fighting Chance|Exodus|R|5184|82| -|Megrim|Stronghold|U|5185|| -|Mind Games|Stronghold|C|5186|| -|Mind Peel|Stronghold|U|5187|| -|Mindwarper|Stronghold|R|5188|| -|Mirozel|Exodus|U|5189|41| -|Spined Sliver|Stronghold|U|5190|| -|Morgue Thrull|Stronghold|C|5191|| -|Mortuary|Stronghold|R|5192|| -|Mox Diamond|Stronghold|R|5193|| -|Mulch|Stronghold|C|5194|| -|Tortured Existence|Stronghold|C|5195|| -|Nomads en-Kor|Stronghold|C|5196|| -|Victual Sliver|Stronghold|U|5197|| -|Overgrowth|Stronghold|C|5198|| -|Paladin en-Vec|Exodus|R|5199|12| -|Plaguebearer|Exodus|R|5200|71| -|Plated Rootwalla|Exodus|C|5201|116| -|Portcullis|Stronghold|R|5202|| -|Provoke|Stronghold|C|5203|| -|Pursuit of Knowledge|Stronghold|R|5204|| -|Rabid Rats|Stronghold|C|5205|| -|Ransack|Stronghold|U|5206|| -|Ravenous Baboons|Exodus|R|5207|97| -|Rebound|Stronghold|U|5209|| -|Reins of Power|Stronghold|R|5210|| -|Revenant|Stronghold|R|5211|| -|Rolling Stones|Stronghold|R|5212|| -|Ruination|Stronghold|R|5213|| -|Sacred Ground|Stronghold|R|5214|| -|Samite Blessing|Stronghold|C|5215|| -|Carnassid|Stronghold|R|5217|| -|Seething Anger|Stronghold|C|5218|| -|Serpent Warrior|Stronghold|C|5219|| -|Shaman en-Kor|Stronghold|R|5220|| -|Shattering Pulse|Exodus|C|5221|102| -|Shifting Wall|Stronghold|U|5222|| -|Sift|Stronghold|C|5223|| -|Skyshroud Falcon|Stronghold|C|5224|| -|Skeleton Scavengers|Stronghold|R|5226|| -|Skyshaper|Exodus|U|5227|137| -|Skyshroud Archer|Stronghold|C|5228|| -|Skyshroud Elite|Exodus|U|5229|123| -|Skyshroud Troopers|Stronghold|C|5230|| -|Skyshroud War Beast|Exodus|R|5231|124| -|Sliver Queen|Stronghold|R|5233|| -|Smite|Stronghold|C|5234|| -|Soltari Champion|Stronghold|R|5235|| -|Spirit en-Kor|Stronghold|C|5236|| -|Spike Breeder|Stronghold|R|5237|| -|Spike Colony|Stronghold|C|5238|| -|Spike Feeder|Stronghold|U|5239|| -|Spike Soldier|Stronghold|U|5241|| -|Spike Worker|Stronghold|C|5242|| -|Spindrift Drake|Stronghold|C|5243|| -|Spined Wurm|Stronghold|C|5245|| -|Spitting Hydra|Stronghold|R|5246|| -|Stronghold Assassin|Stronghold|R|5247|| -|Stronghold Taskmaster|Stronghold|U|5249|| -|Sword of the Chosen|Stronghold|R|5250|| -|Temper|Stronghold|U|5251|| -|Tempting Licid|Stronghold|U|5252|| -|Thalakos Deceiver|Stronghold|R|5253|| -|Theft of Dreams|Exodus|C|5254|49| -|Tidal Surge|Stronghold|C|5255|| -|Tidal Warrior|Stronghold|C|5256|| -|Torment|Stronghold|C|5257|| -|Venerable Monk|Stronghold|C|5258|| -|Verdant Touch|Stronghold|R|5259|| -|Volrath's Gardens|Stronghold|R|5260|| -|Volrath's Laboratory|Stronghold|R|5261|| -|Volrath's Shapeshifter|Stronghold|R|5262|| -|Volrath's Stronghold|Stronghold|R|5263|| -|Walking Dream|Stronghold|U|5264|| -|Wall of Blossoms|Stronghold|U|5265|| -|Wall of Essence|Stronghold|U|5267|| -|Wall of Razors|Stronghold|U|5268|| -|Wall of Souls|Stronghold|U|5269|| -|Wall of Tears|Stronghold|U|5270|| -|Warrior Angel|Stronghold|R|5271|| -|Warrior en-Kor|Stronghold|U|5272|| -|Wayward Soul|Exodus|C|5273|51| -|Youthful Knight|Stronghold|C|5274|| -|Goblin Cadets|Urza's Saga|U|5541|189| -|Falter|Urza's Saga|C|5542|184| -|Goblin Spelunkers|Urza's Saga|C|5543|195| -|Raze|Urza's Saga|C|5544|207| -|Shower of Sparks|Urza's Saga|C|5545|217| -|Crater Hellion|Urza's Saga|R|5546|179| -|Voltaic Key|Urza's Saga|U|5547|314| -|Temporal Aperture|Urza's Saga|R|5548|310| -|Mobile Fort|Urza's Saga|U|5550|303| -|Abundance|Urza's Saga|R|5551|229| -|Citanul Centaurs|Urza's Saga|R|5552|243| -|Sicken|Urza's Saga|C|5553|156| -|Unnerve|Urza's Saga|C|5554|162| -|Crazed Skirge|Urza's Saga|U|5555|125| -|Exhume|Urza's Saga|C|5556|134| -|Duress|Urza's Saga|C|5557|132| -|Reprocess|Urza's Saga|R|5558|154| -|Phyrexian Negator|Urza's Destiny|R|5559|65| -|Shivan Raptor|Urza's Saga|U|5562|216| -|Steam Blast|Urza's Saga|U|5563|219| -|Brand|Urza's Saga|R|5564|176| -|Viashino Sandswimmer|Urza's Saga|R|5565|225| -|Wildfire|Urza's Saga|R|5566|228| -|Cackling Fiend|Urza's Saga|C|5567|121| -|Fire Ants|Urza's Saga|U|5568|187| -|Scoria Wurm|Urza's Saga|R|5569|212| -|Ill-Gotten Gains|Urza's Saga|R|5570|138| -|Yavimaya Wurm|Urza's Legacy|C|5571|120| -|Antagonism|Urza's Saga|R|5572|173| -|Skittering Skirge|Urza's Saga|C|5573|158| -|Urza's Armor|Urza's Saga|U|5574|313| -|Pendrell Drake|Urza's Saga|C|5575|86| -|Worship|Urza's Saga|R|5576|57| -|Bull Hippo|Urza's Saga|U|5577|239| -|Herald of Serra|Urza's Saga|R|5578|17| -|Aven Trooper|Torment|C|5584|2| -|Vulshok Berserker|Mirrodin|C|5585|111| -|Okk|Urza's Saga|R|5586|204| -|Defensive Formation|Urza's Saga|U|5588|9| -|Telekinetic Bonds|Judgment|R|5589|52| -|Viashino Weaponsmith|Urza's Saga|C|5590|226| -|Looming Shade|Urza's Saga|C|5591|139| -|Sneak Attack|Urza's Saga|R|5594|218| -|Attunement|Urza's Saga|R|5596|61| -|Bog Raiders|Urza's Saga|C|5597|119| -|False Memories|Torment|R|5598|37| -|Sunder|Urza's Saga|R|5599|101| -|Serra's Hymn|Urza's Saga|U|5602|48| -|Anaconda|Urza's Saga|U|5603|232| -|Fecundity|Urza's Saga|U|5604|251| -|Befoul|Urza's Saga|C|5605|116| -|Hollow Dogs|Urza's Saga|C|5606|137| -|Planar Void|Urza's Saga|U|5608|149| -|Phyrexian Processor|Urza's Saga|R|5610|306| -|Blasted Landscape|Urza's Saga|U|5612|319| -|Coral Merfolk|Urza's Saga|C|5613|67| -|Pendrell Flux|Urza's Saga|C|5614|87| -|Lilting Refrain|Urza's Saga|U|5615|83| -|Bereavement|Urza's Saga|U|5617|117| -|Pestilence|Urza's Saga|C|5619|147| -|Carrion Beetles|Urza's Saga|C|5620|122| -|Darkest Hour|Urza's Saga|R|5622|128| -|Blanchwood Armor|Urza's Saga|U|5623|237| -|Order of Yawgmoth|Urza's Saga|U|5625|144| -|Dark Ritual|Urza's Saga|C|5626|127| -|Sanguine Guard|Urza's Saga|U|5627|155| -|Yawgmoth's Will|Urza's Saga|R|5629|171| -|Disenchant|Urza's Saga|C|5630|12| -|Symbiosis|Urza's Saga|C|5632|275| -|Breach|Urza's Saga|C|5633|120| -|Disciple of Grace|Urza's Saga|C|5634|10| -|Voice of Grace|Urza's Saga|U|5635|54| -|Abyssal Horror|Urza's Saga|R|5636|115| -|Catastrophe|Urza's Saga|R|5637|6| -|Sulfuric Vapors|Urza's Saga|R|5638|220| -|Exhaustion|Urza's Saga|U|5650|74| -|Silent Attendant|Urza's Saga|C|5651|51| -|Phyrexian Ghoul|Urza's Saga|C|5652|148| -|Goblin Patrol|Urza's Saga|C|5653|193| -|Flesh Reaver|Urza's Saga|U|5654|136| -|Fertile Ground|Urza's Saga|C|5655|252| -|Elvish Vanguard|Onslaught|R|5656|259| -|Viashino Runner|Urza's Saga|C|5657|224| -|Jagged Lightning|Urza's Saga|U|5658|200| -|Torch Song|Urza's Saga|U|5659|222| -|Shivan Hellkite|Urza's Saga|R|5660|215| -|Stern Proctor|Urza's Saga|U|5661|99| -|Power Taint|Urza's Saga|C|5662|90| -|Narcissism|Torment|U|5663|134| -|Pouncing Jaguar|Urza's Saga|C|5664|269| -|Cradle Guard|Urza's Saga|U|5665|245| -|Lightning Dragon|Urza's Saga|R|5666|202| -|Crosswinds|Urza's Saga|U|5668|246| -|Songstitcher|Urza's Saga|U|5669|52| -|Rewind|Urza's Saga|C|5670|93| -|Peregrine Drake|Urza's Saga|U|5671|88| -|Disciple of Law|Urza's Saga|C|5672|11| -|Voice of Law|Urza's Saga|U|5673|55| -|Hibernation|Urza's Saga|U|5674|79| -|Wing Snare|Urza's Legacy|U|5675|117| -|Stroke of Genius|Urza's Saga|R|5677|100| -|Intrepid Hero|Urza's Saga|R|5678|19| -|Vug Lizard|Urza's Saga|U|5679|227| -|Goblin Spy|Invasion|U|5680|145| -|Treetop Rangers|Urza's Saga|C|5681|279| -|Granite Grip|Urza's Legacy|C|5682|81| -|Gorilla Warrior|Urza's Saga|C|5683|256| -|Path of Peace|Urza's Saga|C|5684|29| -|Argothian Enchantress|Urza's Saga|R|5686|234| -|Vernal Bloom|Urza's Saga|R|5687|281| -|Vebulid|Urza's Saga|R|5688|165| -|War Dance|Urza's Saga|U|5689|282| -|Vile Requiem|Urza's Saga|U|5690|167| -|Sanctum Guardian|Urza's Saga|U|5691|43| -|Clear|Urza's Saga|U|5692|7| -|Sanctum Custodian|Urza's Saga|C|5695|42| -|Yawgmoth's Edict|Urza's Saga|U|5696|170| -|Show and Tell|Urza's Saga|R|5697|96| -|Hopping Automaton|Urza's Saga|U|5700|297| -|Goblin Raider|Urza's Saga|C|5701|194| -|Humble|Urza's Saga|U|5702|18| -|Rank and File|Urza's Legacy|U|5703|65| -|Mother of Runes|Urza's Legacy|U|5704|14| -|Monk Idealist|Urza's Saga|U|5706|20| -|Serra Zealot|Urza's Saga|C|5707|46| -|Monk Realist|Urza's Saga|C|5708|21| -|Knighthood|Urza's Legacy|U|5709|12| -|Gaea's Bounty|Urza's Saga|C|5710|254| -|Back to Basics|Urza's Saga|R|5711|62| -|Serra Avatar|Urza's Saga|R|5713|45| -|Angelic Chorus|Urza's Saga|R|5714|3| -|Absolute Grace|Urza's Saga|U|5716|1| -|Lotus Blossom|Urza's Saga|R|5717|300| -|Cloak of Mists|Urza's Saga|C|5718|65| -|Drifting Djinn|Urza's Saga|R|5719|71| -|Gaea's Embrace|Urza's Saga|U|5720|255| -|Shiv's Embrace|Urza's Saga|U|5721|214| -|Acidic Soil|Urza's Saga|U|5722|172| -|Douse|Urza's Saga|U|5723|70| -|Citanul Hierophants|Urza's Saga|R|5724|244| -|Bedlam|Urza's Saga|R|5727|175| -|Turnabout|Urza's Saga|U|5728|105| -|Pegasus Charger|Urza's Saga|C|5729|30| -|Smokestack|Urza's Saga|R|5730|309| -|Arc Lightning|Urza's Saga|C|5733|174| -|Dromosaur|Urza's Saga|C|5734|182| -|Barrin's Codex|Urza's Saga|R|5735|286| -|Argothian Elder|Urza's Saga|U|5736|233| -|Blood Vassal|Urza's Saga|C|5737|118| -|Elvish Herder|Urza's Saga|C|5738|247| -|Viashino Outrider|Urza's Saga|C|5739|223| -|Crystal Chimes|Urza's Saga|U|5742|292| -|Shimmering Barrier|Urza's Saga|U|5743|50| -|Somnophore|Urza's Saga|R|5745|97| -|Oppression|Urza's Saga|R|5746|143| -|Blanchwood Treefolk|Urza's Saga|C|5747|238| -|Pacifism|Urza's Saga|C|5748|27| -|Sporogenesis|Urza's Saga|R|5750|273| -|Sleeper Agent|Urza's Saga|R|5751|159| -|Tainted Ζther|Urza's Saga|R|5752|161| -|Fog Bank|Urza's Saga|U|5753|75| -|Lull|Urza's Saga|C|5756|267| -|Power Sink|Urza's Saga|C|5757|89| -|Thundering Giant|Urza's Saga|U|5759|221| -|Goblin War Buggy|Urza's Saga|C|5760|196| -|Rain of Salt|Urza's Saga|U|5761|206| -|Cave Tiger|Urza's Saga|C|5762|241| -|Arcane Laboratory|Urza's Saga|U|5764|60| -|Planar Birth|Urza's Saga|R|5766|31| -|Contamination|Urza's Saga|R|5768|123| -|Argothian Wurm|Urza's Saga|R|5769|236| -|Elite Archers|Urza's Saga|R|5771|13| -|Imaginary Pet|Urza's Saga|R|5772|81| -|Pariah|Urza's Saga|R|5773|28| -|Elvish Lyrist|Urza's Saga|C|5774|248| -|Seasoned Marshal|Urza's Saga|U|5776|44| -|Unworthy Dead|Urza's Saga|C|5780|163| -|Angelic Page|Urza's Saga|C|5781|4| -|Opal Titan|Urza's Saga|R|5782|26| -|Hidden Herd|Urza's Saga|R|5783|262| -|Opal Acrolith|Urza's Saga|U|5784|22| -|Hidden Ancients|Urza's Saga|U|5785|260| -|Hidden Predators|Urza's Saga|R|5786|263| -|Opal Archangel|Urza's Saga|R|5787|23| -|Veil of Birds|Urza's Saga|C|5788|106| -|Veiled Crocodile|Urza's Saga|R|5789|108| -|Hidden Stag|Urza's Saga|R|5790|265| -|Opal Gargoyle|Urza's Saga|C|5791|25| -|Veiled Sentry|Urza's Saga|U|5793|109| -|Opal Caryatid|Urza's Saga|C|5795|24| -|Hidden Guerrillas|Urza's Saga|U|5796|261| -|Veiled Apparition|Urza's Saga|U|5797|107| -|Hidden Spider|Urza's Saga|C|5798|264| -|Slippery Karst|Urza's Saga|C|5803|327| -|Smoldering Crater|Urza's Saga|C|5804|328| -|Drifting Meadow|Urza's Saga|C|5805|320| -|Fluctuator|Urza's Saga|R|5806|295| -|Remote Isle|Urza's Saga|C|5807|324| -|Polluted Mire|Urza's Saga|C|5808|323| -|Rescind|Urza's Saga|C|5809|92| -|Rune of Protection: Black|Urza's Saga|C|5810|36| -|Rune of Protection: Blue|Urza's Saga|C|5811|37| -|Rune of Protection: Green|Urza's Saga|C|5812|38| -|Rune of Protection: Red|Urza's Saga|C|5813|40| -|Rune of Protection: White|Urza's Saga|C|5814|41| -|Sandbar Merfolk|Urza's Saga|C|5815|94| -|Scrap|Urza's Saga|C|5816|213| -|Lay Waste|Urza's Saga|C|5817|201| -|Rejuvenate|Urza's Saga|C|5818|271| -|Expunge|Urza's Saga|C|5819|135| -|Hush|Urza's Saga|C|5820|266| -|Priest of Titania|Urza's Saga|C|5823|270| -|Zephid|Urza's Saga|R|5825|113| -|Retromancer|Urza's Saga|C|5826|209| -|Faith Healer|Urza's Saga|R|5829|14| -|Rain of Filth|Urza's Saga|U|5831|151| -|Launch|Urza's Saga|C|5832|82| -|Waylay|Urza's Saga|U|5833|56| -|Tolarian Winds|Urza's Saga|C|5834|104| -|Glorious Anthem|Urza's Saga|R|5835|15| -|Witch Engine|Urza's Saga|R|5836|169| -|Gilded Drake|Urza's Saga|R|5837|76| -|Titania's Chosen|Urza's Saga|U|5838|277| -|Telepathy|Urza's Saga|U|5841|102| -|Bravado|Urza's Saga|C|5848|177| -|Spined Fluke|Urza's Saga|U|5849|160| -|Winding Wurm|Urza's Saga|C|5850|285| -|Skirge Familiar|Urza's Saga|U|5851|157| -|Dark Hatchling|Urza's Saga|R|5852|126| -|Corrupt|Urza's Saga|C|5853|124| -|Disorder|Urza's Saga|U|5854|181| -|Carpet of Flowers|Urza's Saga|U|5858|240| -|Eastern Paladin|Urza's Saga|R|5860|133| -|Western Paladin|Urza's Saga|R|5861|168| -|Argothian Swine|Urza's Saga|C|5862|235| -|Morphling|Urza's Saga|R|5863|85| -|Acridian|Urza's Saga|C|5865|230| -|Treefolk Seedlings|Urza's Saga|U|5866|278| -|Albino Troll|Urza's Saga|U|5867|231| -|Shield Mate|Exodus|C|6030|19| -|Soltari Visionary|Exodus|C|6031|20| -|Standing Troops|Exodus|C|6032|22| -|Soul Warden|Exodus|C|6033|21| -|Welkin Hawk|Exodus|C|6034|25| -|Charging Paladin|Exodus|C|6035|4| -|Allay|Exodus|C|6036|1| -|Reaping the Rewards|Exodus|C|6037|16| -|Shackles|Exodus|C|6038|18| -|Peace of Mind|Exodus|U|6039|13| -|Angelic Blessing|Exodus|C|6040|2| -|Keeper of the Light|Exodus|U|6041|8| -|Treasure Hunter|Exodus|U|6042|23| -|Zealots en-Dal|Exodus|U|6043|26| -|Pegasus Stampede|Exodus|U|6044|14| -|Kor Chant|Exodus|C|6045|9| -|Reconnaissance|Exodus|U|6046|17| -|Penance|Exodus|U|6047|15| -|Oath of Lieges|Exodus|R|6048|11| -|Limited Resources|Exodus|R|6049|10| -|Cataclysm|Exodus|R|6050|3| -|Convalescence|Exodus|R|6051|5| -|Wall of Nets|Exodus|R|6052|24| -|Exalted Dragon|Exodus|R|6053|6| -|School of Piranha|Exodus|C|6054|45| -|Rootwater Mystic|Exodus|C|6055|44| -|Merfolk Looter|Exodus|C|6056|39| -|Whiptongue Frog|Exodus|C|6057|52| -|Thalakos Scout|Exodus|C|6058|48| -|Robe of Mirrors|Exodus|C|6059|43| -|Curiosity|Exodus|U|6060|29| -|Fade Away|Exodus|C|6061|34| -|Cunning|Exodus|C|6062|28| -|Keeper of the Mind|Exodus|U|6064|36| -|Killer Whale|Exodus|U|6065|37| -|Scrivener|Exodus|U|6067|46| -|Thalakos Drifters|Exodus|R|6068|47| -|Treasure Trove|Exodus|U|6070|50| -|Ζther Tide|Exodus|C|6071|27| -|Oath of Scholars|Exodus|R|6072|42| -|Ephemeron|Exodus|R|6073|31| -|Equilibrium|Exodus|R|6075|32| -|Mind Over Matter|Exodus|R|6076|40| -|Mana Breach|Exodus|U|6078|38| -|Carnophage|Exodus|C|6079|53| -|Cat Burglar|Exodus|C|6080|54| -|Dauthi Jackal|Exodus|C|6081|58| -|Thrull Surgeon|Exodus|C|6082|76| -|Grollub|Exodus|C|6083|63| -|Vampire Hounds|Exodus|C|6084|77| -|Culling the Weak|Exodus|C|6085|55| -|Scare Tactics|Exodus|C|6086|73| -|Death's Duet|Exodus|C|6087|60| -|Nausea|Exodus|C|6088|67| -|Cursed Flesh|Exodus|C|6089|56| -|Keeper of the Dead|Exodus|U|6090|65| -|Dauthi Cutthroat|Exodus|U|6091|57| -|Spike Cannibal|Exodus|U|6092|75| -|Mind Maggots|Exodus|U|6093|66| -|Dauthi Warlord|Exodus|U|6094|59| -|Necrologia|Exodus|U|6095|68| -|Slaughter|Exodus|U|6097|74| -|Oath of Ghouls|Exodus|R|6098|69| -|Entropic Specter|Exodus|R|6099|61| -|Volrath's Dungeon|Exodus|R|6100|78| -|Recurring Nightmare|Exodus|R|6103|72| -|Hatred|Exodus|R|6104|64| -|Cinder Crawler|Exodus|C|6105|80| -|Raging Goblin|Exodus|C|6106|96| -|Furnace Brood|Exodus|C|6107|84| -|Reckless Ogre|Exodus|C|6108|98| -|Maniacal Rage|Exodus|C|6109|87| -|Anarchist|Exodus|C|6110|79| -|Mage il-Vec|Exodus|C|6111|86| -|Sonic Burst|Exodus|C|6112|103| -|Paroxysm|Exodus|U|6113|94| -|Dizzying Gaze|Exodus|C|6114|81| -|Onslaught|Exodus|C|6115|92| -|Keeper of the Flame|Exodus|U|6116|85| -|Scalding Salamander|Exodus|U|6117|100| -|Mogg Assassin|Exodus|U|6118|88| -|Flowstone Flood|Exodus|U|6120|83| -|Spellshock|Exodus|U|6121|104| -|Price of Progress|Exodus|U|6123|95| -|Oath of Mages|Exodus|R|6124|90| -|Pandemonium|Exodus|R|6126|93| -|Ogre Shaman|Exodus|R|6127|91| -|Monstrous Hound|Exodus|R|6128|89| -|Sabertooth Wyvern|Exodus|U|6129|99| -|Seismic Assault|Exodus|R|6130|101| -|Pygmy Troll|Exodus|C|6131|118| -|Elvish Berserker|Exodus|C|6133|110| -|Rabid Wolverines|Exodus|C|6134|119| -|Wood Elves|Exodus|C|6135|130| -|Rootwater Alligator|Exodus|C|6136|122| -|Avenging Druid|Exodus|C|6137|105| -|Jackalope Herd|Exodus|C|6138|111| -|Reclaim|Exodus|C|6139|120| -|Resuscitate|Exodus|U|6140|121| -|Predatory Hunger|Exodus|C|6141|117| -|Keeper of the Beasts|Exodus|U|6142|112| -|Spike Rogue|Exodus|U|6143|127| -|Cartographer|Exodus|U|6144|107| -|Crashing Boars|Exodus|U|6145|108| -|Elven Palisade|Exodus|U|6146|109| -|Bequeathal|Exodus|C|6147|106| -|Song of Serenity|Exodus|U|6149|125| -|Survival of the Fittest|Exodus|R|6150|129| -|Oath of Druids|Exodus|R|6151|115| -|Spike Weaver|Exodus|R|6152|128| -|Manabond|Exodus|R|6154|113| -|Mirri, Cat Warrior|Exodus|R|6155|114| -|Workhorse|Exodus|R|6156|142| -|Spellbook|Exodus|U|6158|138| -|Transmogrifying Licid|Exodus|U|6159|141| -|Sphere of Resistance|Exodus|R|6160|139| -|Coat of Arms|Exodus|R|6162|131| -|Erratic Portal|Exodus|R|6163|132| -|Thopter Squadron|Exodus|R|6164|140| -|Medicine Bag|Exodus|U|6165|133| -|Memory Crystal|Exodus|R|6167|134| -|City of Traitors|Exodus|R|6168|143| -|High Ground|Exodus|U|6169|7| -|Volunteer Militia|Portal Second Age|C|6491|| -|Alaborn Zealot|Portal Second Age|U|6492|| -|Alaborn Trooper|Portal Second Age|C|6493|| -|Town Sentry|Portal Second Age|C|6494|| -|Temple Acolyte|Portal Second Age|C|6495|| -|Trokin High Guard|Portal Second Age|C|6496|| -|Wild Griffin|Portal Second Age|C|6497|| -|Angelic Wall|Portal Second Age|C|6498|| -|Alaborn Musketeer|Portal Second Age|C|6499|| -|Angelic Blessing|Portal Second Age|C|6500|| -|Breath of Life|Portal Second Age|C|6501|| -|Path of Peace|Portal Second Age|C|6502|| -|Righteous Charge|Portal Second Age|C|6503|| -|Festival of Trokin|Portal Second Age|C|6504|| -|Angel of Mercy|Portal Second Age|U|6505|| -|Alaborn Cavalier|Portal Second Age|U|6506|| -|Temple Elder|Portal Second Age|U|6507|| -|Alaborn Grenadier|Portal Second Age|C|6508|| -|Armored Griffin|Portal Second Age|U|6509|| -|Bargain|Portal Second Age|U|6510|| -|Rally the Troops|Portal Second Age|U|6511|| -|Warrior's Stand|Portal Second Age|U|6512|| -|Vengeance|Portal Second Age|U|6513|| -|Archangel|Portal Second Age|R|6514|| -|Angel of Fury|Portal Second Age|R|6515|| -|Alaborn Veteran|Portal Second Age|R|6516|| -|Steam Catapult|Portal Second Age|R|6517|| -|Righteous Fury|Portal Second Age|R|6518|| -|Just Fate|Portal Second Age|R|6519|| -|Armageddon|Portal Second Age|R|6520|| -|Talas Scout|Portal Second Age|C|6521|| -|Talas Explorer|Portal Second Age|C|6522|| -|Screeching Drake|Portal Second Age|C|6523|| -|Talas Air Ship|Portal Second Age|C|6524|| -|Talas Merchant|Portal Second Age|C|6525|| -|Steam Frigate|Portal Second Age|C|6526|| -|Touch of Brilliance|Portal Second Age|C|6527|| -|Dιjΰ Vu|Portal Second Age|C|6528|| -|Sleight of Hand|Portal Second Age|C|6529|| -|Wind Sail|Portal Second Age|C|6530|| -|Tidal Surge|Portal Second Age|C|6531|| -|Time Ebb|Portal Second Age|C|6532|| -|False Summoning|Portal Second Age|C|6533|| -|Extinguish|Portal Second Age|C|6534|| -|Apprentice Sorcerer|Portal Second Age|U|6535|| -|Air Elemental|Portal Second Age|U|6536|| -|Armored Galleon|Portal Second Age|U|6537|| -|Eye Spy|Portal Second Age|U|6538|| -|Sea Drake|Portal Second Age|U|6539|| -|Undo|Portal Second Age|U|6540|| -|Remove|Portal Second Age|U|6541|| -|Mystic Denial|Portal Second Age|U|6542|| -|Theft of Dreams|Portal Second Age|U|6543|| -|Coastal Wizard|Portal Second Age|R|6544|| -|Talas Warrior|Portal Second Age|R|6545|| -|Denizen of the Deep|Portal Second Age|R|6546|| -|Talas Researcher|Portal Second Age|R|6547|| -|Temporal Manipulation|Portal Second Age|R|6548|| -|Exhaustion|Portal Second Age|R|6549|| -|Piracy|Portal Second Age|R|6550|| -|Muck Rats|Portal Second Age|C|6551|| -|Dakmor Scorpion|Portal Second Age|C|6552|| -|Dakmor Bat|Portal Second Age|C|6553|| -|Moaning Spirit|Portal Second Age|C|6554|| -|Swarm of Rats|Portal Second Age|C|6555|| -|Prowling Nightstalker|Portal Second Age|C|6556|| -|Lurking Nightstalker|Portal Second Age|C|6557|| -|Raiding Nightstalker|Portal Second Age|C|6558|| -|Ravenous Rats|Portal Second Age|C|6559|| -|Raise Dead|Portal Second Age|C|6560|| -|Cruel Edict|Portal Second Age|C|6561|| -|Mind Rot|Portal Second Age|C|6562|| -|Hand of Death|Portal Second Age|C|6563|| -|Chorus of Woe|Portal Second Age|C|6564|| -|Predatory Nightstalker|Portal Second Age|U|6565|| -|Brutal Nightstalker|Portal Second Age|U|6566|| -|Abyssal Nightstalker|Portal Second Age|U|6567|| -|Foul Spirit|Portal Second Age|U|6568|| -|Dark Offering|Portal Second Age|U|6569|| -|Coercion|Portal Second Age|U|6570|| -|Dakmor Plague|Portal Second Age|U|6571|| -|Kiss of Death|Portal Second Age|U|6572|| -|Bloodcurdling Scream|Portal Second Age|U|6573|| -|Hidden Horror|Portal Second Age|R|6574|| -|Vampiric Spirit|Portal Second Age|R|6575|| -|Dakmor Sorceress|Portal Second Age|R|6576|| -|Nightstalker Engine|Portal Second Age|R|6577|| -|Return of the Nightstalkers|Portal Second Age|R|6578|| -|Ancient Craving|Portal Second Age|R|6579|| -|Rain of Daggers|Portal Second Age|R|6580|| -|Raging Goblin|Portal Second Age|C|6581|| -|Goblin Piker|Portal Second Age|C|6582|| -|Goblin Raider|Portal Second Age|C|6583|| -|Goblin Glider|Portal Second Age|C|6584|| -|Goblin Mountaineer|Portal Second Age|C|6585|| -|Ogre Berserker|Portal Second Age|C|6586|| -|Goblin Cavaliers|Portal Second Age|C|6587|| -|Ogre Taskmaster|Portal Second Age|U|6588|| -|Spitting Earth|Portal Second Age|C|6589|| -|Stone Rain|Portal Second Age|C|6590|| -|Lava Axe|Portal Second Age|C|6591|| -|Tremor|Portal Second Age|C|6592|| -|Volcanic Hammer|Portal Second Age|C|6593|| -|Goblin War Strike|Portal Second Age|C|6594|| -|Ogre Arsonist|Portal Second Age|U|6595|| -|Goblin Matron|Portal Second Age|U|6596|| -|Ogre Warrior|Portal Second Age|C|6597|| -|Goblin Firestarter|Portal Second Age|U|6598|| -|Obsidian Giant|Portal Second Age|U|6599|| -|Blaze|Portal Second Age|U|6600|| -|Jagged Lightning|Portal Second Age|U|6601|| -|Goblin Lore|Portal Second Age|U|6602|| -|Goblin War Cry|Portal Second Age|U|6603|| -|Goblin General|Portal Second Age|R|6604|| -|Brimstone Dragon|Portal Second Age|R|6605|| -|Cunning Giant|Portal Second Age|R|6606|| -|Magma Giant|Portal Second Age|R|6607|| -|Relentless Assault|Portal Second Age|R|6608|| -|Earthquake|Portal Second Age|R|6609|| -|Wildfire|Portal Second Age|R|6610|| -|Lynx|Portal Second Age|C|6611|| -|Bear Cub|Portal Second Age|C|6613|| -|Lone Wolf|Portal Second Age|U|6614|| -|Norwood Riders|Portal Second Age|C|6615|| -|Golden Bear|Portal Second Age|C|6616|| -|Plated Wurm|Portal Second Age|C|6617|| -|Norwood Archers|Portal Second Age|C|6618|| -|Tree Monkey|Portal Second Age|C|6619|| -|Norwood Warrior|Portal Second Age|C|6620|| -|Monstrous Growth|Portal Second Age|C|6621|| -|Salvage|Portal Second Age|C|6622|| -|Nature's Lore|Portal Second Age|C|6623|| -|Natural Spring|Portal Second Age|C|6624|| -|Wild Ox|Portal Second Age|U|6625|| -|River Bear|Portal Second Age|U|6626|| -|Barbtooth Wurm|Portal Second Age|C|6627|| -|Ironhoof Ox|Portal Second Age|U|6628|| -|Renewing Touch|Portal Second Age|U|6629|| -|Untamed Wilds|Portal Second Age|U|6630|| -|Deep Wood|Portal Second Age|U|6631|| -|Harmony of Nature|Portal Second Age|U|6632|| -|Bee Sting|Portal Second Age|U|6633|| -|Norwood Priestess|Portal Second Age|R|6634|| -|Sylvan Yeti|Portal Second Age|R|6635|| -|Norwood Ranger|Portal Second Age|C|6636|| -|Deathcoil Wurm|Portal Second Age|R|6637|| -|Razorclaw Bear|Portal Second Age|R|6638|| -|Alluring Scent|Portal Second Age|R|6639|| -|Hurricane|Portal Second Age|R|6640|| -|Spire Owl|Urza's Saga|C|7167|98| -|Windfall|Urza's Saga|U|7168|111| -|Grafted Skullcap|Urza's Saga|R|7169|296| -|Whetstone|Urza's Saga|R|7247|316| -|Curfew|Urza's Saga|C|7817|68| -|Plains|Urza's Saga|L|8322|331| -|Plains|Urza's Saga|L|8323|332| -|Plains|Urza's Saga|L|8324|333| -|Plains|Urza's Saga|L|8325|334| -|Island|Urza's Saga|L|8326|335| -|Island|Urza's Saga|L|8327|336| -|Island|Urza's Saga|L|8328|337| -|Island|Urza's Saga|L|8329|338| -|Swamp|Urza's Saga|L|8330|339| -|Swamp|Urza's Saga|L|8331|340| -|Swamp|Urza's Saga|L|8332|341| -|Swamp|Urza's Saga|L|8333|342| -|Mountain|Urza's Saga|L|8334|343| -|Mountain|Urza's Saga|L|8335|344| -|Mountain|Urza's Saga|L|8336|345| -|Mountain|Urza's Saga|L|8337|346| -|Forest|Urza's Saga|L|8338|347| -|Forest|Urza's Saga|L|8339|348| -|Forest|Urza's Saga|L|8340|349| -|Forest|Urza's Saga|L|8341|350| -|Plains|Portal Second Age|L|8354|| -|Plains|Portal Second Age|L|8374|| -|Plains|Portal Second Age|L|8380|| -|Island|Portal Second Age|L|8387|| -|Island|Portal Second Age|L|8390|| -|Island|Portal Second Age|L|8391|| -|Swamp|Portal Second Age|L|8392|| -|Swamp|Portal Second Age|L|8393|| -|Swamp|Portal Second Age|L|8394|| -|Mountain|Portal Second Age|L|8395|| -|Mountain|Portal Second Age|L|8406|| -|Mountain|Portal Second Age|L|8407|| -|Forest|Portal Second Age|L|8408|| -|Forest|Portal Second Age|L|8409|| -|Forest|Portal Second Age|L|8410|| -|Absolute Law|Urza's Saga|U|8437|2| -|Serra's Liturgy|Urza's Saga|R|8444|49| -|Recantation|Urza's Saga|R|8445|91| -|Discordant Dirge|Urza's Saga|R|8446|131| -|Rumbling Crescendo|Urza's Saga|R|8447|210| -|Midsummer Revel|Urza's Saga|R|8448|268| -|Hermetic Study|Urza's Saga|C|8784|78| -|Daunting Defender|Onslaught|C|8785|21| -|Ostracize|Urza's Legacy|C|8786|57| -|Zephid's Embrace|Urza's Saga|U|8787|114| -|Pit Trap|Urza's Saga|U|8801|307| -|No Rest for the Wicked|Urza's Saga|U|8802|142| -|Reclusive Wight|Urza's Saga|U|8803|153| -|Mana Leech|Urza's Saga|U|8804|141| -|Headlong Rush|Urza's Saga|C|8805|198| -|Guma|Urza's Saga|U|8806|197| -|Lifeline|Urza's Saga|R|8808|299| -|Noetic Scales|Urza's Saga|R|8809|304| -|Umbilicus|Urza's Saga|R|8810|312| -|Presence of the Master|Urza's Saga|U|8811|32| -|Healing Salve|Urza's Saga|C|8813|16| -|Opal Avenger|Urza's Legacy|R|8814|15| -|Copper Gnomes|Urza's Saga|R|8815|291| -|Parasitic Bond|Urza's Saga|U|8816|145| -|Lurking Evil|Urza's Saga|R|8817|140| -|Goblin Offensive|Urza's Saga|U|8818|192| -|Titania's Boon|Urza's Saga|U|8819|276| -|Endless Wurm|Urza's Saga|R|8820|249| -|Might of Oaks|Urza's Legacy|R|8822|106| -|Exploration|Urza's Saga|R|8823|250| -|Goblin Matron|Urza's Saga|C|8824|191| -|Enchantment Alteration|Urza's Saga|U|8825|72| -|Wild Dogs|Urza's Saga|C|8826|284| -|Root Greevil|Planeshift|C|8827|91| -|Thran Quarry|Urza's Saga|R|8828|329| -|Hollow Specter|Legions|R|8829|75| -|Scrapheap|Urza's Legacy|R|8830|132| -|Quicksilver Amulet|Urza's Legacy|R|8831|130| -|Angel's Trumpet|Urza's Legacy|U|8832|121| -|Wirecat|Urza's Saga|U|8834|317| -|Memory Jar|Urza's Legacy|R|8841|129| -|Persecute|Urza's Saga|R|8843|146| -|Endoskeleton|Urza's Saga|U|8846|294| -|Whirlwind|Urza's Saga|R|8849|283| -|Thran Lens|Urza's Legacy|R|8852|133| -|Chimeric Staff|Urza's Saga|R|8858|288| -|Metrognome|Urza's Saga|R|8862|301| -|Phyrexian Colossus|Urza's Saga|R|8865|306| -|Fault Line|Urza's Saga|R|8867|185| -|Citanul Flute|Urza's Saga|R|8868|289| -|Dragon Blood|Urza's Saga|U|8870|293| -|Wall of Junk|Urza's Saga|U|8871|315| -|Transcendence|Torment|R|8875|20| -|Worn Powerstone|Urza's Saga|U|8876|318| -|Tolarian Academy|Urza's Saga|R|8883|330| -|Bulwark|Urza's Saga|R|8886|178| -|Claws of Gix|Urza's Saga|U|8890|290| -|Thran Turbine|Urza's Saga|U|8895|311| -|Jhoira's Toolbox|Urza's Legacy|U|8896|128| -|Defense Grid|Urza's Legacy|R|8897|125| -|Outmaneuver|Urza's Saga|U|8899|205| -|Goblin Game|Planeshift|R|8902|61| -|Rivalry|Urza's Legacy|R|8903|90| -|Sylvan Basilisk|Portal Second Age|R|8905|| -|Veiled Serpent|Urza's Saga|C|8906|110| -|Wizard Mentor|Urza's Saga|C|8907|112| -|Venomous Fangs|Urza's Saga|C|8908|280| -|Serra's Sanctum|Urza's Saga|R|9674|325| -|Swamp|Unglued|C|9676|86| -|Island|Unglued|C|9677|85| -|Child of Gaea|Urza's Saga|R|9678|242| -|Plains|Unglued|C|9680|84| -|Serra's Embrace|Urza's Saga|U|9682|47| -|Forest|Unglued|C|9683|88| -|Vampiric Embrace|Urza's Saga|U|9684|164| -|Molten Hydra|Urza's Legacy|R|9689|85| -|Destructive Flow|Planeshift|R|9690|102| -|Sick and Tired|Urza's Legacy|C|9691|66| -|Swat|Urza's Legacy|C|9694|69| -|Fog of Gnats|Urza's Legacy|C|9699|53| -|Electryte|Urza's Saga|R|9700|183| -|Congregate|Urza's Saga|C|9702|8| -|Greener Pastures|Urza's Saga|R|9704|258| -|Iron Maiden|Urza's Legacy|R|9705|127| -|Wheel of Torture|Urza's Legacy|R|9706|138| -|Mountain|Unglued|C|9707|87| -|Peace and Quiet|Urza's Legacy|U|9709|17| -|Hawkeater Moth|Urza's Saga|U|9710|259| -|Martyr's Cause|Urza's Legacy|U|9712|13| -|Academy Researchers|Urza's Saga|U|9713|58| -|Redeem|Urza's Saga|U|9716|33| -|Ravenous Skirge|Urza's Saga|C|9720|152| -|Sandbar Serpent|Urza's Saga|U|9722|95| -|Treefolk Mystic|Urza's Legacy|C|9723|114| -|Priest of Gix|Urza's Saga|U|9724|150| -|Read the Runes|Onslaught|R|9839|104| -|Tethered Skirge|Urza's Legacy|U|9840|70| -|Spike Hatcher|Exodus|R|9842|126| -|Panther Warriors|Portal|C|9845|| -|Soul Sculptor|Urza's Saga|R|9846|53| -|Karn, Silver Golem|Urza's Saga|R|9847|298| -|Horseshoe Crab|Urza's Saga|C|9849|80| -|Fortitude|Urza's Saga|C|9850|253| -|Goblin Lackey|Urza's Saga|U|9851|190| -|Catalog|Urza's Saga|C|9852|64| -|Barrin, Master Wizard|Urza's Saga|R|9856|63| -|Brilliant Halo|Urza's Saga|C|9890|5| -|Retaliation|Urza's Saga|U|10408|272| -|Spreading Algae|Urza's Saga|U|10409|274| -|Remembrance|Urza's Saga|R|10419|34| -|Annul|Urza's Saga|C|10420|59| -|Energy Field|Urza's Saga|R|10421|73| -|Gaea's Cradle|Urza's Saga|R|10422|321| -|Time Spiral|Urza's Saga|R|10423|103| -|Fiery Mantle|Urza's Saga|C|10425|186| -|Confiscate|Urza's Saga|U|10426|66| -|Diabolic Servitude|Urza's Saga|U|10427|130| -|Lingering Mirage|Urza's Saga|U|10462|84| -|Heat Ray|Urza's Saga|C|10464|199| -|Reflexes|Urza's Saga|C|10465|208| -|Meltdown|Urza's Saga|U|10466|203| -|Greater Good|Urza's Saga|R|10467|257| -|Shivan Gorge|Urza's Saga|R|10482|326| -|Volunteer Militia|Portal Three Kingdoms|C|10483|30| -|Wei Night Raiders|Portal Three Kingdoms|U|10484|89| -|Wu Admiral|Portal Three Kingdoms|U|10485|57| -|Flanking Troops|Portal Three Kingdoms|U|10486|5| -|Alert Shu Infantry|Portal Three Kingdoms|U|10487|1| -|Shu Soldier-Farmers|Portal Three Kingdoms|U|10488|27| -|Shu Foot Soldiers|Portal Three Kingdoms|C|10489|24| -|Kongming, "Sleeping Dragon"|Portal Three Kingdoms|R|10490|9| -|Loyal Retainers|Portal Three Kingdoms|U|10491|12| -|Taunting Challenge|Portal Three Kingdoms|R|10492|152| -|Ambition's Cost|Portal Three Kingdoms|R|10493|67| -|Guan Yu, Sainted Warrior|Portal Three Kingdoms|R|10494|6| -|Kongming's Contraptions|Portal Three Kingdoms|R|10495|10| -|Riding Red Hare|Portal Three Kingdoms|C|10496|18| -|Shu Elite Companions|Portal Three Kingdoms|U|10497|21| -|Wu Longbowman|Portal Three Kingdoms|U|10498|61| -|Liu Bei, Lord of Shu|Portal Three Kingdoms|R|10499|11| -|Ravages of War|Portal Three Kingdoms|R|10500|17| -|Red Cliffs Armada|Portal Three Kingdoms|U|10501|51| -|Shu General|Portal Three Kingdoms|U|10502|25| -|Meng Huo's Horde|Portal Three Kingdoms|C|10503|143| -|Empty City Ruse|Portal Three Kingdoms|U|10504|3| -|Forest Bear|Portal Three Kingdoms|C|10505|135| -|Zodiac Rooster|Portal Three Kingdoms|C|10506|163| -|Blaze|Portal Three Kingdoms|U|10507|102| -|Stone Catapult|Portal Three Kingdoms|R|10508|84| -|False Defeat|Portal Three Kingdoms|C|10509|4| -|Zodiac Dragon|Portal Three Kingdoms|R|10510|131| -|Wei Elite Companions|Portal Three Kingdoms|U|10511|87| -|Desperate Charge|Portal Three Kingdoms|U|10512|74| -|Sun Quan, Lord of Wu|Portal Three Kingdoms|R|10513|56| -|Coercion|Portal Three Kingdoms|U|10514|70| -|Imperial Edict|Portal Three Kingdoms|C|10515|77| -|Yuan Shao, the Indecisive|Portal Three Kingdoms|R|10516|128| -|Wei Scout|Portal Three Kingdoms|C|10517|90| -|Famine|Portal Three Kingdoms|U|10518|75| -|Wei Infantry|Portal Three Kingdoms|C|10519|88| -|Zhang He, Wei General|Portal Three Kingdoms|R|10520|95| -|Overwhelming Forces|Portal Three Kingdoms|R|10521|79| -|Wolf Pack|Portal Three Kingdoms|R|10522|158| -|Heavy Fog|Portal Three Kingdoms|U|10523|136| -|Sage's Knowledge|Portal Three Kingdoms|C|10524|52| -|Zhou Yu, Chief Commander|Portal Three Kingdoms|R|10525|65| -|Rolling Earthquake|Portal Three Kingdoms|R|10526|122| -|Exhaustion|Portal Three Kingdoms|R|10527|42| -|Extinguish|Portal Three Kingdoms|C|10528|43| -|Wu Spy|Portal Three Kingdoms|U|10529|63| -|Preemptive Strike|Portal Three Kingdoms|C|10530|50| -|Peach Garden Oath|Portal Three Kingdoms|U|10531|15| -|Forest|Portal Three Kingdoms|L|10532|178| -|Cunning Advisor|Portal Three Kingdoms|U|10533|72| -|Zodiac Dog|Portal Three Kingdoms|C|10534|130| -|Fire Bowman|Portal Three Kingdoms|U|10535|112| -|Lu Bu, Master-at-Arms|Portal Three Kingdoms|R|10536|115| -|Yellow Scarves Cavalry|Portal Three Kingdoms|C|10537|125| -|Control of the Court|Portal Three Kingdoms|U|10538|105| -|Imperial Recruiter|Portal Three Kingdoms|U|10539|113| -|Zodiac Goat|Portal Three Kingdoms|C|10540|132| -|Independent Troops|Portal Three Kingdoms|C|10541|114| -|Yellow Scarves Troops|Portal Three Kingdoms|C|10542|127| -|Eunuchs' Intrigues|Portal Three Kingdoms|U|10543|110| -|Diaochan, Artful Beauty|Portal Three Kingdoms|R|10544|108| -|Southern Elephant|Portal Three Kingdoms|C|10545|146| -|Ghostly Visit|Portal Three Kingdoms|C|10546|76| -|Marshaling the Troops|Portal Three Kingdoms|R|10547|141| -|Cao Cao, Lord of Wei|Portal Three Kingdoms|R|10548|68| -|Borrowing the East Wind|Portal Three Kingdoms|R|10549|133| -|Stalking Tiger|Portal Three Kingdoms|C|10550|149| -|Island|Portal Three Kingdoms|L|10551|169| -|Warrior's Oath|Portal Three Kingdoms|R|10552|124| -|Eightfold Maze|Portal Three Kingdoms|R|10553|2| -|Stolen Grain|Portal Three Kingdoms|U|10554|83| -|Burning Fields|Portal Three Kingdoms|C|10555|103| -|Lone Wolf|Portal Three Kingdoms|U|10556|140| -|Wei Ambush Force|Portal Three Kingdoms|C|10557|85| -|Zodiac Monkey|Portal Three Kingdoms|C|10558|160| -|Yuan Shao's Infantry|Portal Three Kingdoms|U|10559|129| -|Deception|Portal Three Kingdoms|C|10560|73| -|Wei Strike Force|Portal Three Kingdoms|C|10561|91| -|Wielding the Green Dragon|Portal Three Kingdoms|C|10562|157| -|Mountain|Portal Three Kingdoms|L|10563|175| -|Zodiac Rat|Portal Three Kingdoms|C|10564|98| -|Mystic Denial|Portal Three Kingdoms|U|10565|49| -|Spring of Eternal Peace|Portal Three Kingdoms|C|10566|148| -|Three Visits|Portal Three Kingdoms|C|10567|153| -|Taoist Hermit|Portal Three Kingdoms|U|10569|150| -|Hua Tuo, Honored Physician|Portal Three Kingdoms|R|10570|137| -|Trained Jackal|Portal Three Kingdoms|C|10571|155| -|Hunting Cheetah|Portal Three Kingdoms|U|10572|138| -|Trained Cheetah|Portal Three Kingdoms|U|10573|155| -|Barbarian General|Portal Three Kingdoms|U|10574|100| -|Renegade Troops|Portal Three Kingdoms|U|10576|120| -|Yellow Scarves General|Portal Three Kingdoms|R|10577|126| -|Barbarian Horde|Portal Three Kingdoms|C|10578|101| -|Misfortune's Gain|Portal Three Kingdoms|C|10579|13| -|Balance of Power|Portal Three Kingdoms|R|10580|34| -|Plains|Portal Three Kingdoms|L|10581|166| -|Zodiac Rabbit|Portal Three Kingdoms|C|10582|162| -|Wei Assassins|Portal Three Kingdoms|U|10583|86| -|Young Wei Recruits|Portal Three Kingdoms|C|10584|94| -|Mountain Bandit|Portal Three Kingdoms|C|10585|117| -|Zodiac Pig|Portal Three Kingdoms|U|10586|97| -|Poison Arrow|Portal Three Kingdoms|U|10587|80| -|Return to Battle|Portal Three Kingdoms|C|10588|81| -|Rally the Troops|Portal Three Kingdoms|U|10589|16| -|Xiahou Dun, the One-Eyed|Portal Three Kingdoms|R|10590|92| -|Slashing Tiger|Portal Three Kingdoms|R|10591|145| -|Relentless Assault|Portal Three Kingdoms|R|10592|119| -|Champion's Victory|Portal Three Kingdoms|U|10593|39| -|Zodiac Tiger|Portal Three Kingdoms|U|10594|164| -|Corrupt Court Official|Portal Three Kingdoms|U|10595|71| -|Virtuous Charge|Portal Three Kingdoms|C|10596|29| -|Guan Yu's 1,000-Li March|Portal Three Kingdoms|R|10597|7| -|Zodiac Horse|Portal Three Kingdoms|U|10598|159| -|False Mourning|Portal Three Kingdoms|U|10599|134| -|Wu Infantry|Portal Three Kingdoms|C|10600|59| -|Council of Advisors|Portal Three Kingdoms|U|10601|40| -|Strategic Planning|Portal Three Kingdoms|U|10602|53| -|Rockslide Ambush|Portal Three Kingdoms|U|10603|121| -|Zhang Fei, Fierce Warrior|Portal Three Kingdoms|R|10604|32| -|Wu Warship|Portal Three Kingdoms|C|10605|64| -|Stone Rain|Portal Three Kingdoms|C|10606|123| -|Swamp|Portal Three Kingdoms|L|10607|172| -|Zodiac Snake|Portal Three Kingdoms|C|10608|99| -|Lady Zhurong, Warrior Queen|Portal Three Kingdoms|R|10609|139| -|Zuo Ci, the Mocking Sage|Portal Three Kingdoms|R|10610|165| -|Wu Elite Cavalry|Portal Three Kingdoms|C|10611|58| -|Wu Scout|Portal Three Kingdoms|C|10612|62| -|Straw Soldiers|Portal Three Kingdoms|C|10613|54| -|Lu Su, Wu Advisor|Portal Three Kingdoms|R|10614|47| -|Wu Light Cavalry|Portal Three Kingdoms|C|10615|60| -|Lu Xun, Scholar General|Portal Three Kingdoms|R|10616|48| -|Shu Grain Caravan|Portal Three Kingdoms|C|10617|26| -|Shu Farmer|Portal Three Kingdoms|C|10618|23| -|Capture of Jingzhou|Portal Three Kingdoms|R|10619|38| -|Borrowing 100,000 Arrows|Portal Three Kingdoms|U|10620|35| -|Broken Dam|Portal Three Kingdoms|C|10621|37| -|Forced Retreat|Portal Three Kingdoms|C|10622|44| -|Brilliant Plan|Portal Three Kingdoms|U|10623|36| -|Shu Defender|Portal Three Kingdoms|C|10624|20| -|Trip Wire|Portal Three Kingdoms|U|10625|154| -|Desert Sandstorm|Portal Three Kingdoms|C|10626|107| -|Shu Elite Infantry|Portal Three Kingdoms|C|10627|22| -|Counterintelligence|Portal Three Kingdoms|U|10628|41| -|Spoils of Victory|Portal Three Kingdoms|U|10629|147| -|Sima Yi, Wei Field Marshal|Portal Three Kingdoms|R|10630|82| -|Vengeance|Portal Three Kingdoms|U|10631|28| -|Fire Ambush|Portal Three Kingdoms|C|10632|111| -|Warrior's Stand|Portal Three Kingdoms|U|10633|31| -|Shu Cavalry|Portal Three Kingdoms|C|10635|19| -|Zodiac Ox|Portal Three Kingdoms|U|10636|161| -|Burning of Xinye|Portal Three Kingdoms|R|10637|104| -|Forest|Portal Three Kingdoms|L|10639|179| -|Forest|Portal Three Kingdoms|L|10640|180| -|Island|Portal Three Kingdoms|L|10641|170| -|Island|Portal Three Kingdoms|L|10642|171| -|Mountain|Portal Three Kingdoms|L|10643|176| -|Mountain|Portal Three Kingdoms|L|10644|177| -|Plains|Portal Three Kingdoms|L|10645|167| -|Plains|Portal Three Kingdoms|L|10646|168| -|Swamp|Portal Three Kingdoms|L|10647|173| -|Swamp|Portal Three Kingdoms|L|10648|174| -|Purging Scythe|Urza's Saga|R|10649|308| -|Mishra's Helix|Urza's Saga|R|10650|302| -|Gamble|Urza's Saga|R|10654|188| -|Victimize|Urza's Saga|U|10655|166| -|Despondency|Urza's Saga|C|10656|129| -|Scald|Urza's Saga|U|10657|211| -|Destructive Urge|Urza's Saga|U|10658|180| -|Cathodion|Urza's Saga|U|10659|287| -|Arcane Spyglass|Darksteel|C|10670|93| -|Phyrexian Tower|Urza's Saga|R|10677|322| -|Great Whale|Urza's Saga|R|10682|77| -|Zhao Zilong, Tiger General|Portal Three Kingdoms|R|10686|33| -|Rune of Protection: Artifacts|Urza's Saga|U|10694|35| -|Disruptive Student|Urza's Saga|C|10695|69| -|Entrails Feaster|Onslaught|R|10699|143| -|Riptide Laboratory|Onslaught|R|10704|322| -|Sun Ce, Young Conquerer|Portal Three Kingdoms|R|10709|55| -|Lu Meng, Wu General|Portal Three Kingdoms|R|10710|46| -|Zhuge Jin, Wu Strategist|Portal Three Kingdoms|R|10711|66| -|Cao Ren, Wei Commander|Portal Three Kingdoms|R|10712|69| -|Pang Tong, "Young Phoenix"|Portal Three Kingdoms|R|10713|14| -|Huang Zhong, Shu General|Portal Three Kingdoms|R|10714|8| -|Cruel Revival|Onslaught|C|10720|135| -|Lady Sun|Portal Three Kingdoms|R|10721|45| -|Gravespawn Sovereign|Onslaught|R|10722|152| -|Zhang Liao, Hero of Hefei|Portal Three Kingdoms|R|10727|96| -|Imperial Seal|Portal Three Kingdoms|R|10728|78| -|Ma Chao, Western Warrior|Portal Three Kingdoms|R|10729|116| -|Dong Zhou, the Tyrant|Portal Three Kingdoms|R|10730|109| -|Riding the Dilu Horse|Portal Three Kingdoms|R|10731|144| -|Meng Huo, Barbarian King|Portal Three Kingdoms|R|10732|142| -|Taoist Mystic|Portal Three Kingdoms|R|10733|151| -|Corrupt Eunuchs|Portal Three Kingdoms|U|10734|106| -|Lord of the Undead|Planeshift|R|10742|44| -|Merfolk of the Pearl Trident|Seventh Edition|C|10810|90| -|Prosperity|Classic Sixth Edition|U|10816|89| -|Hurricane|Seventh Edition|R|10844|252| -|Hurricane|Classic Sixth Edition|R|11117|237| -|Adarkar Wastes|Seventh Edition|R|11140|325| -|Aladdin's Ring|Seventh Edition|R|11145|286| -|Pariah|Seventh Edition|R|11155|30| -|Ashnod's Altar|Classic Sixth Edition|U|11158|274| -|Birds of Paradise|Seventh Edition|R|11173|231| -|Blinking Spirit|Battle Royale Box Set|R|11177|| -|Bog Imp|Seventh Edition|C|11179|122| -|Bog Rats|Classic Sixth Edition|C|11180|117| -|Bog Wraith|Seventh Edition|U|11181|123| -|Boomerang|Seventh Edition|C|11182|64| -|Bottle of Suleiman|Classic Sixth Edition|R|11183|275| -|Brushland|Seventh Edition|R|11191|326| -|Castle|Seventh Edition|U|11195|5| -|Circle of Protection: Black|Seventh Edition|C|11200|6| -|Circle of Protection: Blue|Seventh Edition|C|11201|7| -|Circle of Protection: Green|Seventh Edition|C|11202|8| -|Circle of Protection: Red|Seventh Edition|C|11203|9| -|Circle of Protection: White|Seventh Edition|C|11204|10| -|City of Brass|Seventh Edition|R|11205|327| -|Conquer|Classic Sixth Edition|U|11212|171| -|Counterspell|Seventh Edition|C|11214|67| -|Deflection|Seventh Edition|R|11232|69| -|Derelor|Classic Sixth Edition|R|11233|120| -|Disenchant|Seventh Edition|C|11238|13| -|Disrupting Scepter|Classic Sixth Edition|R|11240|281| -|Divine Transformation|Classic Sixth Edition|U|11242|17| -|Drudge Skeletons|Seventh Edition|C|11246|130| -|Earthquake|Seventh Edition|R|11254|180| -|Elder Druid|Seventh Edition|R|11256|238| -|Fallen Angel|Seventh Edition|R|11268|134| -|Fear|Seventh Edition|C|11269|135| -|Flight|Seventh Edition|C|11280|75| -|Flying Carpet|Seventh Edition|R|11282|297| -|Fog|Seventh Edition|C|11283|245| -|Force Spike|Seventh Edition|C|11285|76| -|Forest|Seventh Edition|L|11286|328| -|Forest|Seventh Edition|L|11287|329| -|Forest|Seventh Edition|L|11288|330| -|Forest|Seventh Edition|L|11289|331| -|Tranquil Grove|Classic Sixth Edition|R|11295|258| -|Fyndhorn Elder|Seventh Edition|U|11296|246| -|Gaseous Form|Classic Sixth Edition|C|11298|71| -|Giant Growth|Seventh Edition|C|11301|248| -|Giant Spider|Seventh Edition|C|11302|249| -|Giant Strength|Classic Sixth Edition|C|11303|181| -|Glacial Wall|Seventh Edition|U|11304|78| -|Glasses of Urza|Classic Sixth Edition|U|11305|287| -|Goblin Digging Team|Seventh Edition|C|11307|186| -|Goblin King|Seventh Edition|R|11309|190| -|Grizzly Bears|Seventh Edition|C|11315|251| -|Hecatomb|Classic Sixth Edition|R|11319|136| -|Howl from Beyond|Seventh Edition|C|11326|142| -|Howling Mine|Seventh Edition|R|11327|300| -|Icatian Town|Classic Sixth Edition|R|11336|25| -|Inferno|Classic Sixth Edition|R|11340|191| -|Island|Seventh Edition|L|11348|332| -|Island|Seventh Edition|L|11349|333| -|Island|Seventh Edition|L|11350|334| -|Island|Seventh Edition|L|11351|335| -|Jade Monolith|Classic Sixth Edition|R|11355|292| -|Jalum Tome|Seventh Edition|R|11356|303| -|Jandor's Saddlebags|Seventh Edition|R|11357|304| -|Seismic Assault|Seventh Edition|R|11361|216| -|Juxtapose|Classic Sixth Edition|R|11364|77| -|Karplusan Forest|Seventh Edition|R|11366|336| -|Kjeldoran Royal Guard|Classic Sixth Edition|R|11371|28| -|Leshrac's Rite|Seventh Edition|U|11377|144| -|Lhurgoyf|Battle Royale Box Set|R|11380|| -|Living Lands|Classic Sixth Edition|R|11385|238| -|Llanowar Elves|Seventh Edition|C|11386|253| -|Lord of Atlantis|Seventh Edition|R|11387|83| -|Lure|Seventh Edition|U|11390|255| -|Meekstone|Seventh Edition|R|11398|307| -|Memory Lapse|Classic Sixth Edition|C|11399|81| -|Merfolk of the Pearl Trident|Classic Sixth Edition|C|11400|82| -|Millstone|Seventh Edition|R|11403|308| -|Mountain|Seventh Edition|L|11410|337| -|Mountain|Seventh Edition|L|11411|338| -|Mountain|Seventh Edition|L|11412|339| -|Mountain|Seventh Edition|L|11413|340| -|Orcish Artillery|Classic Sixth Edition|U|11423|196| -|Orcish Oriflamme|Seventh Edition|U|11427|206| -|Order of the Sacred Torch|Classic Sixth Edition|R|11429|32| -|Pestilence|Classic Sixth Edition|U|11438|149| -|Plains|Seventh Edition|L|11446|341| -|Plains|Seventh Edition|L|11447|342| -|Plains|Seventh Edition|L|11448|343| -|Plains|Seventh Edition|L|11449|344| -|Pradesh Gypsies|Classic Sixth Edition|C|11453|244| -|Primal Clay|Classic Sixth Edition|R|11454|307| -|Prodigal Sorcerer|Seventh Edition|C|11458|94| -|Rag Man|Seventh Edition|R|11464|156| -|Raise Dead|Seventh Edition|C|11465|157| -|Recall|Classic Sixth Edition|R|11467|92| -|Regeneration|Seventh Edition|C|11469|265| -|Remove Soul|Seventh Edition|C|11470|95| -|Reverse Damage|Classic Sixth Edition|R|11472|39| -|Rod of Ruin|Seventh Edition|U|11474|314| -|Sabretooth Tiger|Classic Sixth Edition|C|11476|203| -|Samite Healer|Seventh Edition|C|11478|38| -|Elvish Lyrist|Seventh Edition|U|11482|241| -|Sengir Autocrat|Classic Sixth Edition|R|11489|155| -|Shanodin Dryads|Seventh Edition|C|11494|269| -|Shatter|Seventh Edition|C|11496|217| -|Shatterstorm|Classic Sixth Edition|R|11497|205| -|Shield Wall|Seventh Edition|C|11499|44| -|Rampant Growth|Seventh Edition|C|11501|262| -|Sibilant Spirit|Classic Sixth Edition|R|11502|98| -|Skull Catapult|Classic Sixth Edition|U|11503|309| -|Rag Man|Classic Sixth Edition|R|11506|151| -|Spirit Link|Classic Sixth Edition|U|11510|43| -|Stone Rain|Seventh Edition|C|11515|221| -|Stream of Life|Seventh Edition|C|11517|272| -|Stromgald Cabal|Classic Sixth Edition|R|11518|157| -|Sulfurous Springs|Seventh Edition|R|11519|345| -|Swamp|Seventh Edition|L|11521|346| -|Swamp|Seventh Edition|L|11522|347| -|Swamp|Seventh Edition|L|11523|348| -|Swamp|Seventh Edition|L|11524|349| -|The Hive|Classic Sixth Edition|R|11530|315| -|Tranquility|Seventh Edition|C|11540|276| -|Tundra Wolves|Classic Sixth Edition|C|11543|48| -|Twiddle|Seventh Edition|C|11544|107| -|Underground River|Seventh Edition|R|11545|350| -|Unsummon|Seventh Edition|C|11548|108| -|Untamed Wilds|Seventh Edition|U|11549|279| -|Verduran Enchantress|Classic Sixth Edition|R|11558|264| -|Wall of Air|Seventh Edition|U|11560|111| -|Wall of Fire|Seventh Edition|U|11563|227| -|Wall of Spears|Seventh Edition|U|11564|323| -|Wall of Swords|Seventh Edition|U|11566|55| -|Wild Growth|Seventh Edition|C|11573|282| -|Wrath of God|Seventh Edition|R|11581|57| -|Elvish Champion|Seventh Edition|R|11582|240| -|Cloud of Faeries|Urza's Legacy|C|11588|29| -|Rune of Protection: Lands|Urza's Saga|R|11698|39| -|Treachery|Urza's Destiny|R|12148|50| -|Blood Pet|Tempest|C|12342|| -|Teroh's Faithful|Torment|C|12345|18| -|Delusions of Mediocrity|Urza's Legacy|R|12349|30| -|Opal Champion|Urza's Legacy|C|12352|16| -|Defender of Law|Urza's Legacy|C|12353|5| -|Angelic Curator|Urza's Legacy|C|12354|1| -|Tragic Poet|Urza's Legacy|C|12355|24| -|Expendable Troops|Urza's Legacy|C|12356|8| -|Iron Will|Urza's Legacy|C|12358|10| -|Cessation|Urza's Legacy|C|12359|4| -|Radiant's Judgment|Urza's Legacy|C|12360|22| -|Militant Monk|Torment|C|12363|9| -|Radiant's Dragoons|Urza's Legacy|U|12364|21| -|Planar Collapse|Urza's Legacy|R|12365|18| -|Blessed Reversal|Urza's Legacy|R|12366|2| -|Purify|Urza's Legacy|R|12367|19| -|Radiant, Archangel|Urza's Legacy|R|12368|20| -|Thornwind Faeries|Urza's Legacy|C|12369|44| -|Weatherseed Faeries|Urza's Legacy|C|12370|48| -|Vigilant Drake|Urza's Legacy|C|12371|46| -|Bouncing Beebles|Urza's Legacy|C|12372|28| -|Snap|Urza's Legacy|C|12374|43| -|Frantic Search|Urza's Legacy|C|12375|32| -|Miscalculation|Urza's Legacy|C|12376|36| -|Intervene|Urza's Legacy|C|12378|33| -|Walking Sponge|Urza's Legacy|U|12380|47| -|Raven Familiar|Urza's Legacy|U|12381|39| -|King Crab|Urza's Legacy|U|12382|34| -|Tinker|Urza's Legacy|U|12383|45| -|Slow Motion|Urza's Legacy|C|12384|42| -|Rebuild|Urza's Legacy|U|12385|40| -|Lurking Skirge|Urza's Legacy|R|12386|55| -|Anthroplasm|Urza's Legacy|R|12387|25| -|Levitation|Urza's Legacy|U|12388|35| -|Fleeting Image|Urza's Legacy|R|12389|31| -|Archivist|Urza's Legacy|R|12390|26| -|Second Chance|Urza's Legacy|R|12391|41| -|Phyrexian Broodlings|Urza's Legacy|C|12392|58| -|Plague Beetle|Urza's Legacy|C|12393|64| -|Nim Lasher|Mirrodin|C|12394|71| -|Sleeper's Guile|Urza's Legacy|C|12397|67| -|Unearth|Urza's Legacy|C|12398|72| -|Bone Shredder|Urza's Legacy|U|12400|49| -|Treacherous Link|Urza's Legacy|U|12403|71| -|Eviscerator|Urza's Legacy|R|12404|52| -|Gloomdrifter|Torment|U|12405|61| -|Brink of Madness|Urza's Legacy|R|12406|50| -|Subversion|Urza's Legacy|R|12407|68| -|No Mercy|Urza's Legacy|R|12408|56| -|Viashino Sandscout|Urza's Legacy|C|12410|96| -|Defender of Chaos|Urza's Legacy|C|12411|75| -|Pygmy Pyrosaur|Urza's Legacy|C|12412|87| -|About Face|Urza's Legacy|C|12414|73| -|Parch|Urza's Legacy|C|12415|86| -|Sluggishness|Urza's Legacy|C|12416|92| -|Skirk Commando|Onslaught|C|12417|228| -|Avalanche Riders|Urza's Legacy|U|12418|74| -|Viashino Cutthroat|Urza's Legacy|U|12419|94| -|Rack and Ruin|Urza's Legacy|U|12422|89| -|Shivan Phoenix|Urza's Legacy|R|12423|91| -|Viashino Heretic|Urza's Legacy|U|12424|95| -|Ζther Charge|Onslaught|U|12425|184| -|Impending Disaster|Urza's Legacy|R|12426|82| -|Multani's Acolyte|Urza's Legacy|C|12427|108| -|Simian Grunts|Urza's Legacy|C|12428|113| -|Yavimaya Scion|Urza's Legacy|C|12429|119| -|Weatherseed Elf|Urza's Legacy|C|12430|115| -|Crop Rotation|Urza's Legacy|C|12432|98| -|Rancor|Urza's Legacy|C|12433|110| -|Darkwatch Elves|Urza's Legacy|U|12435|99| -|Lone Wolf|Urza's Legacy|U|12436|105| -|Harmonic Convergence|Urza's Legacy|U|12437|103| -|Weatherseed Treefolk|Urza's Legacy|R|12438|116| -|Multani, Maro-Sorcerer|Urza's Legacy|R|12440|107| -|Hidden Gibbons|Urza's Legacy|R|12441|104| -|Defense of the Heart|Urza's Legacy|R|12442|100| -|Ravenous Baloth|Onslaught|R|12444|278| -|Chain of Acid|Onslaught|U|12445|252| -|Chain of Silence|Onslaught|U|12446|12| -|Chain of Vapor|Onslaught|U|12447|73| -|Chain of Smog|Onslaught|U|12448|132| -|Chain of Plasma|Onslaught|U|12449|193| -|Deranged Hermit|Urza's Legacy|R|12458|101| -|Bloated Toad|Urza's Legacy|U|12462|97| -|Elvish Pioneer|Onslaught|C|12463|257| -|Ghitu Slinger|Urza's Legacy|C|12475|77| -|Erratic Explosion|Onslaught|C|12484|201| -|Multani's Presence|Urza's Legacy|U|12490|109| -|Forbidding Watchtower|Urza's Legacy|U|12494|140| -|Faerie Conclave|Urza's Legacy|U|12495|139| -|Spawning Pool|Urza's Legacy|U|12496|142| -|Ghitu Encampment|Urza's Legacy|U|12497|141| -|Treetop Village|Urza's Legacy|U|12498|143| -|Ring of Gix|Urza's Legacy|R|12501|131| -|Damping Engine|Urza's Legacy|R|12503|124| -|Beast of Burden|Urza's Legacy|R|12504|122| -|Crawlspace|Urza's Legacy|R|12505|123| -|Palinchron|Urza's Legacy|R|12580|38| -|Utopia Tree|Invasion|R|12605|219| -|Ζther Sting|Urza's Destiny|U|12612|76| -|Phyrexian Denouncer|Urza's Legacy|C|12614|61| -|Arrogant Wurm|Torment|U|12623|120| -|Thran War Machine|Urza's Legacy|U|12625|134| -|Grim Monolith|Urza's Legacy|R|12626|126| -|Plow Under|Urza's Destiny|R|12628|117| -|Urza's Blueprints|Urza's Legacy|R|12633|137| -|Goblin Medics|Urza's Legacy|C|12643|79| -|Thran Weaponry|Urza's Legacy|R|12646|135| -|Ticking Gnomes|Urza's Legacy|U|12647|136| -|Yavimaya Granger|Urza's Legacy|C|12656|118| -|Pyromancy|Urza's Legacy|R|12668|88| -|Repopulate|Urza's Legacy|C|12672|111| -|Radiant Kavu|Planeshift|R|12691|120| -|Elephant Guide|Judgment|U|12692|111| -|Phyrexian Defiler|Urza's Legacy|U|12696|60| -|Phyrexian Debaser|Urza's Legacy|C|12697|59| -|Devout Harpist|Urza's Legacy|C|12813|6| -|Sustainer of the Realm|Urza's Legacy|U|12814|23| -|Ghitu Fire-Eater|Urza's Legacy|U|12815|76| -|Opportunity|Urza's Legacy|U|12822|37| -|Archangel|Starter 1999|R|12825|4| -|Phyrexian Plaguelord|Urza's Legacy|R|12940|62| -|Erase|Urza's Legacy|C|12941|7| -|Hope and Glory|Urza's Legacy|U|12942|9| -|Aura Flux|Urza's Legacy|C|12943|27| -|Engineered Plague|Urza's Legacy|U|12944|51| -|Phyrexian Reclamation|Urza's Legacy|U|12945|63| -|Giant Cockroach|Urza's Legacy|C|12946|54| -|Lava Axe|Urza's Legacy|C|12947|84| -|Viashino Bey|Urza's Legacy|C|12948|93| -|Silk Net|Urza's Legacy|C|12949|112| -|Gang of Elk|Urza's Legacy|U|12950|102| -|Karmic Guide|Urza's Legacy|R|12955|11| -|Infernal Contract|Seventh Edition|R|12957|143| -|Daring Apprentice|Seventh Edition|R|12960|68| -|Early Harvest|Seventh Edition|R|12962|237| -|Femeref Archers|Seventh Edition|U|12963|244| -|Maro|Seventh Edition|R|12965|256| -|Rampant Growth|Classic Sixth Edition|C|12966|246| -|Uktabi Wildcats|Seventh Edition|R|12968|278| -|Final Fortune|Seventh Edition|R|12970|182| -|Spitting Earth|Seventh Edition|C|12972|220| -|Viashino Warrior|Classic Sixth Edition|C|12974|213| -|Trained Orgg|Seventh Edition|R|12975|224| -|Razorfoot Griffin|Seventh Edition|C|12977|32| -|Pacifism|Seventh Edition|C|12978|29| -|Sunweb|Seventh Edition|R|12979|51| -|Ostracize|Seventh Edition|C|12980|153| -|Tremor|Seventh Edition|C|12988|225| -|Agonizing Memories|Seventh Edition|U|12994|117| -|Razortooth Rats|Seventh Edition|C|12996|158| -|Phantom Warrior|Seventh Edition|U|12997|93| -|Nature's Resurgence|Seventh Edition|R|12998|259| -|Redwood Treefolk|Seventh Edition|C|12999|264| -|Goblin Welder|Urza's Legacy|R|13001|80| -|Goblin Burrows|Onslaught|U|13012|318| -|Fervor|Seventh Edition|R|13015|181| -|Ardent Militia|Seventh Edition|U|13016|2| -|Heavy Ballista|Seventh Edition|U|13017|19| -|Southern Paladin|Seventh Edition|R|13018|46| -|Dregs of Sorrow|Seventh Edition|R|13021|129| -|Gravedigger|Seventh Edition|C|13025|139| -|Benthic Behemoth|Seventh Edition|R|13030|63| -|Fighting Drake|Seventh Edition|U|13031|73| -|Mawcor|Seventh Edition|R|13035|87| -|Sea Monster|Seventh Edition|C|13036|97| -|Wind Dancer|Seventh Edition|U|13038|113| -|Wind Drake|Seventh Edition|C|13039|114| -|Canopy Spider|Seventh Edition|C|13040|234| -|Seeker of Skybreak|Seventh Edition|C|13046|268| -|Gorilla Chieftain|Seventh Edition|C|13047|250| -|Trained Armodon|Seventh Edition|C|13048|275| -|Lightning Blast|Seventh Edition|C|13051|200| -|Lightning Elemental|Seventh Edition|C|13053|201| -|Sudden Impact|Seventh Edition|U|13059|223| -|Starlight|Seventh Edition|U|13065|49| -|Staunch Defenders|Seventh Edition|U|13068|50| -|Shock|Seventh Edition|C|13074|219| -|Evacuation|Seventh Edition|R|13075|72| -|Horned Turtle|Seventh Edition|C|13080|80| -|Honor Guard|Seventh Edition|C|13082|21| -|Masticore|Urza's Destiny|R|13087|134| -|Revenant|Seventh Edition|R|13088|160| -|Spined Wurm|Seventh Edition|C|13096|270| -|Engineered Plague|Seventh Edition|U|13097|133| -|Knight Errant|Seventh Edition|C|13099|24| -|Goblin Spelunkers|Seventh Edition|C|13100|193| -|Reprocess|Seventh Edition|R|13101|159| -|Bull Hippo|Seventh Edition|U|13103|233| -|Looming Shade|Seventh Edition|C|13104|145| -|Anaconda|Seventh Edition|U|13106|229| -|Hollow Dogs|Seventh Edition|C|13107|141| -|Abyssal Horror|Seventh Edition|R|13111|115| -|Breath of Life|Seventh Edition|U|13112|4| -|Hibernation|Seventh Edition|U|13116|79| -|Intrepid Hero|Seventh Edition|R|13117|22| -|Vernal Bloom|Seventh Edition|R|13119|281| -|Goblin Raider|Seventh Edition|C|13122|192| -|Baleful Stare|Seventh Edition|U|13124|62| -|Elite Archers|Seventh Edition|R|13129|15| -|Seasoned Marshal|Seventh Edition|U|13130|40| -|Disorder|Seventh Edition|U|13136|179| -|Eastern Paladin|Seventh Edition|R|13137|132| -|Western Paladin|Seventh Edition|R|13138|170| -|Standing Troops|Seventh Edition|C|13139|48| -|Merfolk Looter|Seventh Edition|U|13140|89| -|Treasure Trove|Seventh Edition|U|13141|106| -|Raging Goblin|Seventh Edition|C|13146|211| -|Wood Elves|Seventh Edition|C|13147|284| -|Might of Oaks|Seventh Edition|R|13148|257| -|Delusions of Mediocrity|Seventh Edition|R|13152|70| -|Blessed Reversal|Seventh Edition|R|13153|3| -|Levitation|Seventh Edition|U|13155|82| -|Fleeting Image|Seventh Edition|R|13156|74| -|Archivist|Seventh Edition|R|13157|61| -|Plague Beetle|Seventh Edition|C|13158|155| -|Lone Wolf|Seventh Edition|C|13161|254| -|Serra Advocate|Seventh Edition|U|13162|41| -|Confiscate|Seventh Edition|U|13165|65| -|Northern Paladin|Seventh Edition|R|13166|28| -|Venerable Monk|Seventh Edition|C|13167|53| -|Gerrard's Wisdom|Seventh Edition|U|13168|16| -|Inspiration|Seventh Edition|C|13169|81| -|Knighthood|Seventh Edition|U|13171|25| -|Storm Crow|Seventh Edition|C|13172|100| -|Strands of Night|Seventh Edition|U|13175|165| -|Pillage|Seventh Edition|U|13182|207| -|Lava Axe|Seventh Edition|C|13185|199| -|Blaze|Seventh Edition|U|13187|175| -|Familiar Ground|Seventh Edition|U|13191|243| -|Wing Snare|Seventh Edition|U|13195|283| -|Elvish Piper|Seventh Edition|R|13197|242| -|Severed Legion|Onslaught|C|13204|166| -|Daru Encampment|Onslaught|U|13210|315| -|Elvish Scrapper|Onslaught|U|13778|258| -|Ravaging Horde|Portal Three Kingdoms|U|13805|118| -|Burst of Energy|Urza's Legacy|C|13806|3| -|Ghitu War Cry|Urza's Legacy|U|13810|78| -|Last-Ditch Effort|Urza's Legacy|U|13812|83| -|Landslide|Urza's Destiny|U|13821|92| -|Xun Yu, Wei Advisor|Portal Three Kingdoms|R|13831|93| -|Apprentice Necromancer|Urza's Destiny|R|14442|51| -|Venerable Monk|Classic Sixth Edition|C|14454|50| -|Circle of Protection: White|Classic Sixth Edition|C|14455|12| -|Circle of Protection: Blue|Classic Sixth Edition|C|14456|9| -|Circle of Protection: Black|Classic Sixth Edition|C|14457|8| -|Circle of Protection: Red|Classic Sixth Edition|C|14458|11| -|Circle of Protection: Green|Classic Sixth Edition|C|14459|10| -|Pacifism|Classic Sixth Edition|C|14460|33| -|Vengeance|Seventh Edition|U|14462|54| -|Disenchant|Classic Sixth Edition|C|14463|16| -|Remedy|Classic Sixth Edition|C|14464|36| -|Warrior's Honor|Classic Sixth Edition|C|14465|53| -|Samite Healer|Classic Sixth Edition|C|14467|40| -|Armored Pegasus|Classic Sixth Edition|C|14469|5| -|Standing Troops|Classic Sixth Edition|C|14471|44| -|D'Avenant Archer|Classic Sixth Edition|C|14472|14| -|Regal Unicorn|Classic Sixth Edition|C|14473|35| -|Ekundu Griffin|Classic Sixth Edition|C|14474|18| -|Longbow Archer|Classic Sixth Edition|U|14475|30| -|Serra's Blessing|Classic Sixth Edition|U|14476|42| -|Castle|Classic Sixth Edition|U|14478|6| -|Light of Day|Classic Sixth Edition|U|14481|29| -|Warmth|Classic Sixth Edition|U|14482|52| -|Kismet|Classic Sixth Edition|U|14483|27| -|Serra Advocate|Urza's Destiny|U|14485|19| -|Heavy Ballista|Classic Sixth Edition|U|14486|23| -|Wall of Swords|Classic Sixth Edition|U|14487|51| -|Ardent Militia|Classic Sixth Edition|U|14489|3| -|Staunch Defenders|Classic Sixth Edition|U|14490|45| -|Archangel|Classic Sixth Edition|R|14493|2| -|Sunweb|Classic Sixth Edition|R|14494|46| -|Wrath of God|Classic Sixth Edition|R|14498|54| -|Armageddon|Classic Sixth Edition|R|14500|4| -|Crusade|Classic Sixth Edition|R|14503|13| -|Inspiration|Classic Sixth Edition|C|14507|76| -|Counterspell|Classic Sixth Edition|C|14511|61| -|Remove Soul|Classic Sixth Edition|C|14512|94| -|Boomerang|Classic Sixth Edition|C|14513|58| -|Unsummon|Classic Sixth Edition|C|14514|103| -|Flight|Classic Sixth Edition|C|14515|68| -|Sage Owl|Classic Sixth Edition|C|14520|95| -|Wind Drake|Classic Sixth Edition|C|14521|106| -|Prodigal Sorcerer|Classic Sixth Edition|C|14523|88| -|Horned Turtle|Classic Sixth Edition|C|14524|74| -|Sea Monster|Classic Sixth Edition|C|14525|96| -|Abduction|Classic Sixth Edition|U|14526|55| -|Glacial Wall|Classic Sixth Edition|U|14535|72| -|Wall of Air|Classic Sixth Edition|U|14536|105| -|Segovian Leviathan|Classic Sixth Edition|U|14538|97| -|Phantom Warrior|Classic Sixth Edition|U|14540|85| -|Forget|Classic Sixth Edition|R|14547|70| -|Ancestral Memories|Classic Sixth Edition|R|14550|57| -|Lord of Atlantis|Classic Sixth Edition|R|14551|79| -|Daring Apprentice|Classic Sixth Edition|R|14552|62| -|Duress|Seventh Edition|C|14557|131| -|Fear|Classic Sixth Edition|C|14560|129| -|Coercion|Classic Sixth Edition|C|14561|119| -|Howl from Beyond|Classic Sixth Edition|C|14562|138| -|Raise Dead|Classic Sixth Edition|C|14563|152| -|Painful Memories|Classic Sixth Edition|C|14564|147| -|Drudge Skeletons|Classic Sixth Edition|C|14569|123| -|Razortooth Rats|Classic Sixth Edition|C|14572|153| -|Gravedigger|Classic Sixth Edition|C|14575|134| -|Strands of Night|Classic Sixth Edition|U|14577|156| -|Hidden Horror|Classic Sixth Edition|U|14578|137| -|Dread of Night|Classic Sixth Edition|U|14580|122| -|Perish|Classic Sixth Edition|U|14581|148| -|Mind Warp|Classic Sixth Edition|U|14584|143| -|Leshrac's Rite|Classic Sixth Edition|U|14585|141| -|Agonizing Memories|Classic Sixth Edition|U|14586|111| -|Bog Wraith|Classic Sixth Edition|U|14589|118| -|Evil Eye of Orms-by-Gore|Classic Sixth Edition|U|14593|126| -|Zombie Master|Classic Sixth Edition|R|14599|162| -|Infernal Contract|Classic Sixth Edition|R|14604|139| -|Shock|Classic Sixth Edition|C|14609|206| -|Lightning Blast|Classic Sixth Edition|C|14610|193| -|Pyrotechnics|Classic Sixth Edition|C|14611|199| -|Spitting Earth|Classic Sixth Edition|C|14612|208| -|Tremor|Classic Sixth Edition|C|14613|211| -|Shatter|Classic Sixth Edition|C|14614|204| -|Stone Rain|Classic Sixth Edition|C|14615|209| -|Firebreathing|Classic Sixth Edition|C|14616|177| -|Raging Goblin|Classic Sixth Edition|C|14617|200| -|Goblin Digging Team|Classic Sixth Edition|C|14618|182| -|Talruum Minotaur|Classic Sixth Edition|C|14624|210| -|Flame Spirit|Classic Sixth Edition|C|14626|179| -|Blaze|Classic Sixth Edition|U|14628|168| -|Boil|Classic Sixth Edition|U|14630|169| -|Volcanic Geyser|Classic Sixth Edition|U|14632|215| -|Orcish Oriflamme|Classic Sixth Edition|U|14635|197| -|Wall of Fire|Classic Sixth Edition|U|14639|216| -|Hulking Cyclops|Classic Sixth Edition|U|14644|189| -|Fervor|Classic Sixth Edition|R|14648|174| -|Relentless Assault|Classic Sixth Edition|R|14650|202| -|Earthquake|Classic Sixth Edition|R|14651|173| -|Jokulhaups|Classic Sixth Edition|R|14653|192| -|Manabarbs|Classic Sixth Edition|R|14654|194| -|Final Fortune|Classic Sixth Edition|R|14655|175| -|Goblin King|Classic Sixth Edition|R|14657|185| -|Volcanic Dragon|Classic Sixth Edition|R|14660|214| -|Wild Growth|Classic Sixth Edition|C|14663|268| -|Vitalize|Classic Sixth Edition|C|14667|265| -|Llanowar Elves|Classic Sixth Edition|C|14668|239| -|Shanodin Dryads|Classic Sixth Edition|C|14670|252| -|Grizzly Bears|Classic Sixth Edition|C|14671|236| -|Trained Armodon|Classic Sixth Edition|C|14675|257| -|Giant Spider|Classic Sixth Edition|C|14676|234| -|Stalking Tiger|Classic Sixth Edition|C|14677|253| -|Redwood Treefolk|Classic Sixth Edition|C|14681|247| -|Fog|Classic Sixth Edition|C|14682|230| -|Giant Growth|Classic Sixth Edition|C|14683|233| -|Regeneration|Classic Sixth Edition|C|14684|248| -|Tranquility|Classic Sixth Edition|C|14685|259| -|Elven Cache|Classic Sixth Edition|C|14686|224| -|Stream of Life|Classic Sixth Edition|C|14687|254| -|Uktabi Orangutan|Classic Sixth Edition|U|14690|260| -|Familiar Ground|Classic Sixth Edition|U|14691|228| -|Untamed Wilds|Classic Sixth Edition|U|14695|263| -|Summer Bloom|Classic Sixth Edition|U|14696|255| -|Lure|Classic Sixth Edition|U|14697|240| -|Femeref Archers|Classic Sixth Edition|U|14698|229| -|Fyndhorn Elder|Classic Sixth Edition|U|14699|232| -|Radjan Spirit|Classic Sixth Edition|U|14700|245| -|Elven Riders|Classic Sixth Edition|U|14705|225| -|Rowen|Classic Sixth Edition|R|14711|250| -|Early Harvest|Classic Sixth Edition|R|14714|222| -|Nature's Resurgence|Classic Sixth Edition|R|14715|242| -|Elvish Archers|Classic Sixth Edition|R|14716|226| -|Elder Druid|Classic Sixth Edition|R|14717|223| -|Maro|Classic Sixth Edition|R|14718|241| -|Birds of Paradise|Classic Sixth Edition|R|14719|217| -|Wyluli Wolf|Classic Sixth Edition|R|14720|270| -|Uktabi Wildcats|Classic Sixth Edition|R|14721|261| -|Ruins of Trokair|Classic Sixth Edition|U|14722|327| -|Svyelunite Temple|Classic Sixth Edition|U|14723|329| -|Ebon Stronghold|Classic Sixth Edition|U|14724|324| -|Dwarven Ruins|Classic Sixth Edition|U|14725|323| -|Havenwood Battleground|Classic Sixth Edition|U|14726|325| -|Adarkar Wastes|Classic Sixth Edition|R|14727|319| -|Underground River|Classic Sixth Edition|R|14728|330| -|Sulfurous Springs|Classic Sixth Edition|R|14729|328| -|Karplusan Forest|Classic Sixth Edition|R|14730|326| -|Brushland|Classic Sixth Edition|R|14731|320| -|City of Brass|Classic Sixth Edition|R|14732|321| -|Plains|Classic Sixth Edition|L|14733|331| -|Plains|Classic Sixth Edition|L|14734|332| -|Plains|Classic Sixth Edition|L|14735|333| -|Plains|Classic Sixth Edition|L|14736|334| -|Island|Classic Sixth Edition|L|14737|335| -|Island|Classic Sixth Edition|L|14738|336| -|Island|Classic Sixth Edition|L|14739|337| -|Island|Classic Sixth Edition|L|14740|338| -|Swamp|Classic Sixth Edition|L|14741|339| -|Swamp|Classic Sixth Edition|L|14742|340| -|Swamp|Classic Sixth Edition|L|14743|341| -|Swamp|Classic Sixth Edition|L|14744|342| -|Mountain|Classic Sixth Edition|L|14745|343| -|Mountain|Classic Sixth Edition|L|14746|344| -|Mountain|Classic Sixth Edition|L|14747|345| -|Mountain|Classic Sixth Edition|L|14748|346| -|Forest|Classic Sixth Edition|L|14749|347| -|Forest|Classic Sixth Edition|L|14750|348| -|Forest|Classic Sixth Edition|L|14751|349| -|Forest|Classic Sixth Edition|L|14752|350| -|Storm Crow|Classic Sixth Edition|C|14753|101| -|Dark Banishing|Seventh Edition|C|14754|127| -|Pillage|Classic Sixth Edition|U|14755|198| -|Crystal Rod|Classic Sixth Edition|U|14758|277| -|Ivory Cup|Classic Sixth Edition|U|14759|291| -|Throne of Bone|Classic Sixth Edition|U|14760|316| -|Iron Star|Classic Sixth Edition|U|14761|290| -|Wooden Sphere|Classic Sixth Edition|U|14763|318| -|Fountain of Youth|Classic Sixth Edition|U|14765|286| -|Ornithopter|Classic Sixth Edition|U|14767|303| -|Rod of Ruin|Classic Sixth Edition|U|14768|308| -|Soul Net|Classic Sixth Edition|U|14769|312| -|Aladdin's Ring|Classic Sixth Edition|R|14770|271| -|Ankh of Mishra|Classic Sixth Edition|R|14771|273| -|Dancing Scimitar|Classic Sixth Edition|R|14773|279| -|Dingus Egg|Classic Sixth Edition|R|14774|280| -|Flying Carpet|Classic Sixth Edition|R|14776|285| -|Howling Mine|Classic Sixth Edition|R|14777|289| -|Jalum Tome|Classic Sixth Edition|R|14778|293| -|Jayemdae Tome|Classic Sixth Edition|R|14780|294| -|Meekstone|Classic Sixth Edition|R|14781|298| -|Millstone|Classic Sixth Edition|R|14782|299| -|Pentagram of the Ages|Classic Sixth Edition|R|14784|305| -|Wall of Glare|Urza's Destiny|C|15120|25| -|Field Surgeon|Urza's Destiny|C|15121|8| -|Reliquary Monk|Urza's Destiny|C|15123|14| -|Jasmine Seer|Urza's Destiny|U|15124|10| -|Capashen Knight|Urza's Destiny|C|15125|3| -|Flicker|Urza's Destiny|R|15127|9| -|Mask of Law and Grace|Urza's Destiny|C|15129|11| -|Voice of Reason|Urza's Destiny|U|15131|24| -|Voice of Duty|Urza's Destiny|U|15132|23| -|Scour|Urza's Destiny|U|15134|18| -|Archery Training|Urza's Destiny|U|15135|2| -|Slay|Planeshift|U|15137|55| -|Academy Rector|Urza's Destiny|R|15138|1| -|Opalescence|Urza's Destiny|R|15142|13| -|Replenish|Urza's Destiny|R|15143|15| -|Dralnu's Pet|Planeshift|R|15144|23| -|Fledgling Osprey|Urza's Destiny|C|15145|33| -|Blizzard Elemental|Urza's Destiny|R|15146|27| -|Kingfisher|Urza's Destiny|C|15147|36| -|Brine Seer|Urza's Destiny|U|15148|28| -|Telepathic Spies|Urza's Destiny|C|15149|47| -|Disappear|Urza's Destiny|U|15151|30| -|Rescue|Urza's Destiny|C|15154|44| -|Thieving Magpie|Urza's Destiny|U|15156|49| -|Metathran Elite|Urza's Destiny|U|15157|38| -|Mental Discipline|Urza's Destiny|C|15158|37| -|Quash|Urza's Destiny|U|15160|42| -|Private Research|Urza's Destiny|U|15161|41| -|Opposition|Urza's Destiny|R|15162|40| -|Iridescent Drake|Urza's Destiny|U|15163|35| -|Rayne, Academy Chancellor|Urza's Destiny|R|15164|43| -|Donate|Urza's Destiny|R|15168|31| -|Disease Carriers|Urza's Destiny|C|15169|57| -|Squirming Mass|Urza's Destiny|C|15170|73| -|Ravenous Rats|Urza's Destiny|C|15172|68| -|Nightshade Seer|Urza's Destiny|U|15173|63| -|Encroach|Urza's Destiny|U|15175|59| -|Rapid Decay|Urza's Destiny|R|15177|67| -|Bubbling Muck|Urza's Destiny|C|15179|54| -|Plague Dogs|Urza's Destiny|U|15180|66| -|Dying Wail|Urza's Destiny|C|15183|58| -|Festering Wound|Urza's Destiny|U|15184|61| -|Eradicate|Urza's Destiny|U|15186|60| -|Body Snatcher|Urza's Destiny|R|15189|53| -|Viridian Acolyte|Darksteel|C|15190|89| -|Attrition|Urza's Destiny|R|15191|52| -|Yawgmoth's Bargain|Urza's Destiny|R|15193|75| -|Keldon Vandals|Urza's Destiny|C|15194|91| -|Colos Yearling|Urza's Destiny|C|15195|79| -|Hulking Ogre|Urza's Destiny|C|15196|87| -|Goblin Gardener|Urza's Destiny|C|15197|84| -|Wild Colos|Urza's Destiny|C|15198|100| -|Cinder Seer|Urza's Destiny|U|15199|78| -|Trumpet Blast|Urza's Destiny|C|15200|98| -|Flame Jet|Urza's Destiny|C|15201|81| -|Goblin Masons|Urza's Destiny|C|15202|86| -|Mark of Fury|Urza's Destiny|C|15203|93| -|Reckless Abandon|Urza's Destiny|C|15204|94| -|Keldon Champion|Urza's Destiny|U|15206|90| -|Splinter|Urza's Destiny|U|15208|121| -|Incendiary|Urza's Destiny|U|15211|89| -|Goblin Marshal|Urza's Destiny|R|15212|85| -|Bloodshot Cyclops|Urza's Destiny|R|15214|77| -|Repercussion|Urza's Destiny|R|15216|95| -|Impatience|Urza's Destiny|R|15217|88| -|Wake of Destruction|Urza's Destiny|R|15218|99| -|Hunting Moa|Urza's Destiny|U|15219|109| -|Heart Warden|Urza's Destiny|C|15220|108| -|Taunting Elf|Urza's Destiny|C|15221|122| -|Marker Beetles|Urza's Destiny|C|15222|112| -|Goliath Beetle|Urza's Destiny|C|15223|107| -|Ivy Seer|Urza's Destiny|U|15224|110| -|Yavimaya Elder|Urza's Destiny|C|15225|124| -|Multani's Decree|Urza's Destiny|C|15228|114| -|Far Wanderings|Torment|C|15229|125| -|Gamekeeper|Urza's Destiny|U|15230|106| -|Pattern of Rebirth|Urza's Destiny|R|15234|115| -|Momentum|Urza's Destiny|U|15235|113| -|Yavimaya Enchantress|Urza's Destiny|U|15236|125| -|Rofellos, Llanowar Emissary|Urza's Destiny|R|15237|118| -|Thorn Elemental|Urza's Destiny|R|15240|123| -|Elvish Piper|Urza's Destiny|R|15241|104| -|Brass Secretary|Urza's Destiny|U|15245|128| -|Metalworker|Urza's Destiny|R|15246|135| -|Mantis Engine|Urza's Destiny|U|15247|133| -|Thran Dynamo|Urza's Destiny|U|15248|139| -|Braidwood Cup|Urza's Destiny|U|15249|126| -|Fodder Cannon|Urza's Destiny|U|15250|131| -|Braidwood Sextant|Urza's Destiny|U|15251|127| -|Caltrops|Urza's Destiny|U|15252|129| -|Thran Golem|Urza's Destiny|R|15254|141| -|Extruder|Urza's Destiny|U|15255|130| -|Junk Diver|Urza's Destiny|R|15256|132| -|Urza's Incubator|Urza's Destiny|R|15257|142| -|Powder Keg|Urza's Destiny|R|15259|136| -|Storage Matrix|Urza's Destiny|R|15260|138| -|Aura Thief|Urza's Destiny|R|15261|26| -|Scrying Glass|Urza's Destiny|R|15262|137| -|Scent of Jasmine|Urza's Destiny|C|15263|17| -|Scent of Cinder|Urza's Destiny|C|15264|96| -|Scent of Nightshade|Urza's Destiny|C|15265|69| -|Scent of Brine|Urza's Destiny|C|15266|45| -|Scent of Ivy|Urza's Destiny|C|15267|120| -|Exile|Classic Sixth Edition|R|15350|21| -|Reprisal|Classic Sixth Edition|U|15352|37| -|Celestial Dawn|Classic Sixth Edition|R|15354|7| -|Enlightened Tutor|Classic Sixth Edition|U|15355|19| -|Ethereal Champion|Classic Sixth Edition|R|15356|20| -|Unyaro Griffin|Classic Sixth Edition|U|15357|49| -|Daraja Griffin|Classic Sixth Edition|U|15358|15| -|Infantry Veteran|Classic Sixth Edition|C|15359|26| -|Serenity|Classic Sixth Edition|R|15360|41| -|Tariff|Classic Sixth Edition|R|15361|47| -|Resistance Fighter|Classic Sixth Edition|C|15362|38| -|Diminishing Returns|Classic Sixth Edition|R|15363|65| -|Library of Lat-Nam|Classic Sixth Edition|R|15364|78| -|Dream Cache|Classic Sixth Edition|C|15365|66| -|Harmattan Efreet|Classic Sixth Edition|U|15366|73| -|Mystical Tutor|Classic Sixth Edition|U|15367|83| -|Psychic Transfer|Classic Sixth Edition|R|15368|90| -|Desertion|Classic Sixth Edition|R|15370|64| -|Air Elemental|Classic Sixth Edition|U|15371|56| -|Zur's Weirding|Classic Sixth Edition|R|15372|108| -|Relearn|Classic Sixth Edition|U|15375|93| -|Insight|Classic Sixth Edition|U|15376|75| -|Spell Blast|Classic Sixth Edition|C|15377|100| -|Greed|Classic Sixth Edition|R|15379|135| -|Syphon Soul|Classic Sixth Edition|C|15380|159| -|Abyssal Specter|Classic Sixth Edition|U|15381|110| -|Dry Spell|Classic Sixth Edition|C|15382|124| -|Abyssal Hunter|Classic Sixth Edition|R|15383|109| -|Ashen Powder|Classic Sixth Edition|R|15384|112| -|Blighted Shaman|Classic Sixth Edition|U|15385|114| -|Enfeeblement|Classic Sixth Edition|C|15386|125| -|Feral Shadow|Classic Sixth Edition|C|15387|131| -|Forbidden Crypt|Classic Sixth Edition|R|15388|132| -|Gravebane Zombie|Classic Sixth Edition|U|15389|133| -|Necrosavant|Classic Sixth Edition|R|15390|145| -|Nekrataal|Battle Royale Box Set|U|15391|| -|Python|Classic Sixth Edition|C|15392|150| -|Vampiric Tutor|Classic Sixth Edition|R|15393|161| -|Nightmare|Classic Sixth Edition|R|15394|146| -|Doomsday|Classic Sixth Edition|R|15397|121| -|Mischievous Poltergeist|Classic Sixth Edition|U|15398|144| -|Blight|Classic Sixth Edition|U|15399|113| -|Blood Pet|Classic Sixth Edition|C|15400|115| -|Obsianus Golem|Classic Sixth Edition|U|15401|302| -|Storm Cauldron|Classic Sixth Edition|R|15402|313| -|Amber Prison|Classic Sixth Edition|R|15403|272| -|Cursed Totem|Classic Sixth Edition|R|15404|278| -|Fire Diamond|Classic Sixth Edition|U|15405|284| -|Grinning Totem|Classic Sixth Edition|R|15406|288| -|Lead Golem|Classic Sixth Edition|U|15407|295| -|Patagia Golem|Classic Sixth Edition|U|15408|304| -|Snake Basket|Classic Sixth Edition|R|15409|311| -|Teferi's Puzzle Box|Classic Sixth Edition|R|15410|314| -|Wand of Denial|Classic Sixth Edition|R|15411|317| -|Dragon Engine|Classic Sixth Edition|R|15412|282| -|Crystal Vein|Classic Sixth Edition|U|15413|322| -|Goblin Hero|Classic Sixth Edition|C|15415|184| -|Goblin Recruiter|Classic Sixth Edition|U|15417|186| -|Spitting Drake|Classic Sixth Edition|U|15418|207| -|Fire Elemental|Classic Sixth Edition|U|15419|176| -|Hammer of Bogardan|Classic Sixth Edition|R|15420|188| -|Goblin Warrens|Classic Sixth Edition|R|15421|187| -|Balduvian Horde|Classic Sixth Edition|R|15423|167| -|Crimson Hellkite|Classic Sixth Edition|R|15424|172| -|Reckless Embermage|Classic Sixth Edition|R|15425|201| -|Gorilla Chieftain|Classic Sixth Edition|C|15427|235| -|Creeping Mold|Classic Sixth Edition|U|15428|220| -|Worldly Tutor|Classic Sixth Edition|U|15429|269| -|Dense Foliage|Classic Sixth Edition|R|15431|221| -|Call of the Wild|Classic Sixth Edition|R|15433|218| -|Waiting in the Weeds|Classic Sixth Edition|R|15434|266| -|Mystic Compass|Classic Sixth Edition|U|15435|301| -|Phyrexian Vault|Classic Sixth Edition|U|15436|306| -|Dragon Mask|Classic Sixth Edition|U|15437|283| -|Mana Prism|Classic Sixth Edition|U|15439|296| -|Charcoal Diamond|Classic Sixth Edition|U|15440|276| -|Marble Diamond|Classic Sixth Edition|U|15441|297| -|Moss Diamond|Classic Sixth Edition|U|15442|300| -|Sky Diamond|Classic Sixth Edition|U|15443|310| -|Chill|Classic Sixth Edition|U|15444|60| -|Polymorph|Classic Sixth Edition|R|15445|86| -|Pearl Dragon|Classic Sixth Edition|R|15446|34| -|Ζther Flash|Classic Sixth Edition|U|15447|163| -|Capashen Templar|Urza's Destiny|C|15762|5| -|Fend Off|Urza's Destiny|C|15763|7| -|Solidarity|Urza's Destiny|C|15764|20| -|False Prophet|Urza's Destiny|R|15765|6| -|Soul Feast|Urza's Destiny|U|15767|72| -|Chime of Night|Urza's Destiny|C|15768|56| -|Tethered Griffin|Urza's Destiny|R|15769|21| -|Covetous Dragon|Urza's Destiny|R|15770|80| -|Goblin Festival|Urza's Destiny|R|15771|83| -|Yavimaya Hollow|Urza's Destiny|R|15772|143| -|Emperor Crocodile|Urza's Destiny|R|15773|105| -|Cloudchaser Eagle|Seventh Edition|C|15778|11| -|Holy Strength|Seventh Edition|C|15779|20| -|Eager Cadet|Seventh Edition|C|15780|14| -|Skyshroud Falcon|Seventh Edition|C|15781|45| -|Reprisal|Seventh Edition|U|15782|33| -|Bubbling Beebles|Urza's Destiny|C|15783|29| -|Sigil of Sleep|Urza's Destiny|C|15784|46| -|Slinking Skirge|Urza's Destiny|C|15786|71| -|Skittering Horror|Urza's Destiny|C|15787|70| -|Master Healer|Seventh Edition|R|15790|27| -|Temporal Adept|Seventh Edition|R|15791|103| -|Bloodshot Cyclops|Seventh Edition|R|15792|176| -|Telepathy|Seventh Edition|U|15793|102| -|Sage Owl|Seventh Edition|C|15794|96| -|Opposition|Seventh Edition|R|15796|92| -|Wall of Wonder|Seventh Edition|R|15797|112| -|Reverse Damage|Seventh Edition|R|15799|34| -|Steal Artifact|Seventh Edition|U|15801|99| -|Air Elemental|Seventh Edition|U|15802|58| -|Goblin Elite Infantry|Seventh Edition|C|15805|187| -|Sabretooth Tiger|Seventh Edition|C|15807|215| -|Ghitu Fire-Eater|Seventh Edition|U|15809|184| -|Goblin Matron|Seventh Edition|U|15810|191| -|Orcish Artillery|Seventh Edition|U|15812|205| -|Fire Elemental|Seventh Edition|U|15813|183| -|Crimson Hellkite|Seventh Edition|R|15814|178| -|Inferno|Seventh Edition|R|15815|198| -|Ogre Taskmaster|Seventh Edition|U|15817|203| -|Soul Feast|Seventh Edition|U|15818|163| -|Magnify|Urza's Destiny|C|15819|111| -|Unholy Strength|Seventh Edition|C|15821|168| -|Darkest Hour|Seventh Edition|R|15825|128| -|Nightmare|Seventh Edition|R|15826|150| -|Mind Rot|Seventh Edition|C|15828|147| -|Reflexes|Seventh Edition|C|15833|213| -|Storm Shaman|Seventh Edition|U|15834|222| -|Reclaim|Seventh Edition|C|15837|263| -|Sisay's Ring|Seventh Edition|U|15846|315| -|Charcoal Diamond|Seventh Edition|U|15849|289| -|Marble Diamond|Seventh Edition|U|15850|306| -|Sky Diamond|Seventh Edition|U|15851|316| -|Fire Diamond|Seventh Edition|U|15853|296| -|Moss Diamond|Seventh Edition|U|15854|309| -|Patagia Golem|Seventh Edition|U|15856|310| -|Phyrexian Colossus|Seventh Edition|R|15860|311| -|Beast of Burden|Seventh Edition|R|15861|287| -|Static Orb|Seventh Edition|R|15862|319| -|Coat of Arms|Seventh Edition|R|15863|290| -|Dingus Egg|Seventh Edition|R|15864|292| -|Ensnaring Bridge|Seventh Edition|R|15866|294| -|Disrupting Scepter|Seventh Edition|R|15868|293| -|Sanctimony|Urza's Destiny|U|15873|16| -|Master Healer|Urza's Destiny|R|15874|12| -|Temporal Adept|Urza's Destiny|R|15875|48| -|Goblin Berserker|Urza's Destiny|U|15876|82| -|Rofellos's Gift|Urza's Destiny|C|15877|119| -|Compost|Urza's Destiny|U|15878|102| -|Pygmy Pyrosaur|Seventh Edition|C|15879|208| -|Compost|Seventh Edition|U|15881|235| -|Yavimaya Enchantress|Seventh Edition|U|15882|285| -|Spineless Thug|Seventh Edition|C|15883|164| -|Ancient Silverback|Urza's Destiny|R|16424|101| -|Healing Salve|Classic Sixth Edition|C|16425|22| -|Hero's Resolve|Classic Sixth Edition|C|16426|24| -|Mesa Falcon|Classic Sixth Edition|C|16427|31| -|Animate Wall|Classic Sixth Edition|R|16428|1| -|Tidal Surge|Classic Sixth Edition|C|16429|102| -|Psychic Venom|Classic Sixth Edition|C|16430|91| -|Phantasmal Terrain|Classic Sixth Edition|C|16431|84| -|Vodalian Soldiers|Classic Sixth Edition|C|16432|104| -|Fog Elemental|Classic Sixth Edition|C|16433|69| -|Browse|Classic Sixth Edition|U|16434|59| -|Power Sink|Classic Sixth Edition|U|16435|87| -|Soldevi Sage|Classic Sixth Edition|U|16436|99| -|Wind Spirit|Classic Sixth Edition|U|16437|107| -|Deflection|Classic Sixth Edition|R|16438|63| -|Mana Short|Classic Sixth Edition|R|16439|80| -|Flash|Classic Sixth Edition|R|16440|67| -|Anaba Shaman|Classic Sixth Edition|C|16441|165| -|Mountain Goat|Classic Sixth Edition|C|16442|195| -|Goblin Elite Infantry|Classic Sixth Edition|C|16443|183| -|Anaba Bodyguard|Classic Sixth Edition|C|16444|164| -|Balduvian Barbarians|Classic Sixth Edition|C|16445|166| -|Flashfires|Classic Sixth Edition|U|16446|180| -|Vertigo|Classic Sixth Edition|U|16447|212| -|Burrowing|Classic Sixth Edition|U|16448|170| -|Illicit Auction|Classic Sixth Edition|R|16449|190| -|Cat Warriors|Classic Sixth Edition|C|16450|219| -|Fyndhorn Brownie|Classic Sixth Edition|C|16451|231| -|Scaled Wurm|Classic Sixth Edition|C|16452|251| -|Panther Warriors|Classic Sixth Edition|C|16453|243| -|Fallow Earth|Classic Sixth Edition|U|16454|227| -|Thicket Basilisk|Classic Sixth Edition|U|16455|256| -|Unseen Walker|Classic Sixth Edition|U|16456|262| -|River Boa|Classic Sixth Edition|U|16457|249| -|Warthog|Classic Sixth Edition|U|16458|267| -|Fit of Rage|Classic Sixth Edition|C|16622|178| -|Fatal Blow|Classic Sixth Edition|C|16623|128| -|Terror|Classic Sixth Edition|C|16624|160| -|Feast of the Unicorn|Classic Sixth Edition|C|16625|130| -|Bog Imp|Classic Sixth Edition|C|16626|116| -|Scathe Zombies|Classic Sixth Edition|C|16627|154| -|Stupor|Classic Sixth Edition|U|16628|158| -|Fallen Angel|Classic Sixth Edition|R|16629|127| -|Tormented Angel|Urza's Destiny|C|18287|22| -|Capashen Standard|Urza's Destiny|C|19095|4| -|Metathran Soldier|Urza's Destiny|C|19096|39| -|Illuminated Wings|Urza's Destiny|C|19097|34| -|Fatigue|Urza's Destiny|C|19098|32| -|Elvish Lookout|Urza's Destiny|C|19109|103| -|Thran Foundry|Urza's Destiny|U|19111|140| -|Phyrexian Monitor|Urza's Destiny|C|19113|64| -|Twisted Experiment|Urza's Destiny|C|19114|74| -|Carnival of Souls|Urza's Destiny|R|19115|55| -|Lurking Jackals|Urza's Destiny|U|19116|62| -|Flowstone Charger|Apocalypse|U|19117|99| -|Convalescent Care|Onslaught|R|19122|14| -|Yavimaya's Embrace|Apocalypse|R|19132|127| -|Vindicate|Apocalypse|R|19135|126| -|Guard Dogs|Planeshift|U|19141|5| -|Ancient Spider|Planeshift|R|19149|96| -|Consume Strength|Apocalypse|C|19163|93| -|Plated Spider|Urza's Destiny|C|19239|116| -|Keldon Mantle|Planeshift|C|19358|65| -|Sowing Salt|Urza's Destiny|U|19534|97| -|Charm Peddler|Mercadian Masques|C|19535|6| -|Devout Witness|Mercadian Masques|C|19536|17| -|Thermal Glider|Mercadian Masques|C|19537|53| -|Revered Elder|Mercadian Masques|C|19538|43| -|Ramosian Sergeant|Mercadian Masques|C|19539|39| -|Crossbow Infantry|Mercadian Masques|C|19540|16| -|Alabaster Wall|Mercadian Masques|C|19541|2| -|Fresh Volunteers|Mercadian Masques|C|19542|20| -|Ramosian Lieutenant|Mercadian Masques|C|19543|37| -|Nightwind Glider|Mercadian Masques|C|19544|31| -|Task Force|Mercadian Masques|C|19545|52| -|Inviolability|Mercadian Masques|C|19546|23| -|Orim's Cure|Mercadian Masques|C|19547|33| -|Disenchant|Mercadian Masques|C|19548|18| -|Afterlife|Mercadian Masques|U|19549|1| -|Soothing Balm|Mercadian Masques|C|19550|48| -|Cho-Manno's Blessing|Mercadian Masques|C|19551|12| -|Pious Warrior|Mercadian Masques|C|19552|34| -|Balthor the Stout|Torment|R|19553|91| -|Moment of Silence|Mercadian Masques|C|19554|28| -|Righteous Aura|Mercadian Masques|U|19555|45| -|Waterfront Bouncer|Mercadian Masques|C|19557|114| -|Balloon Peddler|Mercadian Masques|C|19558|59| -|Darting Merfolk|Mercadian Masques|C|19559|72| -|Timid Drake|Mercadian Masques|U|19560|111| -|Stinging Barrier|Mercadian Masques|C|19561|107| -|Port Inspector|Mercadian Masques|C|19562|90| -|Cloud Sprite|Mercadian Masques|C|19563|67| -|Saprazzan Raider|Mercadian Masques|C|19564|102| -|Drake Hatchling|Mercadian Masques|C|19565|76| -|Rishadan Cutpurse|Mercadian Masques|C|19566|93| -|Blockade Runner|Mercadian Masques|C|19567|60| -|Misstep|Mercadian Masques|C|19568|88| -|Tidal Bore|Mercadian Masques|C|19569|109| -|Counterspell|Mercadian Masques|C|19570|69| -|Brainstorm|Mercadian Masques|C|19571|61| -|Karn's Touch|Mercadian Masques|R|19573|86| -|Buoyancy|Mercadian Masques|C|19574|63| -|Customs Depot|Mercadian Masques|U|19575|71| -|Diplomatic Immunity|Mercadian Masques|C|19576|75| -|Dehydration|Mercadian Masques|C|19577|73| -|Bog Witch|Mercadian Masques|C|19578|118| -|Plague Witch|Nemesis|C|19579|66| -|Cateran Persuader|Mercadian Masques|C|19580|124| -|Misshapen Fiend|Mercadian Masques|C|19581|147| -|Cateran Brute|Mercadian Masques|C|19582|120| -|Wall of Distortion|Mercadian Masques|C|19583|171| -|Alley Grifters|Mercadian Masques|C|19584|115| -|Highway Robber|Mercadian Masques|C|19585|139| -|Rampart Crawler|Mercadian Masques|C|19586|156| -|Deepwood Ghoul|Mercadian Masques|C|19587|131| -|Skulking Fugitive|Mercadian Masques|C|19588|161| -|Vendetta|Mercadian Masques|C|19589|170| -|Insubordination|Mercadian Masques|C|19590|141| -|Sever Soul|Mercadian Masques|C|19591|159| -|Dark Ritual|Mercadian Masques|C|19592|129| -|Soul Channeling|Mercadian Masques|C|19593|163| -|Maggot Therapy|Mercadian Masques|C|19594|145| -|Snuff Out|Mercadian Masques|C|19595|162| -|Ghoul's Feast|Mercadian Masques|U|19596|137| -|Specter's Wail|Mercadian Masques|C|19597|164| -|Bog Smugglers|Mercadian Masques|C|19598|117| -|Flailing Soldier|Mercadian Masques|C|19602|189| -|Ceremonial Guard|Mercadian Masques|C|19603|182| -|Kyren Glider|Mercadian Masques|C|19604|196| -|Wild Jhovall|Mercadian Masques|C|19605|227| -|Kyren Sniper|Mercadian Masques|C|19606|199| -|Battle Rampart|Mercadian Masques|C|19607|173| -|Cinder Elemental|Mercadian Masques|U|19608|183| -|Shock Troops|Mercadian Masques|C|19609|212| -|Cavern Crawler|Mercadian Masques|C|19610|181| -|Sizzle|Mercadian Masques|C|19611|213| -|Stone Rain|Mercadian Masques|C|19612|215| -|Flaming Sword|Mercadian Masques|C|19613|190| -|Tremor|Mercadian Masques|C|19614|220| -|Thunderclap|Mercadian Masques|C|19615|219| -|Crash|Mercadian Masques|C|19616|186| -|Lunge|Mercadian Masques|C|19617|203| -|Lightning Hounds|Mercadian Masques|C|19618|201| -|War Cadence|Mercadian Masques|U|19619|224| -|Cave Sense|Mercadian Masques|C|19620|179| -|Deepwood Drummer|Mercadian Masques|C|19621|239| -|Rushwood Herbalist|Mercadian Masques|C|19622|265| -|Deepwood Wolverine|Mercadian Masques|C|19623|242| -|Vine Trellis|Mercadian Masques|C|19624|285| -|Venomous Dragonfly|Mercadian Masques|C|19625|282| -|Snorting Gahr|Mercadian Masques|C|19626|272| -|Rushwood Dryad|Mercadian Masques|C|19627|263| -|Deadly Insect|Mercadian Masques|C|19628|238| -|Horned Troll|Mercadian Masques|C|19630|251| -|Silverglade Elemental|Mercadian Masques|C|19631|269| -|Howling Wolf|Mercadian Masques|C|19632|252| -|Land Grant|Mercadian Masques|C|19633|255| -|Ancestral Mask|Mercadian Masques|C|19634|229| -|Tiger Claws|Mercadian Masques|C|19635|279| -|Squall|Mercadian Masques|C|19636|275| -|Tranquility|Mercadian Masques|C|19637|280| -|Desert Twister|Mercadian Masques|U|19638|243| -|Ferocity|Mercadian Masques|C|19639|245| -|Invigorate|Mercadian Masques|C|19640|254| -|Revive|Mercadian Masques|U|19641|262| -|Remote Farm|Mercadian Masques|C|19642|323| -|Saprazzan Skerry|Mercadian Masques|C|19643|328| -|Peat Bog|Mercadian Masques|C|19644|322| -|Sandstone Needle|Mercadian Masques|C|19645|326| -|Hickory Woodlot|Mercadian Masques|C|19646|319| -|Cho-Arrim Alchemist|Mercadian Masques|R|19647|8| -|Ramosian Sky Marshal|Mercadian Masques|R|19648|40| -|Cho-Arrim Bruiser|Mercadian Masques|R|19650|9| -|Reverent Mantra|Mercadian Masques|R|19653|44| -|Jhovall Queen|Mercadian Masques|R|19654|25| -|Security Detail|Mercadian Masques|R|19655|47| -|Ivory Mask|Mercadian Masques|R|19656|24| -|Spiritual Focus|Mercadian Masques|R|19657|49| -|Wave of Reckoning|Mercadian Masques|R|19659|56| -|Armistice|Mercadian Masques|R|19661|3| -|Cornered Market|Mercadian Masques|R|19663|14| -|Crackdown|Mercadian Masques|R|19664|15| -|Common Cause|Mercadian Masques|R|19665|13| -|Overtaker|Mercadian Masques|R|19666|89| -|Aerial Caravan|Mercadian Masques|R|19667|58| -|Sand Squid|Mercadian Masques|R|19668|96| -|Saprazzan Bailiff|Mercadian Masques|R|19669|97| -|Rishadan Brigand|Mercadian Masques|R|19670|92| -|Saprazzan Breaker|Mercadian Masques|U|19671|98| -|Saprazzan Heir|Mercadian Masques|R|19672|99| -|Extravagant Spirit|Mercadian Masques|R|19673|79| -|Tidal Kraken|Mercadian Masques|R|19674|110| -|Trade Routes|Mercadian Masques|R|19675|112| -|Statecraft|Mercadian Masques|R|19676|106| -|Shoving Match|Mercadian Masques|U|19677|103| -|Embargo|Mercadian Masques|R|19679|77| -|Catapult Master|Onslaught|R|19680|10| -|Misdirection|Mercadian Masques|R|19681|87| -|Cowardice|Mercadian Masques|R|19683|70| -|Squeeze|Mercadian Masques|R|19685|105| -|Strongarm Thug|Mercadian Masques|U|19689|165| -|Cateran Enforcer|Mercadian Masques|U|19690|121| -|Cateran Slaver|Mercadian Masques|R|19691|125| -|Silent Assassin|Mercadian Masques|R|19692|160| -|Nether Spirit|Mercadian Masques|R|19693|149| -|Notorious Assassin|Mercadian Masques|R|19695|150| -|Coral Net|Torment|C|19696|35| -|Delraich|Mercadian Masques|R|19697|133| -|Cateran Overlord|Mercadian Masques|R|19698|123| -|Instigator|Mercadian Masques|R|19699|140| -|Rouse|Mercadian Masques|C|19700|157| -|Conspiracy|Mercadian Masques|R|19702|127| -|Extortion|Mercadian Masques|R|19703|135| -|Haunted Crossroads|Mercadian Masques|U|19704|138| -|Unnatural Hunger|Mercadian Masques|R|19705|169| -|Liability|Mercadian Masques|R|19706|144| -|Midnight Ritual|Mercadian Masques|R|19707|146| -|Hammer Mage|Mercadian Masques|U|19708|193| -|Flailing Manticore|Mercadian Masques|R|19710|187| -|Two-Headed Dragon|Mercadian Masques|R|19711|221| -|Battle Squadron|Mercadian Masques|R|19712|174| -|Crag Saurian|Mercadian Masques|R|19713|185| -|Blood Hound|Mercadian Masques|R|19714|176| -|Corrupt Official|Mercadian Masques|R|19715|128| -|Squee, Goblin Nabob|Mercadian Masques|R|19716|214| -|Territorial Dispute|Mercadian Masques|R|19718|217| -|Robber Fly|Mercadian Masques|U|19719|209| -|Tectonic Break|Mercadian Masques|R|19720|216| -|Puppet's Verdict|Mercadian Masques|R|19721|208| -|Thieves' Auction|Mercadian Masques|R|19722|218| -|Brawl|Mercadian Masques|R|19723|178| -|Pulverize|Mercadian Masques|R|19724|207| -|Cave-In|Mercadian Masques|R|19725|180| -|Blood Oath|Mercadian Masques|R|19726|177| -|Silverglade Pathfinder|Mercadian Masques|U|19728|270| -|Pacifism|Onslaught|C|19729|47| -|Caller of the Hunt|Mercadian Masques|R|19730|233| -|Lithophage|Mercadian Masques|R|19731|202| -|Megatherium|Mercadian Masques|R|19733|259| -|Erithizon|Mercadian Masques|R|19734|244| -|Vine Dryad|Mercadian Masques|R|19735|284| -|Vernal Equinox|Mercadian Masques|R|19736|283| -|Food Chain|Mercadian Masques|R|19737|246| -|Sacred Prey|Mercadian Masques|C|19738|268| -|Collective Unconscious|Mercadian Masques|R|19739|236| -|Foster|Mercadian Masques|R|19740|247| -|Bifurcate|Mercadian Masques|R|19741|230| -|Game Preserve|Mercadian Masques|R|19742|248| -|Venomous Breath|Mercadian Masques|U|19744|281| -|Briar Patch|Mercadian Masques|U|19745|232| -|Crumbling Sanctuary|Mercadian Masques|R|19746|292| -|Worry Beads|Mercadian Masques|R|19747|315| -|Magistrate's Scepter|Mercadian Masques|R|19748|304| -|Bargaining Table|Mercadian Masques|R|19749|288| -|Crooked Scales|Mercadian Masques|R|19752|291| -|General's Regalia|Mercadian Masques|R|19753|295| -|Mercadian Lift|Mercadian Masques|R|19754|306| -|Horn of Plenty|Mercadian Masques|R|19755|298| -|Kyren Archive|Mercadian Masques|R|19756|302| -|Rishadan Pawnshop|Mercadian Masques|R|19757|311| -|Distorting Lens|Mercadian Masques|R|19758|293| -|Kyren Toy|Mercadian Masques|R|19759|303| -|Assembly Hall|Mercadian Masques|R|19761|286| -|Tooth of Ramos|Mercadian Masques|R|19762|313| -|Horn of Ramos|Mercadian Masques|R|19763|299| -|Skull of Ramos|Mercadian Masques|R|19764|312| -|Eye of Ramos|Mercadian Masques|R|19765|294| -|Heart of Ramos|Mercadian Masques|R|19766|296| -|Rishadan Port|Mercadian Masques|R|19767|324| -|Henge of Ramos|Mercadian Masques|U|19768|318| -|Tower of the Magistrate|Mercadian Masques|R|19769|330| -|Henge Guardian|Mercadian Masques|U|19770|297| -|Dust Bowl|Mercadian Masques|R|19772|316| -|Wishmonger|Mercadian Masques|U|19776|57| -|Charmed Griffin|Mercadian Masques|U|19777|7| -|Ignoble Soldier|Mercadian Masques|U|19778|22| -|Cho-Arrim Legate|Mercadian Masques|U|19779|10| -|Steadfast Guard|Mercadian Masques|C|19780|50| -|Ballista Squad|Mercadian Masques|U|19781|5| -|Ramosian Captain|Mercadian Masques|U|19782|35| -|Fountain Watch|Mercadian Masques|R|19784|19| -|Noble Purpose|Mercadian Masques|U|19786|32| -|Honor the Fallen|Mercadian Masques|R|19787|21| -|Arrest|Mercadian Masques|U|19789|4| -|Righteous Indignation|Mercadian Masques|U|19793|46| -|Diplomatic Escort|Mercadian Masques|U|19794|74| -|Sailmonger|Mercadian Masques|U|19796|95| -|Indentured Djinn|Mercadian Masques|U|19797|85| -|Chambered Nautilus|Mercadian Masques|U|19798|64| -|Saprazzan Legate|Mercadian Masques|U|19799|100| -|Chameleon Spirit|Mercadian Masques|U|19800|65| -|Rishadan Airship|Mercadian Masques|C|19802|91| -|Glowing Anemone|Mercadian Masques|U|19803|81| -|Coastal Piracy|Mercadian Masques|U|19805|68| -|Energy Flux|Mercadian Masques|U|19806|78| -|Soothsaying|Mercadian Masques|U|19807|104| -|War Tax|Mercadian Masques|U|19809|113| -|Rishadan Footpad|Mercadian Masques|U|19810|94| -|Thwart|Mercadian Masques|U|19811|108| -|False Demise|Mercadian Masques|U|19812|80| -|High Seas|Mercadian Masques|U|19814|83| -|Cackling Witch|Mercadian Masques|U|19815|119| -|Scandalmonger|Mercadian Masques|U|19816|158| -|Enslaved Horror|Mercadian Masques|U|19817|134| -|Molting Harpy|Mercadian Masques|U|19818|148| -|Cateran Kidnappers|Mercadian Masques|U|19819|122| -|Deathgazer|Mercadian Masques|U|19820|130| -|Deepwood Legate|Mercadian Masques|U|19821|132| -|Quagmire Lamprey|Mercadian Masques|U|19822|154| -|Thrashing Wumpus|Mercadian Masques|R|19823|166| -|Primeval Shambler|Mercadian Masques|U|19824|152| -|Larceny|Mercadian Masques|U|19825|143| -|Forced March|Mercadian Masques|R|19826|136| -|Pretender's Claim|Mercadian Masques|U|19827|151| -|Rain of Tears|Mercadian Masques|U|19828|155| -|Unmask|Mercadian Masques|R|19829|168| -|Black Market|Mercadian Masques|R|19831|116| -|Cateran Summons|Mercadian Masques|U|19832|126| -|Intimidation|Mercadian Masques|U|19833|142| -|Putrefaction|Mercadian Masques|U|19834|153| -|Seismic Mage|Mercadian Masques|R|19835|211| -|Kris Mage|Mercadian Masques|C|19836|195| -|Warmonger|Mercadian Masques|U|19837|225| -|Hired Giant|Mercadian Masques|U|19838|194| -|Flailing Ogre|Mercadian Masques|U|19839|188| -|Rock Badger|Mercadian Masques|U|19840|210| -|Kyren Legate|Mercadian Masques|U|19841|197| -|Gerrard's Irregulars|Mercadian Masques|C|19842|192| -|Ogre Taskmaster|Mercadian Masques|U|19844|206| -|Lava Runner|Mercadian Masques|R|19845|200| -|Kyren Negotiations|Mercadian Masques|U|19846|198| -|Close Quarters|Mercadian Masques|U|19847|184| -|Furious Assault|Mercadian Masques|C|19848|191| -|Sustenance|Mercadian Masques|U|19849|278| -|Mercadia's Downfall|Mercadian Masques|U|19850|205| -|Warpath|Mercadian Masques|U|19851|226| -|Word of Blasting|Mercadian Masques|U|19852|228| -|Volcanic Wind|Mercadian Masques|U|19853|223| -|Magistrate's Veto|Mercadian Masques|U|19854|204| -|Dawnstrider|Mercadian Masques|R|19855|237| -|Squallmonger|Mercadian Masques|U|19856|276| -|Hunted Wumpus|Mercadian Masques|U|19857|253| -|Boa Constrictor|Mercadian Masques|U|19859|231| -|Lumbering Satyr|Mercadian Masques|U|19860|257| -|Arms Dealer|Mercadian Masques|U|19861|172| -|Saber Ants|Mercadian Masques|U|19862|267| -|Groundskeeper|Mercadian Masques|U|19863|250| -|Rushwood Legate|Mercadian Masques|U|19864|266| -|Caustic Wasps|Mercadian Masques|U|19865|234| -|Deepwood Tantiv|Mercadian Masques|U|19866|241| -|Ley Line|Mercadian Masques|U|19867|256| -|Stamina|Mercadian Masques|U|19868|277| -|Rushwood Elemental|Mercadian Masques|R|19869|264| -|Spidersilk Armor|Mercadian Masques|C|19870|273| -|Spontaneous Generation|Mercadian Masques|R|19871|274| -|Clear the Land|Mercadian Masques|R|19873|235| -|Natural Affinity|Mercadian Masques|R|19875|260| -|Snake Pit|Mercadian Masques|U|19876|271| -|Toymaker|Mercadian Masques|U|19877|314| -|Monkey Cage|Mercadian Masques|R|19878|307| -|Crenellated Wall|Mercadian Masques|U|19880|290| -|Puffer Extract|Mercadian Masques|U|19881|310| -|Iron Lance|Mercadian Masques|U|19882|300| -|Barbed Wire|Mercadian Masques|U|19883|287| -|Jeweled Torque|Mercadian Masques|U|19884|301| -|Credit Voucher|Mercadian Masques|U|19885|289| -|Panacea|Mercadian Masques|U|19886|308| -|Power Matrix|Mercadian Masques|R|19888|309| -|High Market|Mercadian Masques|R|19890|320| -|Saprazzan Cove|Mercadian Masques|U|19891|327| -|Subterranean Hangar|Mercadian Masques|U|19892|329| -|Fountain of Cho|Mercadian Masques|U|19893|317| -|Mercadian Bazaar|Mercadian Masques|U|19894|321| -|Rushwood Grove|Mercadian Masques|U|19895|325| -|Jhovall Rider|Mercadian Masques|U|20172|26| -|Story Circle|Mercadian Masques|U|20173|51| -|Lost Soul|Classic Sixth Edition|C|20178|142| -|Kjeldoran Dead|Classic Sixth Edition|C|20179|140| -|Thunder Dragon|Starter 1999|R|20180|119| -|Thorn Elemental|Starter 1999|R|20181|147| -|Denizen of the Deep|Starter 1999|R|20182|35| -|Dakmor Sorceress|Starter 1999|R|20183|74| -|Champion Lancer|Starter 1999|R|20184|11| -|Goblin General|Starter 1999|U|20185|101| -|Dakmor Lancer|Starter 1999|R|20187|71| -|Vizzerdrix|Starter 1999|R|20188|59| -|Devastation|Starter 1999|R|20191|94| -|Fire Tempest|Starter 1999|R|20192|97| -|Relentless Assault|Starter 1999|R|20193|115| -|Last Chance|Starter 1999|R|20194|110| -|Goblin Glider|Starter 1999|U|20195|102| -|Goblin Commando|Starter 1999|U|20196|100| -|Hulking Ogre|Starter 1999|U|20197|108| -|Fire Elemental|Starter 1999|U|20198|96| -|Earth Elemental|Starter 1999|U|20199|95| -|Spitting Earth|Starter 1999|U|20200|117| -|Cinder Storm|Starter 1999|U|20201|93| -|Goblin Lore|Starter 1999|U|20202|104| -|Jagged Lightning|Starter 1999|U|20203|109| -|Lava Axe|Starter 1999|C|20205|111| -|Volcanic Hammer|Starter 1999|C|20206|123| -|Tremor|Starter 1999|C|20207|121| -|Stone Rain|Starter 1999|C|20208|118| -|Scorching Spear|Starter 1999|C|20209|116| -|Raging Goblin|Starter 1999|C|20210|114| -|Goblin Mountaineer|Starter 1999|C|20211|105| -|Hulking Goblin|Starter 1999|C|20212|107| -|Goblin Chariot|Starter 1999|C|20213|99| -|Goblin Cavaliers|Starter 1999|C|20214|98| -|Goblin Settler|Starter 1999|U|20216|106| -|Sylvan Yeti|Starter 1999|R|20217|146| -|Sylvan Basilisk|Starter 1999|R|20218|145| -|Whirlwind|Starter 1999|R|20219|150| -|Squall|Starter 1999|C|20220|143| -|Alluring Scent|Starter 1999|R|20221|124| -|Nature's Cloak|Starter 1999|R|20222|135| -|Pride of Lions|Starter 1999|U|20223|139| -|Wood Elves|Starter 1999|U|20224|153| -|Lone Wolf|Starter 1999|C|20225|130| -|Bull Hippo|Starter 1999|U|20226|126| -|Wild Ox|Starter 1999|U|20227|151| -|Untamed Wilds|Starter 1999|U|20228|148| -|Moon Sprite|Starter 1999|U|20229|133| -|Whiptail Wurm|Starter 1999|U|20230|149| -|Natural Spring|Starter 1999|U|20231|134| -|Grizzly Bears|Starter 1999|C|20233|129| -|Monstrous Growth|Starter 1999|C|20234|132| -|Nature's Lore|Starter 1999|C|20356|136| -|Renewing Touch|Starter 1999|U|20357|140| -|Grim Tutor|Starter 1999|R|20359|79| -|Ancient Craving|Starter 1999|R|20360|64| -|Wicked Pact|Starter 1999|R|20361|92| -|Dread Reaper|Starter 1999|R|20362|76| -|Shrieking Specter|Starter 1999|U|20363|89| -|Stream of Acid|Starter 1999|U|20364|91| -|Soul Feast|Starter 1999|U|20365|90| -|Coercion|Starter 1999|U|20366|69| -|Dakmor Plague|Starter 1999|U|20367|72| -|Dark Offering|Starter 1999|U|20368|75| -|Howling Fury|Starter 1999|U|20369|82| -|Ravenous Rats|Starter 1999|U|20370|86| -|Serpent Warrior|Starter 1999|C|20371|88| -|Gravedigger|Starter 1999|U|20372|78| -|Feral Shadow|Starter 1999|C|20373|77| -|Bog Wraith|Starter 1999|U|20374|67| -|Muck Rats|Starter 1999|C|20375|84| -|Bog Imp|Starter 1999|C|20376|65| -|Raise Dead|Starter 1999|C|20377|85| -|Mind Rot|Starter 1999|C|20378|83| -|Hand of Death|Starter 1999|C|20379|80| -|Dakmor Ghoul|Starter 1999|U|20380|70| -|Chorus of Woe|Starter 1999|C|20381|68| -|Counterspell|Starter 1999|U|20382|34| -|Dakmor Scorpion|Starter 1999|C|20383|73| -|Bog Raiders|Starter 1999|C|20384|66| -|Hollow Dogs|Starter 1999|C|20385|81| -|Gerrard's Wisdom|Starter 1999|R|20386|18| -|Armageddon|Starter 1999|R|20387|6| -|Blinding Light|Starter 1999|R|20388|8| -|Loyal Sentry|Starter 1999|R|20390|20| -|Angel of Light|Starter 1999|U|20391|1| -|Angel of Mercy|Starter 1999|U|20392|2| -|Vengeance|Starter 1999|U|20393|29| -|Royal Trooper|Starter 1999|U|20394|25| -|Devout Monk|Starter 1999|C|20395|14| -|Border Guard|Starter 1999|C|20396|9| -|Knight Errant|Starter 1999|C|20397|19| -|Foot Soldiers|Starter 1999|C|20398|17| -|Steadfastness|Starter 1999|C|20399|27| -|Angelic Blessing|Starter 1999|C|20400|3| -|Charging Paladin|Starter 1999|U|20402|12| -|Veteran Cavalier|Starter 1999|U|20403|30| -|Gush|Mercadian Masques|C|20404|82| -|Ramosian Rally|Mercadian Masques|C|20409|38| -|Muzzle|Mercadian Masques|C|20410|30| -|Cho-Manno, Revolutionary|Mercadian Masques|R|20411|11| -|Rappelling Scouts|Mercadian Masques|R|20412|41| -|Quiet Speculation|Judgment|U|20431|49| -|Hoodwink|Mercadian Masques|C|20454|84| -|Charisma|Mercadian Masques|R|20456|66| -|Deliver|Invasion|U|20573|292| -|Deliver|Invasion|U|20574|292| -|Malice|Invasion|U|20575|293| -|Malice|Invasion|U|20576|293| -|Suffering|Invasion|U|20577|294| -|Suffering|Invasion|U|20578|294| -|Battery|Invasion|U|20579|295| -|Battery|Invasion|U|20580|295| -|Wane|Invasion|U|20581|296| -|Wane|Invasion|U|20582|296| -|Uphill Battle|Mercadian Masques|U|20786|222| -|Pangosaur|Mercadian Masques|R|20788|261| -|Balthor the Defiled|Judgment|R|20842|61| -|Mercadian Atlas|Mercadian Masques|R|20844|305| -|Giant Caterpillar|Mercadian Masques|C|20847|249| -|Ramosian Commander|Mercadian Masques|U|20848|36| -|Plains|Mercadian Masques|L|20880|331| -|Plains|Mercadian Masques|L|20881|332| -|Plains|Mercadian Masques|L|20882|333| -|Plains|Mercadian Masques|L|20883|334| -|Island|Mercadian Masques|L|20884|335| -|Island|Mercadian Masques|L|20885|336| -|Island|Mercadian Masques|L|20886|337| -|Island|Mercadian Masques|L|20887|338| -|Swamp|Mercadian Masques|L|20888|339| -|Swamp|Mercadian Masques|L|20889|340| -|Swamp|Mercadian Masques|L|20890|341| -|Swamp|Mercadian Masques|L|20891|342| -|Mountain|Mercadian Masques|L|20892|343| -|Mountain|Mercadian Masques|L|20893|344| -|Mountain|Mercadian Masques|L|20894|345| -|Mountain|Mercadian Masques|L|20895|346| -|Forest|Mercadian Masques|L|20896|347| -|Forest|Mercadian Masques|L|20897|348| -|Forest|Mercadian Masques|L|20898|349| -|Forest|Mercadian Masques|L|20899|350| -|Abyssal Horror|Starter 1999|R|21019|63| -|Volcanic Dragon|Starter 1999|R|21020|122| -|Eager Cadet|Starter 1999|C|21021|15| -|Breath of Life|Starter 1999|U|21022|10| -|Righteous Charge|Starter 1999|U|21023|22| -|Bargain|Starter 1999|U|21024|7| -|Coral Eel|Starter 1999|C|21025|33| -|Giant Octopus|Starter 1999|C|21027|39| -|Storm Crow|Starter 1999|C|21028|53| -|Wind Drake|Starter 1999|C|21029|61| -|Snapping Drake|Starter 1999|C|21030|52| -|Sea Eagle|Starter 1999|C|21031|50| -|Touch of Brilliance|Starter 1999|C|21033|57| -|Time Ebb|Starter 1999|C|21034|55| -|Eye Spy|Starter 1999|U|21035|38| -|Extinguish|Starter 1999|C|21036|37| -|Remove Soul|Starter 1999|C|21037|49| -|Man-o'-War|Starter 1999|U|21038|41| -|Phantom Warrior|Starter 1999|R|21039|44| -|Water Elemental|Starter 1999|U|21040|60| -|Air Elemental|Starter 1999|U|21041|32| -|Owl Familiar|Starter 1999|U|21042|43| -|Ingenious Thief|Starter 1999|C|21043|40| -|Exhaustion|Starter 1999|U|21044|36| -|Undo|Starter 1999|U|21045|58| -|Relearn|Starter 1999|U|21046|48| -|Tidings|Starter 1999|U|21047|54| -|Time Warp|Starter 1999|R|21048|56| -|Piracy|Starter 1999|R|21049|45| -|Psychic Transfer|Starter 1999|R|21050|46| -|Willow Elf|Starter 1999|C|21051|152| -|Norwood Ranger|Starter 1999|C|21052|138| -|Lynx|Starter 1999|U|21053|131| -|Norwood Archers|Starter 1999|C|21054|137| -|Durkwood Boars|Starter 1999|C|21055|127| -|Royal Falcon|Starter 1999|C|21056|24| -|Devoted Hero|Starter 1999|C|21057|13| -|Wild Griffin|Starter 1999|C|21058|31| -|Venerable Monk|Starter 1999|C|21059|28| -|Path of Peace|Starter 1999|C|21060|21| -|Sacred Nectar|Starter 1999|C|21061|26| -|Ardent Militia|Starter 1999|U|21062|5| -|False Peace|Starter 1999|U|21063|16| -|Righteous Fury|Starter 1999|R|21064|23| -|Mons's Goblin Raiders|Starter 1999|R|21065|112| -|Goblin Hero|Starter 1999|R|21066|103| -|Sleight of Hand|Starter 1999|C|21068|51| -|Ransack|Starter 1999|R|21069|47| -|Ogre Warrior|Starter 1999|C|21070|113| -|Southern Elephant|Starter 1999|C|21071|142| -|Silverback Ape|Starter 1999|U|21072|141| -|Gorilla Warrior|Starter 1999|C|21073|128| -|Wind Sail|Starter 1999|U|21076|62| -|Barbtooth Wurm|Starter 1999|C|21077|125| -|Summer Bloom|Starter 1999|R|21078|144| -|Merfolk of the Pearl Trident|Starter 1999|C|21080|42| -|Scathe Zombies|Starter 1999|C|21093|87| -|Maniacal Rage|Battle Royale Box Set|C|21097|| -|Village Elder|Battle Royale Box Set|C|21098|| -|Broken Fall|Battle Royale Box Set|C|21099|| -|Tranquility|Battle Royale Box Set|C|21100|| -|Symbiosis|Battle Royale Box Set|C|21101|| -|Arc Lightning|Battle Royale Box Set|C|21102|| -|Shower of Sparks|Battle Royale Box Set|C|21104|| -|Scryb Sprites|Battle Royale Box Set|C|21105|| -|Skyshroud Elite|Battle Royale Box Set|U|21106|| -|Llanowar Elves|Battle Royale Box Set|C|21107|| -|Seeker of Skybreak|Battle Royale Box Set|C|21108|| -|River Boa|Battle Royale Box Set|U|21109|| -|Pincher Beetles|Battle Royale Box Set|C|21110|| -|Uthden Troll|Battle Royale Box Set|U|21112|| -|Spike Feeder|Battle Royale Box Set|U|21113|| -|Trumpeting Armodon|Battle Royale Box Set|U|21114|| -|Wildfire Emissary|Battle Royale Box Set|U|21115|| -|Plated Rootwalla|Battle Royale Box Set|C|21116|| -|Mogg Hollows|Battle Royale Box Set|U|21117|| -|Mountain|Battle Royale Box Set|L|21118|| -|Forest|Battle Royale Box Set|L|21119|| -|Armored Pegasus|Battle Royale Box Set|C|21120|| -|Air Elemental|Battle Royale Box Set|U|21121|| -|Azure Drake|Battle Royale Box Set|U|21122|| -|Disruptive Student|Battle Royale Box Set|C|21123|| -|Wind Drake|Battle Royale Box Set|C|21124|| -|Manta Riders|Battle Royale Box Set|C|21125|| -|Mana Leak|Battle Royale Box Set|C|21126|| -|Counterspell|Battle Royale Box Set|C|21127|| -|Opportunity|Battle Royale Box Set|U|21128|| -|Prodigal Sorcerer|Battle Royale Box Set|C|21129|| -|Healing Salve|Battle Royale Box Set|C|21130|| -|Infantry Veteran|Battle Royale Box Set|C|21131|| -|Soul Warden|Battle Royale Box Set|C|21132|| -|Disenchant|Battle Royale Box Set|C|21133|| -|Songstitcher|Battle Royale Box Set|U|21134|| -|Windfall|Battle Royale Box Set|U|21135|| -|Curfew|Battle Royale Box Set|C|21137|| -|Man-o'-War|Battle Royale Box Set|C|21138|| -|Flood|Battle Royale Box Set|C|21139|| -|Control Magic|Battle Royale Box Set|U|21141|| -|Ray of Command|Battle Royale Box Set|C|21142|| -|Catastrophe|Battle Royale Box Set|R|21143|| -|Island|Battle Royale Box Set|L|21144|| -|Plains|Battle Royale Box Set|L|21145|| -|Thalakos Lowlands|Battle Royale Box Set|U|21146|| -|Wall of Heat|Battle Royale Box Set|C|21147|| -|Subversion|Battle Royale Box Set|R|21148|| -|Pestilence|Battle Royale Box Set|U|21149|| -|Sadistic Glee|Battle Royale Box Set|C|21150|| -|Terror|Battle Royale Box Set|C|21151|| -|Syphon Soul|Battle Royale Box Set|C|21152|| -|Exhume|Battle Royale Box Set|C|21153|| -|Dark Ritual|Battle Royale Box Set|C|21154|| -|Living Death|Battle Royale Box Set|R|21155|| -|Unnerve|Battle Royale Box Set|C|21156|| -|Weakness|Battle Royale Box Set|C|21157|| -|Rolling Thunder|Battle Royale Box Set|C|21158|| -|Heat Ray|Battle Royale Box Set|C|21159|| -|Reanimate|Battle Royale Box Set|U|21160|| -|Sewer Rats|Battle Royale Box Set|C|21161|| -|Raging Goblin|Battle Royale Box Set|C|21162|| -|Fire Ants|Battle Royale Box Set|U|21163|| -|Phyrexian Ghoul|Battle Royale Box Set|C|21164|| -|Crazed Skirge|Battle Royale Box Set|U|21165|| -|Lightning Elemental|Battle Royale Box Set|C|21166|| -|Abyssal Specter|Battle Royale Box Set|U|21167|| -|Cackling Fiend|Battle Royale Box Set|C|21168|| -|Sengir Vampire|Battle Royale Box Set|U|21169|| -|Cinder Marsh|Battle Royale Box Set|U|21170|| -|Swamp|Battle Royale Box Set|L|21171|| -|Swords to Plowshares|Battle Royale Box Set|U|21172|| -|Scaled Wurm|Battle Royale Box Set|C|21174|| -|Fertile Ground|Battle Royale Box Set|C|21175|| -|Master Decoy|Battle Royale Box Set|C|21176|| -|Angelic Page|Battle Royale Box Set|C|21177|| -|Vec Townships|Battle Royale Box Set|U|21178|| -|Spike Weaver|Battle Royale Box Set|R|21179|| -|Wrath of God|Battle Royale Box Set|R|21180|| -|Spike Colony|Battle Royale Box Set|C|21181|| -|Argothian Elder|Battle Royale Box Set|U|21182|| -|Seasoned Marshal|Battle Royale Box Set|U|21183|| -|Sanctum Custodian|Battle Royale Box Set|C|21184|| -|Sanctum Guardian|Battle Royale Box Set|U|21185|| -|Advance Scout|Battle Royale Box Set|C|21186|| -|Soltari Foot Soldier|Battle Royale Box Set|C|21187|| -|Elvish Lyrist|Battle Royale Box Set|U|21188|| -|Sun Clasp|Battle Royale Box Set|C|21190|| -|Pacifism|Battle Royale Box Set|C|21191|| -|Fecundity|Battle Royale Box Set|U|21192|| -|Sandstorm|Battle Royale Box Set|C|21193|| -|Giant Growth|Battle Royale Box Set|C|21194|| -|Hurricane|Battle Royale Box Set|U|21195|| -|Dirtcowl Wurm|Battle Royale Box Set|R|21196|| -|Land Tax|Battle Royale Box Set|U|21197|| -|Spike Worker|Battle Royale Box Set|C|21198|| -|Slippery Karst|Battle Royale Box Set|C|21199|| -|Remote Isle|Battle Royale Box Set|C|21200|| -|Polluted Mire|Battle Royale Box Set|C|21202|| -|Drifting Meadow|Battle Royale Box Set|C|21203|| -|Steam Blast|Battle Royale Box Set|U|21204|| -|Gorilla Warrior|Battle Royale Box Set|C|21205|| -|Defiant Falcon|Nemesis|C|21251|6| -|Angelfire Crusader|Apocalypse|C|21253|1| -|Lawbringer|Nemesis|C|21255|10| -|Lightbringer|Nemesis|C|21256|11| -|Lashknife|Nemesis|C|21257|9| -|Angelic Favor|Nemesis|U|21258|1| -|Seal of Cleansing|Nemesis|C|21259|18| -|Fanatical Devotion|Nemesis|C|21260|8| -|Noble Stand|Nemesis|U|21262|14| -|Avenger en-Dal|Nemesis|R|21263|2| -|Chieftain en-Dal|Nemesis|U|21264|4| -|Voice of Truth|Nemesis|U|21265|25| -|Defiant Vanguard|Nemesis|U|21266|7| -|Topple|Nemesis|C|21268|24| -|Sivvi's Ruse|Nemesis|U|21270|21| -|Lin Sivvi, Defiant Hero|Nemesis|R|21271|12| -|Blinding Angel|Nemesis|R|21273|3| -|Aven Fogbringer|Judgment|C|21275|34| -|Escape Routes|Planeshift|C|21276|25| -|Spiritual Asylum|Nemesis|R|21277|23| -|Trickster Mage|Nemesis|C|21278|49| -|Wandering Eye|Nemesis|C|21279|50| -|Cloudskate|Nemesis|C|21280|29| -|Jolting Merfolk|Nemesis|U|21281|34| -|Sneaky Homunculus|Nemesis|C|21282|44| -|Sliptide Serpent|Nemesis|R|21283|43| -|Daze|Nemesis|C|21284|30| -|Accumulated Knowledge|Nemesis|C|21285|26| -|Infiltrate|Nemesis|C|21286|33| -|Seal of Removal|Nemesis|C|21287|42| -|Mossdog|Nemesis|C|21290|106| -|Tears of Rage|Darksteel|U|21293|70| -|Submerge|Nemesis|U|21296|48| -|Seahunter|Nemesis|R|21297|41| -|Stronghold Biologist|Nemesis|U|21298|45| -|Bribery|Mercadian Masques|R|21300|62| -|Pale Moon|Nemesis|R|21302|36| -|Dominate|Nemesis|U|21303|31| -|Rising Waters|Nemesis|R|21304|38| -|Sunken Hope|Planeshift|R|21305|37| -|Undertaker|Mercadian Masques|C|21306|167| -|Rathi Intimidator|Nemesis|C|21307|69| -|Belbe's Percher|Nemesis|C|21308|53| -|Spiteful Bully|Nemesis|C|21309|72| -|Spineless Thug|Nemesis|C|21310|71| -|Rathi Fiend|Nemesis|U|21311|68| -|Mind Swords|Nemesis|C|21313|60| -|Parallax Dementia|Nemesis|C|21315|62| -|Seal of Doom|Nemesis|C|21316|70| -|Vicious Hunger|Nemesis|C|21317|74| -|Divining Witch|Nemesis|R|21318|57| -|Carrion Wall|Nemesis|U|21319|54| -|Battlefield Percher|Nemesis|U|21320|52| -|Dark Triumph|Nemesis|U|21322|55| -|Keldon Twilight|Planeshift|R|21323|112| -|Massacre|Nemesis|U|21324|58| -|Volrath the Fallen|Nemesis|R|21328|75| -|Murderous Betrayal|Nemesis|R|21329|61| -|Death Pit Offering|Nemesis|R|21330|56| -|Mind Slash|Nemesis|U|21331|59| -|Blaster Mage|Mercadian Masques|C|21332|175| -|Laccolith Grunt|Nemesis|C|21333|87| -|Flowstone Crusher|Nemesis|C|21334|81| -|Laccolith Whelp|Nemesis|C|21335|91| -|Flowstone Wall|Nemesis|C|21336|86| -|Downhill Charge|Nemesis|C|21338|79| -|Laccolith Rig|Nemesis|C|21339|88| -|Seal of Fire|Nemesis|C|21340|98| -|Flowstone Strike|Nemesis|C|21341|84| -|Arc Mage|Nemesis|U|21343|77| -|Laccolith Warrior|Nemesis|U|21344|90| -|Mogg Alarm|Nemesis|U|21345|93| -|Rupture|Nemesis|U|21347|97| -|Flowstone Surge|Nemesis|U|21348|85| -|Mogg Salvage|Nemesis|U|21349|94| -|Moggcatcher|Nemesis|R|21350|96| -|Flowstone Overseer|Nemesis|R|21351|82| -|Shrieking Mogg|Nemesis|R|21353|99| -|Flowstone Slide|Nemesis|R|21355|83| -|Mana Cache|Nemesis|R|21356|92| -|Stronghold Gambit|Nemesis|R|21357|100| -|Stampede Driver|Nemesis|U|21359|122| -|Skyshroud Ridgeback|Nemesis|C|21360|120| -|Skyshroud Sentinel|Nemesis|C|21362|121| -|Blastoderm|Nemesis|C|21363|102| -|Coiling Woodworm|Nemesis|U|21364|103| -|Treetop Bracers|Nemesis|C|21365|123| -|Seal of Strength|Nemesis|C|21366|115| -|Fog Patch|Nemesis|C|21368|104| -|Harvest Mage|Nemesis|C|21370|105| -|Skyshroud Cutter|Nemesis|C|21372|118| -|Nesting Wurm|Nemesis|U|21373|107| -|Woodripper|Nemesis|U|21374|125| -|Pack Hunt|Nemesis|R|21375|109| -|Wild Mammoth|Nemesis|U|21376|124| -|Animate Land|Nemesis|U|21377|101| -|Refreshing Rain|Nemesis|U|21378|110| -|Skyshroud Poacher|Nemesis|R|21379|119| -|Saproling Burst|Nemesis|R|21381|113| -|Elephant Resurgence|Prophecy|R|21382|113| -|Saproling Cluster|Nemesis|R|21385|114| -|Rejuvenation Chamber|Nemesis|U|21386|137| -|Rusting Golem|Nemesis|U|21388|138| -|Belbe's Armor|Nemesis|U|21390|126| -|Flowstone Armor|Nemesis|U|21391|131| -|Eye of Yawgmoth|Nemesis|R|21392|129| -|Terrain Generator|Nemesis|U|21394|143| -|Complex Automaton|Nemesis|R|21395|128| -|Rackling|Nemesis|U|21396|136| -|Viseling|Nemesis|U|21397|140| -|Flowstone Thopter|Nemesis|U|21398|132| -|Tangle Wire|Nemesis|R|21399|139| -|Predator, Flagship|Nemesis|R|21400|135| -|Belbe's Portal|Nemesis|R|21401|127| -|Rath's Edge|Nemesis|R|21402|142| -|Kor Haven|Nemesis|R|21403|141| -|Saprazzan Outrigger|Mercadian Masques|C|21773|101| -|Trained Orgg|Starter 1999|R|21785|120| -|Plains|Starter 1999|L|21789|166| -|Plains|Starter 1999|L|21790|169| -|Plains|Starter 1999|L|21791|168| -|Plains|Starter 1999|L|21792|167| -|Island|Starter 1999|L|21793|158| -|Island|Starter 1999|L|21794|159| -|Island|Starter 1999|L|21795|161| -|Swamp|Starter 1999|L|21796|172| -|Swamp|Starter 1999|L|21797|170| -|Swamp|Starter 1999|L|21798|173| -|Swamp|Starter 1999|L|21799|171| -|Island|Starter 1999|L|21800|160| -|Mountain|Starter 1999|L|21801|162| -|Mountain|Starter 1999|L|21802|165| -|Mountain|Starter 1999|L|21803|164| -|Mountain|Starter 1999|L|21804|163| -|Forest|Starter 1999|L|21805|156| -|Forest|Starter 1999|L|21806|157| -|Forest|Starter 1999|L|21807|154| -|Forest|Starter 1999|L|21808|155| -|Rock Jockey|Scourge|C|22011|101| -|Slingshot Goblin|Planeshift|C|22025|72| -|Defender en-Vec|Nemesis|C|22026|5| -|Netter en-Dal|Nemesis|C|22027|13| -|Parallax Wave|Nemesis|R|22028|17| -|Phyrexian Prowler|Nemesis|U|22029|65| -|Oracle's Attendants|Nemesis|R|22030|16| -|Parallax Nexus|Nemesis|R|22031|63| -|Off Balance|Nemesis|C|22032|15| -|Stronghold Machinist|Nemesis|U|22033|46| -|Parallax Tide|Nemesis|R|22035|37| -|Lure|Mercadian Masques|U|22053|258| -|Bola Warrior|Nemesis|C|22060|78| -|Overlaid Terrain|Nemesis|R|22061|108| -|Flint Golem|Nemesis|U|22284|130| -|Trap Runner|Mercadian Masques|U|22288|55| -|Ζther Barrier|Nemesis|R|22289|27| -|Flame Rift|Nemesis|C|22290|80| -|Rootwater Commando|Nemesis|C|22292|39| -|Oraxid|Nemesis|C|22293|35| -|Ancient Hydra|Nemesis|U|22296|76| -|Laccolith Titan|Nemesis|R|22297|89| -|Multani's Harmony|Planeshift|U|22298|84| -|Mogg Toady|Nemesis|C|22299|95| -|Parallax Inhibitor|Nemesis|R|22301|134| -|Sivvi's Valor|Nemesis|R|22302|22| -|Reverent Silence|Nemesis|C|22316|111| -|Scouting Trek|Invasion|U|22317|210| -|Kill Switch|Nemesis|R|22318|133| -|Silkenfist Fighter|Nemesis|C|22320|19| -|Mountain|Battle Royale Box Set|L|22334|| -|Mountain|Battle Royale Box Set|L|22335|| -|Mountain|Battle Royale Box Set|L|22336|| -|Silkenfist Order|Nemesis|U|22338|20| -|Mountain|Battle Royale Box Set|L|22339|| -|Mountain|Battle Royale Box Set|L|22340|| -|Mountain|Battle Royale Box Set|L|22342|| -|Mountain|Battle Royale Box Set|L|22343|| -|Mountain|Battle Royale Box Set|L|22344|| -|Forest|Battle Royale Box Set|L|22347|| -|Forest|Battle Royale Box Set|L|22348|| -|Forest|Battle Royale Box Set|L|22349|| -|Forest|Battle Royale Box Set|L|22351|| -|Forest|Battle Royale Box Set|L|22352|| -|Forest|Battle Royale Box Set|L|22353|| -|Forest|Battle Royale Box Set|L|22354|| -|Forest|Battle Royale Box Set|L|22355|| -|Plains|Battle Royale Box Set|L|22356|| -|Plains|Battle Royale Box Set|L|22357|| -|Plains|Battle Royale Box Set|L|22358|| -|Plains|Battle Royale Box Set|L|22359|| -|Plains|Battle Royale Box Set|L|22360|| -|Plains|Battle Royale Box Set|L|22361|| -|Plains|Battle Royale Box Set|L|22362|| -|Plains|Battle Royale Box Set|L|22363|| -|Island|Battle Royale Box Set|L|22364|| -|Island|Battle Royale Box Set|L|22365|| -|Island|Battle Royale Box Set|L|22366|| -|Island|Battle Royale Box Set|L|22367|| -|Swamp|Battle Royale Box Set|L|22368|| -|Swamp|Battle Royale Box Set|L|22369|| -|Swamp|Battle Royale Box Set|L|22370|| -|Stronghold Discipline|Nemesis|C|22374|73| -|Air Bladder|Nemesis|C|22377|28| -|Phyrexian Driver|Nemesis|C|22379|64| -|Stronghold Zeppelin|Nemesis|U|22880|47| -|Ensnare|Nemesis|U|22881|32| -|Rootwater Thief|Nemesis|R|22889|40| -|Rathi Assassin|Nemesis|R|22890|67| -|Skyshroud Claim|Nemesis|C|22891|117| -|Skyshroud Behemoth|Nemesis|R|22892|116| -|Deepwood Elder|Mercadian Masques|R|22895|240| -|Ascendant Evincar|Nemesis|R|22897|51| -|Sunscape Apprentice|Invasion|C|22928|41| -|Glimmering Angel|Invasion|C|22929|17| -|Viashino Grappler|Invasion|C|22930|179| -|Ardent Soldier|Invasion|C|22931|3| -|Benalish Lancer|Invasion|C|22932|7| -|Razorfoot Griffin|Invasion|C|22933|29| -|Crimson Acolyte|Invasion|C|22934|11| -|Obsidian Acolyte|Invasion|C|22935|22| -|Capashen Unicorn|Invasion|C|22936|10| -|Benalish Trapper|Invasion|C|22937|8| -|Strength of Unity|Invasion|C|22939|40| -|Holy Day|Invasion|C|22940|20| -|Reviving Dose|Invasion|C|22941|31| -|Shackles|Invasion|C|22942|37| -|Restrain|Invasion|C|22943|30| -|Prison Barricade|Invasion|C|22944|25| -|Orim's Touch|Invasion|C|22945|23| -|Dismantling Blow|Invasion|C|22946|14| -|Benalish Heralds|Invasion|U|22947|6| -|Benalish Emissary|Invasion|U|22948|5| -|Ruham Djinn|Invasion|U|22949|35| -|Spirit Weaver|Invasion|U|22950|39| -|Angel of Mercy|Invasion|U|22952|2| -|Liberate|Invasion|U|22953|21| -|Samite Ministration|Invasion|U|22954|36| -|Blinding Light|Invasion|U|22955|9| -|Death or Glory|Invasion|R|22956|13| -|Pledge of Loyalty|Invasion|U|22958|24| -|Teferi's Care|Invasion|U|22959|43| -|Alabaster Leech|Invasion|R|22960|1| -|Sunscape Master|Invasion|R|22961|42| -|Samite Elder|Planeshift|R|22962|14| -|Crusading Knight|Invasion|R|22963|12| -|Atalya, Samite Master|Invasion|R|22964|4| -|Reya Dawnbringer|Invasion|R|22965|33| -|Winnow|Invasion|R|22966|45| -|Global Ruin|Invasion|R|22967|18| -|Spirit of Resistance|Invasion|R|22968|38| -|Divine Presence|Invasion|R|22969|15| -|Fight or Flight|Invasion|R|22970|16| -|Rout|Invasion|R|22971|34| -|Stormscape Apprentice|Invasion|C|22972|75| -|Metathran Zombie|Invasion|C|22973|63| -|Tower Drake|Invasion|C|22974|82| -|Faerie Squadron|Invasion|C|22975|58| -|Vodalian Serpent|Invasion|C|22976|86| -|Tidal Visionary|Invasion|C|22977|80| -|Shoreline Raider|Invasion|C|22978|73| -|Dream Thrush|Invasion|C|22979|53| -|Hunting Drake|Planeshift|C|22980|27| -|Shimmering Wings|Invasion|C|22981|72| -|Worldly Counsel|Invasion|C|22982|89| -|Phantasmal Terrain|Invasion|C|22983|65| -|Barrin's Unmaking|Invasion|C|22984|46| -|Repulse|Invasion|C|22985|70| -|Exclude|Invasion|C|22986|56| -|Traveler's Cloak|Invasion|C|22987|83| -|Opt|Invasion|C|22988|64| -|Prohibit|Invasion|C|22989|67| -|Probe|Invasion|C|22990|66| -|Tolarian Emissary|Invasion|U|22991|81| -|Zanam Djinn|Invasion|U|22992|90| -|Vodalian Hypnotist|Invasion|U|22993|84| -|Rainbow Crow|Invasion|U|22994|69| -|Sky Weaver|Invasion|U|22996|74| -|Essence Leak|Invasion|U|22997|55| -|Fact or Fiction|Invasion|U|22998|57| -|Sway of Illusion|Invasion|U|22999|77| -|Disrupt|Invasion|U|23000|51| -|Collective Restraint|Invasion|R|23001|49| -|Manipulate Fate|Invasion|U|23003|60| -|Metathran Aerostat|Invasion|R|23004|61| -|Stormscape Master|Invasion|R|23005|76| -|Blind Seer|Invasion|R|23006|47| -|Empress Galina|Invasion|R|23007|54| -|Crystal Spray|Invasion|R|23008|50| -|Mana Maze|Invasion|R|23009|59| -|Sapphire Leech|Invasion|R|23010|71| -|Distorting Wake|Invasion|R|23011|52| -|Breaking Wave|Invasion|R|23012|48| -|Teferi's Response|Invasion|R|23015|78| -|Nightscape Apprentice|Invasion|C|23016|112| -|Firescreamer|Invasion|C|23017|106| -|Urborg Phantom|Invasion|C|23018|132| -|Duskwalker|Invasion|C|23019|104| -|Urborg Skeleton|Invasion|C|23020|134| -|Plague Spitter|Invasion|U|23021|119| -|Phyrexian Delver|Invasion|R|23022|115| -|Phyrexian Battleflies|Invasion|C|23023|114| -|Bog Initiate|Invasion|C|23024|95| -|Soul Burn|Invasion|C|23026|124| -|Scavenged Weaponry|Invasion|C|23028|123| -|Recover|Invasion|C|23029|122| -|Addle|Invasion|U|23030|91| -|Mourning|Invasion|C|23031|111| -|Exotic Curse|Invasion|C|23032|105| -|Hypnotic Cloud|Invasion|C|23033|109| -|Agonizing Demise|Invasion|C|23034|92| -|Urborg Shambler|Invasion|U|23035|133| -|Phyrexian Reaper|Invasion|C|23036|117| -|Goham Djinn|Invasion|U|23037|107| -|Urborg Emissary|Invasion|U|23038|131| -|Trench Wurm|Invasion|U|23039|127| -|Phyrexian Slayer|Invasion|C|23040|118| -|Hate Weaver|Invasion|U|23041|108| -|Annihilate|Invasion|U|23042|94| -|Shade's Form|Torment|C|23043|81| -|Cursed Flesh|Invasion|C|23044|98| -|Reckless Spite|Invasion|U|23045|121| -|Defiling Tears|Invasion|U|23046|99| -|Tsabo's Assassin|Invasion|R|23048|128| -|Nightscape Master|Invasion|R|23049|113| -|Devouring Strossus|Invasion|R|23050|101| -|Doomsday Specter|Planeshift|R|23051|103| -|Andradite Leech|Invasion|R|23052|93| -|Marauding Knight|Invasion|R|23053|110| -|Yawgmoth's Agenda|Invasion|R|23054|135| -|Desperate Research|Invasion|R|23055|100| -|Wild Research|Apocalypse|R|23056|72| -|Spreading Plague|Invasion|R|23057|125| -|Twilight's Call|Invasion|R|23058|130| -|Do or Die|Invasion|R|23059|102| -|Thunderscape Apprentice|Invasion|C|23060|174| -|Hooded Kavu|Invasion|C|23061|147| -|Rampant Elephant|Invasion|C|23062|28| -|Kavu Aggressor|Invasion|C|23063|148| -|Pouncing Kavu|Invasion|C|23064|158| -|Rogue Kavu|Invasion|C|23065|160| -|Scarred Puma|Invasion|C|23067|163| -|Slimy Kavu|Invasion|C|23068|170| -|Ancient Kavu|Invasion|C|23069|136| -|Overload|Invasion|C|23070|157| -|Turf Wound|Invasion|C|23071|177| -|Maniacal Rage|Invasion|C|23072|155| -|Stun|Invasion|C|23073|172| -|Crown of Flames|Invasion|C|23074|142| -|Zap|Invasion|C|23075|180| -|Tribal Flames|Invasion|C|23076|176| -|Scorching Lava|Invasion|C|23077|164| -|Savage Offensive|Invasion|C|23078|162| -|Kavu Runner|Invasion|U|23079|150| -|Skittish Kavu|Invasion|U|23080|168| -|Rage Weaver|Invasion|U|23081|159| -|Halam Djinn|Invasion|U|23082|146| -|Firebrand Ranger|Invasion|U|23083|143| -|Shivan Emissary|Invasion|U|23084|166| -|Chaotic Strike|Invasion|U|23085|140| -|Ghitu Fire|Invasion|R|23086|144| -|Urza's Rage|Invasion|R|23087|178| -|Lightning Dart|Invasion|U|23088|152| -|Collapsing Borders|Invasion|R|23089|141| -|Breath of Darigaaz|Invasion|U|23090|138| -|Shivan Harvest|Invasion|U|23091|167| -|Loafing Giant|Invasion|R|23092|153| -|Thunderscape Master|Invasion|R|23093|175| -|Callous Giant|Invasion|R|23094|139| -|Ruby Leech|Invasion|R|23095|161| -|Skizzik|Invasion|R|23096|169| -|Kavu Monarch|Invasion|R|23097|149| -|Obliterate|Invasion|R|23098|156| -|Bend or Break|Invasion|R|23099|137| -|Tectonic Instability|Invasion|R|23100|173| -|Mages' Contest|Invasion|R|23102|154| -|Thornscape Apprentice|Invasion|C|23104|215| -|Serpentine Kavu|Invasion|C|23105|211| -|Kavu Titan|Invasion|R|23106|194| -|Pincer Spider|Invasion|C|23107|201| -|Kavu Climber|Invasion|C|23109|192| -|Quirion Trailblazer|Invasion|C|23110|205| -|Nomadic Elf|Invasion|C|23111|200| -|Quirion Elves|Invasion|C|23112|203| -|Pygmy Kavu|Planeshift|C|23113|88| -|Fertile Ground|Invasion|C|23114|188| -|Tangle|Invasion|U|23115|213| -|Tranquility|Invasion|C|23116|217| -|Whip Silk|Invasion|C|23118|225| -|Wandering Stream|Invasion|C|23119|224| -|Explosive Growth|Invasion|C|23120|187| -|Vigorous Charge|Invasion|C|23121|222| -|Rooting Kavu|Invasion|U|23122|207| -|Llanowar Vanguard|Invasion|C|23123|197| -|Might Weaver|Invasion|U|23124|198| -|Kavu Chameleon|Invasion|U|23125|191| -|Sulam Djinn|Invasion|U|23126|212| -|Verduran Emissary|Invasion|U|23127|221| -|Treefolk Healer|Invasion|U|23128|218| -|Wallop|Invasion|U|23130|223| -|Harrow|Invasion|C|23131|189| -|Canopy Surge|Invasion|U|23134|184| -|Thicket Elemental|Invasion|R|23135|214| -|Thornscape Master|Invasion|R|23136|216| -|Verdeloth the Ancient|Invasion|R|23137|220| -|Molimo, Maro-Sorcerer|Invasion|R|23138|199| -|Blurred Mongoose|Invasion|R|23139|183| -|Jade Leech|Invasion|R|23140|190| -|Elfhame Sanctuary|Invasion|U|23142|185| -|Pulse of Llanowar|Invasion|U|23143|202| -|Kavu Lair|Invasion|R|23144|193| -|Restock|Invasion|R|23145|206| -|Bind|Invasion|R|23146|182| -|Noble Panther|Invasion|R|23147|257| -|Raging Kavu|Invasion|R|23148|262| -|Slinking Serpent|Invasion|U|23149|274| -|Riptide Crab|Invasion|U|23150|266| -|Vicious Kavu|Invasion|U|23151|284| -|Aura Shards|Invasion|U|23152|233| -|Plague Spores|Invasion|C|23153|260| -|Recoil|Invasion|C|23154|264| -|Absorb|Invasion|R|23155|226| -|Frenzied Tilling|Invasion|C|23156|247| -|Llanowar Knight|Invasion|C|23157|254| -|Galina's Knight|Invasion|C|23158|248| -|Vodalian Zombie|Invasion|C|23159|286| -|Shivan Zombie|Invasion|C|23160|271| -|Yavimaya Barbarian|Invasion|C|23161|290| -|Charging Troll|Invasion|U|23162|239| -|Horned Cheetah|Invasion|U|23163|251| -|Armadillo Cloak|Invasion|C|23164|229| -|Samite Archer|Invasion|U|23165|269| -|Teferi's Moat|Invasion|R|23167|279| -|Sleeper's Robe|Invasion|U|23168|273| -|Lobotomy|Invasion|U|23170|255| -|Backlash|Invasion|U|23171|234| -|Cinder Shade|Invasion|U|23172|240| -|Cauldron Dance|Invasion|U|23173|238| -|Yavimaya Kavu|Invasion|U|23174|291| -|Simoon|Invasion|U|23175|272| -|Hunting Kavu|Invasion|U|23176|252| -|Angelic Shield|Invasion|U|23177|228| -|Seer's Vision|Invasion|U|23178|270| -|Smoldering Tar|Invasion|U|23179|275| -|Fires of Yavimaya|Invasion|U|23180|246| -|Sterling Grove|Invasion|U|23181|278| -|Heroes' Reunion|Invasion|U|23183|250| -|Aura Mutation|Invasion|R|23184|232| -|Kangee, Aerie Keeper|Invasion|R|23186|253| -|Ordered Migration|Invasion|U|23187|258| -|Vile Consumption|Invasion|R|23188|285| -|Spinal Embrace|Invasion|R|23189|276| -|Undermine|Invasion|R|23190|282| -|Reckless Assault|Invasion|R|23191|263| -|Blazing Specter|Invasion|R|23192|236| -|Meteor Storm|Invasion|R|23193|256| -|Ζther Rift|Invasion|R|23194|227| -|Artifact Mutation|Invasion|R|23195|231| -|Reviving Vapors|Invasion|U|23196|265| -|Armored Guardian|Invasion|R|23197|230| -|Powerstone Minefield|Apocalypse|R|23198|115| -|Void|Invasion|R|23200|287| -|Pyre Zombie|Invasion|R|23201|261| -|Overabundance|Invasion|R|23202|259| -|Voracious Cobra|Invasion|U|23203|288| -|Sabertooth Nishoba|Invasion|R|23205|268| -|Dromar, the Banisher|Invasion|R|23206|244| -|Crosis, the Purger|Invasion|R|23207|242| -|Darigaaz, the Igniter|Invasion|R|23208|243| -|Rith, the Awakener|Invasion|R|23209|267| -|Treva, the Renewer|Invasion|R|23210|280| -|Wayfaring Giant|Invasion|U|23211|44| -|Temporal Distortion|Invasion|R|23212|79| -|Coalition Victory|Invasion|R|23216|241| -|Seashell Cameo|Invasion|U|23217|311| -|Drake-Skull Cameo|Invasion|U|23218|302| -|Bloodstone Cameo|Invasion|U|23219|298| -|Troll-Horn Cameo|Invasion|U|23220|316| -|Tigereye Cameo|Invasion|U|23221|314| -|Power Armor|Invasion|U|23222|309| -|Juntu Stakes|Invasion|R|23223|304| -|Alloy Golem|Invasion|U|23224|297| -|Sparring Golem|Invasion|U|23225|312| -|Phyrexian Altar|Invasion|R|23226|306| -|Urza's Filter|Invasion|R|23227|318| -|Tsabo's Web|Invasion|R|23228|317| -|Tek|Invasion|R|23229|313| -|Chromatic Sphere|Invasion|U|23230|299| -|Phyrexian Lens|Invasion|R|23231|307| -|Lotus Guardian|Invasion|R|23233|305| -|Planar Portal|Invasion|R|23234|308| -|Irrigation Ditch|Invasion|C|23235|324| -|Ancient Spring|Invasion|C|23236|319| -|Sulfur Vent|Invasion|C|23237|328| -|Geothermal Crevice|Invasion|C|23238|323| -|Tinder Farm|Invasion|C|23239|329| -|Coastal Tower|Invasion|U|23240|321| -|Salt Marsh|Invasion|U|23241|326| -|Urborg Volcano|Invasion|U|23242|330| -|Shivan Oasis|Invasion|U|23243|327| -|Elfhame Palace|Invasion|U|23244|322| -|Archaeological Dig|Invasion|U|23245|320| -|Caves of Koilos|Apocalypse|R|23246|140| -|Battlefield Forge|Apocalypse|R|23247|139| -|Llanowar Wastes|Apocalypse|R|23248|141| -|Yavimaya Coast|Apocalypse|R|23249|143| -|Shivan Reef|Apocalypse|R|23250|142| -|Infest|Onslaught|U|23280|157| -|Wintermoon Mesa|Prophecy|R|23318|143| -|Pure Reflection|Invasion|R|23319|27| -|Crypt Angel|Invasion|R|23320|97| -|Tsabo Tavoc|Invasion|R|23321|281| -|Llanowar Cavalry|Invasion|C|23322|195| -|Kavu Scout|Invasion|C|23323|151| -|Well-Laid Plans|Invasion|R|24117|88| -|Wings of Hope|Invasion|C|24118|289| -|Cremate|Invasion|U|24119|96| -|Dredge|Invasion|U|24124|103| -|Aggressive Urge|Invasion|C|24127|181| -|Unquestioned Authority|Judgment|U|24541|31| -|Sword Dancer|Prophecy|U|24544|25| -|Trenching Steed|Prophecy|C|24546|26| -|Troubled Healer|Prophecy|C|24547|27| -|Diving Griffin|Prophecy|C|24548|6| -|Glittering Lynx|Prophecy|C|24549|11| -|Mageta's Boon|Prophecy|C|24550|14| -|Rhystic Shield|Prophecy|C|24551|20| -|Flowering Field|Prophecy|U|24552|9| -|Excise|Prophecy|C|24553|8| -|Mirror Strike|Prophecy|U|24554|17| -|Mine Bearer|Prophecy|C|24555|16| -|Shield Dancer|Prophecy|U|24556|23| -|Entangler|Prophecy|U|24557|7| -|Glittering Lion|Prophecy|U|24558|10| -|Reveille Squad|Prophecy|U|24559|18| -|Aura Fracture|Prophecy|C|24560|2| -|Abolish|Prophecy|U|24561|1| -|Rhystic Circle|Prophecy|C|24562|19| -|Mercenary Informer|Prophecy|R|24563|15| -|Avatar of Hope|Prophecy|R|24564|3| -|Mageta the Lion|Prophecy|R|24565|13| -|Jeweled Spirit|Prophecy|R|24566|12| -|Celestial Convergence|Prophecy|R|24567|5| -|Sheltering Prayers|Prophecy|R|24568|22| -|Blessed Wind|Prophecy|R|24569|4| -|Samite Sanctuary|Prophecy|R|24570|21| -|Ribbon Snake|Prophecy|C|24571|46| -|Hazy Homunculus|Prophecy|C|24572|36| -|Gulf Squid|Prophecy|C|24573|35| -|Coastal Hornclaw|Prophecy|C|24574|31| -|Sunken Field|Prophecy|U|24575|51| -|Rhystic Deluge|Prophecy|C|24576|43| -|Rhystic Scrying|Prophecy|U|24577|44| -|Mana Vapors|Prophecy|U|24578|38| -|Alexi's Cloak|Prophecy|C|24579|29| -|Withdraw|Prophecy|C|24580|54| -|Spiketail Hatchling|Prophecy|C|24581|49| -|Quicksilver Wall|Prophecy|U|24582|41| -|Stormwatch Eagle|Prophecy|C|24583|50| -|Troublesome Spirit|Prophecy|R|24584|52| -|Windscouter|Prophecy|U|24585|53| -|Excavation|Prophecy|U|24586|33| -|Foil|Prophecy|U|24587|34| -|Rethink|Prophecy|C|24588|42| -|Rhystic Study|Prophecy|C|24589|45| -|Avatar of Will|Prophecy|R|24590|30| -|Alexi, Zephyr Mage|Prophecy|R|24591|28| -|Spiketail Drake|Prophecy|U|24592|48| -|Psychic Theft|Prophecy|R|24593|40| -|Heightened Awareness|Prophecy|R|24594|37| -|Shrouded Serpent|Prophecy|R|24595|47| -|Denying Wind|Prophecy|R|24596|32| -|Overburden|Prophecy|R|24597|39| -|Nakaya Shade|Prophecy|U|24598|69| -|Death Charmer|Prophecy|C|24599|61| -|Bog Glider|Prophecy|C|24600|58| -|Agent of Shauku|Prophecy|C|24601|55| -|Fen Stalker|Prophecy|C|24602|64| -|Whipstitched Zombie|Prophecy|C|24603|81| -|Greel's Caress|Prophecy|C|24604|67| -|Soul Strings|Prophecy|C|24605|78| -|Flay|Prophecy|C|24606|65| -|Steal Strength|Prophecy|C|24608|79| -|Wall of Vipers|Prophecy|U|24609|80| -|Plague Fiend|Prophecy|C|24610|73| -|Soul Charmer|Prophecy|C|24611|24| -|Pit Raptor|Prophecy|U|24612|72| -|Outbreak|Prophecy|U|24613|71| -|Rhystic Tutor|Prophecy|R|24614|77| -|Despoil|Prophecy|C|24615|62| -|Endbringer's Revel|Prophecy|U|24616|63| -|Rebel Informer|Prophecy|R|24617|75| -|Coffin Puppets|Prophecy|R|24618|60| -|Greel, Mind Raker|Prophecy|R|24619|66| -|Bog Elemental|Prophecy|R|24620|57| -|Avatar of Woe|Prophecy|R|24621|56| -|Plague Wind|Prophecy|R|24622|74| -|Rhystic Syphon|Prophecy|U|24623|76| -|Infernal Genesis|Prophecy|R|24624|68| -|Spur Grappler|Prophecy|C|24625|104| -|Fault Riders|Prophecy|C|24626|88| -|Ridgeline Rager|Prophecy|C|24627|100| -|Whip Sergeant|Prophecy|U|24628|107| -|Keldon Berserker|Prophecy|C|24629|93| -|Zerapa Minotaur|Prophecy|C|24630|108| -|Devastate|Prophecy|C|24631|87| -|Latulla's Orders|Prophecy|C|24632|96| -|Rhystic Lightning|Prophecy|C|24633|99| -|Barbed Field|Prophecy|U|24634|83| -|Brutal Suppression|Prophecy|U|24635|85| -|Scoria Cat|Prophecy|U|24636|101| -|Keldon Arsonist|Prophecy|U|24637|92| -|Branded Brawlers|Prophecy|C|24638|84| -|Panic Attack|Prophecy|C|24639|98| -|Inflame|Prophecy|C|24640|91| -|Search for Survivors|Prophecy|R|24641|102| -|Flameshot|Prophecy|U|24642|90| -|Citadel of Pain|Prophecy|U|24643|86| -|Avatar of Fury|Prophecy|R|24644|82| -|Veteran Brawlers|Prophecy|R|24645|106| -|Latulla, Keldon Overseer|Prophecy|R|24646|95| -|Lesser Gargadon|Prophecy|U|24647|97| -|Keldon Firebombers|Prophecy|R|24648|94| -|Fickle Efreet|Prophecy|R|24649|89| -|Searing Wind|Prophecy|R|24650|103| -|Task Mage Assembly|Prophecy|R|24651|105| -|Vintara Elephant|Prophecy|C|24652|131| -|Rib Cage Spider|Prophecy|C|24653|121| -|Spore Frog|Prophecy|C|24654|126| -|Silt Crawler|Prophecy|C|24655|123| -|Vintara Snapper|Prophecy|U|24656|132| -|Darba|Prophecy|U|24657|111| -|Thresher Beast|Prophecy|C|24658|128| -|Calming Verse|Prophecy|C|24659|110| -|Jolrael's Favor|Prophecy|C|24660|116| -|Wild Might|Prophecy|C|24661|134| -|Verdant Field|Prophecy|U|24662|130| -|Pygmy Razorback|Prophecy|C|24663|120| -|Marsh Boa|Prophecy|C|24664|118| -|Root Cage|Prophecy|U|24665|122| -|Spitting Spider|Prophecy|U|24666|125| -|Living Terrain|Prophecy|U|24667|117| -|Snag|Prophecy|U|24668|124| -|Thrive|Prophecy|C|24669|129| -|Saproling Symbiosis|Invasion|R|24670|209| -|Avatar of Might|Prophecy|R|24671|109| -|Squirrel Wrangler|Prophecy|R|24672|127| -|Jolrael, Empress of Beasts|Prophecy|R|24673|115| -|Mungha Wurm|Prophecy|R|24675|119| -|Forgotten Harvest|Prophecy|R|24676|114| -|Vitalizing Wind|Prophecy|R|24677|133| -|Dual Nature|Prophecy|R|24678|112| -|Hollow Warrior|Prophecy|U|24679|138| -|Chimeric Idol|Prophecy|U|24680|136| -|Well of Life|Prophecy|U|24681|141| -|Copper-Leaf Angel|Prophecy|R|24682|137| -|Keldon Battlewagon|Prophecy|R|24683|139| -|Well of Discovery|Prophecy|R|24684|140| -|Rhystic Cave|Prophecy|U|24685|142| -|Noxious Field|Prophecy|U|24686|70| -|Rhox|Nemesis|R|24687|112| -|Wash Out|Invasion|U|25320|87| -|Rewards of Diversity|Invasion|U|25323|32| -|Chilling Apparition|Prophecy|U|25362|59| -|Llanowar Elite|Invasion|C|25363|196| -|Dueling Grounds|Invasion|R|25438|245| -|Breath of Life|Starter 2000|U|25447|| -|Wind Drake|Starter 2000|C|25448|| -|Wild Griffin|Starter 2000|C|25449|| -|Knight Errant|Starter 2000|C|25450|| -|Island|Starter 2000|L|25451|| -|Island|Starter 2000|L|25452|| -|Plains|Starter 2000|L|25453|| -|Plains|Starter 2000|L|25454|| -|Eager Cadet|Starter 2000|C|25455|| -|Angelic Blessing|Starter 2000|C|25456|| -|Giant Octopus|Starter 2000|C|25457|| -|Merfolk of the Pearl Trident|Starter 2000|C|25458|| -|Royal Falcon|Starter 2000|C|25459|| -|Sea Eagle|Starter 2000|C|25460|| -|Time Ebb|Starter 2000|C|25462|| -|Vizzerdrix|Starter 2000|R|25463|| -|Monstrous Growth|Starter 2000|C|25475|| -|Ogre Warrior|Starter 2000|C|25476|| -|Coercion|Starter 2000|C|25477|| -|Swamp|Starter 2000|L|25478|| -|Swamp|Starter 2000|L|25479|| -|Mountain|Starter 2000|L|25480|| -|Mountain|Starter 2000|L|25481|| -|Forest|Starter 2000|L|25482|| -|Forest|Starter 2000|L|25483|| -|Willow Elf|Starter 2000|C|25484|| -|Moon Sprite|Starter 2000|U|25485|| -|Goblin Hero|Starter 2000|C|25486|| -|Scathe Zombies|Starter 2000|C|25487|| -|Lava Axe|Starter 2000|C|25488|| -|Hand of Death|Starter 2000|C|25490|| -|Mons's Goblin Raiders|Starter 2000|C|25491|| -|Bog Imp|Starter 2000|C|25492|| -|Durkwood Boars|Starter 2000|C|25493|| -|Trained Orgg|Starter 2000|R|25494|| -|Spined Wurm|Starter 2000|C|25496|| -|Stone Rain|Starter 2000|C|25497|| -|Armored Pegasus|Starter 2000|C|25498|| -|Python|Starter 2000|C|25499|| -|Disenchant|Starter 2000|C|25500|| -|Shock|Starter 2000|C|25501|| -|Giant Growth|Starter 2000|C|25502|| -|Counterspell|Starter 2000|C|25503|| -|Terror|Starter 2000|C|25504|| -|Prodigal Sorcerer|Starter 2000|C|25506|| -|Drudge Skeletons|Starter 2000|C|25507|| -|Llanowar Elves|Starter 2000|C|25508|| -|Flight|Starter 2000|C|25510|| -|Flame Spirit|Starter 2000|C|25514|| -|Venerable Monk|Starter 2000|C|25515|| -|Wing Storm|Prophecy|U|25523|135| -|Inspiration|Starter 2000|C|25526|| -|Obsianus Golem|Starter 2000|U|25528|| -|Rod of Ruin|Starter 2000|U|25529|| -|Samite Healer|Starter 2000|C|25533|| -|Hero's Resolve|Starter 2000|C|25536|| -|Orcish Oriflamme|Starter 2000|U|25540|| -|Soul Net|Starter 2000|U|25543|| -|Healing Salve|Seventh Edition|C|25545|18| -|Angelic Page|Seventh Edition|C|25546|1| -|Spirit Link|Seventh Edition|U|25547|47| -|Longbow Archer|Seventh Edition|U|25549|26| -|Sustainer of the Realm|Seventh Edition|U|25550|52| -|Sacred Ground|Seventh Edition|R|25551|36| -|Rolling Stones|Seventh Edition|R|25552|35| -|Worship|Seventh Edition|R|25553|56| -|Purify|Seventh Edition|R|25554|31| -|Serra Angel|Seventh Edition|R|25555|42| -|Kjeldoran Royal Guard|Seventh Edition|R|25556|23| -|Sleight of Hand|Seventh Edition|C|25557|98| -|Tolarian Winds|Seventh Edition|C|25558|105| -|Telepathic Spies|Seventh Edition|C|25561|101| -|Arcane Laboratory|Seventh Edition|U|25562|60| -|Mana Breach|Seventh Edition|U|25563|85| -|Opportunity|Seventh Edition|U|25564|91| -|Thieving Magpie|Seventh Edition|U|25565|104| -|Mahamoti Djinn|Seventh Edition|R|25566|84| -|Mana Short|Seventh Edition|R|25567|86| -|Equilibrium|Seventh Edition|R|25568|71| -|Squall|Seventh Edition|C|25586|271| -|Thoughtleech|Seventh Edition|U|25587|274| -|Blanchwood Armor|Seventh Edition|U|25588|232| -|Treefolk Seedlings|Seventh Edition|U|25589|277| -|Scavenger Folk|Seventh Edition|U|25590|267| -|Rowen|Seventh Edition|R|25591|266| -|Nature's Revolt|Seventh Edition|R|25592|260| -|Elvish Archers|Seventh Edition|R|25593|239| -|Verduran Enchantress|Seventh Edition|R|25594|280| -|Ancient Silverback|Seventh Edition|R|25595|230| -|Thorn Elemental|Seventh Edition|R|25596|273| -|Ertai, the Corrupted|Planeshift|R|25614|107| -|Sunscape Familiar|Planeshift|C|25615|17| -|Stormscape Familiar|Planeshift|C|25616|36| -|Thunderscape Familiar|Planeshift|C|25617|76| -|Thornscape Familiar|Planeshift|C|25618|95| -|Nausea|Seventh Edition|C|25623|148| -|Corrupt|Seventh Edition|C|25624|124| -|Blood Pet|Seventh Edition|C|25625|121| -|Serpent Warrior|Seventh Edition|C|25627|162| -|Giant Cockroach|Seventh Edition|C|25628|138| -|Bereavement|Seventh Edition|U|25629|120| -|Yawgmoth's Edict|Seventh Edition|U|25630|171| -|Megrim|Seventh Edition|U|25631|146| -|Befoul|Seventh Edition|U|25632|118| -|Nocturnal Raid|Seventh Edition|U|25633|151| -|Fugue|Seventh Edition|U|25634|137| -|Necrologia|Seventh Edition|U|25635|149| -|Abyssal Specter|Seventh Edition|U|25636|116| -|Crypt Rats|Seventh Edition|U|25637|125| -|Foul Imp|Seventh Edition|U|25638|136| -|Wall of Bone|Seventh Edition|U|25639|169| -|Dakmor Lancer|Seventh Edition|U|25640|126| -|Oppression|Seventh Edition|R|25641|152| -|Greed|Seventh Edition|R|25642|140| -|Tainted Ζther|Seventh Edition|R|25643|167| -|Persecute|Seventh Edition|R|25644|154| -|Stronghold Assassin|Seventh Edition|R|25645|166| -|Eladamri's Call|Planeshift|R|25646|106| -|Bellowing Fiend|Seventh Edition|R|25647|119| -|Crystal Rod|Seventh Edition|U|25648|291| -|Iron Star|Seventh Edition|U|25649|301| -|Ivory Cup|Seventh Edition|U|25650|302| -|Soul Net|Seventh Edition|U|25651|317| -|Throne of Bone|Seventh Edition|U|25652|322| -|Wooden Sphere|Seventh Edition|U|25653|324| -|Spellbook|Seventh Edition|U|25654|318| -|Caltrops|Seventh Edition|U|25655|288| -|Phyrexian Hulk|Seventh Edition|U|25656|312| -|Pit Trap|Seventh Edition|U|25657|313| -|Serra's Embrace|Seventh Edition|U|25658|43| -|Grapeshot Catapult|Seventh Edition|U|25659|299| -|Jayemdae Tome|Seventh Edition|R|25660|305| -|Grafted Skullcap|Seventh Edition|R|25661|298| -|Teferi's Puzzle Box|Seventh Edition|R|25662|321| -|Storm Cauldron|Seventh Edition|R|25663|320| -|Feroz's Ban|Seventh Edition|R|25664|295| -|Creeping Mold|Seventh Edition|U|25666|236| -|Pride of Lions|Seventh Edition|U|25667|261| -|Gang of Elk|Seventh Edition|U|25668|247| -|Pyrotechnics|Seventh Edition|U|25670|210| -|Granite Grip|Seventh Edition|C|25671|195| -|Goblin Chariot|Seventh Edition|C|25672|185| -|Balduvian Barbarians|Seventh Edition|C|25673|173| -|Goblin Gardener|Seventh Edition|C|25674|188| -|Boil|Seventh Edition|U|25675|177| -|Goblin War Drums|Seventh Edition|U|25676|194| -|Pyroclasm|Seventh Edition|U|25677|209| -|Ζther Flash|Seventh Edition|U|25678|172| -|Goblin Glider|Seventh Edition|U|25679|189| -|Hill Giant|Seventh Edition|C|25680|196| -|Impatience|Seventh Edition|R|25681|197| -|Mana Clash|Seventh Edition|R|25682|202| -|Relentless Assault|Seventh Edition|R|25684|214| -|Wildfire|Seventh Edition|R|25685|228| -|Okk|Seventh Edition|R|25686|204| -|Reckless Embermage|Seventh Edition|R|25687|212| -|Shivan Dragon|Seventh Edition|R|25688|218| -|Bedlam|Seventh Edition|R|25689|174| -|Nightscape Familiar|Planeshift|C|25693|48| -|Tainted Well|Invasion|C|25748|126| -|Searing Rays|Invasion|U|25749|165| -|Saproling Infestation|Invasion|R|25750|208| -|Barrin's Spite|Invasion|R|25751|235| -|Stalking Assassin|Invasion|R|25752|277| -|Draco|Planeshift|R|25797|131| -|Spellgorger Barbarian|Judgment|C|25805|100| -|Riptide Shapeshifter|Onslaught|U|25812|109| -|Overgrown Estate|Apocalypse|R|25816|113| -|Daring Leap|Planeshift|C|25822|101| -|Martyrs' Tomb|Apocalypse|U|25825|110| -|Captain's Maneuver|Apocalypse|U|25828|92| -|Temporal Spring|Apocalypse|C|25832|125| -|Death Mutation|Apocalypse|U|25833|96| -|Dromar's Attendant|Invasion|U|25836|303| -|Crosis's Attendant|Invasion|U|25837|300| -|Darigaaz's Attendant|Invasion|U|25838|301| -|Rith's Attendant|Invasion|U|25839|310| -|Treva's Attendant|Invasion|U|25840|315| -|Dega Disciple|Apocalypse|C|25852|4| -|Ceta Disciple|Apocalypse|C|25853|19| -|Necra Disciple|Apocalypse|C|25854|44| -|Raka Disciple|Apocalypse|C|25855|66| -|Ana Disciple|Apocalypse|C|25856|73| -|Planar Despair|Apocalypse|R|25859|50| -|Dromar's Charm|Planeshift|U|25862|105| -|Crosis's Charm|Planeshift|U|25863|99| -|Darigaaz's Charm|Planeshift|U|25864|100| -|Rith's Charm|Planeshift|U|25865|122| -|Treva's Charm|Planeshift|U|25866|129| -|Stratadon|Planeshift|U|25869|135| -|Malicious Advice|Planeshift|C|25870|114| -|Terminate|Planeshift|C|25871|128| -|Hull Breach|Planeshift|C|25872|111| -|Gerrard's Command|Planeshift|C|25873|109| -|Ascending Aven|Onslaught|C|25879|68| -|Star Compass|Planeshift|U|25880|134| -|Planeswalker's Mirth|Planeshift|R|25886|12| -|Planeswalker's Mischief|Planeshift|R|25887|29| -|Planeswalker's Scorn|Planeshift|R|25888|52| -|Planeswalker's Fury|Planeshift|R|25889|70| -|Planeswalker's Favor|Planeshift|R|25890|86| -|Forsaken City|Planeshift|R|25893|139| -|Cloud Cover|Planeshift|R|25899|98| -|Singe|Planeshift|C|25900|71| -|Haunted Angel|Apocalypse|U|25910|12| -|Sunscape Battlemage|Planeshift|U|25912|16| -|Stormscape Battlemage|Planeshift|U|25913|35| -|Nightscape Battlemage|Planeshift|U|25914|47| -|Thunderscape Battlemage|Planeshift|U|25915|75| -|Thornscape Battlemage|Planeshift|U|25916|94| -|Urza's Guilt|Planeshift|R|25918|130| -|Shivan Wurm|Planeshift|R|25924|124| -|Silver Drake|Planeshift|C|25925|125| -|Cavern Harpy|Planeshift|C|25926|97| -|Lava Zombie|Planeshift|C|25927|113| -|Horned Kavu|Planeshift|C|25928|110| -|Steel Leaf Paladin|Planeshift|C|25929|127| -|Keldon Necropolis|Invasion|R|25930|325| -|Exotic Disease|Planeshift|U|25931|43| -|Dromar's Cavern|Planeshift|U|25932|138| -|Sawtooth Loon|Planeshift|U|25933|123| -|Marsh Crocodile|Planeshift|U|25934|115| -|Sparkcaster|Planeshift|U|25935|126| -|Crosis's Catacombs|Planeshift|U|25936|136| -|Razing Snidd|Planeshift|U|25937|121| -|Darigaaz's Caldera|Planeshift|U|25938|137| -|Rith's Grove|Planeshift|U|25939|141| -|Treva's Ruins|Planeshift|U|25940|143| -|Pollen Remedy|Planeshift|C|25941|13| -|Rushing River|Planeshift|C|25942|30| -|Bog Down|Planeshift|C|25943|39| -|Magma Burst|Planeshift|C|25944|66| -|Falling Timber|Planeshift|C|25945|79| -|Degavolver|Apocalypse|R|25947|6| -|Cetavolver|Apocalypse|R|25948|21| -|Necravolver|Apocalypse|R|25949|46| -|Rakavolver|Apocalypse|R|25950|68| -|Anavolver|Apocalypse|R|25951|75| -|Pernicious Deed|Apocalypse|R|25953|114| -|Sinister Strength|Planeshift|C|25954|54| -|Penumbra Kavu|Apocalypse|U|25956|83| -|Plains|Invasion|L|25963|331| -|Island|Invasion|L|25964|335| -|Swamp|Invasion|L|25965|339| -|Mountain|Invasion|L|25966|343| -|Forest|Invasion|L|25967|347| -|Index|Apocalypse|C|25969|25| -|Savage Gorilla|Apocalypse|C|25971|85| -|Wormfang Drake|Judgment|C|25974|57| -|Urborg Drake|Invasion|U|25975|283| -|Captain Sisay|Invasion|R|25976|237| -|Hanna, Ship's Navigator|Invasion|R|25977|249| -|Meteor Crater|Planeshift|R|25979|140| -|Terminal Moraine|Planeshift|U|25980|142| -|Protective Sphere|Invasion|C|26257|26| -|Desolation Angel|Apocalypse|R|26259|38| -|Implode|Planeshift|U|26260|62| -|Evasive Action|Apocalypse|U|26261|23| -|Flametongue Kavu|Planeshift|U|26262|60| -|Honorable Scout|Planeshift|C|26263|8| -|Emblazoned Golem|Apocalypse|U|26264|136| -|Maggot Carrier|Planeshift|C|26266|45| -|Kavu Recluse|Planeshift|C|26268|64| -|Mogg Sentry|Planeshift|R|26269|69| -|Samite Pilgrim|Planeshift|C|26271|15| -|Mogg Jailer|Planeshift|U|26275|68| -|Day|Apocalypse|U|26276|131| -|March of Souls|Planeshift|R|26277|10| -|Carrion Rats|Torment|C|26279|54| -|Phyrexian Bloodstock|Planeshift|C|26280|50| -|Phyrexian Tyranny|Planeshift|R|26281|118| -|Harsh Judgment|Invasion|R|26282|19| -|Aurora Griffin|Planeshift|C|26284|2| -|Disciple of Kangee|Planeshift|C|26285|3| -|Quirion Dryad|Planeshift|R|26286|89| -|Psychic Battle|Invasion|R|26287|68| -|Strafe|Planeshift|U|26288|73| -|Shifting Sky|Planeshift|U|26290|32| -|Hobble|Planeshift|C|26292|7| -|Vodalian Merchant|Invasion|C|26296|85| -|Ravenous Rats|Invasion|C|26297|120| -|Plains|Invasion|L|26298|332| -|Plains|Invasion|L|26299|333| -|Plains|Invasion|L|26300|334| -|Island|Invasion|L|26301|336| -|Island|Invasion|L|26302|337| -|Island|Invasion|L|26303|338| -|Swamp|Invasion|L|26304|340| -|Swamp|Invasion|L|26305|341| -|Swamp|Invasion|L|26306|342| -|Mountain|Invasion|L|26307|344| -|Mountain|Invasion|L|26308|345| -|Mountain|Invasion|L|26309|346| -|Forest|Invasion|L|26310|348| -|Forest|Invasion|L|26311|349| -|Forest|Invasion|L|26312|350| -|Quirion Explorer|Planeshift|C|26348|90| -|Strongarm Tactics|Onslaught|R|26349|173| -|Arctic Merfolk|Planeshift|C|26360|21| -|Spirit Flare|Torment|C|26361|15| -|Sea Snidd|Planeshift|C|26362|31| -|Mire Kavu|Planeshift|C|26363|67| -|Volcano Imp|Planeshift|C|26368|56| -|Tunneler Wurm|Judgment|U|26370|135| -|Coalition Honor Guard|Apocalypse|C|26371|3| -|Phyrexian Infiltrator|Invasion|R|26372|116| -|Quicksilver Dagger|Apocalypse|C|26373|118| -|Stone Kavu|Planeshift|C|26377|93| -|Metathran Transport|Invasion|U|26379|62| -|Tsabo's Decree|Invasion|R|26380|129| -|Mana Cylix|Planeshift|U|26381|132| -|Aura Blast|Planeshift|C|26382|1| -|Allied Strategies|Planeshift|U|26383|20| -|Stand or Fall|Invasion|R|26389|171| -|Primal Growth|Planeshift|C|26396|87| -|Magnigoth Treefolk|Planeshift|R|26397|82| -|Skyshroud Blessing|Planeshift|U|26402|92| -|Surprise Deployment|Planeshift|U|26403|18| -|Dwell on the Past|Torment|U|26404|124| -|Sisay's Ingenuity|Planeshift|C|26407|33| -|Tahngarth, Talruum Hero|Planeshift|R|26408|74| -|Amphibious Kavu|Planeshift|C|26409|78| -|Natural Emergence|Planeshift|R|26410|117| -|Gaea's Herald|Planeshift|R|26411|80| -|Nemata, Grove Guardian|Planeshift|R|26412|85| -|Dark Suspicions|Planeshift|R|26414|40| -|Insolence|Planeshift|C|26415|63| -|Quirion Sentinel|Invasion|C|26416|204| -|Voice of All|Planeshift|U|26417|19| -|Heroic Defiance|Planeshift|C|26420|6| -|Mystic Snake|Apocalypse|R|26421|112| -|Diabolic Intent|Planeshift|R|26422|42| -|Dominaria's Judgment|Planeshift|R|26423|4| -|Legacy Weapon|Apocalypse|R|26424|137| -|Prowling Pangolin|Onslaught|U|26428|163| -|Mind Sludge|Torment|U|26432|70| -|False Cure|Onslaught|R|26436|146| -|Caldera Kavu|Planeshift|C|26437|58| -|Elvish Champion|Invasion|R|26445|186| -|Illuminate|Apocalypse|U|26447|63| -|Carrion Wurm|Torment|U|26449|55| -|Ice Cave|Apocalypse|R|26451|24| -|Phyrexian Scuta|Planeshift|R|26477|51| -|Noxious Vapors|Planeshift|U|26478|49| -|Fleetfoot Panther|Planeshift|U|26479|108| -|Skyship Weatherlight|Planeshift|R|26480|133| -|Ertai's Trickery|Planeshift|U|26590|24| -|Meddling Mage|Planeshift|R|26591|116| -|Backslide|Onslaught|C|26592|70| -|Kird Ape|Beatdown Box Set|C|26605|| -|Clockwork Avian|Beatdown Box Set|R|26606|| -|Sengir Vampire|Beatdown Box Set|U|26607|| -|Mahamoti Djinn|Beatdown Box Set|R|26608|| -|Force of Nature|Beatdown Box Set|R|26609|| -|Shambling Strider|Beatdown Box Set|C|26611|| -|Diabolic Vision|Beatdown Box Set|U|26613|| -|Quirion Elves|Beatdown Box Set|C|26614|| -|Tar Pit Warrior|Beatdown Box Set|C|26615|| -|Impulse|Beatdown Box Set|C|26616|| -|Clockwork Beast|Beatdown Box Set|R|26617|| -|Drain Life|Beatdown Box Set|C|26618|| -|Leviathan|Beatdown Box Set|R|26619|| -|Ball Lightning|Beatdown Box Set|R|26620|| -|Fireball|Beatdown Box Set|C|26621|| -|Shivan Dragon|Beatdown Box Set|R|26622|| -|Svyelunite Temple|Beatdown Box Set|U|26623|| -|Hulking Cyclops|Beatdown Box Set|U|26624|| -|Cloud Djinn|Beatdown Box Set|U|26625|| -|Bloodrock Cyclops|Beatdown Box Set|C|26626|| -|Giant Crab|Beatdown Box Set|C|26627|| -|Segmented Wurm|Beatdown Box Set|U|26628|| -|Death Stroke|Beatdown Box Set|C|26629|| -|Yavimaya Wurm|Beatdown Box Set|C|26631|| -|Dark Ritual|Beatdown Box Set|C|26632|| -|Thundering Giant|Beatdown Box Set|U|26633|| -|Slippery Karst|Beatdown Box Set|C|26634|| -|Smoldering Crater|Beatdown Box Set|C|26635|| -|Remote Isle|Beatdown Box Set|C|26636|| -|Polluted Mire|Beatdown Box Set|C|26637|| -|Killer Whale|Beatdown Box Set|U|26638|| -|Sonic Burst|Beatdown Box Set|C|26639|| -|Crashing Boars|Beatdown Box Set|U|26640|| -|Gaseous Form|Beatdown Box Set|C|26641|| -|Vigilant Drake|Beatdown Box Set|C|26642|| -|Lava Axe|Beatdown Box Set|C|26643|| -|Counterspell|Beatdown Box Set|C|26644|| -|Shock|Beatdown Box Set|C|26645|| -|Talruum Minotaur|Beatdown Box Set|C|26646|| -|Wild Growth|Beatdown Box Set|C|26647|| -|Fog|Beatdown Box Set|C|26648|| -|Giant Growth|Beatdown Box Set|C|26649|| -|Ebon Stronghold|Beatdown Box Set|U|26650|| -|Dwarven Ruins|Beatdown Box Set|U|26651|| -|Havenwood Battleground|Beatdown Box Set|U|26652|| -|Blizzard Elemental|Beatdown Box Set|R|26653|| -|Air Elemental|Beatdown Box Set|U|26654|| -|Balduvian Horde|Beatdown Box Set|R|26655|| -|Skittering Horror|Beatdown Box Set|C|26656|| -|Fog Elemental|Beatdown Box Set|C|26657|| -|Power Sink|Beatdown Box Set|C|26658|| -|Terror|Beatdown Box Set|C|26659|| -|Fallen Angel|Beatdown Box Set|R|26660|| -|Plated Spider|Beatdown Box Set|C|26661|| -|Spectral Lynx|Apocalypse|R|26663|17| -|Dwarven Patrol|Apocalypse|U|26672|61| -|Jaded Response|Apocalypse|C|26673|26| -|Wretched Anurid|Onslaught|C|26689|183| -|Day|Apocalypse|U|26691|131| -|Phyrexian Gargantua|Apocalypse|U|26699|48| -|Accursed Centaur|Onslaught|C|26715|123| -|Urborg Elf|Apocalypse|C|26717|90| -|Tranquil Path|Apocalypse|C|26720|89| -|Barbarian Outcast|Torment|C|26726|92| -|Cephalid Constable|Judgment|R|26728|35| -|Spawning Pit|Darksteel|U|26732|141| -|Dodecapod|Apocalypse|U|26733|134| -|Dragon Arch|Apocalypse|U|26734|135| -|Fungal Shambler|Apocalypse|R|26743|100| -|Patriarch's Bidding|Onslaught|R|26747|161| -|Razorfin Hunter|Apocalypse|C|26756|119| -|Gaea's Skyfolk|Apocalypse|C|26757|101| -|Putrid Warrior|Apocalypse|C|26758|117| -|Llanowar Dead|Apocalypse|C|26759|109| -|Goblin Legionnaire|Apocalypse|C|26760|103| -|Unnatural Selection|Apocalypse|R|26776|32| -|Sleeping Potion|Planeshift|C|26781|34| -|Death Bomb|Planeshift|C|26782|41| -|Standard Bearer|Apocalypse|C|26783|18| -|Squee's Embrace|Apocalypse|C|26785|122| -|Manacles of Decay|Apocalypse|C|26788|14| -|Coalition Flag|Apocalypse|U|26791|2| -|Gerrard Capashen|Apocalypse|R|26793|11| -|Living Airship|Apocalypse|C|26795|28| -|Jilt|Apocalypse|C|26797|27| -|Mournful Zombie|Apocalypse|C|26800|43| -|Zombie Boa|Apocalypse|C|26801|54| -|Urborg Uprising|Apocalypse|C|26802|53| -|Tundra Kavu|Apocalypse|C|26805|71| -|Bloodfire Dwarf|Apocalypse|C|26806|56| -|Kavu Glider|Apocalypse|C|26809|64| -|Dwarven Landslide|Apocalypse|C|26810|60| -|Bomb Squad|Odyssey|R|26812|179| -|Penumbra Bobcat|Apocalypse|C|26815|82| -|Lay of the Land|Apocalypse|C|26816|81| -|Soul Link|Apocalypse|C|26822|120| -|Ana Sanctuary|Apocalypse|U|26830|74| -|Squee's Revenge|Apocalypse|U|26831|123| -|Lashknife Barrier|Planeshift|U|26833|9| -|Planar Overlay|Planeshift|R|26835|28| -|Warped Devotion|Planeshift|U|26836|57| -|Deadapult|Planeshift|R|26837|59| -|Gaea's Might|Planeshift|C|26838|81| -|Mirrorwood Treefolk|Planeshift|U|26839|83| -|Dralnu's Crusade|Planeshift|R|26840|104| -|Crossbow Infantry|Seventh Edition|C|26841|12| -|Sanctimony|Seventh Edition|U|26842|39| -|Glorious Anthem|Seventh Edition|R|26843|17| -|Coral Merfolk|Seventh Edition|C|26844|66| -|Vigilant Drake|Seventh Edition|C|26845|109| -|Dead Ringers|Apocalypse|C|26848|37| -|Minotaur Tactician|Apocalypse|C|26849|65| -|Waterspout Elemental|Planeshift|R|26851|38| -|Orim's Chant|Planeshift|R|26852|11| -|Helionaut|Apocalypse|C|26854|13| -|Vodalian Mystic|Apocalypse|U|26855|33| -|Memory Lapse|Seventh Edition|C|27080|88| -|Ancestral Memories|Seventh Edition|R|27115|59| -|Necra Sanctuary|Apocalypse|U|27136|45| -|Divine Light|Apocalypse|C|27137|8| -|Laquatus's Disdain|Judgment|U|27145|44| -|Bog Gnarr|Apocalypse|C|27153|76| -|Glade Gnarr|Apocalypse|C|27154|78| -|Tahngarth's Glare|Apocalypse|C|27156|70| -|Reef Shaman|Apocalypse|C|27158|29| -|Symbiotic Deployment|Apocalypse|R|27160|88| -|Death|Apocalypse|U|27161|130| -|Death|Apocalypse|U|27162|130| -|Reality|Apocalypse|U|27163|129| -|Reality|Apocalypse|U|27164|129| -|Ice|Apocalypse|U|27165|128| -|Ice|Apocalypse|U|27166|128| -|Order|Apocalypse|U|27167|132| -|Chaos|Apocalypse|U|27168|132| -|Guided Passage|Apocalypse|R|27169|105| -|Mind Extraction|Apocalypse|C|27171|42| -|Ceta Sanctuary|Apocalypse|U|27173|20| -|Llawan, Cephalid Empress|Torment|R|27175|42| -|Dega Sanctuary|Apocalypse|U|27178|5| -|Raka Sanctuary|Apocalypse|U|27179|67| -|Prophetic Bolt|Apocalypse|R|27187|116| -|Quagmire Druid|Apocalypse|C|27188|51| -|Gainsay|Planeshift|U|27189|26| -|Erhnam Djinn|Beatdown Box Set|U|27227|| -|Shriek of Dread|Planeshift|C|27229|53| -|Last Stand|Apocalypse|R|27231|107| -|Swamp|Beatdown Box Set|L|27233|| -|Swamp|Beatdown Box Set|L|27234|| -|Swamp|Beatdown Box Set|L|27235|| -|Island|Beatdown Box Set|L|27236|| -|Island|Beatdown Box Set|L|27237|| -|Island|Beatdown Box Set|L|27238|| -|Mountain|Beatdown Box Set|L|27239|| -|Mountain|Beatdown Box Set|L|27240|| -|Mountain|Beatdown Box Set|L|27241|| -|Forest|Beatdown Box Set|L|27242|| -|Forest|Beatdown Box Set|L|27243|| -|Forest|Beatdown Box Set|L|27244|| -|Bone Harvest|Beatdown Box Set|C|27245|| -|Brainstorm|Beatdown Box Set|C|27246|| -|Cloud Elemental|Beatdown Box Set|C|27247|| -|Coercion|Beatdown Box Set|C|27248|| -|Crash of Rhinos|Beatdown Box Set|C|27249|| -|Deadly Insect|Beatdown Box Set|C|27250|| -|Diabolic Edict|Beatdown Box Set|C|27251|| -|Gravedigger|Beatdown Box Set|C|27253|| -|Hollow Dogs|Beatdown Box Set|C|27254|| -|Lightning Bolt|Beatdown Box Set|C|27255|| -|Llanowar Elves|Beatdown Box Set|C|27256|| -|Lowland Giant|Beatdown Box Set|C|27257|| -|Raging Goblin|Beatdown Box Set|C|27258|| -|Rampant Growth|Beatdown Box Set|C|27259|| -|Scaled Wurm|Beatdown Box Set|C|27260|| -|Skittering Skirge|Beatdown Box Set|C|27261|| -|Snapping Drake|Beatdown Box Set|C|27262|| -|Tolarian Winds|Beatdown Box Set|C|27264|| -|Viashino Warrior|Beatdown Box Set|C|27265|| -|Wayward Soul|Beatdown Box Set|C|27266|| -|Thunderbolt|Beatdown Box Set|C|27270|| -|Woolly Spider|Beatdown Box Set|C|27271|| -|Feral Shadow|Beatdown Box Set|C|27564|| -|Suffocating Blast|Apocalypse|R|27583|124| -|Scathe Zombies|Seventh Edition|C|27588|161| -|Morgue Toad|Planeshift|C|27589|46| -|Last Caress|Apocalypse|C|27591|41| -|False Dawn|Apocalypse|R|27602|10| -|Alpha Kavu|Planeshift|U|27613|77| -|Questing Phelddagrif|Planeshift|R|27634|119| -|Lightning Angel|Apocalypse|R|27650|108| -|Enlistment Officer|Apocalypse|U|27657|9| -|Tidal Courier|Apocalypse|U|27659|31| -|Phyrexian Rager|Apocalypse|C|27660|49| -|Grave Defiler|Apocalypse|U|27662|40| -|Phyrexian Arena|Apocalypse|R|27663|47| -|Goblin Ringleader|Apocalypse|U|27664|62| -|Sylvan Messenger|Apocalypse|U|27666|87| -|Penumbra Wurm|Apocalypse|R|27669|84| -|Whirlpool Rider|Apocalypse|C|27670|35| -|Whirlpool Drake|Apocalypse|U|27671|34| -|Whirlpool Warrior|Apocalypse|R|27672|36| -|Shield of Duty and Reason|Apocalypse|C|27674|16| -|Confound|Planeshift|C|27714|22| -|Kavu Mauler|Apocalypse|R|27760|80| -|Brass Herald|Apocalypse|U|27761|133| -|Strength of Night|Apocalypse|C|28007|86| -|Minotaur Illusionist|Apocalypse|U|28008|111| -|Spiritmonger|Apocalypse|R|28009|121| -|Fervent Charge|Apocalypse|R|28011|98| -|Gaea's Balance|Apocalypse|U|28668|77| -|Ζther Mutation|Apocalypse|U|28669|91| -|Cromat|Apocalypse|R|28670|94| -|Suppress|Apocalypse|U|28749|52| -|Kavu Howler|Apocalypse|U|28750|79| -|Orim's Thunder|Apocalypse|C|28751|15| -|Shimmering Mirage|Apocalypse|C|28753|30| -|Coastal Drake|Apocalypse|C|28754|22| -|Gallantry|Odyssey|U|28755|23| -|Foul Presence|Apocalypse|U|28805|39| -|Bloodfire Kavu|Apocalypse|U|28806|58| -|Bloodfire Colossus|Apocalypse|R|28807|55| -|Diversionary Tactics|Apocalypse|U|28810|7| -|Tahngarth, Talruum Hero|Planeshift|R|29291|74| -|Ertai, the Corrupted|Planeshift|R|29292|107| -|Skyship Weatherlight|Planeshift|R|29293|133| -|Bloodfire Infusion|Apocalypse|C|29303|57| -|Jungle Barrier|Apocalypse|U|29304|106| -|Vizzerdrix|Seventh Edition|R|29322|110| -|Desolation Giant|Apocalypse|R|29414|59| -|Death Grasp|Apocalypse|R|29415|95| -|Gerrard's Verdict|Apocalypse|U|29416|102| -|Goblin Trenches|Apocalypse|R|29417|104| -|Ebony Treefolk|Apocalypse|U|29450|97| -|Hallow|Darksteel|C|29513|4| -|Equal Treatment|Torment|U|29571|4| -|Chainer's Edict|Torment|U|29603|57| -|Smash|Apocalypse|C|29605|69| -|Mask of Intolerance|Apocalypse|R|29677|138| -|Blessed Orator|Odyssey|U|29688|12| -|Pilgrim of Virtue|Odyssey|C|29689|41| -|Pilgrim of Justice|Odyssey|C|29690|40| -|Aven Archer|Odyssey|U|29691|6| -|Hallowed Healer|Odyssey|C|29693|25| -|Aven Cloudchaser|Odyssey|C|29694|7| -|Tireless Tribe|Odyssey|C|29695|56| -|Mystic Visionary|Odyssey|C|29697|35| -|Vengeful Dreams|Torment|R|29698|21| -|Angelic Wall|Odyssey|C|29699|3| -|Auramancer|Odyssey|C|29700|5| -|Embolden|Odyssey|C|29703|22| -|Life Burst|Odyssey|C|29704|30| -|Hypochondria|Torment|U|29705|7| -|Second Thoughts|Odyssey|C|29706|45| -|Kirtar's Desire|Odyssey|C|29707|27| -|Cephalid Aristocrat|Torment|C|29708|27| -|Aven Smokeweaver|Odyssey|U|29709|64| -|Cephalid Scout|Odyssey|C|29710|74| -|Cephalid Broker|Odyssey|U|29711|71| -|Scrivener|Odyssey|C|29712|100| -|Skywing Aven|Torment|C|29713|47| -|Graxiplon|Onslaught|U|29714|86| -|Krosan Constrictor|Torment|C|29715|129| -|Aven Windreader|Odyssey|C|29716|65| -|Cephalid Pathmage|Legions|C|29717|31| -|Hydromorph Gull|Torment|U|29719|40| -|Churning Eddy|Torment|C|29720|32| -|Obsessive Search|Torment|C|29721|43| -|Rites of Refusal|Odyssey|C|29722|99| -|Repel|Odyssey|C|29723|98| -|Fervent Denial|Odyssey|U|29724|86| -|Ζther Burst|Odyssey|C|29725|60| -|Careful Study|Odyssey|C|29727|70| -|Aboshan's Desire|Odyssey|C|29728|59| -|Dirty Wererat|Odyssey|C|29729|130| -|Cabal Inquisitor|Odyssey|C|29730|119| -|Soul Scourge|Torment|C|29731|85| -|Zombie Assassin|Odyssey|C|29732|168| -|Frightcrawler|Odyssey|C|29733|138| -|Whispering Shade|Odyssey|C|29734|167| -|Zombie Cannibal|Odyssey|C|29735|169| -|Famished Ghoul|Odyssey|U|29736|135| -|Overeager Apprentice|Odyssey|C|29737|154| -|Balshan Beguiler|Odyssey|U|29738|66| -|Faceless Butcher|Torment|C|29739|60| -|Afflict|Odyssey|C|29740|115| -|Gravedigger|Odyssey|C|29741|140| -|Morgue Theft|Odyssey|C|29743|151| -|Ghastly Demise|Odyssey|C|29744|139| -|Morbid Hunger|Odyssey|C|29745|150| -|Mind Burst|Odyssey|C|29746|148| -|Bamboozle|Odyssey|U|29747|68| -|Patriarch's Desire|Odyssey|C|29749|156| -|Pardic Firecat|Odyssey|C|29750|211| -|Halberdier|Odyssey|C|29751|196| -|Ember Beast|Odyssey|C|29752|190| -|Pardic Swordsmith|Odyssey|C|29753|213| -|Crazed Firecat|Torment|U|29754|94| -|Chainflinger|Odyssey|C|29755|181| -|Barbarian Lunatic|Odyssey|C|29757|175| -|Anarchist|Odyssey|C|29758|173| -|Thermal Blast|Odyssey|C|29759|224| -|Dwarven Grunt|Odyssey|C|29760|185| -|Kamahl's Desire|Odyssey|C|29761|199| -|Swirling Sandstorm|Judgment|C|29762|102| -|Lava Blister|Odyssey|U|29763|200| -|Rites of Initiation|Odyssey|C|29765|217| -|Lava Dart|Judgment|C|29766|94| -|Flame Burst|Odyssey|C|29767|194| -|Volcanic Spray|Odyssey|U|29768|226| -|Earth Rift|Odyssey|C|29769|189| -|Longhorn Firebeast|Torment|C|29770|103| -|Nantuko Disciple|Odyssey|C|29771|253| -|Woodland Druid|Odyssey|C|29772|284| -|Diligent Farmhand|Odyssey|C|29773|237| -|Metamorphic Wurm|Odyssey|U|29774|250| -|Krosan Avenger|Odyssey|C|29775|247| -|Howling Gale|Odyssey|U|29776|244| -|Wild Mongrel|Odyssey|C|29777|283| -|Druid Lyrist|Odyssey|C|29778|238| -|Simplify|Odyssey|C|29779|269| -|Krosan Archer|Odyssey|C|29780|246| -|Rabid Elephant|Odyssey|C|29781|263| -|Leaf Dancer|Odyssey|C|29782|249| -|Cartographer|Odyssey|C|29783|232| -|Nimble Mongoose|Odyssey|U|29784|258| -|Werebear|Odyssey|C|29785|282| -|Call of the Herd|Odyssey|R|29786|231| -|Possessed Centaur|Torment|R|29787|137| -|Muscle Burst|Odyssey|C|29788|252| -|Rites of Spring|Odyssey|C|29789|265| -|Sylvan Might|Odyssey|U|29790|277| -|Seton's Desire|Odyssey|C|29791|268| -|Skycloud Expanse|Odyssey|R|29792|327| -|Darkwater Catacombs|Odyssey|R|29793|319| -|Shadowblood Ridge|Odyssey|R|29794|326| -|Mossfire Valley|Odyssey|R|29795|321| -|Sungrass Prairie|Odyssey|R|29796|328| -|Beloved Chaplain|Odyssey|U|29798|11| -|Petradon|Torment|R|29799|108| -|Centaur Veteran|Torment|C|29800|123| -|Mystic Zealot|Odyssey|C|29801|36| -|Mystic Crusader|Odyssey|R|29802|33| -|Resilient Wanderer|Odyssey|U|29804|43| -|Nomad Decoy|Odyssey|U|29805|37| -|Luminous Guardian|Odyssey|U|29806|31| -|Spiritualize|Odyssey|U|29807|53| -|Ray of Distortion|Odyssey|C|29808|42| -|Sphere of Truth|Odyssey|U|29810|52| -|Sphere of Reason|Odyssey|U|29811|51| -|Sphere of Grace|Odyssey|U|29812|49| -|Sphere of Law|Odyssey|U|29813|50| -|Sphere of Duty|Odyssey|U|29814|48| -|Possessed Nomad|Torment|R|29816|13| -|Innocent Blood|Odyssey|C|29818|145| -|Puppeteer|Odyssey|U|29819|97| -|Balshan Griffin|Odyssey|U|29820|67| -|Cephalid Looter|Odyssey|C|29821|72| -|Predict|Odyssey|U|29823|94| -|Plagiarize|Torment|R|29824|44| -|Insidious Dreams|Torment|R|29825|66| -|Dematerialize|Odyssey|C|29826|81| -|Turbulent Dreams|Torment|R|29827|49| -|Immobilizing Ink|Odyssey|C|29828|87| -|Persuasion|Odyssey|R|29829|92| -|Think Tank|Odyssey|U|29830|104| -|Flash of Insight|Judgment|U|29831|40| -|Syncopate|Odyssey|C|29832|103| -|Painbringer|Odyssey|U|29835|155| -|Childhood Horror|Odyssey|U|29836|123| -|Stalking Bloodsucker|Odyssey|R|29839|163| -|Crypt Creeper|Odyssey|C|29840|125| -|Frantic Purification|Torment|C|29841|6| -|Rotting Giant|Odyssey|U|29842|158| -|Screams of the Damned|Odyssey|U|29845|160| -|Buried Alive|Odyssey|U|29846|118| -|Zombify|Odyssey|U|29847|171| -|Skull Fracture|Odyssey|U|29848|162| -|Extract|Odyssey|R|29849|85| -|Cursed Monstrosity|Odyssey|R|29850|126| -|Dwarven Recruiter|Odyssey|U|29853|186| -|Spark Mage|Odyssey|U|29854|222| -|Frenetic Ogre|Odyssey|U|29855|195| -|Breaking Point|Judgment|R|29856|81| -|Accelerate|Torment|C|29857|90| -|Blazing Salvo|Odyssey|C|29858|178| -|Magma Vein|Odyssey|U|29859|203| -|Shower of Coals|Odyssey|U|29860|221| -|Battle Strain|Odyssey|U|29861|177| -|Ember Shot|Judgment|C|29862|87| -|Flash of Defiance|Torment|C|29863|99| -|Recoup|Odyssey|U|29864|216| -|Liquid Fire|Odyssey|U|29866|201| -|Demolish|Odyssey|U|29867|183| -|Overmaster|Torment|R|29868|104| -|Nantuko Elder|Odyssey|U|29870|254| -|Ivy Elemental|Odyssey|R|29871|245| -|Krosan Restorer|Torment|C|29872|130| -|Acorn Harvest|Torment|C|29873|118| -|Springing Tiger|Odyssey|C|29877|272| -|Crashing Centaur|Odyssey|U|29878|235| -|Still Life|Odyssey|U|29879|275| -|Beast Attack|Odyssey|U|29880|230| -|Roar of the Wurm|Odyssey|U|29881|266| -|Piper's Melody|Odyssey|U|29882|261| -|Cleansing Meditation|Torment|U|29883|3| -|Deep Reconnaissance|Odyssey|U|29884|236| -|Exoskeletal Armor|Judgment|U|29885|114| -|Insist|Torment|R|29886|127| -|Limestone Golem|Odyssey|U|29887|301| -|Otarian Juggernaut|Odyssey|R|29889|305| -|Guiltfeeder|Judgment|R|29890|68| -|Skycloud Egg|Odyssey|U|29892|309| -|Sandstone Deadfall|Odyssey|U|29893|307| -|Cabal Coffers|Torment|U|29896|139| -|Steamclaw|Odyssey|U|29897|310| -|Charmed Pendant|Odyssey|R|29899|298| -|Nomad Stadium|Odyssey|U|29902|322| -|Cephalid Coliseum|Odyssey|U|29903|317| -|Cabal Pit|Odyssey|U|29904|315| -|Centaur Garden|Odyssey|U|29905|316| -|Barbarian Ring|Odyssey|U|29906|313| -|Invigorating Falls|Torment|C|29907|128| -|Restless Dreams|Torment|C|29908|79| -|Devoted Caretaker|Odyssey|R|29909|18| -|Wayward Angel|Odyssey|R|29910|57| -|Master Apothecary|Odyssey|R|29911|32| -|Major Teroh|Torment|R|29912|8| -|Graceful Antelope|Odyssey|R|29913|24| -|Cantivore|Odyssey|R|29914|13| -|Delaying Shield|Odyssey|R|29916|17| -|Divine Sacrament|Odyssey|R|29917|19| -|Earnest Fellowship|Odyssey|R|29918|21| -|Kirtar's Wrath|Odyssey|R|29921|28| -|Aegis of Honor|Odyssey|R|29922|1| -|Aven Shrine|Odyssey|R|29923|9| -|Test of Endurance|Judgment|R|29924|29| -|Patron Wizard|Odyssey|R|29925|89| -|Breakthrough|Torment|U|29927|26| -|Scalpelexis|Judgment|R|29928|50| -|Amugaba|Odyssey|R|29929|61| -|Cognivore|Odyssey|R|29931|77| -|Time Stretch|Odyssey|R|29933|108| -|Unifying Theory|Odyssey|R|29934|112| -|Gravestorm|Odyssey|R|29935|141| -|Standstill|Odyssey|U|29936|102| -|Laquatus's Creativity|Odyssey|U|29937|88| -|Aura Graft|Odyssey|U|29938|62| -|Pedantic Learning|Odyssey|R|29940|90| -|Cephalid Shrine|Odyssey|R|29941|75| -|Battle of Wits|Odyssey|R|29942|69| -|Cabal Patriarch|Odyssey|R|29943|120| -|Sutured Ghoul|Judgment|R|29944|73| -|Repentant Vampire|Odyssey|R|29945|157| -|Mortivore|Odyssey|R|29946|152| -|Braids, Cabal Minion|Odyssey|R|29947|117| -|Mindslicer|Odyssey|R|29949|149| -|Bloodcurdler|Odyssey|R|29950|116| -|Nefarious Lich|Odyssey|R|29952|153| -|Tainted Pact|Odyssey|R|29953|164| -|Diabolic Tutor|Odyssey|U|29954|129| -|Decaying Soil|Odyssey|R|29955|127| -|Haunting Echoes|Odyssey|R|29956|142| -|Zombie Infestation|Odyssey|U|29957|170| -|Skeletal Scrying|Odyssey|U|29958|161| -|Cabal Shrine|Odyssey|R|29959|121| -|Mortal Combat|Torment|R|29960|71| -|Whipkeeper|Odyssey|U|29961|228| -|Pardic Miner|Odyssey|R|29962|212| -|Kamahl, Pit Fighter|Odyssey|R|29963|198| -|Mine Layer|Odyssey|R|29964|205| -|Ashen Firebeast|Odyssey|R|29965|174| -|Savage Firecat|Odyssey|R|29966|218| -|Obstinate Familiar|Odyssey|R|29968|210| -|Vampiric Dragon|Odyssey|R|29969|296| -|Volley of Boulders|Odyssey|R|29970|227| -|Need for Speed|Odyssey|R|29971|209| -|Molten Influence|Odyssey|R|29972|207| -|Price of Glory|Odyssey|U|29973|214| -|Dwarven Shrine|Odyssey|R|29977|187| -|Chance Encounter|Odyssey|R|29978|182| -|Squirrel Mob|Odyssey|R|29979|273| -|Gorilla Titan|Odyssey|U|29980|241| -|Nantuko Mentor|Odyssey|R|29981|255| -|Terravore|Odyssey|R|29982|278| -|Stone-Tongue Basilisk|Odyssey|R|29983|276| -|Zoologist|Odyssey|R|29984|285| -|Seton, Krosan Protector|Odyssey|R|29985|267| -|Chlorophant|Odyssey|R|29986|234| -|Nut Collector|Odyssey|R|29987|259| -|Verdant Succession|Odyssey|R|29989|280| -|Ground Seal|Odyssey|R|29991|242| -|Parallel Evolution|Torment|R|29992|136| -|Holistic Wisdom|Odyssey|R|29994|243| -|Nantuko Shrine|Odyssey|R|29995|256| -|Overrun|Odyssey|U|29996|260| -|Junk Golem|Odyssey|R|29997|300| -|Catalyst Stone|Odyssey|R|30005|297| -|Mesmeric Orb|Mirrodin|R|30008|204| -|Mossfire Egg|Odyssey|U|30010|304| -|Crystal Quarry|Odyssey|R|30012|318| -|Deserted Temple|Odyssey|R|30013|320| -|Petrified Field|Odyssey|R|30014|323| -|Tarnished Citadel|Odyssey|R|30015|329| -|Sacred Nectar|Seventh Edition|C|30168|37| -|Monstrous Growth|Seventh Edition|C|30169|258| -|Giant Octopus|Seventh Edition|C|30170|77| -|Volcanic Hammer|Seventh Edition|C|30171|226| -|Cease-Fire|Odyssey|C|30544|14| -|Demoralize|Odyssey|C|30545|184| -|Vivify|Odyssey|U|30546|281| -|Epicenter|Odyssey|R|30547|192| -|Twigwalker|Odyssey|U|30548|279| -|Krosan Beast|Odyssey|R|30549|248| -|Magnivore|Odyssey|R|30550|204| -|Entomb|Odyssey|R|30552|132| -|Shadowblood Egg|Odyssey|U|30553|308| -|Ancestral Tribute|Odyssey|R|30555|2| -|Traumatize|Odyssey|R|30556|110| -|Execute|Odyssey|U|30558|133| -|Malevolent Awakening|Odyssey|U|30560|147| -|Devastating Dreams|Torment|R|30561|95| -|Skyshooter|Odyssey|U|30563|270| -|Cabal Ritual|Torment|C|30564|51| -|Bash to Bits|Odyssey|U|30569|176| -|Firebolt|Odyssey|C|30570|193| -|Scorching Missile|Odyssey|C|30572|219| -|Seize the Day|Odyssey|R|30573|220| -|Mystic Familiar|Torment|C|30607|11| -|Patrol Hound|Odyssey|C|30654|38| -|Concentrate|Odyssey|U|30655|78| -|Krosan Verge|Judgment|U|30657|141| -|Possessed Aven|Torment|R|30658|45| -|Covert Operative|Legions|C|30659|33| -|Peek|Odyssey|C|30686|91| -|Tombfire|Odyssey|R|30690|165| -|Touch of Invisibility|Odyssey|C|30691|109| -|Acceptable Losses|Odyssey|C|30692|172| -|Bearscape|Odyssey|R|30747|229| -|Darkwater Egg|Odyssey|U|30749|299| -|Sungrass Egg|Odyssey|U|30750|311| -|Shelter|Odyssey|C|30761|46| -|Coffin Purge|Odyssey|C|30762|124| -|Cultural Exchange|Odyssey|R|30763|79| -|Tribal Golem|Onslaught|R|30764|311| -|Testament of Faith|Odyssey|U|30765|55| -|Chatter of the Squirrel|Odyssey|C|31444|233| -|Reckless Charge|Odyssey|C|31450|215| -|Rancid Earth|Torment|C|31598|78| -|Pulsating Illusion|Odyssey|U|31611|96| -|Plains|Odyssey|L|31612|331| -|Island|Odyssey|L|31613|335| -|Island|Odyssey|L|31614|336| -|Island|Odyssey|L|31615|337| -|Island|Odyssey|L|31616|338| -|Swamp|Odyssey|L|31617|339| -|Swamp|Odyssey|L|31618|340| -|Swamp|Odyssey|L|31619|341| -|Swamp|Odyssey|L|31620|342| -|Mountain|Odyssey|L|31621|343| -|Mountain|Odyssey|L|31622|344| -|Mountain|Odyssey|L|31623|345| -|Mountain|Odyssey|L|31624|346| -|Forest|Odyssey|L|31625|347| -|Forest|Odyssey|L|31626|348| -|Forest|Odyssey|L|31627|349| -|Forest|Odyssey|L|31628|350| -|Plains|Odyssey|L|31629|332| -|Plains|Odyssey|L|31630|333| -|Plains|Odyssey|L|31631|334| -|Treetop Sentinel|Odyssey|U|31736|111| -|Face of Fear|Odyssey|U|31738|134| -|Mudhole|Odyssey|R|31740|208| -|Refresh|Odyssey|C|31741|264| -|Tainted Field|Torment|U|31757|140| -|Tainted Isle|Torment|U|31758|141| -|Tainted Peak|Torment|U|31759|142| -|Tainted Wood|Torment|U|31760|143| -|Abandoned Outpost|Odyssey|C|31761|312| -|Seafloor Debris|Odyssey|C|31762|325| -|Bog Wreckage|Odyssey|C|31763|314| -|Ravaged Highlands|Odyssey|C|31764|324| -|Timberland Ruins|Odyssey|C|31765|330| -|Mystic Penitent|Odyssey|U|31766|34| -|Aven Flock|Odyssey|C|31767|8| -|Sacred Rites|Odyssey|C|31768|44| -|Confessor|Odyssey|C|31769|15| -|Lithatog|Odyssey|U|31770|289| -|Dedicated Martyr|Odyssey|C|31771|16| -|Mystic Enforcer|Odyssey|R|31772|290| -|Thought Nibbler|Odyssey|C|31774|107| -|Fledgling Imp|Odyssey|C|31777|137| -|Last Rites|Odyssey|C|31778|146| -|Words of Wisdom|Odyssey|C|31779|114| -|Minotaur Explorer|Odyssey|U|31786|206| -|Impulsive Maneuvers|Odyssey|R|31787|197| -|Grand Melee|Onslaught|R|31788|211| -|Dogged Hunter|Odyssey|R|31789|20| -|Pianna, Nomad Captain|Odyssey|R|31790|39| -|Psionic Gift|Odyssey|C|31791|95| -|Phantatog|Odyssey|U|31792|291| -|Sarcatog|Odyssey|U|31793|293| -|Decompose|Odyssey|U|31794|128| -|Tremble|Odyssey|C|31795|225| -|Dwarven Strike Force|Odyssey|U|31796|188| -|Burning Sands|Odyssey|R|31797|180| -|Decimate|Odyssey|R|31798|287| -|Iridescent Angel|Odyssey|R|31799|288| -|Spellbane Centaur|Odyssey|R|31800|271| -|Mirari|Odyssey|R|31801|303| -|Dreamwinder|Odyssey|C|31802|83| -|Thought Eater|Odyssey|U|31803|106| -|Filthy Cur|Odyssey|C|31804|136| -|Petravark|Torment|C|31805|109| -|Dusk Imp|Odyssey|C|31807|131| -|Infected Vermin|Odyssey|U|31808|144| -|Sadistic Hypnotist|Odyssey|U|31809|159| -|Engulfing Flames|Odyssey|U|31810|191| -|Moment's Peace|Odyssey|C|31811|251| -|Primal Frenzy|Odyssey|C|31812|262| -|Escape Artist|Odyssey|C|31813|84| -|Phantom Whelp|Odyssey|C|31814|93| -|Aven Fisher|Odyssey|C|31815|63| -|Deluge|Odyssey|U|31816|80| -|Thought Devourer|Odyssey|R|31817|105| -|Mad Dog|Odyssey|C|31818|202| -|Balancing Act|Odyssey|R|31819|10| -|Lieutenant Kirtar|Odyssey|R|31820|29| -|Aboshan, Cephalid Emperor|Odyssey|R|31821|58| -|Shambling Swarm|Torment|R|31822|82| -|Shifty Doppelganger|Odyssey|R|31823|101| -|Divert|Odyssey|R|31824|82| -|Psychatog|Odyssey|U|31825|292| -|Druid's Call|Odyssey|U|31826|239| -|Millikin|Odyssey|U|31830|302| -|Hypnox|Torment|R|31831|64| -|Patchwork Gnomes|Odyssey|U|31832|306| -|Slithery Stalker|Torment|U|31833|84| -|Atogatog|Odyssey|R|31834|286| -|Thaumatog|Odyssey|U|31835|295| -|Squirrel Nest|Odyssey|U|31836|274| -|Caustic Tar|Odyssey|U|31837|122| -|Steam Vines|Odyssey|U|31838|223| -|Animal Boneyard|Odyssey|U|31839|4| -|Cephalid Snitch|Torment|C|31840|30| -|Nantuko Calmer|Torment|C|31851|132| -|Upheaval|Odyssey|R|31852|113| -|Traveling Plague|Odyssey|R|31853|166| -|New Frontiers|Odyssey|R|31854|257| -|Soulcatcher|Odyssey|U|31865|47| -|Hint of Insanity|Odyssey|R|31867|143| -|Chamber of Manipulation|Odyssey|U|31868|76| -|Laquatus's Champion|Torment|R|31869|67| -|Cephalid Retainer|Odyssey|R|31870|73| -|Karmic Justice|Odyssey|R|31872|26| -|Tattoo Ward|Odyssey|U|31873|54| -|Waste Away|Torment|C|32133|88| -|Teroh's Vanguard|Torment|U|32205|19| -|Nostalgic Dreams|Torment|R|32208|135| -|Stitch Together|Judgment|U|32209|72| -|Gravegouger|Torment|C|32210|62| -|Mesmeric Fiend|Torment|C|32211|69| -|Pardic Arsonist|Torment|U|32213|105| -|Symbiotic Elf|Onslaught|C|32216|288| -|Centaur Chieftain|Torment|U|32218|122| -|Gurzigost|Torment|R|32221|126| -|Grotesque Hybrid|Torment|U|32222|63| -|Cabal Surgeon|Torment|C|32224|52| -|Boneshard Slasher|Torment|U|32225|50| -|Cabal Torturer|Torment|C|32226|53| -|Kamahl's Sledge|Torment|C|32229|102| -|Possessed Barbarian|Torment|R|32231|111| -|Pay No Heed|Torment|C|32232|12| -|Angel of Retribution|Torment|R|32233|1| -|Ghostly Wings|Torment|C|32235|38| -|Temporary Insanity|Torment|U|32236|116| -|Deep Analysis|Torment|C|32237|36| -|Organ Grinder|Torment|C|32238|75| -|Pardic Lancer|Torment|C|32240|107| -|Nantuko Blightcutter|Torment|R|32243|131| -|Seton's Scout|Torment|U|32244|138| -|Floating Shield|Torment|C|32396|5| -|Balshan Collaborator|Torment|U|32915|25| -|Chainer, Dementia Master|Torment|R|32916|56| -|Enslaved Dwarf|Torment|C|32917|96| -|Fiery Temper|Torment|C|32918|97| -|Elephant Ambush|Odyssey|C|32919|240| -|Flaming Gambit|Torment|U|32921|98| -|Shadowmage Infiltrator|Odyssey|R|33604|294| -|Hydromorph Guardian|Torment|C|33627|39| -|Anurid Scavenger|Torment|U|33687|119| -|Cephalid Sage|Torment|U|33690|29| -|Psychotic Haze|Torment|C|33691|76| -|Oversold Cemetery|Onslaught|R|33693|160| -|Goblin Sharpshooter|Onslaught|R|33695|207| -|Epic Struggle|Judgment|R|33697|112| -|Retraced Image|Torment|R|33698|46| -|Gluttonous Zombie|Onslaught|U|33713|151| -|Anger|Judgment|U|33717|77| -|Valor|Judgment|U|33719|32| -|Wonder|Judgment|U|33720|54| -|Brawn|Judgment|U|33721|107| -|Filth|Judgment|U|33722|66| -|Barkhide Mauler|Onslaught|C|34196|246| -|Ray of Revelation|Judgment|C|34199|20| -|Border Patrol|Judgment|C|34201|6| -|Seedtime|Judgment|R|34205|130| -|Suntail Hawk|Judgment|C|34207|28| -|Lightning Surge|Judgment|R|34208|96| -|Grizzly Fate|Judgment|U|34209|119| -|Flaring Pain|Judgment|C|34214|89| -|Strength of Lunacy|Torment|U|34222|86| -|Crippling Fatigue|Torment|C|34225|58| -|Kamahl's Summons|Onslaught|U|34228|269| -|Nantuko Cultivator|Torment|R|34229|133| -|Prismatic Strands|Judgment|C|34233|18| -|Morningtide|Torment|R|34234|10| -|Nomad Mythmaker|Judgment|R|34241|15| -|Spurnmage Advocate|Judgment|U|34242|27| -|Ancestor's Chosen|Judgment|U|34243|1| -|Forcemage Advocate|Judgment|U|34244|116| -|Nullmage Advocate|Judgment|C|34245|126| -|Reborn Hero|Torment|R|34247|14| -|Radiate|Torment|R|34250|113| -|Violent Eruption|Torment|U|34253|117| -|Feral Throwback|Legions|R|34263|126| -|Crackling Club|Torment|C|34278|93| -|Circular Logic|Torment|U|34368|33| -|Ambassador Laquatus|Torment|R|34378|23| -|Skullscorch|Torment|R|34382|114| -|Hell-Bent Raider|Torment|R|34384|101| -|Pyromania|Torment|U|34390|112| -|Overwhelming Instinct|Onslaught|U|34394|276| -|Commando Raid|Onslaught|U|34397|195| -|Riftstone Portal|Judgment|U|34398|143| -|Golden Wish|Judgment|R|34399|12| -|Cunning Wish|Judgment|R|34400|37| -|Nantuko Monastery|Judgment|U|34401|142| -|Death Wish|Judgment|R|34402|64| -|Burning Wish|Judgment|R|34403|83| -|Living Wish|Judgment|R|34405|124| -|Foothill Guide|Onslaught|C|34410|29| -|Battlewise Aven|Judgment|C|34464|4| -|Aquamoeba|Torment|C|34465|24| -|Last Laugh|Torment|R|34467|68| -|Putrid Imp|Torment|C|34470|77| -|Compulsion|Torment|U|34473|34| -|Purge|Darksteel|U|34479|12| -|Masked Gorgon|Judgment|R|34480|69| -|Mythic Proportions|Onslaught|R|34684|274| -|Liquify|Torment|C|34756|41| -|Ironshell Beetle|Judgment|C|34758|121| -|Elvish Guidance|Onslaught|C|34763|255| -|Wirewood Lodge|Onslaught|U|34764|329| -|Lead Astray|Judgment|C|34768|14| -|Solitary Confinement|Judgment|R|34769|24| -|Lost in Thought|Judgment|C|34775|45| -|Cephalid Illusionist|Torment|U|34776|28| -|Mist of Stagnation|Judgment|R|34777|48| -|Strength of Isolation|Torment|U|34782|17| -|Cephalid Inkshrouder|Judgment|U|34784|36| -|Treacherous Vampire|Judgment|U|34788|75| -|Cabal Therapy|Judgment|U|34789|62| -|Shaman's Trance|Judgment|R|34795|98| -|Grip of Amnesia|Judgment|C|34808|41| -|Wormfang Newt|Judgment|C|34809|59| -|Wormfang Behemoth|Judgment|R|34811|55| -|Barbarian Bully|Judgment|C|34818|79| -|Zombie Trailblazer|Torment|U|34819|89| -|Glory|Judgment|R|34822|11| -|Web of Inertia|Judgment|U|34823|53| -|Alter Reality|Torment|R|34832|22| -|Genesis|Judgment|R|34833|117| -|Aven Warcraft|Judgment|U|34865|2| -|Funeral Pyre|Judgment|C|34889|10| -|Phantom Nomad|Judgment|C|34890|17| -|Selfless Exorcist|Judgment|R|34891|21| -|Spirit Cairn|Judgment|U|34897|26| -|Oblivion Stone|Mirrodin|R|34901|222| -|Goretusk Firebeast|Judgment|C|34917|91| -|Wormfang Crab|Judgment|U|34927|56| -|Firecat Blitz|Judgment|U|34929|88| -|Fledgling Dragon|Judgment|R|34930|90| -|Phantom Flock|Judgment|U|34932|16| -|Phantom Tiger|Judgment|C|34934|129| -|Wormfang Manta|Judgment|R|34939|58| -|Soulgorger Orgg|Judgment|U|34942|99| -|Seething Song|Mirrodin|C|34945|104| -|Phantom Nantuko|Judgment|R|34948|128| -|Dwarven Driller|Judgment|U|34950|85| -|Hystrodon|Onslaught|R|34952|266| -|Wormfang Turtle|Judgment|U|34954|60| -|Chastise|Judgment|U|34958|8| -|Nantuko Shade|Torment|R|35053|74| -|Pardic Collaborator|Torment|U|35054|106| -|Worldgorger Dragon|Judgment|R|35056|103| -|Mirari's Wake|Judgment|R|35057|139| -|Anurid Brushhopper|Judgment|R|35059|137| -|Sylvan Safekeeper|Judgment|R|35062|133| -|Sickening Dreams|Torment|U|35063|83| -|Shieldmage Advocate|Judgment|C|35067|22| -|Trained Pronghorn|Judgment|C|35068|30| -|Krosan Wayfarer|Judgment|C|35069|123| -|Folk Medicine|Judgment|C|35071|115| -|Basking Rootwalla|Torment|C|35072|121| -|Phantom Centaur|Judgment|U|35073|127| -|Dwarven Bloodboiler|Judgment|R|35074|84| -|Defy Gravity|Judgment|C|35076|38| -|Battle Screech|Judgment|U|35079|3| -|Earsplitting Rats|Judgment|C|35080|65| -|Stern Judge|Torment|U|35082|16| -|Liberated Dwarf|Judgment|C|35083|95| -|Sengir Vampire|Torment|R|35086|80| -|Infectious Rage|Judgment|U|35087|92| -|Planar Chaos|Judgment|U|35088|97| -|Soulcatchers' Aerie|Judgment|U|35095|25| -|Sudden Strength|Judgment|C|35114|132| -|Grave Consequences|Judgment|U|35161|67| -|Menacing Ogre|Onslaught|R|35164|219| -|Sonic Seizure|Torment|C|35165|115| -|Krosan Cloudscraper|Legions|R|35166|130| -|Hunting Grounds|Judgment|R|35167|138| -|Keep Watch|Judgment|C|35168|43| -|Spelljack|Judgment|R|35169|51| -|Crush of Wurms|Judgment|R|35170|110| -|Morality Shift|Judgment|R|35171|70| -|Mutilate|Torment|R|35194|73| -|Deathmark Prelate|Legions|U|35249|65| -|Wirewood Channeler|Legions|U|35299|144| -|Aura Extraction|Onslaught|U|35326|5| -|Keeneye Aven|Legions|C|35335|41| -|Dispersal Shield|Scourge|C|35344|33| -|Searing Flesh|Onslaught|U|35386|225| -|Alpha Status|Scourge|U|35409|110| -|Naturalize|Onslaught|C|35414|275| -|Insurrection|Onslaught|R|35457|213| -|Tower of Fortunes|Mirrodin|R|35464|267| -|Enchantress's Presence|Onslaught|R|35514|261| -|Erhnam Djinn|Judgment|R|35553|113| -|Pulsemage Advocate|Judgment|R|35575|19| -|Book Burning|Judgment|C|35891|80| -|Commander Eesha|Judgment|R|35893|9| -|Unhinge|Torment|C|35922|87| -|Ichorid|Torment|R|35923|65| -|Dawn of the Dead|Torment|R|35924|59| -|Cephalid Vandal|Torment|R|36034|31| -|Vigilant Sentry|Judgment|C|36035|33| -|Silver Seraph|Judgment|R|36036|23| -|Treacherous Werewolf|Judgment|C|36037|76| -|Browbeat|Judgment|U|36038|82| -|Anurid Barkripper|Judgment|C|36039|104| -|Battlefield Scrounger|Judgment|C|36040|106| -|Grim Lavamancer|Torment|R|36111|100| -|Giant Warthog|Judgment|C|36112|118| -|Krosan Reclamation|Judgment|U|36113|122| -|Mental Note|Judgment|C|36114|46| -|Hapless Researcher|Judgment|C|36115|42| -|Dwarven Scorcher|Judgment|C|36116|86| -|Cabal Trainee|Judgment|C|36117|63| -|Benevolent Bodyguard|Judgment|C|36118|5| -|Swelter|Judgment|U|36119|101| -|Venomous Vines|Judgment|C|36409|136| -|Canopy Claws|Judgment|C|36410|108| -|Harvester Druid|Judgment|C|36411|120| -|Rats' Feast|Judgment|C|36412|71| -|Mirror Wall|Judgment|C|36413|47| -|Envelop|Judgment|C|36414|39| -|Stupefying Touch|Torment|U|36415|48| -|Toxic Stench|Judgment|C|36416|74| -|Cagemail|Judgment|C|36429|7| -|Arcane Teachings|Judgment|C|36430|78| -|Guided Strike|Judgment|C|36431|13| -|Pitchstone Wall|Torment|U|36432|110| -|Mortiphobia|Torment|U|36433|72| -|Jeska, Warrior Adept|Judgment|R|36451|93| -|Anurid Swarmsnapper|Judgment|U|36453|105| -|Serene Sunset|Judgment|U|36454|131| -|Thriss, Nantuko Primus|Judgment|R|36525|134| -|Nantuko Tracer|Judgment|C|36526|125| -|Phantom Nishoba|Judgment|R|37113|140| -|Centaur Rootcaster|Judgment|C|37120|109| -|Branchsnap Lorian|Legions|U|37909|118| -|Murderous Spoils|Darksteel|U|39377|48| -|Pulse of the Forge|Darksteel|R|39410|66| -|Aphetto Grifter|Onslaught|U|39419|65| -|Gustcloak Runner|Onslaught|C|39420|35| -|Mirrodin's Core|Darksteel|U|39421|165| -|Glarecaster|Onslaught|R|39423|30| -|Crude Rampart|Onslaught|U|39425|17| -|Unified Strike|Onslaught|C|39427|58| -|Battlefield Medic|Onslaught|C|39430|9| -|Crown of Awe|Onslaught|C|39431|16| -|Gustcloak Harrier|Onslaught|C|39432|34| -|Piety Charm|Onslaught|C|39433|49| -|Mistform Dreamer|Onslaught|C|39436|93| -|Information Dealer|Onslaught|C|39437|88| -|Blinkmoth Nexus|Darksteel|R|39439|163| -|Sage Aven|Onslaught|C|39440|111| -|Mistform Stalker|Onslaught|U|39441|98| -|Discombobulate|Onslaught|U|39442|79| -|Spy Network|Onslaught|C|39444|115| -|Screaming Seahawk|Onslaught|C|39445|112| -|Sea's Claim|Onslaught|C|39446|113| -|Mistform Mask|Onslaught|C|39449|94| -|Trickery Charm|Onslaught|C|39450|119| -|Meddle|Onslaught|U|39451|92| -|Screeching Buzzard|Onslaught|C|39455|165| -|Shepherd of Rot|Onslaught|C|39464|168| -|Misery Charm|Onslaught|C|39466|158| -|Cabal Slaver|Onslaught|U|39467|131| -|Syphon Soul|Onslaught|C|39468|176| -|Charging Slateback|Onslaught|C|39469|194| -|Sparksmith|Onslaught|C|39476|235| -|Goblin Sky Raider|Onslaught|C|39477|208| -|Karstoderm|Darksteel|U|39478|77| -|Lavamancer's Skill|Onslaught|C|39479|215| -|Shock|Onslaught|C|39482|227| -|Wave of Indifference|Onslaught|C|39483|243| -|Fever Charm|Onslaught|C|39484|202| -|Darksteel Pendant|Darksteel|C|39485|113| -|Battering Craghorn|Onslaught|C|39486|188| -|Snarling Undorak|Onslaught|C|39492|283| -|Elvish Pathcutter|Onslaught|C|39494|256| -|Wall of Mulch|Onslaught|U|39495|298| -|Wellwisher|Onslaught|C|39497|300| -|Vitality Charm|Onslaught|C|39501|296| -|Flooded Strand|Onslaught|R|39503|316| -|Polluted Delta|Onslaught|R|39504|321| -|Bloodstained Mire|Onslaught|R|39505|313| -|Wooded Foothills|Onslaught|R|39506|330| -|Windswept Heath|Onslaught|R|39507|328| -|Gustcloak Sentinel|Onslaught|U|39509|37| -|Weathered Wayfarer|Onslaught|R|39515|59| -|Nameless One|Onslaught|U|39516|100| -|Ironfist Crusher|Onslaught|U|39517|42| -|Aven Soulgazer|Onslaught|U|39520|8| -|Daru Cavalier|Onslaught|C|39523|18| -|Mistform Shrieker|Onslaught|U|39525|96| -|Mistform Wall|Onslaught|C|39526|99| -|Disruptive Pitmage|Onslaught|C|39527|81| -|Thoughtbound Primoc|Onslaught|U|39528|240| -|Mistform Mutant|Onslaught|U|39529|95| -|Aphetto Alchemist|Onslaught|U|39530|64| -|Clone|Onslaught|R|39533|75| -|Trade Secrets|Onslaught|R|39537|118| -|Quicksilver Dragon|Onslaught|R|39539|103| -|Cabal Archon|Onslaught|U|39545|129| -|Boneknitter|Onslaught|U|39547|128| -|Doomed Necromancer|Onslaught|R|39549|140| -|Walking Desecration|Onslaught|U|39552|180| -|Death Match|Onslaught|R|39556|136| -|Kaboom!|Onslaught|R|39559|214| -|Loxodon Mystic|Darksteel|C|39562|7| -|Skirk Prospector|Onslaught|C|39563|230| -|Ridgetop Raptor|Legions|U|39566|108| -|Mana Echoes|Onslaught|R|39571|218| -|Gigapede|Onslaught|R|39578|264| -|Venomspout Brackus|Onslaught|U|39579|295| -|Embermage Goblin|Onslaught|U|39589|200| -|Flamestick Courier|Onslaught|U|39592|203| -|Everglove Courier|Onslaught|U|39593|262| -|Frightshroud Courier|Onslaught|U|39594|149| -|Ghosthelm Courier|Onslaught|U|39595|85| -|Pearlspear Courier|Onslaught|U|39596|48| -|Talisman of Progress|Mirrodin|U|39597|256| -|Talisman of Dominance|Mirrodin|U|39598|253| -|Talisman of Indulgence|Mirrodin|U|39599|255| -|Talisman of Impulse|Mirrodin|U|39600|254| -|Talisman of Unity|Mirrodin|U|39601|257| -|Gustcloak Savior|Onslaught|R|39602|36| -|Liege of the Axe|Legions|U|39603|16| -|Sigil of the New Dawn|Onslaught|R|39605|55| -|True Believer|Onslaught|R|39606|57| -|Gangrenous Goliath|Onslaught|R|39610|150| -|Endemic Plague|Onslaught|R|39612|142| -|Harsh Mercy|Onslaught|R|39614|39| -|Circle of Solace|Onslaught|R|39615|13| -|Mistform Skyreaver|Onslaught|R|39619|97| -|Callous Oppressor|Onslaught|R|39620|72| -|Future Sight|Onslaught|R|39628|84| -|Peer Pressure|Onslaught|R|39629|101| -|Arcbound Overseer|Darksteel|R|39639|99| -|Rotlung Reanimator|Onslaught|R|39640|164| -|Ebonblade Reaper|Onslaught|R|39644|141| -|Grand Coliseum|Onslaught|R|39647|319| -|Kilnmouth Dragon|Legions|R|39653|104| -|Spitfire Handler|Onslaught|U|39655|236| -|Shaleskin Bruiser|Onslaught|U|39656|226| -|Butcher Orgg|Onslaught|R|39658|192| -|Tephraderm|Onslaught|R|39659|239| -|Risky Move|Onslaught|R|39663|223| -|Dragon Roost|Onslaught|R|39665|198| -|Gratuitous Violence|Onslaught|R|39666|212| -|Avarice Totem|Fifth Dawn|U|39667|104| -|Krosan Colossus|Onslaught|R|39669|270| -|Leery Fogbeast|Onslaught|C|39675|273| -|Stag Beetle|Onslaught|R|39676|285| -|Tribal Unity|Onslaught|U|39677|294| -|Centaur Glade|Onslaught|U|39678|251| -|Weird Harvest|Onslaught|R|39680|299| -|Words of Wilding|Onslaught|R|39684|305| -|Silklash Spider|Onslaught|R|39687|281| -|Pulse of the Tangle|Darksteel|R|39690|80| -|Pulse of the Dross|Darksteel|R|39692|50| -|Slate of Ancestry|Onslaught|R|39696|310| -|Pulse of the Fields|Darksteel|R|39697|11| -|Mobilization|Onslaught|R|39699|44| -|Cryptic Gateway|Onslaught|R|39701|306| -|Catapult Squad|Onslaught|U|39702|11| -|Wirewood Savage|Onslaught|C|39703|304| -|Aphetto Dredging|Onslaught|C|39704|125| -|Daru Lancer|Onslaught|C|39705|20| -|Slipstream Eel|Onslaught|C|39706|114| -|Defiant Elf|Legions|C|39707|123| -|Blackmail|Onslaught|U|39709|127| -|Nosy Goblin|Onslaught|C|39710|220| -|Dawning Purist|Onslaught|U|39711|22| -|Glory Seeker|Onslaught|C|39712|31| -|Dragonstalker|Scourge|U|39714|11| -|Grassland Crusader|Onslaught|C|39715|32| -|Gravel Slinger|Onslaught|C|39716|33| -|Daru Healer|Onslaught|C|39717|19| -|Exalted Angel|Onslaught|R|39718|28| -|Spitting Gourna|Onslaught|C|39720|284| -|Treespring Lorian|Onslaught|C|39721|293| -|Goblin Taskmaster|Onslaught|C|39722|210| -|Spined Basher|Onslaught|C|39725|172| -|Headhunter|Onslaught|U|39726|156| -|Riptide Entrancer|Onslaught|R|39727|108| -|Snapping Thragg|Onslaught|U|39729|233| -|Serpentine Basilisk|Onslaught|U|39731|280| -|Nova Cleric|Onslaught|U|39732|45| -|Riptide Director|Legions|R|39733|50| -|Grinning Demon|Onslaught|R|39734|153| -|Rockshard Elemental|Legions|R|39736|109| -|Blistering Firecat|Onslaught|R|39737|189| -|Brood Sliver|Legions|R|39738|120| -|Towering Baloth|Onslaught|U|39741|292| -|Broodhatch Nantuko|Onslaught|U|39742|250| -|Doubtless One|Onslaught|U|39743|27| -|Heedless One|Onslaught|U|39744|265| -|Soulless One|Onslaught|U|39745|171| -|Reckless One|Onslaught|U|39746|222| -|Cabal Interrogator|Scourge|U|39750|57| -|Skittish Valesk|Onslaught|U|39754|231| -|Airdrop Condor|Onslaught|U|39755|186| -|Defensive Maneuvers|Onslaught|C|39822|23| -|Syphon Mind|Onslaught|C|39825|175| -|Goblin Sledder|Onslaught|C|39826|209| -|Wirewood Elf|Onslaught|C|39828|301| -|Spurred Wolverine|Onslaught|C|39835|237| -|Birchlore Rangers|Onslaught|C|39836|248| -|Gustcloak Skirmisher|Onslaught|U|39839|38| -|Goblin Pyromancer|Onslaught|R|39840|206| -|Wirewood Pride|Onslaught|C|39841|303| -|Ixidor's Will|Onslaught|C|39843|90| -|Profane Prayers|Onslaught|C|39845|162| -|Brightstone Ritual|Onslaught|C|39846|191| -|Thunder of Hooves|Onslaught|U|39847|242| -|Riptide Biologist|Onslaught|C|39848|106| -|Fallen Cleric|Onslaught|C|39849|145| -|Wall of Deceit|Legions|U|39850|55| -|Cabal Executioner|Onslaught|U|39851|130| -|Haunted Cadaver|Onslaught|C|39852|154| -|Thrashing Mudspawn|Onslaught|U|39853|177| -|Rorix Bladewing|Onslaught|R|39859|224| -|Silvos, Rogue Elemental|Onslaught|R|39860|282| -|Jareth, Leonine Titan|Onslaught|R|39861|43| -|Supreme Inquisitor|Onslaught|R|39862|117| -|Visara the Dreadful|Onslaught|R|39863|179| -|Break Open|Onslaught|C|39868|190| -|Dwarven Blastminer|Onslaught|U|39869|199| -|Dive Bomber|Onslaught|C|39872|26| -|Shieldmage Elder|Onslaught|U|39879|54| -|Ancestor's Prophet|Onslaught|R|39882|3| -|Crown of Ascension|Onslaught|C|39883|78| -|Imagecrafter|Onslaught|C|39884|87| -|Riptide Chronologist|Onslaught|U|39887|107| -|Goblin Goon|Legions|R|39888|99| -|Airborne Aid|Onslaught|C|39889|62| -|Taunting Elf|Onslaught|C|39890|290| -|Aurification|Onslaught|R|39900|6| -|Bloodline Shaman|Onslaught|U|39903|249| -|Festering Goblin|Onslaught|C|39905|148| -|Aphetto Vulture|Onslaught|U|39906|126| -|Wirewood Herald|Onslaught|C|39907|302| -|Biorhythm|Onslaught|R|39913|247| -|Riptide Mangler|Legions|R|39914|51| -|Custody Battle|Onslaught|U|39919|197| -|Artificial Evolution|Onslaught|R|39923|67| -|Symbiotic Beast|Onslaught|U|39924|287| -|Symbiotic Wurm|Onslaught|R|39925|289| -|Crown of Vigor|Onslaught|C|39926|253| -|Elvish Warrior|Onslaught|C|39927|260| -|Tempting Wurm|Onslaught|R|39929|291| -|Arcanis the Omnipotent|Onslaught|R|39932|66| -|Oblation|Onslaught|R|39933|46| -|Goblin Machinist|Onslaught|U|39942|204| -|Elven Riders|Onslaught|U|40056|254| -|Crown of Fury|Onslaught|C|40058|196| -|Crown of Suspicion|Onslaught|C|40059|134| -|Crafty Pathmage|Onslaught|C|40060|77| -|Voidmage Prodigy|Onslaught|R|40101|120| -|Forest|Onslaught|L|40105|350| -|Forest|Onslaught|L|40106|349| -|Mountain|Onslaught|L|40107|346| -|Mountain|Onslaught|L|40108|345| -|Mountain|Onslaught|L|40109|344| -|Mountain|Onslaught|L|40110|343| -|Swamp|Onslaught|L|40111|342| -|Swamp|Onslaught|L|40112|341| -|Swamp|Onslaught|L|40113|340| -|Swamp|Onslaught|L|40114|339| -|Forest|Onslaught|L|40115|348| -|Forest|Onslaught|L|40116|347| -|Island|Onslaught|L|40117|338| -|Island|Onslaught|L|40118|337| -|Island|Onslaught|L|40119|336| -|Island|Onslaught|L|40120|335| -|Plains|Onslaught|L|40121|334| -|Plains|Onslaught|L|40122|333| -|Plains|Onslaught|L|40123|332| -|Plains|Onslaught|L|40124|331| -|Shared Triumph|Onslaught|R|40127|53| -|Dispersing Orb|Onslaught|U|40128|80| -|Cover of Darkness|Onslaught|R|40129|133| -|Steely Resolve|Onslaught|R|40130|286| -|Aven Brigadier|Onslaught|R|40131|7| -|Psychic Trance|Onslaught|R|40173|102| -|Voice of the Woods|Onslaught|R|40174|297| -|Words of Wind|Onslaught|R|40188|122| -|Words of Worship|Onslaught|R|40189|61| -|Words of Waste|Onslaught|R|40190|182| -|Words of War|Onslaught|R|40191|244| -|Goblin Piledriver|Onslaught|R|40193|205| -|Skirk Fire Marshal|Onslaught|R|40194|229| -|Aggravated Assault|Onslaught|R|40195|185| -|Dream Chisel|Onslaught|R|40196|308| -|Doom Cannon|Onslaught|R|40197|307| -|Riptide Replicator|Onslaught|R|40198|309| -|Standardize|Onslaught|R|40205|116| -|Pinpoint Avalanche|Onslaught|C|40537|221| -|Kamahl, Fist of Krosa|Onslaught|R|40538|268| -|Seaside Haven|Onslaught|U|40539|323| -|Contested Cliffs|Onslaught|R|40540|314| -|Unholy Grotto|Onslaught|R|40541|327| -|Starlit Sanctum|Onslaught|U|40542|325| -|Phage the Untouchable|Legions|R|40545|78| -|Ixidor, Reality Sculptor|Onslaught|R|40578|89| -|Rummaging Wizard|Onslaught|U|40601|110| -|Exiled Doomsayer|Scourge|R|40648|13| -|Crowd Favorites|Onslaught|U|40653|15| -|Aven Fateshaper|Onslaught|U|40655|69| -|Righteous Cause|Onslaught|U|40656|51| -|Smother|Onslaught|U|41023|170| -|Whipcorder|Onslaught|U|41024|60| -|Krosan Groundshaker|Onslaught|U|41056|271| -|Head Games|Onslaught|R|41132|155| -|Disciple of Grace|Onslaught|C|41133|25| -|Disciple of Malice|Onslaught|C|41134|139| -|Essence Fracture|Onslaught|U|41135|82| -|Swat|Onslaught|C|41136|174| -|Secluded Steppe|Onslaught|C|41137|324| -|Lonely Sandbar|Onslaught|C|41138|320| -|Barren Moor|Onslaught|C|41139|312| -|Forgotten Cave|Onslaught|C|41140|317| -|Tranquil Thicket|Onslaught|C|41141|326| -|Death Pulse|Onslaught|U|41142|137| -|Solar Blast|Onslaught|C|41143|234| -|Sunfire Balm|Onslaught|U|41144|56| -|Primal Boost|Onslaught|U|41145|277| -|Complicate|Onslaught|U|41146|76| -|Lightning Rift|Onslaught|U|41147|217| -|Astral Slide|Onslaught|U|41148|4| -|Fleeting Aven|Onslaught|U|41149|83| -|Withering Hex|Onslaught|U|41150|181| -|Invigorating Boon|Onslaught|U|41151|267| -|Demystify|Onslaught|C|41152|24| -|Renewed Faith|Onslaught|C|41153|50| -|Inspirit|Onslaught|U|41154|41| -|Mage's Guile|Onslaught|C|41155|91| -|Blatant Thievery|Onslaught|R|41156|71| -|Dirge of Dread|Onslaught|C|41157|138| -|Lay Waste|Onslaught|C|41158|216| -|Run Wild|Onslaught|U|41160|279| -|Choking Tethers|Onslaught|C|41161|74| -|Akroma's Blessing|Onslaught|U|41162|1| -|Improvised Armor|Onslaught|U|41163|40| -|Unburden|Scourge|C|41164|77| -|Fade from Memory|Onslaught|U|41165|144| -|Undead Gladiator|Onslaught|R|41166|178| -|Starstorm|Onslaught|R|41167|238| -|Akroma's Vengeance|Onslaught|R|41168|2| -|Feeding Frenzy|Onslaught|U|41169|147| -|Sandskin|Onslaught|C|41170|52| -|Slice and Dice|Onslaught|U|41171|232| -|Explosive Vegetation|Onslaught|U|41172|263| -|Shade's Breath|Onslaught|U|41279|167| -|Silent Specter|Onslaught|R|41280|169| -|Reminisce|Onslaught|U|41462|105| -|Annex|Onslaught|U|41463|63| -|Blade Sliver|Legions|U|42016|88| -|Plated Sliver|Legions|C|42017|19| -|Bladewing the Risen|Scourge|R|42024|136| -|Essence Sliver|Legions|R|42025|13| -|Synapse Sliver|Legions|R|42026|53| -|Frenetic Raptor|Legions|U|42028|93| -|Quick Sliver|Legions|C|42029|136| -|Crypt Sliver|Legions|C|42033|63| -|Mistform Sliver|Legions|C|42037|46| -|Toxin Sliver|Legions|R|42038|84| -|Needleshot Gourna|Legions|C|42039|133| -|Zealous Inquisitor|Scourge|C|42040|27| -|Magma Sliver|Legions|R|42041|107| -|Akroma, Angel of Wrath|Legions|R|42049|1| -|Scion of Darkness|Legions|R|42050|79| -|Daru Mender|Legions|U|42053|8| -|Willbender|Legions|U|42054|58| -|Skinthinner|Legions|C|42055|80| -|Skirk Marauder|Legions|C|42056|113| -|Patron of the Wild|Legions|C|42057|134| -|Wingbeat Warrior|Legions|C|42058|29| -|Echo Tracer|Legions|C|42059|37| -|Aphetto Exterminator|Legions|U|42060|59| -|Gempalm Sorcerer|Legions|U|42064|39| -|Gempalm Polluter|Legions|C|42065|70| -|Gempalm Incinerator|Legions|U|42066|94| -|Gempalm Strider|Legions|U|42067|127| -|Master of the Veil|Legions|U|42068|43| -|Voidmage Apprentice|Legions|C|42069|54| -|Glowrider|Legions|R|42073|15| -|Dark Supplicant|Legions|U|42077|64| -|Shifting Sliver|Legions|U|42078|52| -|Skirk Outrider|Legions|C|42082|114| -|Elvish Soultiller|Legions|R|42083|124| -|Sundering Titan|Darksteel|R|42084|146| -|Weaver of Lies|Legions|R|42156|57| -|Fugitive Wizard|Legions|C|42160|38| -|Mistform Wakecaster|Legions|U|42165|48| -|Tribal Forcemage|Legions|R|42170|142| -|Earthblighter|Legions|U|42171|68| -|Crookclaw Elder|Legions|U|42172|34| -|Ghastly Remains|Legions|R|42178|71| -|Wheel and Deal|Onslaught|R|42184|121| -|Nantuko Husk|Onslaught|C|42186|159| -|Caller of the Claw|Legions|R|42187|121| -|Animal Magnetism|Onslaught|R|42190|245| -|Hundroog|Legions|C|42249|129| -|Stoic Champion|Legions|U|42265|21| -|Zombie Brute|Legions|U|42270|87| -|Celestial Gatekeeper|Legions|R|42271|6| -|Primal Whisperer|Legions|R|42272|135| -|Goblin Dynamo|Legions|U|42274|97| -|Clickslither|Legions|R|42277|90| -|Daru Stinger|Legions|C|42278|10| -|Primoc Escapee|Legions|U|42437|49| -|Macetail Hystrodon|Legions|C|42440|106| -|Avarax|Onslaught|U|43331|187| -|Krosan Tusker|Onslaught|C|43479|272| -|Krark-Clan Stoker|Darksteel|C|43491|65| -|Frontline Strategist|Scourge|C|43493|15| -|Aven Redeemer|Legions|C|43497|3| -|Frozen Solid|Scourge|C|43500|36| -|Treetop Scout|Scourge|C|43501|130| -|Nim Abomination|Darksteel|U|43502|49| -|Reap and Sow|Darksteel|C|43503|81| -|Savage Beating|Darksteel|R|43506|67| -|Second Sight|Darksteel|U|43510|33| -|Soulscour|Darksteel|R|43511|14| -|Carrion Feeder|Scourge|C|43512|59| -|Edgewalker|Scourge|U|43513|137| -|Zombie Cutthroat|Scourge|C|43515|81| -|Screams from Within|Darksteel|U|43517|52| -|Decree of Pain|Scourge|R|43522|64| -|Flamewave Invoker|Legions|C|43523|92| -|Goblin Brigand|Scourge|C|43525|94| -|Cosmic Larva|Fifth Dawn|R|43529|63| -|Torrent of Fire|Scourge|C|43530|107| -|Dragon Breath|Scourge|C|43533|86| -|Stonewood Invoker|Legions|C|43534|139| -|Krosan Warchief|Scourge|U|43535|123| -|Wirewood Guardian|Scourge|C|43537|132| -|Elvish Aberration|Scourge|U|43538|118| -|Accelerated Mutation|Scourge|C|43539|109| -|Dismantle|Darksteel|U|43540|57| -|Claws of Wirewood|Scourge|U|43541|114| -|One with Nature|Scourge|U|43543|125| -|Trinisphere|Darksteel|R|43545|154| -|Tanglewalker|Darksteel|U|43547|86| -|Darksteel Reactor|Darksteel|R|43548|114| -|Siege-Gang Commander|Scourge|R|43552|103| -|Misguided Rage|Scourge|C|43555|99| -|Auriok Siege Sled|Darksteel|U|43556|105| -|Burden of Greed|Darksteel|C|43557|38| -|Upwelling|Scourge|R|43558|131| -|Magnetic Flux|Darksteel|C|43559|25| -|Darksteel Brute|Darksteel|U|43563|108| -|Xantid Swarm|Scourge|R|43564|135| -|Form of the Dragon|Scourge|R|43566|93| -|Goblin Psychopath|Scourge|U|43567|95| -|Dragon Mage|Scourge|R|43569|87| -|Dimensional Breach|Scourge|R|43573|9| -|Relic Barrier|Fifth Dawn|U|43574|147| -|Trap Digger|Scourge|R|43577|24| -|Riptide Survivor|Scourge|U|43578|48| -|Juggernaut|Darksteel|U|43579|125| -|Pemmin's Aura|Scourge|U|43581|45| -|Raven Guild Master|Scourge|R|43582|47| -|Undead Warchief|Scourge|U|43586|78| -|Test of Faith|Darksteel|U|43587|17| -|Skirk Volcanist|Scourge|U|43590|104| -|Goblin Warchief|Scourge|U|43591|97| -|Echoing Calm|Darksteel|C|43592|2| -|Extra Arms|Scourge|U|43595|92| -|Woodcloaker|Scourge|C|43596|134| -|Ambush Commander|Scourge|R|43599|111| -|Day of the Dragons|Scourge|R|43602|31| -|Parallel Thoughts|Scourge|R|43604|44| -|Long-Term Plans|Scourge|U|43605|38| -|Thundercloud Elemental|Scourge|U|43606|54| -|Seedborn Muse|Legions|R|43607|138| -|Final Punishment|Scourge|R|43611|67| -|War Elemental|Mirrodin|R|43614|112| -|Soul Collector|Scourge|R|43615|74| -|Nefashu|Scourge|R|43616|70| -|Rain of Blades|Scourge|U|43622|20| -|Gilded Light|Scourge|U|43623|16| -|Daru Warchief|Scourge|U|43625|6| -|Aven Liberator|Scourge|C|43626|4| -|Anurid Murkdiver|Onslaught|C|43638|124| -|Dragon Tyrant|Scourge|R|43711|88| -|Ageless Sentinels|Scourge|R|43713|1| -|Smokespew Invoker|Legions|C|43714|81| -|Twisted Abomination|Scourge|C|43717|76| -|Mistform Seaswift|Legions|C|43721|45| -|Glowering Rogon|Legions|C|43723|128| -|Embalmed Brawler|Legions|C|43724|69| -|Call to the Grave|Scourge|R|43725|58| -|Lingering Death|Scourge|C|43727|69| -|Rush of Knowledge|Scourge|C|43729|49| -|Metamorphose|Scourge|U|43733|40| -|Skulltap|Scourge|C|43734|73| -|Threaten|Onslaught|U|43736|241| -|Gempalm Avenger|Legions|C|43791|14| -|Starlight Invoker|Legions|C|43792|20| -|Wirewood Hivemaster|Legions|U|43794|145| -|Glintwing Invoker|Legions|C|44204|40| -|Chromeshell Crab|Legions|R|44205|32| -|Blood Celebrant|Legions|C|44206|61| -|Sootfeather Flock|Legions|C|44207|82| -|Bloodstoke Howler|Legions|C|44209|89| -|Nantuko Vigilante|Legions|C|44210|132| -|White Knight|Legions|U|44212|27| -|Fierce Empath|Scourge|C|44218|119| -|Forgotten Ancient|Scourge|R|44219|120| -|Fatal Mutation|Scourge|U|44220|66| -|Karona, False God|Scourge|R|44263|138| -|Clutch of Undeath|Scourge|C|44264|61| -|Root Sliver|Legions|U|44271|137| -|Warped Researcher|Legions|U|44274|56| -|Noxious Ghoul|Legions|U|44276|77| -|Spectral Sliver|Legions|U|44277|83| -|Corpse Harvester|Legions|U|44279|62| -|Chartooth Cougar|Scourge|C|44281|84| -|Shaleskin Plower|Legions|C|44282|110| -|Goblin Firebug|Legions|C|44286|98| -|Pyrostatic Pillar|Scourge|U|44290|100| -|Goblin War Strike|Scourge|C|44292|96| -|Goblin Turncoat|Legions|C|44294|72| -|Ward Sliver|Legions|U|44296|25| -|Havoc Demon|Legions|R|44299|74| -|Dermoplasm|Legions|R|44300|35| -|Skirk Alarmist|Legions|R|44306|111| -|Leonin Battlemage|Darksteel|U|44307|5| -|Dawn Elemental|Scourge|R|44311|7| -|Silver Knight|Scourge|U|44313|23| -|Dripping Dead|Legions|C|44316|67| -|Goblin Clearcutter|Legions|U|44317|96| -|Krosan Drover|Scourge|C|44320|122| -|Planar Guide|Legions|R|44323|18| -|Wall of Hope|Legions|C|44324|24| -|Aven Envoy|Legions|C|44325|30| -|Vexing Beetle|Legions|R|44327|143| -|Sunstrike Legionnaire|Legions|R|44328|22| -|Defender of the Order|Legions|R|44329|11| -|Root Elemental|Scourge|R|44333|127| -|Berserk Murlodont|Legions|C|44334|117| -|Decree of Annihilation|Scourge|R|44335|85| -|Temple of the False God|Scourge|U|44336|143| -|Raven Guild Initiate|Scourge|C|44337|46| -|Aphetto Runecaster|Scourge|U|44339|28| -|Bonethorn Valesk|Scourge|C|44342|82| -|Aven Farseer|Scourge|C|44343|3| -|Eternal Dragon|Scourge|R|44398|12| -|Dragon Scales|Scourge|C|44400|10| -|Reward the Faithful|Scourge|U|44401|22| -|Mischievous Quanar|Scourge|R|44403|42| -|Unstable Hulk|Legions|R|44405|115| -|Infernal Caretaker|Legions|C|44411|76| -|Spark Spray|Scourge|C|44484|105| -|Cabal Conditioning|Scourge|R|44491|56| -|Drinker of Sorrow|Legions|R|44492|66| -|Bane of the Living|Legions|R|44493|60| -|Beacon of Destiny|Legions|R|44496|5| -|Enormous Baloth|Legions|U|44500|125| -|Merchant of Secrets|Legions|C|44501|44| -|Daru Sanctifier|Legions|C|44504|9| -|Iron-Barb Hellion|Fifth Dawn|U|44608|69| -|Imperial Hellkite|Legions|R|44623|103| -|Keeper of the Nine Gales|Legions|R|44626|42| -|Goblin Assassin|Legions|U|44656|95| -|Akroma's Devoted|Legions|U|44747|2| -|Hunter Sliver|Legions|C|44772|102| -|Windborn Muse|Legions|R|44837|28| -|Dreamborn Muse|Legions|R|44840|36| -|Graveborn Muse|Legions|R|44841|73| -|Lavaborn Muse|Legions|R|44842|105| -|Timberwatch Elf|Legions|C|45121|140| -|Whipgrass Entangler|Legions|C|45122|26| -|Goblin Lookout|Legions|C|45123|101| -|Totem Speaker|Legions|U|45124|141| -|Goblin Grappler|Legions|C|45125|100| -|Swooping Talon|Legions|U|45126|23| -|Crested Craghorn|Legions|C|45127|91| -|Warbreak Trumpeter|Legions|U|45130|116| -|Lowland Tracker|Legions|C|45131|17| -|Deftblade Elite|Legions|C|45132|12| -|Brontotherium|Legions|U|45133|119| -|Krosan Vorine|Legions|C|45134|131| -|Force Bubble|Scourge|R|45138|14| -|Daru Spiritualist|Scourge|C|45139|5| -|Decree of Justice|Scourge|R|45141|8| -|Vile Deacon|Legions|C|45150|85| -|Dragon Shadow|Scourge|C|45155|65| -|Ancient Ooze|Scourge|R|45164|112| -|Kurgadon|Scourge|U|45165|124| -|Sliver Overlord|Scourge|R|45166|139| -|Tundra Wolves|Eighth Edition|C|45167|54| -|Honor Guard|Eighth Edition|C|45168|25| -|Master Decoy|Eighth Edition|C|45169|29| -|Samite Healer|Eighth Edition|C|45170|41| -|Crossbow Infantry|Eighth Edition|C|45171|15| -|Angelic Page|Eighth Edition|C|45172|2| -|Glory Seeker|Eighth Edition|C|45173|21| -|Standing Troops|Eighth Edition|C|45174|48| -|Venerable Monk|Eighth Edition|C|45175|55| -|Diving Griffin|Eighth Edition|C|45176|17| -|Aven Cloudchaser|Eighth Edition|C|45177|5| -|Razorfoot Griffin|Eighth Edition|C|45178|36| -|Aven Flock|Eighth Edition|C|45179|6| -|Healing Salve|Eighth Edition|C|45180|22| -|Holy Day|Eighth Edition|C|45181|23| -|Holy Strength|Eighth Edition|C|45182|24| -|Spirit Link|Eighth Edition|U|45183|47| -|Redeem|Eighth Edition|C|45184|37| -|Demystify|Eighth Edition|C|45185|16| -|Pacifism|Eighth Edition|C|45186|33| -|Sacred Nectar|Eighth Edition|C|45187|40| -|Solidarity|Eighth Edition|C|45188|46| -|Suntail Hawk|Eighth Edition|C|45189|51| -|Sword Dancer|Eighth Edition|U|45190|53| -|Metal Fatigue|Darksteel|C|45191|8| -|Wall of Swords|Eighth Edition|U|45192|56| -|Seasoned Marshal|Eighth Edition|U|45193|44| -|Ardent Militia|Eighth Edition|U|45194|3| -|Angel of Mercy|Eighth Edition|U|45195|1| -|Staunch Defenders|Eighth Edition|U|45196|49| -|Sanctimony|Eighth Edition|U|45197|42| -|Rain of Blades|Eighth Edition|U|45198|35| -|Elite Javelineer|Eighth Edition|U|45199|19| -|Chastise|Eighth Edition|U|45200|9| -|Peach Garden Oath|Eighth Edition|U|45201|34| -|Circle of Protection: White|Eighth Edition|U|45202|14| -|Circle of Protection: Blue|Eighth Edition|U|45203|11| -|Circle of Protection: Black|Eighth Edition|U|45204|10| -|Circle of Protection: Red|Eighth Edition|U|45205|13| -|Circle of Protection: Green|Eighth Edition|U|45206|12| -|Savannah Lions|Eighth Edition|R|45207|43| -|Intrepid Hero|Eighth Edition|R|45208|26| -|Sunweb|Eighth Edition|R|45209|52| -|Oracle's Attendants|Eighth Edition|R|45210|32| -|Blinding Angel|Eighth Edition|R|45211|8| -|Serra Angel|Eighth Edition|R|45212|45| -|Master Healer|Eighth Edition|R|45213|30| -|Elite Archers|Eighth Edition|R|45214|18| -|Sacred Ground|Eighth Edition|R|45215|39| -|Blessed Reversal|Eighth Edition|R|45216|7| -|Rolling Stones|Eighth Edition|R|45217|38| -|Glorious Anthem|Eighth Edition|R|45218|20| -|Worship|Eighth Edition|R|45219|57| -|Story Circle|Eighth Edition|R|45220|50| -|Wrath of God|Eighth Edition|R|45222|58| -|Ivory Mask|Eighth Edition|R|45223|27| -|Noble Purpose|Eighth Edition|R|45224|31| -|Fugitive Wizard|Eighth Edition|C|45225|81| -|Sage Owl|Eighth Edition|C|45226|98| -|Storm Crow|Eighth Edition|C|45227|104| -|Sneaky Homunculus|Eighth Edition|C|45228|101| -|Horned Turtle|Eighth Edition|C|45229|83| -|Wind Drake|Eighth Edition|C|45230|114| -|Merchant of Secrets|Eighth Edition|C|45231|90| -|Spiketail Hatchling|Eighth Edition|U|45232|102| -|Coastal Hornclaw|Eighth Edition|C|45233|66| -|Sea Monster|Eighth Edition|C|45234|99| -|Twiddle|Eighth Edition|C|45235|111| -|Flight|Eighth Edition|C|45236|80| -|Invisibility|Eighth Edition|U|45237|87| -|Flash Counter|Eighth Edition|C|45238|78| -|Unsummon|Eighth Edition|C|45239|112| -|Curiosity|Eighth Edition|U|45240|72| -|Remove Soul|Eighth Edition|C|45241|95| -|Mana Leak|Eighth Edition|C|45242|89| -|Boomerang|Eighth Edition|C|45243|63| -|Dehydration|Eighth Edition|C|45244|75| -|Catalog|Eighth Edition|C|45245|65| -|Inspiration|Eighth Edition|C|45246|85| -|Coral Eel|Eighth Edition|C|45247|70| -|Puppeteer|Eighth Edition|U|45249|94| -|Phantom Warrior|Eighth Edition|U|45250|93| -|Wall of Air|Eighth Edition|U|45251|113| -|Thieving Magpie|Eighth Edition|U|45252|107| -|Fighting Drake|Eighth Edition|U|45253|77| -|Wrath of Marit Lage|Eighth Edition|U|45254|115| -|Air Elemental|Eighth Edition|U|45255|59| -|Telepathy|Eighth Edition|U|45256|105| -|Shifting Sky|Eighth Edition|R|45257|100| -|Intruder Alarm|Eighth Edition|R|45258|86| -|Index|Eighth Edition|C|45259|84| -|Treasure Trove|Eighth Edition|U|45260|110| -|Aven Fisher|Eighth Edition|C|45261|61| -|Concentrate|Eighth Edition|U|45262|68| -|Steal Artifact|Eighth Edition|U|45263|103| -|Rewind|Eighth Edition|U|45264|96| -|Fleeting Image|Eighth Edition|R|45265|79| -|Temporal Adept|Eighth Edition|R|45266|106| -|Daring Apprentice|Eighth Edition|R|45267|73| -|Archivist|Eighth Edition|R|45268|60| -|Sage of Lat-Nam|Eighth Edition|R|45269|97| -|Mahamoti Djinn|Eighth Edition|R|45270|88| -|Tidal Kraken|Eighth Edition|R|45271|108| -|Trade Routes|Eighth Edition|R|45272|109| -|Confiscate|Eighth Edition|U|45273|69| -|Mind Bend|Eighth Edition|R|45274|92| -|Merchant Scroll|Eighth Edition|U|45275|91| -|Balance of Power|Eighth Edition|R|45276|62| -|Deflection|Eighth Edition|R|45277|74| -|Zur's Weirding|Eighth Edition|R|45278|116| -|Bribery|Eighth Edition|R|45279|64| -|Cowardice|Eighth Edition|R|45280|71| -|Evacuation|Eighth Edition|R|45281|76| -|Maggot Carrier|Eighth Edition|C|45283|142| -|Bog Imp|Eighth Edition|C|45284|119| -|Deepwood Ghoul|Eighth Edition|C|45285|127| -|Ravenous Rats|Eighth Edition|C|45286|158| -|Spineless Thug|Eighth Edition|C|45287|166| -|Dusk Imp|Eighth Edition|C|45288|130| -|Looming Shade|Eighth Edition|C|45289|140| -|Severed Legion|Eighth Edition|C|45290|163| -|Plague Beetle|Eighth Edition|C|45291|154| -|Giant Cockroach|Eighth Edition|C|45292|135| -|Gravedigger|Eighth Edition|C|45293|138| -|Scathe Zombies|Eighth Edition|C|45294|160| -|Raise Dead|Eighth Edition|C|45295|157| -|Unholy Strength|Eighth Edition|C|45296|169| -|Coercion|Eighth Edition|C|45297|122| -|Nausea|Eighth Edition|C|45298|148| -|Fear|Eighth Edition|C|45299|134| -|Vicious Hunger|Eighth Edition|C|45300|171| -|Dark Banishing|Eighth Edition|C|45301|123| -|Mind Rot|Eighth Edition|C|45302|144| -|Serpent Warrior|Eighth Edition|C|45303|161| -|Mind Slash|Eighth Edition|U|45304|145| -|Swarm of Rats|Eighth Edition|U|45305|167| -|Carrion Wall|Eighth Edition|U|45306|121| -|Abyssal Specter|Eighth Edition|U|45307|117| -|Bog Wraith|Eighth Edition|U|45308|120| -|Deathgazer|Eighth Edition|U|45309|126| -|Nekrataal|Eighth Edition|U|45310|149| -|Drudge Skeletons|Eighth Edition|C|45311|129| -|Primeval Shambler|Eighth Edition|U|45312|156| -|Ambition's Cost|Eighth Edition|U|45313|118| -|Slay|Eighth Edition|U|45314|164| -|Execute|Eighth Edition|U|45315|132| -|Megrim|Eighth Edition|U|45316|143| -|Sever Soul|Eighth Edition|U|45317|162| -|Zombify|Eighth Edition|U|45318|174| -|Diabolic Tutor|Eighth Edition|U|45319|128| -|Mind Sludge|Eighth Edition|U|45320|146| -|Soul Feast|Eighth Edition|U|45321|165| -|Royal Assassin|Eighth Edition|R|45323|159| -|Lord of the Undead|Eighth Edition|R|45324|141| -|Eastern Paladin|Eighth Edition|R|45325|131| -|Western Paladin|Eighth Edition|R|45326|173| -|Phyrexian Plaguelord|Eighth Edition|R|45327|153| -|Vampiric Spirit|Eighth Edition|R|45328|170| -|Death Pits of Rath|Eighth Edition|R|45329|125| -|Fallen Angel|Eighth Edition|R|45330|133| -|Nightmare|Eighth Edition|R|45331|150| -|Larceny|Eighth Edition|R|45332|139| -|Warped Devotion|Eighth Edition|R|45333|172| -|Underworld Dreams|Eighth Edition|R|45334|168| -|Murderous Betrayal|Eighth Edition|R|45335|147| -|Grave Pact|Eighth Edition|R|45336|137| -|Persecute|Eighth Edition|R|45337|151| -|Death Pit Offering|Eighth Edition|R|45338|124| -|Phyrexian Arena|Eighth Edition|R|45339|152| -|Plague Wind|Eighth Edition|R|45340|155| -|Cinder Wall|Eighth Edition|C|45341|182| -|Raging Goblin|Eighth Edition|C|45342|212| -|Goblin Raider|Eighth Edition|C|45343|191| -|Goblin Chariot|Eighth Edition|C|45344|188| -|Balduvian Barbarians|Eighth Edition|C|45345|176| -|Ridgeline Rager|Eighth Edition|C|45346|215| -|Sabretooth Tiger|Eighth Edition|C|45347|217| -|Hill Giant|Eighth Edition|C|45348|194| -|Lightning Elemental|Eighth Edition|C|45349|201| -|Shock Troops|Eighth Edition|C|45350|223| -|Orcish Spy|Eighth Edition|C|45351|208| -|Shock|Eighth Edition|C|45352|222| -|Canyon Wildcat|Eighth Edition|C|45353|181| -|Reflexes|Eighth Edition|C|45354|213| -|Shatter|Eighth Edition|C|45355|220| -|Volcanic Hammer|Eighth Edition|C|45356|231| -|Enrage|Eighth Edition|U|45357|185| -|Sizzle|Eighth Edition|C|45358|224| -|Panic Attack|Eighth Edition|C|45359|209| -|Stone Rain|Eighth Edition|C|45360|225| -|Lightning Blast|Eighth Edition|U|45361|200| -|Lava Axe|Eighth Edition|C|45362|197| -|Goblin Glider|Eighth Edition|U|45363|189| -|Anaba Shaman|Eighth Edition|C|45364|175| -|Viashino Sandstalker|Eighth Edition|U|45365|230| -|Orcish Artillery|Eighth Edition|U|45366|207| -|Dwarven Demolition Team|Eighth Edition|U|45367|184| -|Wall of Stone|Eighth Edition|U|45368|232| -|Ogre Taskmaster|Eighth Edition|U|45369|205| -|Lesser Gargadon|Eighth Edition|U|45370|199| -|Hulking Cyclops|Eighth Edition|U|45371|195| -|Flashfires|Eighth Edition|U|45372|186| -|Boil|Eighth Edition|U|45373|180| -|Pyroclasm|Eighth Edition|U|45374|210| -|Demolish|Eighth Edition|U|45375|183| -|Guerrilla Tactics|Eighth Edition|U|45376|192| -|Tremor|Eighth Edition|C|45377|228| -|Pyrotechnics|Eighth Edition|U|45378|211| -|Blaze|Eighth Edition|U|45379|177| -|Sudden Impact|Eighth Edition|U|45380|226| -|Mogg Sentry|Eighth Edition|R|45381|203| -|Okk|Eighth Edition|R|45382|206| -|Lava Hounds|Eighth Edition|R|45383|198| -|Goblin King|Eighth Edition|R|45384|190| -|Blood Moon|Eighth Edition|R|45386|178| -|Bloodshot Cyclops|Eighth Edition|R|45387|179| -|Shivan Dragon|Eighth Edition|R|45388|221| -|Two-Headed Dragon|Eighth Edition|R|45389|229| -|Rukh Egg|Eighth Edition|R|45390|216| -|Mana Clash|Eighth Edition|R|45391|202| -|Seismic Assault|Eighth Edition|R|45392|219| -|Relentless Assault|Eighth Edition|R|45393|214| -|Inferno|Eighth Edition|R|45394|196| -|Thieves' Auction|Eighth Edition|R|45395|227| -|Obliterate|Eighth Edition|R|45396|204| -|Searing Wind|Eighth Edition|R|45397|218| -|Furnace of Rath|Eighth Edition|R|45398|187| -|Vine Trellis|Eighth Edition|C|45399|287| -|Wood Elves|Eighth Edition|C|45400|289| -|Canopy Spider|Eighth Edition|C|45401|236| -|Grizzly Bears|Eighth Edition|C|45402|256| -|Rushwood Dryad|Eighth Edition|C|45403|278| -|Horned Troll|Eighth Edition|C|45404|257| -|Lone Wolf|Eighth Edition|C|45405|262| -|Trained Armodon|Eighth Edition|C|45406|284| -|Nantuko Disciple|Eighth Edition|C|45407|268| -|Giant Spider|Eighth Edition|C|45408|255| -|Norwood Ranger|Eighth Edition|C|45409|271| -|Spined Wurm|Eighth Edition|C|45410|279| -|Moss Monster|Eighth Edition|C|45411|267| -|Monstrous Growth|Eighth Edition|C|45412|266| -|Elvish Pioneer|Eighth Edition|C|45413|243| -|Giant Growth|Eighth Edition|C|45414|254| -|Darksteel Citadel|Darksteel|C|45415|164| -|Fertile Ground|Eighth Edition|C|45416|248| -|Rampant Growth|Eighth Edition|C|45417|274| -|Regeneration|Eighth Edition|C|45418|275| -|Stream of Life|Eighth Edition|U|45419|282| -|Naturalize|Eighth Edition|C|45420|270| -|Elvish Lyrist|Eighth Edition|U|45421|242| -|Elvish Scrapper|Eighth Edition|U|45422|245| -|Fyndhorn Elder|Eighth Edition|U|45423|251| -|Foratog|Eighth Edition|U|45424|249| -|Giant Badger|Eighth Edition|C|45425|253| -|Hunted Wumpus|Eighth Edition|U|45426|258| -|Spitting Spider|Eighth Edition|U|45427|280| -|Myr Landshaper|Darksteel|C|45428|131| -|Llanowar Behemoth|Eighth Edition|U|45429|261| -|Living Terrain|Eighth Edition|U|45430|260| -|Choke|Eighth Edition|U|45431|237| -|Spreading Algae|Eighth Edition|U|45432|281| -|Revive|Eighth Edition|U|45433|276| -|Blanchwood Armor|Eighth Edition|U|45434|234| -|Wing Snare|Eighth Edition|U|45436|288| -|Lure|Eighth Edition|U|45437|263| -|Creeping Mold|Eighth Edition|U|45438|240| -|Birds of Paradise|Eighth Edition|R|45439|233| -|Gaea's Herald|Eighth Edition|R|45440|252| -|Fungusaur|Eighth Edition|R|45441|250| -|Elvish Champion|Eighth Edition|R|45442|241| -|Verduran Enchantress|Eighth Edition|R|45443|285| -|Elvish Piper|Eighth Edition|R|45444|244| -|Maro|Eighth Edition|R|45445|264| -|Emperor Crocodile|Eighth Edition|R|45446|246| -|Thorn Elemental|Eighth Edition|R|45448|283| -|Natural Affinity|Eighth Edition|R|45449|269| -|Plow Under|Eighth Edition|R|45450|272| -|Fecundity|Eighth Edition|U|45451|247| -|Might of Oaks|Eighth Edition|R|45452|265| -|Primeval Force|Eighth Edition|R|45453|273| -|Vernal Bloom|Eighth Edition|R|45454|286| -|Vulshok War Boar|Darksteel|U|45455|72| -|Collective Unconscious|Eighth Edition|R|45456|238| -|Spellbook|Eighth Edition|U|45457|314| -|Ivory Cup|Eighth Edition|U|45458|305| -|Crystal Rod|Eighth Edition|U|45459|295| -|Throne of Bone|Eighth Edition|U|45460|317| -|Iron Star|Eighth Edition|U|45461|304| -|Wooden Sphere|Eighth Edition|U|45462|321| -|Star Compass|Eighth Edition|U|45463|315| -|Urza's Mine|Eighth Edition|U|45464|328| -|Patagia Golem|Eighth Edition|U|45465|308| -|Rod of Ruin|Eighth Edition|U|45466|312| -|Fodder Cannon|Eighth Edition|U|45467|302| -|Urza's Tower|Eighth Edition|U|45468|330| -|Emissary of Despair|Darksteel|U|45469|42| -|Urza's Power Plant|Eighth Edition|U|45470|329| -|Phyrexian Hulk|Eighth Edition|U|45471|310| -|Brass Herald|Eighth Edition|R|45472|293| -|Distorting Lens|Eighth Edition|R|45473|299| -|Howling Mine|Eighth Edition|R|45474|303| -|Millstone|Eighth Edition|R|45475|307| -|Disrupting Scepter|Eighth Edition|R|45476|298| -|Skull of Orm|Eighth Edition|R|45477|313| -|Ensnaring Bridge|Eighth Edition|R|45478|300| -|Vexing Arcanix|Eighth Edition|R|45479|319| -|Dingus Egg|Eighth Edition|R|45480|297| -|Defense Grid|Eighth Edition|R|45481|296| -|Jayemdae Tome|Eighth Edition|R|45482|306| -|Teferi's Puzzle Box|Eighth Edition|R|45483|316| -|Urza's Armor|Eighth Edition|R|45484|318| -|Coat of Arms|Eighth Edition|R|45485|294| -|Planar Portal|Eighth Edition|R|45486|311| -|Aladdin's Ring|Eighth Edition|R|45487|291| -|Beast of Burden|Eighth Edition|R|45488|292| -|Flying Carpet|Eighth Edition|R|45489|301| -|Phyrexian Colossus|Eighth Edition|R|45490|309| -|Coastal Tower|Eighth Edition|U|45491|323| -|Salt Marsh|Eighth Edition|U|45492|325| -|Urborg Volcano|Eighth Edition|U|45493|327| -|Shivan Oasis|Eighth Edition|U|45494|326| -|Elfhame Palace|Eighth Edition|U|45495|324| -|City of Brass|Eighth Edition|R|45496|322| -|Astral Steel|Scourge|C|45833|2| -|Noble Templar|Scourge|C|45834|19| -|Wing Shards|Scourge|U|45835|25| -|Temporal Fissure|Scourge|C|45836|53| -|Hindering Touch|Scourge|C|45837|37| -|Aven Warhawk|Legions|U|45838|4| -|Cloudreach Cavalry|Legions|U|45839|7| -|Mistform Ultimus|Legions|R|45840|47| -|Shoreline Ranger|Scourge|C|45841|51| -|Tendrils of Agony|Scourge|U|45842|75| -|Scattershot|Scourge|C|45843|102| -|Enrage|Scourge|U|45844|91| -|Reaping the Graves|Scourge|C|45845|72| -|Sprouting Vines|Scourge|C|45847|128| -|Hunting Pack|Scourge|U|45848|121| -|Canopy Crawler|Legions|U|45849|122| -|Karona's Zealot|Scourge|U|45858|18| -|Wirewood Symbiote|Scourge|U|45859|133| -|Putrid Raptor|Scourge|U|45861|71| -|Vengeful Dead|Scourge|C|45862|80| -|Chill Haunting|Scourge|U|45863|60| -|Divergent Growth|Scourge|C|45864|116| -|Faces of the Past|Scourge|R|45869|35| -|Leonin Den-Guard|Mirrodin|C|45958|9| -|Leonin Skyhunter|Mirrodin|U|45960|11| -|Stir the Pride|Darksteel|U|45961|16| -|Auriok Transfixer|Mirrodin|C|45963|5| -|Moriok Scavenger|Mirrodin|C|45965|68| -|Sphere of Purity|Mirrodin|C|45968|26| -|Fatespinner|Mirrodin|R|45970|36| -|Lumengrid Sentinel|Mirrodin|U|45972|40| -|Somber Hoverguard|Mirrodin|C|45973|51| -|Neurok Spy|Mirrodin|C|45974|44| -|Pulse of the Grid|Darksteel|R|45975|29| -|Annul|Mirrodin|C|45976|29| -|Thirst for Knowledge|Mirrodin|U|45978|53| -|Chimney Imp|Mirrodin|C|45985|59| -|Consume Spirit|Mirrodin|C|45987|60| -|Terror|Mirrodin|C|45988|79| -|Wrench Mind|Mirrodin|C|45990|84| -|Krark-Clan Grunt|Mirrodin|C|45992|97| -|Ogre Leadfoot|Mirrodin|C|45993|102| -|Krark-Clan Shaman|Mirrodin|C|45994|98| -|Shatter|Mirrodin|C|45999|105| -|Molten Rain|Mirrodin|C|46000|101| -|Tel-Jilad Outrider|Darksteel|C|46002|87| -|Tel-Jilad Chosen|Mirrodin|C|46003|132| -|Tel-Jilad Archers|Mirrodin|C|46004|131| -|Tel-Jilad Wolf|Darksteel|C|46008|88| -|Brown Ouphe|Mirrodin|U|46010|115| -|Oxidize|Darksteel|U|46012|79| -|Myr Adapter|Mirrodin|C|46013|210| -|Duskworker|Mirrodin|U|46014|166| -|Myr Enforcer|Mirrodin|C|46015|211| -|Ornithopter|Mirrodin|U|46016|224| -|Bottle Gnomes|Mirrodin|U|46017|148| -|Viridian Longbow|Mirrodin|C|46018|270| -|Lightning Greaves|Mirrodin|U|46021|199| -|Death-Mask Duplicant|Darksteel|U|46023|115| -|Gold Myr|Mirrodin|C|46024|180| -|Soldier Replica|Mirrodin|C|46025|244| -|Yotian Soldier|Mirrodin|C|46026|277| -|Pearl Shard|Mirrodin|U|46027|225| -|Slagwurm Armor|Mirrodin|C|46028|243| -|Leonin Scimitar|Mirrodin|C|46029|193| -|Whispersilk Cloak|Darksteel|C|46030|160| -|Silver Myr|Mirrodin|C|46032|241| -|Wizard Replica|Mirrodin|C|46033|275| -|Crystal Shard|Mirrodin|U|46035|159| -|Neurok Hoversail|Mirrodin|C|46037|218| -|Leaden Myr|Mirrodin|C|46040|191| -|Nim Replica|Mirrodin|C|46041|220| -|Goblin War Wagon|Mirrodin|C|46044|179| -|Chromatic Sphere|Mirrodin|C|46046|151| -|Iron Myr|Mirrodin|C|46048|187| -|Goblin Replica|Mirrodin|C|46049|178| -|Granite Shard|Mirrodin|U|46051|182| -|Vorrac Battlehorns|Mirrodin|C|46053|271| -|Necrogen Spellbomb|Mirrodin|C|46055|216| -|Copper Myr|Mirrodin|C|46056|158| -|Elf Replica|Mirrodin|C|46057|167| -|Fangren Firstborn|Darksteel|R|46058|75| -|Heartwood Shard|Mirrodin|U|46059|184| -|Furnace Dragon|Darksteel|R|46060|62| -|Golem-Skin Gauntlets|Mirrodin|U|46061|181| -|Ancient Den|Mirrodin|C|46063|278| -|Seat of the Synod|Mirrodin|C|46064|283| -|Vault of Whispers|Mirrodin|C|46065|286| -|Great Furnace|Mirrodin|C|46066|282| -|Tree of Tales|Mirrodin|C|46067|285| -|Slith Ascendant|Mirrodin|U|46069|23| -|Loxodon Mender|Mirrodin|C|46071|12| -|Leonin Elder|Mirrodin|C|46072|10| -|Woebearer|Mirrodin|U|46074|83| -|Tempest of Light|Mirrodin|U|46075|28| -|Nourish|Darksteel|C|46076|78| -|Crazed Goblin|Darksteel|C|46078|56| -|Taj-Nar Swordsmith|Mirrodin|U|46079|27| -|Slith Strider|Mirrodin|U|46080|50| -|Auriok Steelshaper|Mirrodin|R|46081|4| -|Neurok Familiar|Mirrodin|C|46082|43| -|Roaring Slagwurm|Darksteel|R|46083|83| -|Disarm|Mirrodin|C|46084|32| -|Thoughtcast|Mirrodin|C|46085|54| -|Hunger of the Nim|Darksteel|C|46088|46| -|Override|Mirrodin|C|46089|45| -|Nim Devourer|Mirrodin|R|46090|70| -|Slith Bloodletter|Mirrodin|U|46091|77| -|Scavenging Scarab|Darksteel|C|46093|51| -|Flayed Nim|Mirrodin|U|46094|65| -|Chittering Rats|Darksteel|C|46096|39| -|Grimclaw Bats|Darksteel|C|46100|45| -|Arcbound Hybrid|Darksteel|C|46101|97| -|Slith Firewalker|Mirrodin|U|46102|107| -|Spikeshot Goblin|Mirrodin|C|46103|108| -|Loxodon Punisher|Mirrodin|R|46105|14| -|Atog|Mirrodin|U|46106|86| -|Feedback Bolt|Fifth Dawn|U|46108|64| -|Lightning Coils|Mirrodin|R|46109|198| -|Detonate|Mirrodin|U|46110|88| -|Talon of Pain|Darksteel|U|46111|150| -|Myr Moonvessel|Darksteel|C|46112|133| -|Slith Predator|Mirrodin|U|46113|129| -|Viridian Joiner|Mirrodin|C|46114|138| -|Fangren Hunter|Mirrodin|C|46115|119| -|Neurok Prodigy|Darksteel|C|46116|26| -|Trolls of Tel-Jilad|Mirrodin|U|46117|136| -|Rustmouth Ogre|Mirrodin|U|46118|103| -|Viridian Shaman|Mirrodin|U|46119|139| -|Clockwork Vorrac|Mirrodin|U|46123|156| -|Clockwork Condor|Mirrodin|C|46124|154| -|Myr Retriever|Mirrodin|U|46126|215| -|Lodestone Myr|Mirrodin|R|46128|200| -|Arcbound Bruiser|Darksteel|C|46129|94| -|Arcbound Lancer|Darksteel|U|46130|98| -|Arcbound Stinger|Darksteel|C|46131|103| -|Lich's Tomb|Darksteel|R|46134|128| -|Farsight Mask|Mirrodin|U|46135|170| -|Darksteel Gargoyle|Darksteel|U|46136|111| -|Rustspore Ram|Mirrodin|U|46138|235| -|Leonin Bola|Darksteel|C|46142|127| -|Razor Golem|Darksteel|C|46143|137| -|Ageless Entity|Darksteel|R|46148|73| -|Spire Golem|Darksteel|C|46150|145| -|Mask of Memory|Mirrodin|U|46153|203| -|Mephitic Ooze|Darksteel|R|46154|47| -|Echoing Ruin|Darksteel|C|46155|59| -|Serum Tank|Mirrodin|U|46156|240| -|Dross Golem|Darksteel|C|46157|119| -|Surestrike Trident|Darksteel|U|46158|147| -|Fill with Fright|Fifth Dawn|C|46159|50| -|Genesis Chamber|Darksteel|U|46160|122| -|Echoing Truth|Darksteel|C|46162|21| -|Oxidda Golem|Darksteel|C|46164|135| -|Eater of Days|Darksteel|R|46165|120| -|Gemini Engine|Darksteel|R|46168|121| -|Echoing Courage|Darksteel|C|46169|74| -|Tangle Golem|Darksteel|C|46171|151| -|Nemesis Mask|Darksteel|U|46172|134| -|Auriok Windwalker|Fifth Dawn|R|46175|5| -|Echoing Decay|Darksteel|C|46176|41| -|Unspeakable Symbol|Scourge|U|46418|79| -|Decree of Savagery|Scourge|R|46423|115| -|Mind's Desire|Scourge|R|46424|41| -|Dragonstorm|Scourge|R|46426|90| -|Dragon Wings|Scourge|C|46427|34| -|Sword of Fire and Ice|Darksteel|R|46429|148| -|Decree of Silence|Scourge|R|46430|32| -|Dross Scorpion|Mirrodin|C|46434|164| -|Plains|Eighth Edition|L|46437|331| -|Plains|Eighth Edition|L|46438|332| -|Plains|Eighth Edition|L|46439|333| -|Plains|Eighth Edition|L|46440|334| -|Island|Eighth Edition|L|46441|335| -|Island|Eighth Edition|L|46442|336| -|Island|Eighth Edition|L|46443|337| -|Island|Eighth Edition|L|46444|338| -|Swamp|Eighth Edition|L|46445|339| -|Swamp|Eighth Edition|L|46446|340| -|Swamp|Eighth Edition|L|46447|341| -|Swamp|Eighth Edition|L|46448|342| -|Mountain|Eighth Edition|L|46449|343| -|Mountain|Eighth Edition|L|46450|344| -|Mountain|Eighth Edition|L|46451|345| -|Mountain|Eighth Edition|L|46452|346| -|Forest|Eighth Edition|L|46453|347| -|Forest|Eighth Edition|L|46454|348| -|Forest|Eighth Edition|L|46455|349| -|Forest|Eighth Edition|L|46456|350| -|Skirk Drill Sergeant|Legions|U|46457|112| -|Guilty Conscience|Scourge|C|46464|17| -|Primitive Etchings|Scourge|R|46465|126| -|Stabilizer|Scourge|R|46466|142| -|Scornful Egotist|Scourge|C|46509|50| -|Withered Wretch|Legions|U|46510|86| -|Luminous Angel|Mirrodin|R|46546|15| -|Viridian Zealot|Darksteel|R|46547|90| -|Tangle Spider|Darksteel|C|46548|85| -|Leonin Abunas|Mirrodin|R|46550|8| -|Broodstar|Mirrodin|R|46556|31| -|Vedalken Archmage|Mirrodin|R|46557|55| -|Stifle|Scourge|R|46558|52| -|Quicksilver Elemental|Mirrodin|R|46559|47| -|Scrounge|Darksteel|U|46568|53| -|Spoils of the Vault|Mirrodin|R|46572|78| -|Forge Armor|Mirrodin|U|46577|92| -|Megatog|Mirrodin|R|46579|100| -|Psychogenic Probe|Mirrodin|R|46582|231| -|Uncontrolled Infestation|Scourge|C|46614|108| -|Dragonspeaker Shaman|Scourge|U|46615|89| -|Wall of Spears|Eighth Edition|U|46616|320| -|Avatar of Hope|Eighth Edition|R|46617|4| -|Coastal Piracy|Eighth Edition|R|46618|67| -|Call of the Wild|Eighth Edition|R|46620|235| -|Lhurgoyf|Eighth Edition|R|46622|259| -|Titanic Bulvox|Scourge|C|46691|129| -|Living Hive|Mirrodin|R|46694|124| -|March of the Machines|Mirrodin|R|46699|42| -|Triskelion|Mirrodin|R|46702|269| -|Pentavus|Mirrodin|R|46703|226| -|Clockwork Dragon|Mirrodin|R|46704|155| -|Proteus Machine|Scourge|U|46705|141| -|Leveler|Mirrodin|R|46708|195| -|Blinkmoth Urn|Mirrodin|R|46714|145| -|Mindstorm Crown|Mirrodin|U|46715|207| -|Synod Sanctum|Mirrodin|U|46719|252| -|Sculpting Steel|Mirrodin|R|46720|238| -|Gate to the Ζther|Mirrodin|R|46721|174| -|Soul Foundry|Mirrodin|R|46723|246| -|Mindslaver|Mirrodin|R|46724|206| -|Damping Matrix|Mirrodin|R|46727|161| -|Icy Manipulator|Mirrodin|U|46728|186| -|Tel-Jilad Stylus|Mirrodin|U|46729|260| -|Tower of Murmurs|Mirrodin|R|46730|268| -|Liar's Pendulum|Mirrodin|R|46733|196| -|Goblin Archaeologist|Darksteel|U|46735|63| -|Isochron Scepter|Mirrodin|U|46741|188| -|Jinxed Choker|Mirrodin|R|46760|189| -|Fireball|Darksteel|U|46768|60| -|Worldslayer|Mirrodin|R|46791|276| -|Consumptive Goo|Scourge|R|47029|62| -|Dragon Fangs|Scourge|C|47165|117| -|Mistform Warchief|Scourge|U|47218|43| -|Break Asunder|Scourge|C|47219|113| -|Wipe Clean|Scourge|C|47221|26| -|Mercurial Kite|Scourge|C|47222|39| -|Death's-Head Buzzard|Scourge|C|47223|63| -|Bladewing's Thrall|Scourge|U|47224|55| -|Carbonize|Scourge|U|47226|83| -|Coast Watcher|Scourge|C|47228|30| -|Grip of Chaos|Scourge|R|47274|98| -|Craw Wurm|Eighth Edition|C|47280|239| -|Ark of Blight|Scourge|U|47281|140| -|Gluttonous Zombie|Eighth Edition|U|47282|136| -|Energy Chamber|Fifth Dawn|U|47438|117| -|Bonesplitter|Mirrodin|C|47442|146| -|Culling Scales|Mirrodin|R|47445|160| -|Chrome Mox|Mirrodin|R|47446|152| -|Helm of Kaldra|Fifth Dawn|R|47449|131| -|Myr Incubator|Mirrodin|R|47450|212| -|Sword of Light and Shadow|Darksteel|R|47453|149| -|Sulfuric Vortex|Scourge|R|47461|106| -|Lethal Vapors|Scourge|R|47586|68| -|Pristine Angel|Darksteel|R|47587|9| -|Recuperate|Scourge|C|47590|21| -|Brain Freeze|Scourge|U|47599|29| -|Hibernation|Eighth Edition|U|47600|82| -|Yavimaya Enchantress|Eighth Edition|U|47601|290| -|Plated Slagwurm|Mirrodin|R|47781|127| -|Eager Cadet|Eighth Edition|C|47784|1| -|Giant Octopus|Eighth Edition|C|47785|3| -|Sea Eagle|Eighth Edition|C|47786|4| -|Enormous Baloth|Eighth Edition|U|47787|6| -|Vengeance|Eighth Edition|U|47788|2| -|Vizzerdrix|Eighth Edition|R|47789|5| -|Lumengrid Augur|Mirrodin|R|47791|39| -|Shriveling Rot|Darksteel|R|47792|54| -|Quicksilver Behemoth|Darksteel|C|47799|30| -|Qumulox|Fifth Dawn|U|47800|35| -|Panoptic Mirror|Darksteel|R|47930|136| -|Razor Barrier|Mirrodin|C|47935|17| -|Vermiculos|Mirrodin|R|47936|80| -|Skyhunter Cub|Mirrodin|C|48046|21| -|Spellweaver Helix|Mirrodin|R|48047|247| -|Darksteel Ingot|Darksteel|C|48048|112| -|Myr Matrix|Darksteel|R|48049|132| -|Titanium Golem|Mirrodin|C|48052|263| -|Cobalt Golem|Mirrodin|C|48053|157| -|Pewter Golem|Mirrodin|C|48054|227| -|Hematite Golem|Mirrodin|C|48055|185| -|Malachite Golem|Mirrodin|C|48056|202| -|Darksteel Forge|Darksteel|R|48072|110| -|Fiery Gambit|Mirrodin|R|48073|90| -|Awe Strike|Mirrodin|C|48074|6| -|Goblin Dirigible|Mirrodin|U|48077|177| -|Hum of the Radix|Mirrodin|R|48082|122| -|Molder Slug|Mirrodin|R|48083|125| -|Roar of the Kha|Mirrodin|U|48092|18| -|Promise of Power|Mirrodin|R|48096|74| -|Blinding Beam|Mirrodin|C|48099|7| -|Soul Nova|Mirrodin|U|48101|25| -|Raise the Alarm|Mirrodin|C|48103|16| -|Wail of the Nim|Mirrodin|C|48105|81| -|Lifespark Spellbomb|Mirrodin|C|48108|197| -|Pyrite Spellbomb|Mirrodin|C|48110|232| -|Rule of Law|Mirrodin|R|48112|19| -|Ζther Spellbomb|Mirrodin|C|48113|141| -|Looming Hoverguard|Mirrodin|U|48114|38| -|Battlegrowth|Mirrodin|C|48116|113| -|Clockwork Beetle|Mirrodin|C|48119|153| -|Inflame|Darksteel|C|48120|64| -|Vulshok Battlegear|Mirrodin|U|48121|272| -|Tooth and Nail|Mirrodin|R|48122|134| -|Vulshok Battlemaster|Mirrodin|R|48125|110| -|Nim Shambler|Mirrodin|U|48126|72| -|Chromescale Drake|Darksteel|R|48127|20| -|Glimmervoid|Mirrodin|R|48132|281| -|Incite War|Mirrodin|C|48138|96| -|Dead-Iron Sledge|Mirrodin|U|48139|162| -|Voltaic Construct|Darksteel|U|48141|156| -|Ζther Vial|Darksteel|U|48146|91| -|Reshape|Darksteel|R|48147|31| -|Vedalken Engineer|Darksteel|C|48148|35| -|Emissary of Hope|Darksteel|U|48153|3| -|Tower of Champions|Mirrodin|R|48155|265| -|Altar of Shadows|Mirrodin|R|48156|143| -|Darksteel Colossus|Darksteel|R|48158|109| -|Dream's Grip|Mirrodin|C|48159|34| -|Psychic Overload|Darksteel|U|48163|28| -|Psychic Membrane|Mirrodin|U|48167|46| -|Rust Elemental|Mirrodin|U|48174|234| -|Suncrusher|Fifth Dawn|R|48177|159| -|Grid Monitor|Mirrodin|R|48178|183| -|Loxodon Peacekeeper|Mirrodin|R|48180|13| -|Wall of Blood|Mirrodin|U|48184|82| -|Gilded Lotus|Mirrodin|R|48189|175| -|Mass Hysteria|Mirrodin|R|48191|99| -|Banshee's Blade|Mirrodin|U|48194|144| -|Cathodion|Mirrodin|U|48195|149| -|Skullclamp|Darksteel|U|48197|140| -|Fireshrieker|Mirrodin|U|48203|171| -|Mirror Golem|Mirrodin|U|48210|208| -|Sunbeam Spellbomb|Mirrodin|C|48214|250| -|Goblin Cannon|Fifth Dawn|U|48215|125| -|Dragon Blood|Mirrodin|U|48325|163| -|Chalice of the Void|Mirrodin|R|48326|150| -|Welding Jar|Mirrodin|C|48328|274| -|Relic Bane|Mirrodin|U|48329|76| -|Fists of the Anvil|Mirrodin|C|48377|91| -|Leonin Bladetrap|Mirrodin|U|48378|192| -|Altar's Light|Mirrodin|U|48383|1| -|One Dozen Eyes|Mirrodin|U|48385|126| -|Glissa Sunseeker|Mirrodin|R|48386|120| -|Fractured Loyalty|Mirrodin|U|48390|93| -|Vulshok Gauntlets|Mirrodin|C|48397|273| -|Galvanic Key|Mirrodin|C|48399|173| -|Scale of Chiss-Goria|Mirrodin|C|48400|236| -|Tooth of Chiss-Goria|Mirrodin|C|48401|264| -|Plains|Mirrodin|L|48406|287| -|Plains|Mirrodin|L|48407|288| -|Plains|Mirrodin|L|48408|289| -|Plains|Mirrodin|L|48409|290| -|Island|Mirrodin|L|48410|291| -|Island|Mirrodin|L|48411|292| -|Island|Mirrodin|L|48412|293| -|Island|Mirrodin|L|48413|294| -|Swamp|Mirrodin|L|48414|295| -|Swamp|Mirrodin|L|48415|296| -|Swamp|Mirrodin|L|48416|297| -|Mountain|Mirrodin|L|48417|299| -|Mountain|Mirrodin|L|48418|300| -|Mountain|Mirrodin|L|48419|301| -|Mountain|Mirrodin|L|48420|302| -|Forest|Mirrodin|L|48421|303| -|Forest|Mirrodin|L|48422|304| -|Forest|Mirrodin|L|48423|305| -|Forest|Mirrodin|L|48424|306| -|Swamp|Mirrodin|L|48425|298| -|Reiver Demon|Mirrodin|R|48427|75| -|Skyhunter Patrol|Mirrodin|C|48431|22| -|Arrest|Mirrodin|C|48432|2| -|Auriok Bladewarden|Mirrodin|U|48433|3| -|Arc-Slogger|Mirrodin|R|48436|85| -|Solar Tide|Mirrodin|R|48437|24| -|Lumengrid Warden|Mirrodin|C|48438|41| -|Wanderguard Sentry|Mirrodin|C|48439|56| -|Fabricate|Mirrodin|U|48568|35| -|Dross Prowler|Mirrodin|C|48570|64| -|Domineer|Mirrodin|U|48571|33| -|Carry Away|Darksteel|U|48572|19| -|Retract|Darksteel|R|48573|32| -|Ritual of Restoration|Darksteel|C|48576|13| -|Leonin Shikari|Darksteel|R|48579|6| -|Platinum Angel|Mirrodin|R|48580|228| -|Bosh, Iron Golem|Mirrodin|R|48581|147| -|Shield of Kaldra|Darksteel|R|48582|139| -|Sword of Kaldra|Mirrodin|R|48583|251| -|Nim Shrieker|Mirrodin|C|48584|73| -|Irradiate|Mirrodin|C|48585|67| -|Trash for Treasure|Mirrodin|R|48586|109| -|Betrayal of Flesh|Mirrodin|U|48588|58| -|Necrogen Mists|Mirrodin|R|48589|69| -|Barter in Blood|Mirrodin|U|48591|57| -|Goblin Striker|Mirrodin|C|48592|94| -|Turn to Dust|Mirrodin|C|48594|137| -|Predator's Strike|Mirrodin|C|48595|128| -|Bloodscent|Mirrodin|U|48597|114| -|Infested Roothold|Darksteel|U|48598|76| -|Wurmskin Forger|Mirrodin|C|48599|140| -|Groffskithur|Mirrodin|C|48600|121| -|Copperhoof Vorrac|Mirrodin|R|48603|116| -|Arcbound Worker|Darksteel|C|48604|104| -|Omega Myr|Mirrodin|C|48605|223| -|Steel Wall|Mirrodin|C|48910|248| -|Tanglebloom|Mirrodin|C|48913|258| -|Tower of Eons|Mirrodin|R|48914|266| -|Thought Prison|Mirrodin|U|48915|261| -|Blinkmoth Well|Mirrodin|U|48916|279| -|Stalking Stones|Mirrodin|U|48917|284| -|Mind's Eye|Mirrodin|R|48919|205| -|Serum Powder|Darksteel|R|48920|138| -|Krark's Thumb|Mirrodin|R|48923|190| -|Myr Mindservant|Mirrodin|U|48925|213| -|Needlebug|Mirrodin|U|48930|217| -|Sun Droplet|Mirrodin|U|48931|249| -|Auriok Glaivemaster|Darksteel|C|48988|1| -|Well of Lost Dreams|Darksteel|R|48993|159| -|Second Sunrise|Mirrodin|R|49009|20| -|Karma|Eighth Edition|U|49011|28| -|Barbed Lightning|Darksteel|C|49012|55| -|Coretapper|Darksteel|U|49016|107| -|Hoverguard Observer|Darksteel|U|49020|22| -|Synod Artificer|Darksteel|R|49021|34| -|Wirefly Hive|Darksteel|U|49026|161| -|Turn the Tables|Darksteel|R|49033|18| -|Pteron Ghost|Darksteel|C|49035|10| -|Rhox|Eighth Edition|R|49038|277| -|Hammer of Bogardan|Eighth Edition|R|49039|193| -|Alpha Myr|Mirrodin|C|49045|142| -|Myr Prototype|Mirrodin|U|49046|214| -|Power Conduit|Mirrodin|U|49047|229| -|Scythe of the Wretched|Mirrodin|R|49048|239| -|Kraken's Eye|Darksteel|U|49049|126| -|Cloudpost|Mirrodin|C|49050|280| -|Timesifter|Mirrodin|R|49053|262| -|Temporal Cascade|Mirrodin|R|49055|52| -|Silverback Ape|Eighth Edition|U|49056|7| -|Deconstruct|Mirrodin|C|49060|118| -|Regress|Mirrodin|C|49061|48| -|Assert Authority|Mirrodin|U|49062|30| -|Ζther Snap|Darksteel|R|49075|37| -|Steelshaper Apprentice|Darksteel|R|49078|15| -|Grim Reminder|Mirrodin|R|49081|66| -|Vex|Darksteel|C|49085|36| -|Drooling Ogre|Darksteel|C|49089|58| -|Disciple of the Vault|Mirrodin|C|49090|62| -|Specter's Shroud|Darksteel|U|49094|142| -|Chimeric Egg|Darksteel|U|49097|106| -|Electrostatic Bolt|Mirrodin|C|49101|89| -|Creeping Mold|Mirrodin|U|49108|117| -|Ur-Golem's Eye|Darksteel|C|49110|155| -|Frogmite|Mirrodin|C|49429|172| -|Empyrial Plate|Mirrodin|R|49430|168| -|Solemn Simulacrum|Mirrodin|R|49434|245| -|Grab the Reins|Mirrodin|U|49435|95| -|Tel-Jilad Exile|Mirrodin|C|49436|133| -|Journey of Discovery|Mirrodin|C|49437|123| -|Stand Together|Darksteel|U|49438|84| -|Duplicant|Mirrodin|R|49439|165| -|Extraplanar Lens|Mirrodin|R|49440|169| -|Inertia Bubble|Mirrodin|C|49443|37| -|Contaminated Bond|Mirrodin|C|49444|61| -|Confusion in the Ranks|Mirrodin|R|49528|87| -|Sylvan Scrying|Mirrodin|U|49529|130| -|Vulshok Morningstar|Darksteel|C|49758|157| -|Loxodon Warhammer|Mirrodin|U|49759|201| -|Scrabbling Claws|Mirrodin|U|49763|237| -|Shared Fate|Mirrodin|R|49764|49| -|Tangleroot|Mirrodin|R|49767|259| -|Leonin Sun Standard|Mirrodin|R|49768|194| -|Proteus Staff|Mirrodin|R|49769|230| -|Nightmare Lash|Mirrodin|R|49770|219| -|Goblin Charbelcher|Mirrodin|R|49771|176| -|Quicksilver Fountain|Mirrodin|R|49772|233| -|Skeleton Shard|Mirrodin|U|49774|242| -|Wand of the Elements|Darksteel|R|49775|158| -|Troll Ascetic|Mirrodin|R|49828|135| -|Machinate|Darksteel|C|49829|24| -|Shrapnel Blast|Mirrodin|U|49835|106| -|Shunt|Darksteel|R|49836|68| -|Greater Harvester|Darksteel|R|49837|44| -|Neurok Transmuter|Darksteel|U|49839|27| -|Nuisance Engine|Mirrodin|U|50104|221| -|Fist of Suns|Fifth Dawn|R|50117|123| -|Possessed Portal|Fifth Dawn|R|50119|144| -|Vedalken Shackles|Fifth Dawn|R|50120|164| -|Endless Whispers|Fifth Dawn|R|50129|49| -|Vedalken Orrery|Fifth Dawn|R|50134|163| -|Skyhunter Prowler|Fifth Dawn|C|50136|15| -|Loxodon Anchorite|Fifth Dawn|C|50137|10| -|Stand Firm|Fifth Dawn|C|50138|17| -|Engineered Explosives|Fifth Dawn|R|50139|118| -|Beacon of Immortality|Fifth Dawn|R|50141|6| -|Advanced Hoverguard|Fifth Dawn|C|50144|22| -|Serum Visions|Fifth Dawn|C|50145|36| -|Into Thin Air|Fifth Dawn|C|50147|33| -|Gemstone Array|Fifth Dawn|U|50150|124| -|Razormane Masticore|Fifth Dawn|R|50155|146| -|Chimeric Coils|Fifth Dawn|U|50156|108| -|Opaline Bracers|Fifth Dawn|C|50158|141| -|Conjurer's Bauble|Fifth Dawn|C|50159|112| -|Staff of Domination|Fifth Dawn|R|50162|156| -|Trinket Mage|Fifth Dawn|C|50163|39| -|Abuna's Chant|Fifth Dawn|C|50164|1| -|Fangren Pathcutter|Fifth Dawn|U|50171|87| -|Artificer's Intuition|Fifth Dawn|R|50172|23| -|Myr Quadropod|Fifth Dawn|C|50176|138| -|Thermal Navigator|Fifth Dawn|C|50177|162| -|Myr Servitor|Fifth Dawn|C|50179|139| -|Viridian Lorebearers|Fifth Dawn|U|50188|99| -|Ouphe Vandals|Fifth Dawn|U|50189|90| -|Tel-Jilad Justice|Fifth Dawn|U|50190|95| -|Tyrranax|Fifth Dawn|C|50191|98| -|Heliophial|Fifth Dawn|C|50192|130| -|Clearwater Goblet|Fifth Dawn|R|50198|109| -|Krark-Clan Engineers|Fifth Dawn|U|50201|70| -|Tangle Asp|Fifth Dawn|C|50203|94| -|Desecration Elemental|Fifth Dawn|R|50204|45| -|Lose Hope|Fifth Dawn|C|50207|52| -|Fleshgrafter|Fifth Dawn|C|50209|51| -|Devour in Shadow|Fifth Dawn|U|50210|46| -|Mephidross Vampire|Fifth Dawn|R|50211|53| -|Blind Creeper|Fifth Dawn|C|50212|42| -|Retaliate|Fifth Dawn|R|50213|13| -|Counsel of the Soratami|Champions of Kamigawa|C|50219|55| -|Kami of Twisted Reflection|Champions of Kamigawa|C|50228|71| -|Cage of Hands|Champions of Kamigawa|C|50233|3| -|Burning-Eye Zubera|Saviors of Kamigawa|U|50234|95| -|Feral Deceiver|Champions of Kamigawa|C|50236|208| -|Jugan, the Rising Star|Champions of Kamigawa|R|50247|217| -|Marrow-Gnawer|Champions of Kamigawa|R|50253|124| -|Petals of Insight|Champions of Kamigawa|U|50254|79| -|Otherworldly Journey|Champions of Kamigawa|U|50256|37| -|Orbweaver Kumo|Champions of Kamigawa|U|50261|231| -|Ronin Houndmaster|Champions of Kamigawa|C|50262|184| -|Pain Kami|Champions of Kamigawa|U|50266|183| -|Wear Away|Champions of Kamigawa|C|50268|250| -|Field of Reality|Champions of Kamigawa|C|50272|60| -|Frostwielder|Champions of Kamigawa|C|50285|167| -|Soulless Revival|Champions of Kamigawa|C|50288|144| -|Befoul|Champions of Kamigawa|C|50291|102| -|Yamabushi's Flame|Champions of Kamigawa|C|50292|198| -|Rend Spirit|Champions of Kamigawa|C|50293|141| -|Eight-and-a-Half-Tails|Champions of Kamigawa|R|50296|8| -|Kodama's Reach|Champions of Kamigawa|C|50299|225| -|Imi Statue|Champions of Kamigawa|R|50300|255| -|Soratami Cloudskater|Champions of Kamigawa|C|50301|86| -|Burr Grafter|Champions of Kamigawa|C|50305|203| -|Orochi Ranger|Champions of Kamigawa|C|50308|235| -|Kami of the Waning Moon|Champions of Kamigawa|C|50311|120| -|Quiet Purity|Champions of Kamigawa|C|50313|39| -|Uncontrollable Anger|Champions of Kamigawa|C|50315|195| -|Shimatsu the Bloodcloaked|Champions of Kamigawa|R|50318|186| -|Orochi Leafcaller|Champions of Kamigawa|C|50319|234| -|Lifted by Clouds|Champions of Kamigawa|C|50320|73| -|Kiki-Jiki, Mirror Breaker|Champions of Kamigawa|R|50321|175| -|Akki Coalflinger|Champions of Kamigawa|U|50338|152| -|Kashi-Tribe Warriors|Champions of Kamigawa|C|50342|221| -|Harsh Deceiver|Champions of Kamigawa|C|50343|11| -|Wandering Ones|Champions of Kamigawa|C|50345|100| -|Yamabushi's Storm|Champions of Kamigawa|C|50346|199| -|Kami of Ancient Law|Champions of Kamigawa|C|50349|21| -|Kami of the Palace Fields|Champions of Kamigawa|U|50367|24| -|Unearthly Blizzard|Champions of Kamigawa|C|50379|196| -|Battle-Mad Ronin|Champions of Kamigawa|C|50383|156| -|Mothrider Samurai|Champions of Kamigawa|C|50385|34| -|Oni Possession|Champions of Kamigawa|U|50394|135| -|Sensei's Divining Top|Champions of Kamigawa|U|50400|268| -|Reciprocate|Champions of Kamigawa|U|50405|40| -|Samurai Enforcers|Champions of Kamigawa|U|50408|42| -|Kitsune Riftwalker|Champions of Kamigawa|C|50412|29| -|Nine-Ringed Bo|Champions of Kamigawa|U|50413|263| -|Vigilance|Champions of Kamigawa|C|50414|49| -|Hinder|Champions of Kamigawa|U|50426|65| -|Rushing-Tide Zubera|Saviors of Kamigawa|U|50430|52| -|Numai Outcast|Champions of Kamigawa|U|50431|134| -|Wicked Akuba|Champions of Kamigawa|C|50432|150| -|Thoughtbind|Champions of Kamigawa|C|50433|96| -|Kitsune Healer|Champions of Kamigawa|C|50437|27| -|Thousand-legged Kami|Champions of Kamigawa|U|50438|246| -|Hisoka's Defiance|Champions of Kamigawa|C|50439|67| -|Devoted Retainer|Champions of Kamigawa|C|50440|7| -|Kitsune Blademaster|Champions of Kamigawa|C|50441|25| -|Sire of the Storm|Champions of Kamigawa|U|50442|85| -|Kokusho, the Evening Star|Champions of Kamigawa|R|50445|122| -|Midnight Covenant|Champions of Kamigawa|C|50449|125| -|Blessed Breath|Champions of Kamigawa|C|50451|1| -|Sift Through Sands|Champions of Kamigawa|C|50459|84| -|Heartbeat of Spring|Champions of Kamigawa|R|50461|212| -|Hankyu|Champions of Kamigawa|U|50469|253| -|Hisoka, Minamo Sensei|Champions of Kamigawa|R|50474|66| -|Oathkeeper, Takeno's Daisho|Champions of Kamigawa|R|50484|265| -|Order of the Sacred Bell|Champions of Kamigawa|C|50487|232| -|Kodama of the North Tree|Champions of Kamigawa|R|50488|222| -|Indomitable Will|Champions of Kamigawa|C|50499|17| -|Blood Rites|Champions of Kamigawa|U|50509|159| -|Sakura-Tribe Elder|Champions of Kamigawa|C|50510|239| -|Nezumi Ronin|Champions of Kamigawa|C|50512|130| -|Crushing Pain|Champions of Kamigawa|C|50514|162| -|Thought Dissector|Darksteel|R|50521|152| -|Mycosynth Lattice|Darksteel|R|50527|130| -|Arcbound Reclaimer|Darksteel|R|50528|101| -|Spincrusher|Darksteel|U|50529|144| -|Thunderstaff|Darksteel|U|50530|153| -|Rebuking Ceremony|Darksteel|R|50533|82| -|Essence Drain|Darksteel|C|50536|43| -|Dross Harvester|Mirrodin|R|50537|63| -|Mourner's Shield|Mirrodin|U|50538|209| -|Flamebreak|Darksteel|R|50539|61| -|Spellbinder|Darksteel|R|50540|143| -|Death Cloud|Darksteel|R|50647|40| -|Vedalken Mastermind|Fifth Dawn|U|50834|40| -|Grafted Wargear|Fifth Dawn|U|50927|126| -|Last Word|Darksteel|R|50929|23| -|Arcbound Crusher|Darksteel|U|50937|95| -|Arcbound Fiend|Darksteel|U|50938|96| -|Arcbound Slith|Darksteel|U|50939|102| -|Arcbound Ravager|Darksteel|R|50943|100| -|Memnarch|Darksteel|R|51054|129| -|Slobad, Goblin Tinkerer|Darksteel|R|51055|69| -|Drill-Skimmer|Darksteel|C|51056|118| -|Geth's Grimoire|Darksteel|U|51070|123| -|Heartseeker|Darksteel|R|51074|124| -|Summoner's Egg|Fifth Dawn|R|51075|157| -|Steelshaper's Gift|Fifth Dawn|U|51078|19| -|Roar of Reclamation|Fifth Dawn|R|51080|14| -|Hoverguard Sweepers|Fifth Dawn|R|51086|32| -|Acquire|Fifth Dawn|R|51088|21| -|Moriok Rigger|Fifth Dawn|R|51091|54| -|Shattered Dreams|Fifth Dawn|U|51092|59| -|Ebon Drake|Fifth Dawn|U|51095|48| -|Krark-Clan Ogre|Fifth Dawn|C|51097|71| -|Magnetic Theft|Fifth Dawn|U|51101|74| -|Magma Giant|Fifth Dawn|R|51102|72| -|Suntouched Myr|Fifth Dawn|C|51105|160| -|Wayfarer's Bauble|Fifth Dawn|C|51110|165| -|Ferropede|Fifth Dawn|U|51113|122| -|Ensouled Scimitar|Fifth Dawn|U|51115|119| -|Anodet Lurker|Fifth Dawn|C|51119|101| -|Sylvok Explorer|Fifth Dawn|C|51125|93| -|Clock of Omens|Fifth Dawn|U|51129|110| -|Blasting Station|Fifth Dawn|U|51131|107| -|Salvaging Station|Fifth Dawn|R|51132|148| -|Crucible of Worlds|Fifth Dawn|R|51133|114| -|Doubling Cube|Fifth Dawn|R|51135|116| -|Mycosynth Golem|Fifth Dawn|R|51136|137| -|Guardian Idol|Fifth Dawn|U|51138|128| -|Sawtooth Thresher|Fifth Dawn|C|51141|149| -|Infused Arrows|Fifth Dawn|U|51146|133| -|Vanquish|Fifth Dawn|U|51147|20| -|Screaming Fury|Fifth Dawn|C|51148|78| -|Eon Hub|Fifth Dawn|R|51160|120| -|Tornado Elemental|Fifth Dawn|R|51161|97| -|Rite of Passage|Fifth Dawn|R|51163|91| -|Auriok Salvagers|Fifth Dawn|U|51166|4| -|Goblin Brawler|Fifth Dawn|C|51170|66| -|Vulshok Sorcerer|Fifth Dawn|C|51177|80| -|Night's Whisper|Fifth Dawn|U|51178|55| -|Magma Jet|Fifth Dawn|U|51180|73| -|Healer's Headdress|Fifth Dawn|C|51182|129| -|Neurok Stealthsuit|Fifth Dawn|C|51183|140| -|Cranial Plating|Fifth Dawn|C|51184|113| -|Sparring Collar|Fifth Dawn|C|51185|154| -|Horned Helm|Fifth Dawn|C|51186|132| -|Dross Crocodile|Fifth Dawn|C|51189|47| -|Rain of Rust|Fifth Dawn|C|51190|76| -|Skyhunter Skirmisher|Fifth Dawn|U|51220|16| -|All Suns' Dawn|Fifth Dawn|R|51221|81| -|Dawn's Reflection|Fifth Dawn|C|51222|85| -|Condescend|Fifth Dawn|C|51223|27| -|Grinding Station|Fifth Dawn|U|51229|127| -|Arachnoid|Fifth Dawn|U|51230|102| -|Skyreach Manta|Fifth Dawn|C|51374|152| -|Baton of Courage|Fifth Dawn|C|51375|105| -|Stasis Cocoon|Fifth Dawn|C|51607|18| -|Beacon of Tomorrows|Fifth Dawn|R|51610|24| -|Beacon of Unrest|Fifth Dawn|R|51611|41| -|Beacon of Destruction|Fifth Dawn|R|51612|61| -|Beacon of Creation|Fifth Dawn|R|51613|82| -|Unforge|Darksteel|C|51616|71| -|Ferocious Charge|Fifth Dawn|C|51617|88| -|Eternal Witness|Fifth Dawn|U|51628|86| -|Solarion|Fifth Dawn|R|51629|153| -|Fold into Ζther|Fifth Dawn|U|51631|31| -|Krark-Clan Ironworks|Fifth Dawn|U|51633|134| -|Blinkmoth Infusion|Fifth Dawn|R|51634|25| -|Plunge into Darkness|Fifth Dawn|R|72681|57| -|Demon's Horn|Darksteel|U|72682|116| -|Dragon's Claw|Darksteel|U|72683|117| -|Wurm's Tooth|Darksteel|U|72684|162| -|Angel's Feather|Darksteel|U|72686|92| -|Arcbound Wanderer|Fifth Dawn|U|72720|103| -|Granulate|Fifth Dawn|R|72721|67| -|Leonin Squire|Fifth Dawn|C|72722|9| -|Etched Oracle|Fifth Dawn|U|72725|121| -|Mana Geyser|Fifth Dawn|C|72727|75| -|Summoning Station|Fifth Dawn|R|72858|158| -|Pentad Prism|Fifth Dawn|C|72860|143| -|Lunar Avenger|Fifth Dawn|U|72862|136| -|Auriok Champion|Fifth Dawn|R|72921|3| -|Ion Storm|Fifth Dawn|R|72925|68| -|Joiner Adept|Fifth Dawn|R|72928|89| -|Razorgrass Screen|Fifth Dawn|C|72999|145| -|Bringer of the Green Dawn|Fifth Dawn|R|73552|83| -|Bringer of the Red Dawn|Fifth Dawn|R|73553|62| -|Bringer of the Blue Dawn|Fifth Dawn|R|73554|26| -|Bringer of the Black Dawn|Fifth Dawn|R|73555|43| -|Bringer of the White Dawn|Fifth Dawn|R|73556|7| -|Composite Golem|Fifth Dawn|U|73557|111| -|Paradise Mantle|Fifth Dawn|U|73558|142| -|Door to Nothingness|Fifth Dawn|R|73559|115| -|Circle of Protection: Artifacts|Fifth Dawn|U|73561|8| -|Plasma Elemental|Fifth Dawn|U|73562|34| -|Reversal of Fortune|Fifth Dawn|R|73564|77| -|Channel the Suns|Fifth Dawn|U|73565|84| -|Armed Response|Fifth Dawn|C|73566|2| -|Loxodon Stalwart|Fifth Dawn|U|73567|11| -|Raksha Golden Cub|Fifth Dawn|R|73569|12| -|Thought Courier|Fifth Dawn|C|73570|38| -|Early Frost|Fifth Dawn|C|73571|29| -|Spectral Shift|Fifth Dawn|R|73572|37| -|Relentless Rats|Fifth Dawn|U|73573|58| -|Nim Grotesque|Fifth Dawn|U|73574|56| -|Vicious Betrayal|Fifth Dawn|C|73575|60| -|Furnace Whelp|Fifth Dawn|U|73578|65| -|Spark Elemental|Fifth Dawn|C|73579|79| -|Tel-Jilad Lifebreather|Fifth Dawn|C|73582|96| -|Viridian Scout|Fifth Dawn|C|73583|100| -|Rude Awakening|Fifth Dawn|R|73587|92| -|Cackling Imp|Fifth Dawn|C|73597|44| -|Silent Arbiter|Fifth Dawn|R|73598|150| -|Moonring Mirror|Champions of Kamigawa|R|73907|262| -|Eyes of the Watcher|Fifth Dawn|U|73925|30| -|Skullcage|Fifth Dawn|U|73926|151| -|Lantern of Insight|Fifth Dawn|U|73927|135| -|Spinal Parasite|Fifth Dawn|U|73928|155| -|Synod Centurion|Fifth Dawn|U|73929|161| -|Battered Golem|Fifth Dawn|C|73932|106| -|Forest|Unhinged|L|73946|140| -|Island|Unhinged|L|73951|137| -|Mountain|Unhinged|L|73958|139| -|Plains|Unhinged|L|73963|136| -|Swamp|Unhinged|L|73973|138| -|Dreamcatcher|Saviors of Kamigawa|C|73988|34| -|Matsu-Tribe Birdstalker|Saviors of Kamigawa|C|73991|137| -|Soratami Mindsweeper|Betrayers of Kamigawa|U|73995|52| -|Ghost-Lit Warder|Saviors of Kamigawa|U|73996|39| -|Stream of Consciousness|Betrayers of Kamigawa|U|73997|53| -|Inner-Chamber Guard|Saviors of Kamigawa|U|74002|13| -|Deathknell Kami|Saviors of Kamigawa|C|74003|65| -|Mark of the Oni|Betrayers of Kamigawa|U|74006|73| -|Godo's Irregulars|Saviors of Kamigawa|U|74015|101| -|Kagemaro, First to Suffer|Saviors of Kamigawa|R|74016|73| -|Shinen of Life's Roar|Saviors of Kamigawa|C|74017|149| -|Promised Kannushi|Saviors of Kamigawa|C|74018|141| -|Twist Allegiance|Betrayers of Kamigawa|R|74023|120| -|Oyobi, Who Split the Heavens|Betrayers of Kamigawa|R|74027|18| -|Moonlit Strider|Betrayers of Kamigawa|C|74028|16| -|Crawling Filth|Betrayers of Kamigawa|C|74032|64| -|Walker of Secret Ways|Betrayers of Kamigawa|U|74033|60| -|Sway of the Stars|Betrayers of Kamigawa|R|74034|54| -|Genju of the Fens|Betrayers of Kamigawa|U|74035|66| -|Isao, Enlightened Bushi|Betrayers of Kamigawa|R|74039|129| -|In the Web of War|Betrayers of Kamigawa|R|74041|108| -|Kitsune Bonesetter|Saviors of Kamigawa|C|74046|15| -|Jiwari, the Earth Aflame|Saviors of Kamigawa|R|74047|107| -|Oni of Wild Places|Saviors of Kamigawa|U|74048|108| -|Inner Calm, Outer Strength|Saviors of Kamigawa|C|74049|133| -|Araba Mothrider|Saviors of Kamigawa|C|74050|2| -|Kiyomaro, First to Stand|Saviors of Kamigawa|R|74054|18| -|Kaho, Minamo Historian|Saviors of Kamigawa|R|74055|41| -|Seek the Horizon|Saviors of Kamigawa|U|74056|147| -|Haru-Onna|Saviors of Kamigawa|U|74062|132| -|Hand of Cruelty|Saviors of Kamigawa|U|74063|71| -|Kuro's Taken|Saviors of Kamigawa|C|74065|79| -|Ghost-Lit Nourisher|Saviors of Kamigawa|U|74068|131| -|Ghost-Lit Redeemer|Saviors of Kamigawa|U|74082|10| -|Mistblade Shinobi|Betrayers of Kamigawa|C|74084|43| -|Kodama of the Center Tree|Betrayers of Kamigawa|R|74086|131| -|Genju of the Fields|Betrayers of Kamigawa|U|74087|5| -|Shinen of Flight's Wings|Saviors of Kamigawa|C|74088|57| -|Sosuke's Summons|Betrayers of Kamigawa|U|74090|145| -|Indebted Samurai|Betrayers of Kamigawa|U|74091|9| -|Sakura-Tribe Springcaller|Betrayers of Kamigawa|C|74092|142| -|Kaiso, Memory of Loyalty|Betrayers of Kamigawa|U|74093|3| -|Takenuma Bleeder|Betrayers of Kamigawa|C|74095|86| -|Chisei, Heart of Oceans|Betrayers of Kamigawa|R|74096|32| -|Kami of False Hope|Betrayers of Kamigawa|C|74097|10| -|Shinka Gatekeeper|Betrayers of Kamigawa|C|74099|117| -|Nourishing Shoal|Betrayers of Kamigawa|R|74100|137| -|Throat Slitter|Betrayers of Kamigawa|U|74108|88| -|Patron of the Akki|Betrayers of Kamigawa|R|74109|115| -|Reduce to Dreams|Betrayers of Kamigawa|R|74110|49| -|Toils of Night and Day|Betrayers of Kamigawa|C|74113|57| -|Three Tragedies|Betrayers of Kamigawa|U|74117|87| -|Descendant of Masumaro|Saviors of Kamigawa|U|74119|126| -|Ronin Cliffrider|Betrayers of Kamigawa|U|74122|116| -|Pus Kami|Betrayers of Kamigawa|U|74124|79| -|Sickening Shoal|Betrayers of Kamigawa|R|74127|82| -|Disrupting Shoal|Betrayers of Kamigawa|R|74128|33| -|Wine of Blood and Iron|Saviors of Kamigawa|R|74130|161| -|Cowed by Wisdom|Saviors of Kamigawa|C|74132|5| -|Sokenzan Renegade|Saviors of Kamigawa|U|74133|114| -|Hail of Arrows|Saviors of Kamigawa|U|74137|11| -|Evermind|Saviors of Kamigawa|U|74144|37| -|O-Naginata|Saviors of Kamigawa|U|74146|157| -|Akuta, Born of Ash|Saviors of Kamigawa|R|74148|61| -|Kiku's Shadow|Saviors of Kamigawa|U|74157|77| -|Manriki-Gusari|Saviors of Kamigawa|U|74158|156| -|Briarknit Kami|Saviors of Kamigawa|U|74163|124| -|Fiddlehead Kami|Saviors of Kamigawa|C|74166|130| -|Seed the Land|Saviors of Kamigawa|R|74168|146| -|Soramaro, First to Dream|Saviors of Kamigawa|R|74170|58| -|Hand of Honor|Saviors of Kamigawa|U|74173|12| -|Soratami Cloud Chariot|Saviors of Kamigawa|U|74174|160| -|Path of Anger's Flame|Saviors of Kamigawa|C|74179|109| -|Masumaro, First to Live|Saviors of Kamigawa|R|74184|136| -|Charge Across the Araba|Saviors of Kamigawa|U|74186|4| -|Adamaro, First to Desire|Saviors of Kamigawa|R|74187|91| -|Rending Vines|Saviors of Kamigawa|C|74189|143| -|Kataki, War's Wage|Saviors of Kamigawa|R|74190|14| -|Shifting Borders|Saviors of Kamigawa|U|74191|56| -|Kashi-Tribe Elite|Saviors of Kamigawa|U|74195|135| -|Okina Nightwatch|Saviors of Kamigawa|C|74196|140| -|Moonbow Illusionist|Saviors of Kamigawa|C|74198|46| -|Ronin Cavekeeper|Saviors of Kamigawa|C|74199|111| -|Barrel Down Sokenzan|Saviors of Kamigawa|C|74201|94| -|Death of a Thousand Stings|Saviors of Kamigawa|C|74202|64| -|Elder Pine of Jukai|Saviors of Kamigawa|C|74204|128| -|Oboro, Palace in the Clouds|Saviors of Kamigawa|R|74206|164| -|Pithing Needle|Saviors of Kamigawa|R|74207|158| -|Ζther Shockwave|Saviors of Kamigawa|U|74208|1| -|Sakura-Tribe Scout|Saviors of Kamigawa|C|74210|144| -|Oboro Envoy|Saviors of Kamigawa|U|74211|49| -|Kitsune Loreweaver|Saviors of Kamigawa|C|74213|17| -|Presence of the Wise|Saviors of Kamigawa|U|74216|23| -|Kami of the Tended Garden|Saviors of Kamigawa|U|74217|134| -|Shinen of Stars' Light|Saviors of Kamigawa|C|74361|28| -|Spiritual Visit|Saviors of Kamigawa|C|74372|29| -|Eiganjo Free-Riders|Saviors of Kamigawa|U|74373|8| -|Thoughts of Ruin|Saviors of Kamigawa|R|74374|118| -|Infernal Kirin|Saviors of Kamigawa|R|74377|72| -|Mikokoro, Center of the Sea|Saviors of Kamigawa|R|74388|162| -|Akki Drillmaster|Saviors of Kamigawa|C|74393|92| -|Locust Miser|Saviors of Kamigawa|U|74394|80| -|Razorjaw Oni|Saviors of Kamigawa|U|74396|87| -|Sokenzan Spellblade|Saviors of Kamigawa|C|74398|115| -|Exile into Darkness|Saviors of Kamigawa|U|74399|67| -|Footsteps of the Goryo|Saviors of Kamigawa|U|74400|68| -|Ghost-Lit Stalker|Saviors of Kamigawa|U|74401|69| -|Stampeding Serow|Saviors of Kamigawa|U|74407|150| -|Forked-Branch Garami|Betrayers of Kamigawa|U|74410|125| -|Rally the Horde|Saviors of Kamigawa|R|74411|110| -|Tallowisp|Betrayers of Kamigawa|U|74412|25| -|Shuko|Betrayers of Kamigawa|U|74415|159| -|Blessing of Leeches|Betrayers of Kamigawa|C|74417|62| -|Baku Altar|Betrayers of Kamigawa|R|74422|152| -|Oppressive Will|Saviors of Kamigawa|C|74423|50| -|Genju of the Cedars|Betrayers of Kamigawa|U|74424|126| -|Bile Urchin|Betrayers of Kamigawa|C|74427|61| -|Akki Blizzard-Herder|Betrayers of Kamigawa|C|74428|91| -|Mark of Sakiko|Betrayers of Kamigawa|U|74430|135| -|Toshiro Umezawa|Betrayers of Kamigawa|R|74431|89| -|Goblin Cohort|Betrayers of Kamigawa|C|74433|106| -|Gnarled Mass|Betrayers of Kamigawa|C|74435|127| -|Shizuko, Caller of Autumn|Betrayers of Kamigawa|R|74436|144| -|Blazing Shoal|Betrayers of Kamigawa|R|74441|96| -|Kaijin of the Vanishing Touch|Betrayers of Kamigawa|U|74443|39| -|Kira, Great Glass-Spinner|Betrayers of Kamigawa|R|74445|40| -|Tomorrow, Azami's Familiar|Betrayers of Kamigawa|R|74447|58| -|Higure, the Still Wind|Betrayers of Kamigawa|R|74448|37| -|First Volley|Betrayers of Kamigawa|C|74451|100| -|Petalmane Baku|Betrayers of Kamigawa|C|74455|139| -|Teardrop Kami|Betrayers of Kamigawa|C|74458|55| -|Kami of Tattered Shoji|Betrayers of Kamigawa|C|74460|11| -|Child of Thorns|Betrayers of Kamigawa|C|74461|123| -|Hero's Demise|Betrayers of Kamigawa|R|74465|68| -|Nezumi Shadow-Watcher|Betrayers of Kamigawa|U|74467|74| -|Ashen Monstrosity|Betrayers of Kamigawa|U|74469|93| -|Sekki, Seasons' Guide|Saviors of Kamigawa|R|74471|148| -|Ronin Warclub|Betrayers of Kamigawa|U|74473|158| -|Goryo's Vengeance|Betrayers of Kamigawa|R|74475|67| -|Hired Muscle|Betrayers of Kamigawa|U|74476|69| -|Crack the Earth|Betrayers of Kamigawa|C|74480|98| -|Terashi's Verdict|Betrayers of Kamigawa|U|74481|27| -|Tendo Ice Bridge|Betrayers of Kamigawa|R|74487|165| -|Scourge of Numai|Betrayers of Kamigawa|U|74488|80| -|Callow Jushi|Betrayers of Kamigawa|U|74489|31| -|Mannichi, the Fevered Dream|Betrayers of Kamigawa|R|74490|112| -|Tomb of Urami|Saviors of Kamigawa|R|74492|165| -|Split-Tail Miko|Betrayers of Kamigawa|C|74493|23| -|Phantom Wings|Betrayers of Kamigawa|C|74496|46| -|Quash|Betrayers of Kamigawa|U|74500|47| -|Spiraling Embers|Saviors of Kamigawa|C|74503|116| -|Iwamori of the Open Fist|Betrayers of Kamigawa|R|74507|130| -|Sakashima the Impostor|Saviors of Kamigawa|R|74509|53| -|Yukora, the Prisoner|Betrayers of Kamigawa|R|74510|90| -|Ornate Kanzashi|Betrayers of Kamigawa|R|74512|157| -|Empty-Shrine Kannushi|Betrayers of Kamigawa|U|74513|2| -|Veil of Secrecy|Betrayers of Kamigawa|C|74515|59| -|Day of Destiny|Betrayers of Kamigawa|R|74517|1| -|Waxmane Baku|Betrayers of Kamigawa|C|74518|29| -|Shining Shoal|Betrayers of Kamigawa|R|74519|21| -|Aura Barbs|Betrayers of Kamigawa|U|74522|94| -|Yomiji, Who Bars the Way|Betrayers of Kamigawa|R|74526|30| -|Ribbons of the Reikai|Betrayers of Kamigawa|C|74532|50| -|Fumiko the Lowblood|Betrayers of Kamigawa|R|74534|104| -|Blademane Baku|Betrayers of Kamigawa|C|74535|95| -|Budoka Pupil|Betrayers of Kamigawa|U|74536|122| -|Mending Hands|Betrayers of Kamigawa|C|74538|15| -|Scaled Hulk|Betrayers of Kamigawa|C|74541|143| -|Patron of the Orochi|Betrayers of Kamigawa|R|74542|138| -|Sakiko, Mother of Summer|Betrayers of Kamigawa|R|74544|141| -|Silverstorm Samurai|Betrayers of Kamigawa|C|74545|22| -|Eradicate|Betrayers of Kamigawa|U|74546|65| -|Kyoki, Sanity's Eclipse|Betrayers of Kamigawa|R|74552|72| -|Psychic Spear|Betrayers of Kamigawa|C|74554|78| -|Mirror Gallery|Betrayers of Kamigawa|R|74555|154| -|Kagemaro's Clutch|Saviors of Kamigawa|C|74560|74| -|Uproot|Betrayers of Kamigawa|C|74568|149| -|Lifegift|Betrayers of Kamigawa|R|74571|132| -|Heartless Hidetsugu|Betrayers of Kamigawa|R|74572|107| -|Kumano's Blessing|Betrayers of Kamigawa|C|74573|111| -|Okiba-Gang Shinobi|Betrayers of Kamigawa|C|74576|76| -|Skullmane Baku|Betrayers of Kamigawa|C|74577|83| -|Neko-Te|Betrayers of Kamigawa|R|74578|155| -|Harbinger of Spring|Betrayers of Kamigawa|C|74580|128| -|Hundred-Talon Strike|Betrayers of Kamigawa|C|74581|8| -|Genju of the Falls|Betrayers of Kamigawa|U|74582|35| -|Loam Dweller|Betrayers of Kamigawa|U|74584|134| -|Terashi's Grasp|Betrayers of Kamigawa|C|74585|26| -|Ninja of the Deep Hours|Betrayers of Kamigawa|C|74587|44| -|Frost Ogre|Betrayers of Kamigawa|C|74589|102| -|Horobi's Whisper|Betrayers of Kamigawa|C|74590|70| -|Ogre Marauder|Betrayers of Kamigawa|U|74594|75| -|Akki Raider|Betrayers of Kamigawa|U|74596|92| -|Takeno's Cavalry|Betrayers of Kamigawa|C|74597|24| -|Clash of Realities|Betrayers of Kamigawa|R|74598|97| -|Minamo Sightbender|Betrayers of Kamigawa|U|74600|41| -|Kitsune Palliator|Betrayers of Kamigawa|U|74603|14| -|Reki, the History of Kamigawa|Saviors of Kamigawa|R|74604|142| -|Orb of Dreams|Betrayers of Kamigawa|R|74607|156| -|Ire of Kaminari|Betrayers of Kamigawa|C|74609|109| -|Ward of Piety|Betrayers of Kamigawa|U|74610|28| -|Vital Surge|Betrayers of Kamigawa|C|74612|150| -|Body of Jukai|Betrayers of Kamigawa|U|74613|121| -|Splinter|Betrayers of Kamigawa|U|74615|146| -|Call for Blood|Betrayers of Kamigawa|C|74616|63| -|Iname as One|Saviors of Kamigawa|R|74618|151| -|Matsu-Tribe Sniper|Betrayers of Kamigawa|C|74619|136| -|Patron of the Kitsune|Betrayers of Kamigawa|R|74620|19| -|Frostling|Betrayers of Kamigawa|C|74621|103| -|Sowing Salt|Betrayers of Kamigawa|U|74623|118| -|Flames of the Blood Hand|Betrayers of Kamigawa|U|74625|101| -|Ink-Eyes, Servant of Oni|Betrayers of Kamigawa|R|74626|71| -|Traproot Kami|Betrayers of Kamigawa|C|74627|147| -|Slumbering Tora|Betrayers of Kamigawa|R|74628|161| -|Roar of Jukai|Betrayers of Kamigawa|C|74629|140| -|Ishi-Ishi, Akki Crackshot|Betrayers of Kamigawa|R|74636|110| -|Floodbringer|Betrayers of Kamigawa|C|74637|34| -|Scour|Betrayers of Kamigawa|U|74640|20| -|Lifespinner|Betrayers of Kamigawa|U|74642|133| -|Stir the Grave|Betrayers of Kamigawa|C|74643|85| -|That Which Was Taken|Betrayers of Kamigawa|R|74644|162| -|Ogre Recluse|Betrayers of Kamigawa|U|74645|113| -|Patron of the Nezumi|Betrayers of Kamigawa|R|74646|77| -|Hokori, Dust Drinker|Betrayers of Kamigawa|R|74647|7| -|Threads of Disloyalty|Betrayers of Kamigawa|R|74652|56| -|Opal-Eye, Konda's Yojimbo|Betrayers of Kamigawa|R|74655|17| -|Quillmane Baku|Betrayers of Kamigawa|C|74657|48| -|Heed the Mists|Betrayers of Kamigawa|U|74660|36| -|Minamo's Meddling|Betrayers of Kamigawa|C|74665|42| -|Genju of the Spires|Betrayers of Kamigawa|U|74666|105| -|Gods' Eye, Gate to the Reikai|Betrayers of Kamigawa|U|74668|164| -|Patron of the Moon|Betrayers of Kamigawa|R|74669|45| -|Unchecked Growth|Betrayers of Kamigawa|U|74670|148| -|Cunning Bandit|Betrayers of Kamigawa|U|74671|99| -|Glimpse of Nature|Champions of Kamigawa|R|75241|210| -|Matsu-Tribe Decoy|Champions of Kamigawa|C|75247|227| -|Mindblaze|Champions of Kamigawa|R|75248|180| -|Uba Mask|Champions of Kamigawa|R|75254|272| -|Cruel Deceiver|Champions of Kamigawa|C|75258|106| -|Rend Flesh|Champions of Kamigawa|C|75259|140| -|Cursed Ronin|Champions of Kamigawa|C|75262|107| -|No-Dachi|Champions of Kamigawa|U|75265|264| -|Kumano's Pupils|Champions of Kamigawa|U|75267|177| -|Meloku the Clouded Mirror|Champions of Kamigawa|R|75268|74| -|Kusari-Gama|Champions of Kamigawa|R|75269|260| -|Akki Avalanchers|Champions of Kamigawa|C|75277|151| -|Shell of the Last Kappa|Champions of Kamigawa|R|75278|269| -|Teller of Tales|Champions of Kamigawa|C|75285|95| -|Keiga, the Tide Star|Champions of Kamigawa|R|75286|72| -|Tatsumasa, the Dragon's Fang|Champions of Kamigawa|R|75291|270| -|Takeno, Samurai General|Champions of Kamigawa|R|75302|46| -|Boseiju, Who Shelters All|Champions of Kamigawa|R|75305|273| -|Lantern Kami|Champions of Kamigawa|C|75319|32| -|Ghostly Prison|Champions of Kamigawa|U|75328|10| -|Night Dealings|Champions of Kamigawa|R|75334|132| -|Pain's Reward|Saviors of Kamigawa|R|75340|85| -|Aura of Dominion|Champions of Kamigawa|U|75353|51| -|Hanabi Blast|Champions of Kamigawa|U|75357|170| -|Genju of the Realm|Betrayers of Kamigawa|R|75364|151| -|Strength of Cedars|Champions of Kamigawa|U|75366|245| -|Rootrunner|Champions of Kamigawa|U|75367|237| -|Samurai of the Pale Curtain|Champions of Kamigawa|U|75381|43| -|Akki Underminer|Champions of Kamigawa|U|75399|155| -|Devouring Rage|Champions of Kamigawa|C|75401|164| -|Feast of Worms|Champions of Kamigawa|U|75402|207| -|Orochi Sustainer|Champions of Kamigawa|C|75403|236| -|Serpent Skin|Champions of Kamigawa|C|75404|240| -|Kashi-Tribe Reaver|Champions of Kamigawa|U|76634|220| -|Innocence Kami|Champions of Kamigawa|U|76636|18| -|Konda's Banner|Champions of Kamigawa|R|76637|259| -|Brutal Deceiver|Champions of Kamigawa|C|76638|161| -|Commune with Nature|Champions of Kamigawa|C|76639|204| -|Moss Kami|Champions of Kamigawa|C|76641|228| -|Kitsune Diviner|Champions of Kamigawa|C|76652|26| -|Disruption Aura|Fifth Dawn|U|76971|28| -|Kami of the Painted Road|Champions of Kamigawa|C|77136|23| -|Hana Kami|Champions of Kamigawa|U|77138|211| -|Hearth Kami|Champions of Kamigawa|C|77139|171| -|Call to Glory|Champions of Kamigawa|C|77140|4| -|Honor-Worn Shaku|Champions of Kamigawa|U|77143|254| -|Akki Rockspeaker|Champions of Kamigawa|C|77919|154| -|Thief of Hope|Champions of Kamigawa|U|77920|147| -|Kami of Lunacy|Champions of Kamigawa|U|77921|119| -|Scuttling Death|Champions of Kamigawa|C|77922|142| -|Hall of the Bandit Lord|Champions of Kamigawa|R|77924|277| -|Blind with Anger|Champions of Kamigawa|U|77925|158| -|Unnatural Speed|Champions of Kamigawa|C|77926|197| -|Time Stop|Champions of Kamigawa|R|78184|97| -|Callous Deceiver|Champions of Kamigawa|C|78190|53| -|Godo, Bandit Warlord|Champions of Kamigawa|R|78192|169| -|Bounteous Kirin|Saviors of Kamigawa|R|78585|123| -|River Kaijin|Champions of Kamigawa|C|78586|83| -|Yosei, the Morning Star|Champions of Kamigawa|R|78590|50| -|Konda, Lord of Eiganjo|Champions of Kamigawa|R|78594|30| -|Kenzo the Hardhearted|Champions of Kamigawa|U|78600|2| -|He Who Hungers|Champions of Kamigawa|R|78602|114| -|Tide of War|Champions of Kamigawa|R|78606|194| -|Myojin of Seeing Winds|Champions of Kamigawa|R|78608|75| -|Nighteyes the Desecrator|Champions of Kamigawa|U|78678|129| -|Stabwhisker the Odious|Champions of Kamigawa|R|78679|131| -|Myojin of Cleansing Fire|Champions of Kamigawa|R|78681|35| -|Sensei Golden-Tail|Champions of Kamigawa|R|78683|44| -|Humble Budoka|Champions of Kamigawa|C|78684|214| -|Tomoya the Revealer|Champions of Kamigawa|R|78686|70| -|Dokai, Weaver of Life|Champions of Kamigawa|R|78687|202| -|Goka the Unjust|Champions of Kamigawa|U|78688|173| -|Peer Through Depths|Champions of Kamigawa|C|78690|78| -|Tobita, Master of Winds|Champions of Kamigawa|U|78691|93| -|The Unspeakable|Champions of Kamigawa|R|78693|98| -|Tok-Tok, Volcano Born|Champions of Kamigawa|R|78694|153| -|Autumn-Tail, Kitsune Sage|Champions of Kamigawa|R|78695|28| -|Azami, Lady of Scrolls|Champions of Kamigawa|R|78697|52| -|Shisato, Whispering Hunter|Champions of Kamigawa|R|78853|242| -|Horobi, Death's Wail|Champions of Kamigawa|R|78854|117| -|Uyo, Silent Prophet|Champions of Kamigawa|R|78855|99| -|Kiku, Night's Flower|Champions of Kamigawa|R|78962|121| -|Waking Nightmare|Champions of Kamigawa|C|78963|149| -|Kumano, Master Yamabushi|Champions of Kamigawa|R|78964|176| -|Seizan, Perverter of Truth|Champions of Kamigawa|R|78965|143| -|Gibbering Kami|Champions of Kamigawa|C|78966|112| -|Brothers Yamazaki|Champions of Kamigawa|U|78968|160| -|Pull Under|Champions of Kamigawa|C|78972|137| -|Shidako, Broodmistress|Champions of Kamigawa|U|78975|233| -|Myojin of Life's Web|Champions of Kamigawa|R|78976|229| -|Venerable Kumo|Champions of Kamigawa|C|78979|248| -|Joyous Respite|Champions of Kamigawa|C|78981|216| -|Ore Gorger|Champions of Kamigawa|U|78984|182| -|Myojin of Infinite Rage|Champions of Kamigawa|R|78986|181| -|Time of Need|Champions of Kamigawa|U|78987|247| -|Sosuke, Son of Seshiro|Champions of Kamigawa|U|78989|244| -|Night of Souls' Betrayal|Champions of Kamigawa|R|78991|133| -|Plains|Champions of Kamigawa|L|79060|287| -|Island|Champions of Kamigawa|L|79061|291| -|Forest|Champions of Kamigawa|L|79062|303| -|Plains|Champions of Kamigawa|L|79063|288| -|Mountain|Champions of Kamigawa|L|79064|299| -|Swamp|Champions of Kamigawa|L|79065|295| -|Swamp|Champions of Kamigawa|L|79066|296| -|Swamp|Champions of Kamigawa|L|79067|297| -|Forest|Champions of Kamigawa|L|79068|304| -|Island|Champions of Kamigawa|L|79069|292| -|Mountain|Champions of Kamigawa|L|79070|300| -|Island|Champions of Kamigawa|L|79071|293| -|Plains|Champions of Kamigawa|L|79072|289| -|Swamp|Champions of Kamigawa|L|79073|298| -|Island|Champions of Kamigawa|L|79074|294| -|Mountain|Champions of Kamigawa|L|79075|301| -|Plains|Champions of Kamigawa|L|79076|290| -|Mountain|Champions of Kamigawa|L|79077|302| -|Forest|Champions of Kamigawa|L|79078|306| -|Forest|Champions of Kamigawa|L|79079|305| -|Lantern-Lit Graveyard|Champions of Kamigawa|U|79080|278| -|Lava Spike|Champions of Kamigawa|C|79084|178| -|Gutwrencher Oni|Champions of Kamigawa|U|79088|113| -|Swallowing Plague|Champions of Kamigawa|U|79089|146| -|Gifts Ungiven|Champions of Kamigawa|R|79090|62| -|Dance of Shadows|Champions of Kamigawa|U|79094|108| -|Honden of Night's Reach|Champions of Kamigawa|U|79098|116| -|Kabuto Moth|Champions of Kamigawa|C|79105|20| -|Honden of Infinite Rage|Champions of Kamigawa|U|79110|172| -|Myojin of Night's Reach|Champions of Kamigawa|R|79112|126| -|Bloodthirsty Ogre|Champions of Kamigawa|U|79113|104| -|Cloudcrest Lake|Champions of Kamigawa|U|79115|274| -|Painwracker Oni|Champions of Kamigawa|U|79119|136| -|Shinka, the Bloodsoaked Keep|Champions of Kamigawa|R|79121|282| -|Reverse the Sands|Champions of Kamigawa|R|79125|41| -|Distress|Champions of Kamigawa|C|79129|111| -|Pinecrest Ridge|Champions of Kamigawa|U|79132|281| -|Mana Seism|Champions of Kamigawa|U|79133|179| -|Nagao, Bound by Honor|Champions of Kamigawa|U|79136|36| -|Sokenzan Bruiser|Champions of Kamigawa|C|79140|188| -|Hold the Line|Champions of Kamigawa|R|79144|13| -|Hundred-Talon Kami|Champions of Kamigawa|C|79145|16| -|Hisoka's Guard|Champions of Kamigawa|C|79149|68| -|Devouring Greed|Champions of Kamigawa|C|79151|110| -|Lure|Champions of Kamigawa|U|79152|226| -|Eye of Nowhere|Champions of Kamigawa|C|79155|59| -|Ragged Veins|Champions of Kamigawa|C|79158|139| -|Honden of Cleansing Fire|Champions of Kamigawa|U|79159|14| -|Akki Underling|Saviors of Kamigawa|C|79164|93| -|Blood Speaker|Champions of Kamigawa|U|79166|103| -|Struggle for Sanity|Champions of Kamigawa|U|79168|145| -|Honden of Seeing Winds|Champions of Kamigawa|U|79176|69| -|Soilshaper|Champions of Kamigawa|U|79177|243| -|Minamo, School at Water's Edge|Champions of Kamigawa|R|79179|279| -|Honden of Life's Web|Champions of Kamigawa|U|79180|213| -|Shizo, Death's Storehouse|Champions of Kamigawa|R|79186|283| -|Mystic Restraints|Champions of Kamigawa|C|79188|76| -|Waterveil Cavern|Champions of Kamigawa|U|79191|286| -|Guardian of Solitude|Champions of Kamigawa|U|79194|64| -|Kami of Fire's Roar|Champions of Kamigawa|C|79195|174| -|Tranquil Garden|Champions of Kamigawa|U|79196|284| -|Kami of the Hunt|Champions of Kamigawa|C|79198|219| -|Vassal's Duty|Champions of Kamigawa|R|79199|48| -|Konda's Hatamoto|Champions of Kamigawa|U|79201|31| -|Hideous Laughter|Champions of Kamigawa|U|79204|115| -|Eiganjo Castle|Champions of Kamigawa|R|79205|275| -|Earthshaker|Champions of Kamigawa|U|79214|165| -|Masako the Humorless|Champions of Kamigawa|R|79215|33| -|Isamaru, Hound of Konda|Champions of Kamigawa|R|79217|19| -|Untaidake, the Cloud Keeper|Champions of Kamigawa|R|79218|285| -|Hair-Strung Koto|Champions of Kamigawa|R|79219|252| -|Hikari, Twilight Guardian|Champions of Kamigawa|R|79222|12| -|Stone Rain|Champions of Kamigawa|C|79223|191| -|Horizon Seed|Champions of Kamigawa|U|79226|15| -|Cut the Tethers|Champions of Kamigawa|U|79229|56| -|Graceful Adept|Champions of Kamigawa|U|79230|63| -|Tenza, Godo's Maul|Champions of Kamigawa|U|79231|271| -|Journeyer's Kite|Champions of Kamigawa|R|79233|257| -|Kami of Old Stone|Champions of Kamigawa|U|79236|22| -|Rag Dealer|Champions of Kamigawa|C|79237|138| -|Ryusei, the Falling Star|Champions of Kamigawa|R|79242|185| -|Gale Force|Champions of Kamigawa|U|79244|209| -|Reach Through Mists|Champions of Kamigawa|C|79247|81| -|Ben-Ben, Akki Hermit|Champions of Kamigawa|R|79248|157| -|Forbidden Orchard|Champions of Kamigawa|R|79252|276| -|Soul of Magma|Champions of Kamigawa|C|79253|189| -|Pious Kitsune|Champions of Kamigawa|C|79256|38| -|Nezumi Bone-Reader|Champions of Kamigawa|U|79857|127| -|Iizuka the Ruthless|Saviors of Kamigawa|R|79860|104| -|General's Kabuto|Champions of Kamigawa|R|79862|251| -|Reweave|Champions of Kamigawa|R|79863|82| -|Orochi Hatchery|Champions of Kamigawa|R|80241|266| -|Psychic Puppetry|Champions of Kamigawa|C|80242|80| -|Eerie Procession|Champions of Kamigawa|U|80243|58| -|Glacial Ray|Champions of Kamigawa|C|80245|168| -|Soulblast|Champions of Kamigawa|R|80246|190| -|Through the Breach|Champions of Kamigawa|R|80250|193| -|Okina, Temple to the Grandfathers|Champions of Kamigawa|R|80251|280| -|Sachi, Daughter of Seshiro|Champions of Kamigawa|U|80254|238| -|Consuming Vortex|Champions of Kamigawa|C|80255|54| -|Seshiro the Anointed|Champions of Kamigawa|R|80256|241| -|Reito Lantern|Champions of Kamigawa|U|80273|267| -|Zo-Zu the Punisher|Champions of Kamigawa|R|80274|200| -|Desperate Ritual|Champions of Kamigawa|C|80275|163| -|Swirl the Mists|Champions of Kamigawa|R|80276|94| -|Iname, Death Aspect|Champions of Kamigawa|R|80278|118| -|Junkyo Bell|Champions of Kamigawa|R|80280|258| -|Cranial Extraction|Champions of Kamigawa|R|80281|105| -|Iname, Life Aspect|Champions of Kamigawa|R|80282|215| -|Azusa, Lost but Seeking|Champions of Kamigawa|R|80283|201| -|Dampen Thought|Champions of Kamigawa|U|80284|57| -|Terashi's Cry|Champions of Kamigawa|C|80285|47| -|Kodama of the South Tree|Champions of Kamigawa|R|80288|223| -|Squelch|Champions of Kamigawa|U|80290|92| -|Part the Veil|Champions of Kamigawa|R|80291|77| -|Candles' Glow|Champions of Kamigawa|U|80292|5| -|Soratami Mirror-Mage|Champions of Kamigawa|U|80410|88| -|Twincast|Saviors of Kamigawa|R|80412|60| -|Soratami Rainshaper|Champions of Kamigawa|C|80413|89| -|Soratami Mirror-Guard|Champions of Kamigawa|C|80414|87| -|Soratami Seer|Champions of Kamigawa|U|80415|91| -|Soratami Savant|Champions of Kamigawa|U|80417|90| -|Cleanfall|Champions of Kamigawa|U|80500|6| -|Floating-Dream Zubera|Champions of Kamigawa|C|80507|61| -|Ember-Fist Zubera|Champions of Kamigawa|C|80508|166| -|Ashen-Skin Zubera|Champions of Kamigawa|C|80509|101| -|Silent-Chant Zubera|Champions of Kamigawa|C|80510|45| -|Dripping-Tongue Zubera|Champions of Kamigawa|C|80511|206| -|Villainous Ogre|Champions of Kamigawa|C|80520|148| -|Nezumi Cutthroat|Champions of Kamigawa|C|80521|128| -|Deathcurse Ogre|Champions of Kamigawa|C|80522|109| -|Sideswipe|Champions of Kamigawa|U|80523|187| -|Dosan the Falling Leaf|Champions of Kamigawa|R|80524|205| -|Jukai Messenger|Champions of Kamigawa|C|80525|218| -|Ethereal Haze|Champions of Kamigawa|C|80526|9| -|Nature's Will|Champions of Kamigawa|R|80527|230| -|Kitsune Dawnblade|Saviors of Kamigawa|C|80530|16| -|Jade Idol|Champions of Kamigawa|U|80531|256| -|Long-Forgotten Gohei|Champions of Kamigawa|R|80532|261| -|Kodama's Might|Champions of Kamigawa|C|81702|224| -|Kentaro, the Smiling Cat|Betrayers of Kamigawa|R|81968|13| -|Jetting Glasskite|Betrayers of Kamigawa|U|81976|38| -|Kami of the Honored Dead|Betrayers of Kamigawa|U|81977|12| -|Shimmering Glasskite|Betrayers of Kamigawa|C|81978|51| -|Umezawa's Jitte|Betrayers of Kamigawa|R|81979|163| -|Heart of Light|Betrayers of Kamigawa|C|81982|6| -|Skullsnatcher|Betrayers of Kamigawa|C|81983|84| -|Overblaze|Betrayers of Kamigawa|U|81986|114| -|Shirei, Shizo's Caretaker|Betrayers of Kamigawa|R|81987|81| -|Blinding Powder|Betrayers of Kamigawa|U|81989|153| -|Torrent of Stone|Betrayers of Kamigawa|C|81990|119| -|Final Judgment|Betrayers of Kamigawa|R|81991|4| -|Shuriken|Betrayers of Kamigawa|U|81997|160| -|Enshrined Memories|Betrayers of Kamigawa|R|81998|124| -|Strange Inversion|Champions of Kamigawa|U|82000|192| -|Vine Kami|Champions of Kamigawa|C|82001|249| -|Kuro, Pitlord|Champions of Kamigawa|R|82423|123| -|Daring Apprentice|Ninth Edition|R|82942|72| -|Order of the Sacred Bell|Ninth Edition|C|82943|261| -|Ancient Silverback|Ninth Edition|R|82950|230| -|Paladin en-Vec|Ninth Edition|R|82951|32| -|Karplusan Yeti|Ninth Edition|R|82955|198| -|Goblin Piker|Ninth Edition|C|82957|194| -|Elvish Bard|Ninth Edition|U|82960|236| -|Serra's Blessing|Ninth Edition|U|82964|44| -|Pegasus Charger|Ninth Edition|C|82967|34| -|Lumengrid Warden|Ninth Edition|C|82968|84| -|Enfeeblement|Ninth Edition|C|82973|127| -|Tempest of Light|Ninth Edition|U|82976|50| -|Infantry Veteran|Ninth Edition|C|82978|21| -|Thought Courier|Ninth Edition|U|82980|104| -|Firebreathing|Ninth Edition|C|82983|181| -|Air Elemental|Ninth Edition|U|82988|58| -|Aladdin's Ring|Ninth Edition|R|82989|286| -|Anaba Shaman|Ninth Edition|C|82991|172| -|Angel of Mercy|Ninth Edition|U|82992|1| -|Archivist|Ninth Edition|R|82994|60| -|Aven Fisher|Ninth Edition|C|82998|61| -|Aven Flock|Ninth Edition|C|82999|4| -|Balduvian Barbarians|Ninth Edition|C|83001|174| -|Beast of Burden|Ninth Edition|R|83002|288| -|Blanchwood Armor|Ninth Edition|U|83004|232| -|Blaze|Ninth Edition|U|83005|175| -|Blinding Angel|Ninth Edition|R|83007|7| -|Blood Moon|Ninth Edition|R|83008|176| -|Bog Imp|Ninth Edition|C|83010|116| -|Bog Wraith|Ninth Edition|U|83011|117| -|Boiling Seas|Ninth Edition|U|83012|178| -|Boomerang|Ninth Edition|C|83013|66| -|Goblin Mountaineer|Ninth Edition|C|83018|193| -|Chastise|Ninth Edition|U|83021|9| -|River Bear|Ninth Edition|U|83022|266| -|Circle of Protection: Black|Ninth Edition|U|83024|10| -|Circle of Protection: Red|Ninth Edition|U|83027|11| -|Coat of Arms|Ninth Edition|R|83033|291| -|Coercion|Ninth Edition|C|83034|118| -|Greater Good|Ninth Edition|R|83035|245| -|Tidings|Ninth Edition|U|83036|106| -|Confiscate|Ninth Edition|U|83037|68| -|Cowardice|Ninth Edition|R|83039|70| -|Craw Wurm|Ninth Edition|C|83040|233| -|Crossbow Infantry|Ninth Edition|C|83042|12| -|Dark Banishing|Ninth Edition|C|83046|122| -|Defense Grid|Ninth Edition|R|83051|293| -|Dehydration|Ninth Edition|C|83053|73| -|Demolish|Ninth Edition|U|83054|179| -|Demystify|Ninth Edition|C|83055|13| -|Diabolic Tutor|Ninth Edition|U|83056|125| -|Disrupting Scepter|Ninth Edition|R|83058|295| -|Drudge Skeletons|Ninth Edition|U|83061|126| -|Eager Cadet|Ninth Edition|C|83064|1| -|Elvish Champion|Ninth Edition|R|83069|238| -|Elvish Piper|Ninth Edition|R|83072|239| -|Viridian Shaman|Ninth Edition|U|83073|280| -|Emperor Crocodile|Ninth Edition|R|83074|241| -|Enormous Baloth|Ninth Edition|U|83075|9| -|Enrage|Ninth Edition|U|83076|180| -|Evacuation|Ninth Edition|R|83078|75| -|Execute|Ninth Edition|U|83079|128| -|Fear|Ninth Edition|C|83081|129| -|Azure Drake|Ninth Edition|U|83084|63| -|Flashfires|Ninth Edition|U|83086|183| -|Fleeting Image|Ninth Edition|R|83087|78| -|Flight|Ninth Edition|C|83088|79| -|Quicksand|Ninth Edition|U|83089|323| -|Forest|Ninth Edition|L|83092|347| -|Forest|Ninth Edition|L|83093|348| -|Forest|Ninth Edition|L|83094|349| -|Forest|Ninth Edition|L|83095|350| -|Fugitive Wizard|Ninth Edition|C|83096|80| -|Furnace of Rath|Ninth Edition|R|83098|188| -|Ley Druid|Ninth Edition|U|83099|251| -|Giant Cockroach|Ninth Edition|C|83102|133| -|Giant Growth|Ninth Edition|C|83103|243| -|Giant Octopus|Ninth Edition|C|83104|4| -|Giant Spider|Ninth Edition|C|83105|244| -|Glorious Anthem|Ninth Edition|R|83106|16| -|Glory Seeker|Ninth Edition|C|83107|17| -|Goblin Chariot|Ninth Edition|C|83109|191| -|Goblin King|Ninth Edition|R|83111|192| -|Grave Pact|Ninth Edition|R|83113|135| -|Gravedigger|Ninth Edition|C|83114|136| -|Grizzly Bears|Ninth Edition|C|83115|246| -|Hill Giant|Ninth Edition|C|83120|197| -|Holy Day|Ninth Edition|C|83121|18| -|Holy Strength|Ninth Edition|C|83122|19| -|Honor Guard|Ninth Edition|C|83123|20| -|Horned Turtle|Ninth Edition|C|83125|81| -|Howling Mine|Ninth Edition|R|83126|298| -|Hunted Wumpus|Ninth Edition|U|83128|248| -|Sleight of Hand|Ninth Edition|C|83129|99| -|Reverse Damage|Ninth Edition|R|83132|35| -|Battle of Wits|Ninth Edition|R|83133|65| -|Island|Ninth Edition|L|83136|335| -|Island|Ninth Edition|L|83137|336| -|Island|Ninth Edition|L|83138|337| -|Island|Ninth Edition|L|83139|338| -|Booby Trap|Ninth Edition|R|83142|289| -|Lava Axe|Ninth Edition|C|83145|200| -|Lightning Elemental|Ninth Edition|C|83150|201| -|Rootbreaker Wurm|Ninth Edition|U|83151|267| -|Llanowar Behemoth|Ninth Edition|U|83152|252| -|Looming Shade|Ninth Edition|C|83154|142| -|Lord of the Undead|Ninth Edition|R|83155|143| -|Creeping Mold|Ninth Edition|U|83156|234| -|Festering Goblin|Ninth Edition|C|83157|130| -|Mahamoti Djinn|Ninth Edition|R|83158|85| -|Mana Clash|Ninth Edition|R|83159|203| -|Mana Leak|Ninth Edition|C|83160|86| -|Maro|Ninth Edition|R|83161|254| -|Master Decoy|Ninth Edition|C|83162|27| -|Master Healer|Ninth Edition|R|83163|28| -|Megrim|Ninth Edition|U|83164|144| -|Crafty Pathmage|Ninth Edition|C|83165|71| -|Withering Gaze|Ninth Edition|U|83166|113| -|Might of Oaks|Ninth Edition|R|83167|255| -|Millstone|Ninth Edition|R|83168|304| -|Mind Bend|Ninth Edition|R|83169|87| -|Mind Rot|Ninth Edition|C|83170|145| -|Mogg Sentry|Ninth Edition|R|83173|204| -|Kavu Climber|Ninth Edition|C|83175|249| -|Mountain|Ninth Edition|L|83176|343| -|Mountain|Ninth Edition|L|83177|344| -|Mountain|Ninth Edition|L|83178|345| -|Mountain|Ninth Edition|L|83179|346| -|Natural Affinity|Ninth Edition|R|83182|256| -|Naturalize|Ninth Edition|C|83183|258| -|Nekrataal|Ninth Edition|U|83185|149| -|Nightmare|Ninth Edition|R|83186|150| -|Norwood Ranger|Ninth Edition|C|83188|260| -|Ogre Taskmaster|Ninth Edition|U|83190|205| -|Oracle's Attendants|Ninth Edition|R|83192|30| -|Orcish Artillery|Ninth Edition|U|83193|206| -|Pacifism|Ninth Edition|C|83195|31| -|Panic Attack|Ninth Edition|C|83196|207| -|Persecute|Ninth Edition|R|83199|151| -|Phantom Warrior|Ninth Edition|U|83200|88| -|Phyrexian Arena|Ninth Edition|R|83201|152| -|Thran Golem|Ninth Edition|R|83202|313| -|Phyrexian Hulk|Ninth Edition|U|83203|306| -|Death Pits of Rath|Ninth Edition|R|83204|123| -|Plague Beetle|Ninth Edition|C|83205|154| -|Plague Wind|Ninth Edition|R|83206|155| -|Plains|Ninth Edition|L|83207|331| -|Plains|Ninth Edition|L|83208|332| -|Plains|Ninth Edition|L|83209|333| -|Plains|Ninth Edition|L|83210|334| -|Puppeteer|Ninth Edition|U|83215|91| -|Pyroclasm|Ninth Edition|U|83216|208| -|Guerrilla Tactics|Ninth Edition|U|83217|196| -|Raging Goblin|Ninth Edition|C|83218|209| -|Warrior's Honor|Ninth Edition|C|83219|53| -|Raise Dead|Ninth Edition|C|83220|156| -|Rampant Growth|Ninth Edition|C|83221|263| -|Ravenous Rats|Ninth Edition|C|83222|157| -|Reflexes|Ninth Edition|C|83225|211| -|Regeneration|Ninth Edition|U|83226|265| -|Relentless Assault|Ninth Edition|R|83227|212| -|Remove Soul|Ninth Edition|C|83228|93| -|Reclaim|Ninth Edition|C|83229|264| -|Rewind|Ninth Edition|U|83230|94| -|Rod of Ruin|Ninth Edition|U|83233|307| -|Royal Assassin|Ninth Edition|R|83235|159| -|Rukh Egg|Ninth Edition|R|83236|214| -|Zodiac Monkey|Ninth Edition|C|83237|285| -|Sacred Ground|Ninth Edition|R|83239|37| -|Sacred Nectar|Ninth Edition|C|83240|38| -|Samite Healer|Ninth Edition|C|83244|39| -|Savannah Lions|Ninth Edition|R|83246|41| -|Scathe Zombies|Ninth Edition|C|83247|160| -|Sea Monster|Ninth Edition|C|83249|96| -|Serra Angel|Ninth Edition|R|83254|43| -|Shatter|Ninth Edition|C|83257|218| -|Dream Prowler|Ninth Edition|U|83258|74| -|Shivan Dragon|Ninth Edition|R|83259|219| -|Shock|Ninth Edition|C|83261|220| -|Slay|Ninth Edition|U|83266|163| -|Soul Feast|Ninth Edition|U|83269|164| -|Spellbook|Ninth Edition|U|83270|309| -|Scaled Wurm|Ninth Edition|C|83272|269| -|Spineless Thug|Ninth Edition|C|83273|165| -|Spirit Link|Ninth Edition|U|83274|47| -|Anaconda|Ninth Edition|U|83276|229| -|Stone Rain|Ninth Edition|C|83281|221| -|Storm Crow|Ninth Edition|C|83282|100| -|Story Circle|Ninth Edition|R|83283|48| -|Stream of Life|Ninth Edition|U|83284|272| -|Sudden Impact|Ninth Edition|U|83285|222| -|Suntail Hawk|Ninth Edition|C|83286|49| -|Swamp|Ninth Edition|L|83288|339| -|Swamp|Ninth Edition|L|83289|340| -|Swamp|Ninth Edition|L|83290|341| -|Swamp|Ninth Edition|L|83291|342| -|Swarm of Rats|Ninth Edition|U|83292|166| -|Teferi's Puzzle Box|Ninth Edition|R|83294|312| -|Telepathy|Ninth Edition|U|83295|101| -|Thieving Magpie|Ninth Edition|U|83298|103| -|Tidal Kraken|Ninth Edition|R|83301|105| -|Trade Routes|Ninth Edition|R|83302|108| -|Trained Armodon|Ninth Edition|C|83303|274| -|Treasure Trove|Ninth Edition|U|83304|110| -|Goblin Sky Raider|Ninth Edition|C|83305|195| -|Sift|Ninth Edition|C|83307|98| -|Underworld Dreams|Ninth Edition|R|83309|167| -|Unholy Strength|Ninth Edition|C|83310|168| -|Weathered Wayfarer|Ninth Edition|R|83311|54| -|Urza's Mine|Ninth Edition|U|83314|327| -|Urza's Power Plant|Ninth Edition|U|83315|328| -|Urza's Tower|Ninth Edition|U|83316|329| -|Vengeance|Ninth Edition|U|83319|2| -|Verduran Enchantress|Ninth Edition|R|83320|279| -|Viashino Sandstalker|Ninth Edition|U|83323|225| -|Volcanic Hammer|Ninth Edition|C|83327|226| -|Wind Drake|Ninth Edition|C|83334|112| -|Wood Elves|Ninth Edition|C|83336|283| -|Worship|Ninth Edition|R|83338|55| -|Wrath of God|Ninth Edition|R|83339|56| -|Yavimaya Enchantress|Ninth Edition|U|83341|284| -|Zombify|Ninth Edition|U|83342|171| -|Zur's Weirding|Ninth Edition|R|83343|114| -|Kird Ape|Ninth Edition|U|83346|199| -|Jade Statue|Ninth Edition|R|83350|300| -|Horror of Horrors|Ninth Edition|U|83353|140| -|Hypnotic Specter|Ninth Edition|R|83354|141| -|Serpent Warrior|Ninth Edition|C|83364|162| -|Goblin Brigand|Ninth Edition|C|83374|190| -|Seething Song|Ninth Edition|C|83377|216| -|Verdant Force|Ninth Edition|R|83384|278| -|Bottle Gnomes|Ninth Edition|U|83386|290| -|Counsel of the Soratami|Ninth Edition|C|83390|69| -|Shard Phoenix|Ninth Edition|R|83410|217| -|Will-o'-the-Wisp|Ninth Edition|R|83411|169| -|Skyhunter Prowler|Ninth Edition|C|83412|45| -|Ivory Mask|Ninth Edition|R|83413|23| -|Icy Manipulator|Ninth Edition|U|83415|299| -|Leonin Skyhunter|Ninth Edition|U|83416|25| -|Razortooth Rats|Ninth Edition|C|83418|158| -|Deathgazer|Ninth Edition|U|83420|124| -|Whip Sergeant|Ninth Edition|U|83421|227| -|Consume Spirit|Ninth Edition|U|83426|119| -|Hollow Dogs|Ninth Edition|C|83433|139| -|Loxodon Warhammer|Ninth Edition|R|83435|303| -|Fishliver Oil|Ninth Edition|C|83438|77| -|King Cheetah|Ninth Edition|U|83440|250| -|Venerable Monk|Ninth Edition|C|83441|51| -|Sea's Claim|Ninth Edition|C|83446|97| -|Vulshok Morningstar|Ninth Edition|U|83447|315| -|Magnivore|Ninth Edition|R|83448|202| -|Angel's Feather|Ninth Edition|U|83449|287| -|Elvish Warrior|Ninth Edition|C|83451|240| -|Kami of Old Stone|Ninth Edition|U|83461|24| -|Silklash Spider|Ninth Edition|R|83463|271| -|Mortivore|Ninth Edition|R|83464|147| -|Wurm's Tooth|Ninth Edition|U|83470|316| -|Blackmail|Ninth Edition|U|83471|115| -|Threaten|Ninth Edition|U|83472|223| -|Demon's Horn|Ninth Edition|U|83473|294| -|Wildfire|Ninth Edition|R|83483|228| -|Fellwar Stone|Ninth Edition|U|83489|297| -|Kraken's Eye|Ninth Edition|U|83493|302| -|Dragon's Claw|Ninth Edition|U|83498|296| -|Ur-Golem's Eye|Ninth Edition|U|83510|314| -|Llanowar Elves|Ninth Edition|C|83515|253| -|Contaminated Bond|Ninth Edition|C|83518|120| -|Clone|Ninth Edition|R|83525|67| -|Biorhythm|Ninth Edition|R|83531|231| -|Slate of Ancestry|Ninth Edition|R|83540|308| -|Teysa, Orzhov Scion|Guildpact|R|83546|134| -|Plague Boiler|Ravnica: City of Guilds|R|83556|269| -|Vinelasher Kudzu|Ravnica: City of Guilds|R|83559|189| -|Flame-Kin Zealot|Ravnica: City of Guilds|U|83562|206| -|Cleansing Beam|Ravnica: City of Guilds|U|83567|118| -|Master Warcraft|Ravnica: City of Guilds|R|83572|250| -|Hunted Phantasm|Ravnica: City of Guilds|R|83573|55| -|Thoughtpicker Witch|Ravnica: City of Guilds|C|83576|109| -|Civic Wayfinder|Ravnica: City of Guilds|C|83584|157| -|Boros Swiftblade|Ravnica: City of Guilds|U|83588|193| -|Glimpse the Unthinkable|Ravnica: City of Guilds|R|83597|208| -|Keening Banshee|Ravnica: City of Guilds|U|83599|92| -|Flickerform|Ravnica: City of Guilds|R|83602|18| -|Viashino Slasher|Ravnica: City of Guilds|C|83605|149| -|Faith's Fetters|Ravnica: City of Guilds|C|83609|16| -|Thundersong Trumpeter|Ravnica: City of Guilds|C|83611|235| -|Caregiver|Ravnica: City of Guilds|C|83612|6| -|Suppression Field|Ravnica: City of Guilds|U|83617|31| -|Sunforger|Ravnica: City of Guilds|R|83618|272| -|Grifter's Blade|Ravnica: City of Guilds|U|83619|263| -|Fiery Conclusion|Ravnica: City of Guilds|C|83620|122| -|Watchwolf|Ravnica: City of Guilds|U|83625|239| -|Terrarion|Ravnica: City of Guilds|C|83629|273| -|Invoke the Firemind|Guildpact|R|83630|118| -|Moroii|Ravnica: City of Guilds|U|83631|216| -|Ribbons of Night|Ravnica: City of Guilds|U|83634|101| -|Smash|Ravnica: City of Guilds|C|83646|143| -|Scion of the Wild|Ravnica: City of Guilds|R|83647|182| -|Sins of the Past|Ravnica: City of Guilds|R|83648|106| -|Loxodon Gatekeeper|Ravnica: City of Guilds|R|83651|25| -|Fists of Ironwood|Ravnica: City of Guilds|C|83672|164| -|Flight of Fancy|Ravnica: City of Guilds|C|83677|49| -|Tidewater Minion|Ravnica: City of Guilds|C|83679|71| -|Rally the Righteous|Ravnica: City of Guilds|C|83680|222| -|Birds of Paradise|Ravnica: City of Guilds|R|83688|153| -|Followed Footsteps|Ravnica: City of Guilds|R|83699|51| -|Gleancrawler|Ravnica: City of Guilds|R|83702|247| -|Hammerfist Giant|Ravnica: City of Guilds|R|83712|130| -|Glass Golem|Ravnica: City of Guilds|U|83719|261| -|Privileged Position|Ravnica: City of Guilds|R|83720|251| -|Nullstone Gargoyle|Ravnica: City of Guilds|R|83726|266| -|Pariah's Shield|Ravnica: City of Guilds|R|83730|267| -|Watery Grave|Ravnica: City of Guilds|R|83731|286| -|Crystal Seer|Guildpact|C|83733|23| -|Omnibian|Dissension|R|83737|119| -|Loxodon Hierarch|Ravnica: City of Guilds|R|83738|214| -|To Arms!|Guildpact|U|83739|20| -|Perilous Forays|Ravnica: City of Guilds|U|83744|176| -|Sadistic Augermage|Ravnica: City of Guilds|C|83745|103| -|Sisters of Stone Death|Ravnica: City of Guilds|R|83746|231| -|Woodwraith Corrupter|Ravnica: City of Guilds|R|83747|240| -|Spawnbroker|Ravnica: City of Guilds|R|83748|65| -|Blazing Archon|Ravnica: City of Guilds|R|83754|4| -|Halcyon Glaze|Ravnica: City of Guilds|U|83764|54| -|Dark Confidant|Ravnica: City of Guilds|R|83771|81| -|Eye of the Storm|Ravnica: City of Guilds|R|83791|48| -|Sunhome, Fortress of the Legion|Ravnica: City of Guilds|U|83794|282| -|Goblin Spelunkers|Ravnica: City of Guilds|C|83803|128| -|Copy Enchantment|Ravnica: City of Guilds|R|83807|42| -|Evil Eye of Urborg|Time Spiral|U|83811|107| -|Strands of Undeath|Ravnica: City of Guilds|C|83819|108| -|Clinging Darkness|Ravnica: City of Guilds|C|83822|80| -|Shadow of Doubt|Ravnica: City of Guilds|R|83827|253| -|Seismic Spike|Ravnica: City of Guilds|C|83829|141| -|Grozoth|Ravnica: City of Guilds|R|83832|53| -|Elves of Deep Shadow|Ravnica: City of Guilds|C|83833|161| -|Lurking Informant|Ravnica: City of Guilds|C|83834|249| -|Golgari Guildmage|Ravnica: City of Guilds|U|83838|248| -|Dimir Doppelganger|Ravnica: City of Guilds|R|83850|202| -|Angel of Despair|Guildpact|R|83869|101| -|Selesnya Sagittars|Ravnica: City of Guilds|U|83880|229| -|Festival of the Guildpact|Ravnica: City of Guilds|U|83884|17| -|Mausoleum Turnkey|Ravnica: City of Guilds|U|83893|94| -|Boros Garrison|Ravnica: City of Guilds|C|83900|275| -|Crown of Convergence|Ravnica: City of Guilds|R|83903|258| -|Three Dreams|Ravnica: City of Guilds|R|83905|32| -|Woodwraith Strangler|Ravnica: City of Guilds|C|83908|241| -|Flame Fusillade|Ravnica: City of Guilds|R|83912|123| -|Nullmage Shepherd|Ravnica: City of Guilds|U|83913|174| -|Mark of Eviction|Ravnica: City of Guilds|U|83921|58| -|Bloodletter Quill|Ravnica: City of Guilds|R|83928|254| -|Gaze of the Gorgon|Ravnica: City of Guilds|C|83933|246| -|Reminisce|Ninth Edition|U|83958|92| -|Blinking Spirit|Ninth Edition|R|83962|8| -|Rathi Dragon|Ninth Edition|R|83973|210| -|Weird Harvest|Ninth Edition|R|83974|282| -|Force of Nature|Ninth Edition|R|83977|242| -|Sage Aven|Ninth Edition|C|83985|95| -|Web|Ninth Edition|U|83994|281| -|Treetop Bracers|Ninth Edition|C|84053|276| -|Sandstone Warrior|Ninth Edition|C|84054|215| -|Blessed Orator|Ninth Edition|U|84057|6| -|Gluttonous Zombie|Ninth Edition|U|84064|134| -|Exhaustion|Ninth Edition|U|84065|76| -|Final Punishment|Ninth Edition|R|84066|131| -|Form of the Dragon|Ninth Edition|R|84068|187| -|Aven Windreader|Ninth Edition|C|84071|62| -|Anarchist|Ninth Edition|U|84072|173| -|Coral Eel|Ninth Edition|C|84073|3| -|Seedborn Muse|Ninth Edition|R|84098|270| -|Mindslicer|Ninth Edition|R|84104|146| -|Soul Warden|Ninth Edition|U|84112|46| -|Dancing Scimitar|Ninth Edition|U|84114|292| -|Traumatize|Ninth Edition|R|84119|109| -|Flowstone Shambler|Ninth Edition|C|84120|185| -|Zealous Inquisitor|Ninth Edition|U|84122|57| -|Flowstone Crusher|Ninth Edition|U|84124|184| -|Groundskeeper|Ninth Edition|U|84127|247| -|Temporal Adept|Ninth Edition|R|84141|102| -|Michiko Konda, Truth Seeker|Saviors of Kamigawa|R|84359|19| -|Kami of the Crescent Moon|Saviors of Kamigawa|R|84364|42| -|Ayumi, the Last Visitor|Saviors of Kamigawa|R|84370|122| -|Reverence|Saviors of Kamigawa|R|84371|26| -|Feral Lightning|Saviors of Kamigawa|U|84373|97| -|Promise of Bunrei|Saviors of Kamigawa|R|84376|24| -|Celestial Kirin|Saviors of Kamigawa|R|84380|3| -|Phyrexian Gargantua|Ninth Edition|U|84393|153| -|Natural Spring|Ninth Edition|C|84409|257| -|Plagiarize|Ninth Edition|R|84413|89| -|Baleful Stare|Ninth Edition|U|84424|64| -|Utopia Tree|Ninth Edition|R|84434|277| -|Llanowar Wastes|Ninth Edition|R|84440|322| -|Battlefield Forge|Ninth Edition|R|84443|318| -|Bloodfire Colossus|Ninth Edition|R|84456|177| -|Shivan Reef|Ninth Edition|R|84457|324| -|Caves of Koilos|Ninth Edition|R|84467|320| -|Yavimaya Coast|Ninth Edition|R|84474|330| -|Rogue Kavu|Ninth Edition|C|84478|213| -|Thundermare|Ninth Edition|R|84502|224| -|Levitation|Ninth Edition|U|84503|83| -|Gift of Estates|Ninth Edition|U|84504|15| -|Highway Robber|Ninth Edition|C|84505|138| -|Time Ebb|Ninth Edition|C|84507|107| -|Ballista Squad|Ninth Edition|U|84508|5| -|Aven Cloudchaser|Ninth Edition|C|84522|3| -|Rootwalla|Ninth Edition|C|84530|268| -|Marble Titan|Ninth Edition|R|84533|26| -|Flowstone Slide|Ninth Edition|R|84535|186| -|Goblin Balloon Brigade|Ninth Edition|U|84540|189| -|Early Harvest|Ninth Edition|R|84541|235| -|Sulfurous Springs|Ninth Edition|R|84550|325| -|Inspirit|Ninth Edition|U|84552|22| -|Karplusan Forest|Ninth Edition|R|84559|321| -|Wanderguard Sentry|Ninth Edition|C|84561|111| -|Annex|Ninth Edition|U|84564|59| -|Polymorph|Ninth Edition|R|84565|90| -|Underground River|Ninth Edition|R|84566|326| -|Yawgmoth Demon|Ninth Edition|R|84579|170| -|Angelic Blessing|Ninth Edition|C|84583|2| -|Hell's Caretaker|Ninth Edition|R|84590|137| -|Jester's Cap|Ninth Edition|R|84595|301| -|Righteousness|Ninth Edition|R|84598|36| -|Brushland|Ninth Edition|R|84600|319| -|Foot Soldiers|Ninth Edition|C|84608|14| -|Needle Storm|Ninth Edition|U|84611|259| -|Imaginary Pet|Ninth Edition|R|84612|82| -|Veteran Cavalier|Ninth Edition|C|84622|52| -|Adarkar Wastes|Ninth Edition|R|84635|317| -|Nikko-Onna|Saviors of Kamigawa|U|84639|21| -|Moonwing Moth|Saviors of Kamigawa|C|84643|20| -|Descendant of Soramaro|Saviors of Kamigawa|C|84648|33| -|Storage Matrix|Ninth Edition|R|84652|310| -|Cruel Edict|Ninth Edition|U|84659|121| -|Elvish Berserker|Ninth Edition|C|84661|237| -|Nantuko Husk|Ninth Edition|U|84663|148| -|Tree Monkey|Ninth Edition|C|84665|275| -|Mending Hands|Ninth Edition|C|84671|29| -|Flame Wave|Ninth Edition|U|84672|182| -|Foul Imp|Ninth Edition|C|84682|132| -|Overgrowth|Ninth Edition|C|84685|262| -|Sengir Vampire|Ninth Edition|R|84688|161| -|Summer Bloom|Ninth Edition|U|84694|273| -|Peace of Mind|Ninth Edition|U|84697|33| -|Deathmask Nezumi|Saviors of Kamigawa|C|84703|66| -|Kiri-Onna|Saviors of Kamigawa|U|84704|43| -|Kemuri-Onna|Saviors of Kamigawa|U|84705|76| -|Blood Clock|Saviors of Kamigawa|R|84709|153| -|Inner Fire|Saviors of Kamigawa|C|84711|105| -|Yuki-Onna|Saviors of Kamigawa|U|84712|120| -|Homura's Essence|Saviors of Kamigawa|R|84716|103| -|Sink into Takenuma|Saviors of Kamigawa|C|84717|89| -|Brothers Yamazaki|Champions of Kamigawa|U|85106|160| -|Curtain of Light|Saviors of Kamigawa|C|87329|6| -|Murmurs from Beyond|Saviors of Kamigawa|C|87330|47| -|Molting Skin|Saviors of Kamigawa|U|87331|138| -|Dosan's Oldest Chant|Saviors of Kamigawa|C|87332|127| -|Arashi, the Sky Asunder|Saviors of Kamigawa|R|87333|121| -|Ashes of the Fallen|Saviors of Kamigawa|R|87334|152| -|Kami of Empty Graves|Saviors of Kamigawa|C|87335|75| -|Freed from the Real|Saviors of Kamigawa|C|87336|38| -|Death Denied|Saviors of Kamigawa|C|87337|63| -|Shinen of Fury's Fire|Saviors of Kamigawa|C|87339|112| -|Ghost-Lit Raider|Saviors of Kamigawa|U|87341|99| -|Torii Watchward|Saviors of Kamigawa|C|87342|30| -|Sanctum Guardian|Ninth Edition|U|87346|40| -|Seasoned Marshal|Ninth Edition|U|87347|42| -|Eternal Dominion|Saviors of Kamigawa|R|87593|36| -|Endless Swarm|Saviors of Kamigawa|R|87594|129| -|Sasaya, Orochi Ascendant|Saviors of Kamigawa|R|87595|145| -|Kuon's Essence|Saviors of Kamigawa|R|87596|78| -|Enduring Ideal|Saviors of Kamigawa|R|87598|9| -|Erayo's Essence|Saviors of Kamigawa|R|87599|35| -|Rune-Tail's Essence|Saviors of Kamigawa|R|87600|27| -|Neverending Torment|Saviors of Kamigawa|R|87601|83| -|Undying Flames|Saviors of Kamigawa|R|87602|119| -|Wojek Siren|Ravnica: City of Guilds|C|87896|37| -|Indentured Oaf|Ravnica: City of Guilds|U|87897|133| -|Vedalken Dismisser|Ravnica: City of Guilds|C|87898|73| -|Greater Mossdog|Ravnica: City of Guilds|C|87899|169| -|Excruciator|Ravnica: City of Guilds|R|87900|121| -|Ordruun Commando|Ravnica: City of Guilds|C|87902|137| -|Surveilling Sprite|Ravnica: City of Guilds|C|87904|67| -|Terraformer|Ravnica: City of Guilds|C|87905|70| -|Dimir Cutpurse|Ravnica: City of Guilds|R|87906|201| -|Screeching Griffin|Ravnica: City of Guilds|C|87907|29| -|Lightning Helix|Ravnica: City of Guilds|U|87908|213| -|Sell-Sword Brute|Ravnica: City of Guilds|C|87909|142| -|Bathe in Light|Ravnica: City of Guilds|U|87910|2| -|Dromad Purebred|Ravnica: City of Guilds|C|87911|15| -|Courier Hawk|Ravnica: City of Guilds|C|87913|12| -|Grayscaled Gharial|Ravnica: City of Guilds|C|87914|52| -|Conclave Equenaut|Ravnica: City of Guilds|C|87915|9| -|Ivy Dancer|Ravnica: City of Guilds|U|87916|171| -|Disembowel|Ravnica: City of Guilds|C|87917|85| -|Boros Guildmage|Ravnica: City of Guilds|U|87918|242| -|Remand|Ravnica: City of Guilds|U|87919|63| -|Dogpile|Ravnica: City of Guilds|C|87921|120| -|Darkblast|Ravnica: City of Guilds|U|87922|82| -|Consult the Necrosages|Ravnica: City of Guilds|C|87923|199| -|Induce Paranoia|Ravnica: City of Guilds|C|87924|56| -|Dizzy Spell|Ravnica: City of Guilds|C|87925|43| -|Dimir House Guard|Ravnica: City of Guilds|C|87926|83| -|Sundering Vitae|Ravnica: City of Guilds|C|87927|185| -|Elvish Skysweeper|Ravnica: City of Guilds|C|87928|162| -|Dimir Aqueduct|Ravnica: City of Guilds|C|87929|276| -|Tattered Drake|Ravnica: City of Guilds|C|87930|68| -|Scatter the Seeds|Ravnica: City of Guilds|C|87931|181| -|Siege Wurm|Ravnica: City of Guilds|C|87932|183| -|Greater Forgeling|Ravnica: City of Guilds|U|87934|129| -|Selesnya Evangel|Ravnica: City of Guilds|C|87936|228| -|Sabertooth Alley Cat|Ravnica: City of Guilds|C|87937|140| -|Golgari Rot Farm|Ravnica: City of Guilds|C|87939|278| -|Gather Courage|Ravnica: City of Guilds|C|87940|165| -|Lore Broker|Ravnica: City of Guilds|U|87941|57| -|Char|Ravnica: City of Guilds|R|87942|117| -|Rain of Embers|Ravnica: City of Guilds|C|87943|138| -|Roofstalker Wight|Ravnica: City of Guilds|C|87945|102| -|Transluminant|Ravnica: City of Guilds|C|87946|186| -|Frenzied Goblin|Ravnica: City of Guilds|U|87947|125| -|Votary of the Conclave|Ravnica: City of Guilds|C|87948|35| -|Coalhauler Swine|Ravnica: City of Guilds|C|87949|119| -|Veteran Armorer|Ravnica: City of Guilds|C|87950|34| -|Peel from Reality|Ravnica: City of Guilds|C|87951|61| -|Auratouched Mage|Ravnica: City of Guilds|U|87952|1| -|Flash Conscription|Ravnica: City of Guilds|U|87953|124| -|Leave No Trace|Ravnica: City of Guilds|C|87954|23| -|Mortipede|Ravnica: City of Guilds|C|87955|96| -|Surge of Zeal|Ravnica: City of Guilds|C|87956|146| -|Chant of Vitu-Ghazi|Ravnica: City of Guilds|U|87957|7| -|Dryad's Caress|Ravnica: City of Guilds|C|87958|160| -|Centaur Safeguard|Ravnica: City of Guilds|C|87959|244| -|Drake Familiar|Ravnica: City of Guilds|C|87960|44| -|Shred Memory|Ravnica: City of Guilds|C|87962|105| -|Selesnya Sanctuary|Ravnica: City of Guilds|C|87963|281| -|Bramble Elemental|Ravnica: City of Guilds|C|87964|154| -|Goblin Fire Fiend|Ravnica: City of Guilds|C|87965|127| -|Infectious Host|Ravnica: City of Guilds|C|87966|91| -|Sparkmage Apprentice|Ravnica: City of Guilds|C|87967|144| -|Galvanic Arc|Ravnica: City of Guilds|C|87968|126| -|Conclave's Blessing|Ravnica: City of Guilds|C|87969|11| -|Farseek|Ravnica: City of Guilds|C|87970|163| -|War-Torch Goblin|Ravnica: City of Guilds|C|87971|151| -|Barbarian Riftcutter|Ravnica: City of Guilds|C|87972|114| -|Viashino Fangtail|Ravnica: City of Guilds|C|87974|148| -|Nightguard Patrol|Ravnica: City of Guilds|C|87975|26| -|Blockbuster|Ravnica: City of Guilds|U|87977|115| -|Flow of Ideas|Ravnica: City of Guilds|U|87978|50| -|Quickchange|Ravnica: City of Guilds|C|87979|62| -|Dimir Machinations|Ravnica: City of Guilds|U|87981|84| -|Gate Hound|Ravnica: City of Guilds|C|87982|19| -|Stinkweed Imp|Ravnica: City of Guilds|C|87984|107| -|Necromantic Thirst|Ravnica: City of Guilds|C|87985|97| -|Snapping Drake|Ravnica: City of Guilds|C|87986|64| -|Dimir Infiltrator|Ravnica: City of Guilds|C|87987|203| -|Selesnya Guildmage|Ravnica: City of Guilds|U|87988|252| -|Drooling Groodion|Ravnica: City of Guilds|U|87989|204| -|Dimir Guildmage|Ravnica: City of Guilds|U|87990|245| -|Compulsive Research|Ravnica: City of Guilds|C|87991|40| -|Perplex|Ravnica: City of Guilds|C|87992|217| -|Incite Hysteria|Ravnica: City of Guilds|C|87993|132| -|Drift of Phantasms|Ravnica: City of Guilds|C|87994|46| -|Congregation at Dawn|Ravnica: City of Guilds|U|87995|198| -|Oboro Breezecaller|Saviors of Kamigawa|C|88784|48| -|Pure Intentions|Saviors of Kamigawa|R|88785|25| -|Cut the Earthly Bond|Saviors of Kamigawa|C|88786|32| -|Raving Oni-Slave|Saviors of Kamigawa|C|88787|86| -|Ideas Unbound|Saviors of Kamigawa|C|88789|40| -|Minamo Scrollkeeper|Saviors of Kamigawa|C|88791|45| -|Skyfire Kirin|Saviors of Kamigawa|R|88793|113| -|Gnat Miser|Saviors of Kamigawa|C|88794|70| -|Ivory Crane Netsuke|Saviors of Kamigawa|U|88796|155| -|Skull Collector|Saviors of Kamigawa|U|88797|90| -|Ebony Owl Netsuke|Saviors of Kamigawa|U|88799|154| -|Maga, Traitor to Mortals|Saviors of Kamigawa|R|88802|81| -|Choice of Damnations|Saviors of Kamigawa|R|88803|62| -|Trusted Advisor|Saviors of Kamigawa|U|88804|59| -|Miren, the Moaning Well|Saviors of Kamigawa|R|88807|163| -|Sunder from Within|Saviors of Kamigawa|U|88808|117| -|Captive Flame|Saviors of Kamigawa|U|88810|96| -|Scroll of Origins|Saviors of Kamigawa|R|88811|159| -|Shinen of Fear's Chill|Saviors of Kamigawa|C|88812|88| -|Into the Fray|Saviors of Kamigawa|C|88813|106| -|Nightsoil Kami|Saviors of Kamigawa|C|88815|139| -|Dense Canopy|Saviors of Kamigawa|U|88816|125| -|One with Nothing|Saviors of Kamigawa|R|88817|84| -|Hidetsugu's Second Rite|Saviors of Kamigawa|R|88818|102| -|Measure of Wickedness|Saviors of Kamigawa|U|88821|82| -|Shape Stealer|Saviors of Kamigawa|U|88823|55| -|Duskmantle, House of Shadow|Ravnica: City of Guilds|U|88943|277| -|Stasis Cell|Ravnica: City of Guilds|C|88944|66| -|Dream Leash|Ravnica: City of Guilds|R|88945|45| -|Wojek Embermage|Ravnica: City of Guilds|U|88946|152| -|Undercity Shade|Ravnica: City of Guilds|U|88951|110| -|Light of Sanction|Ravnica: City of Guilds|R|88952|24| -|Muddle the Mixture|Ravnica: City of Guilds|C|88955|60| -|Necroplasm|Ravnica: City of Guilds|R|88956|98| -|Goliath Spider|Ravnica: City of Guilds|U|88959|168| -|Golgari Grave-Troll|Ravnica: City of Guilds|R|88960|167| -|Zephyr Spirit|Ravnica: City of Guilds|C|88962|76| -|Mnemonic Nexus|Ravnica: City of Guilds|U|88963|59| -|Brainspoil|Ravnica: City of Guilds|C|88965|78| -|Recollect|Ravnica: City of Guilds|U|88966|178| -|Dowsing Shaman|Ravnica: City of Guilds|U|88968|159| -|Phytohydra|Ravnica: City of Guilds|R|88969|218| -|Wizened Snitches|Ravnica: City of Guilds|U|88971|75| -|Netherborn Phalanx|Ravnica: City of Guilds|U|88972|99| -|Twilight Drover|Ravnica: City of Guilds|R|88973|33| -|Carrion Howler|Ravnica: City of Guilds|U|88974|79| -|Divebomber Griffin|Ravnica: City of Guilds|U|88975|14| -|Junktroller|Ravnica: City of Guilds|U|88977|264| -|Ursapine|Ravnica: City of Guilds|R|88979|188| -|Belltower Sphinx|Ravnica: City of Guilds|U|88981|38| -|Mindmoil|Ravnica: City of Guilds|R|88982|135| -|Sandsower|Ravnica: City of Guilds|U|88983|28| -|Seed Spark|Ravnica: City of Guilds|U|88984|30| -|Hour of Reckoning|Ravnica: City of Guilds|R|88985|21| -|Vigor Mortis|Ravnica: City of Guilds|U|88986|111| -|Telling Time|Ravnica: City of Guilds|U|88988|69| -|Helldozer|Ravnica: City of Guilds|R|88990|88| -|Voyager Staff|Ravnica: City of Guilds|U|88991|274| -|Boros Recruit|Ravnica: City of Guilds|C|88992|243| -|Wojek Apothecary|Ravnica: City of Guilds|U|88993|36| -|Golgari Thug|Ravnica: City of Guilds|U|88994|87| -|Sewerdreg|Ravnica: City of Guilds|C|88995|104| -|Instill Furor|Ravnica: City of Guilds|U|88997|134| -|Convolute|Ravnica: City of Guilds|C|88998|41| -|Bloodbond March|Ravnica: City of Guilds|R|89000|192| -|Life from the Loam|Ravnica: City of Guilds|R|89001|172| -|Vindictive Mob|Ravnica: City of Guilds|U|89002|112| -|Spectral Searchlight|Ravnica: City of Guilds|U|89003|271| -|Torpid Moloch|Ravnica: City of Guilds|C|89004|147| -|Hunted Horror|Ravnica: City of Guilds|R|89005|90| -|Boros Fury-Shield|Ravnica: City of Guilds|C|89006|5| -|Leashling|Ravnica: City of Guilds|U|89008|265| -|Moldervine Cloak|Ravnica: City of Guilds|U|89009|173| -|Conclave Phalanx|Ravnica: City of Guilds|U|89010|10| -|Pollenbright Wings|Ravnica: City of Guilds|U|89011|219| -|Oathsworn Giant|Ravnica: City of Guilds|U|89012|27| -|Empty the Catacombs|Ravnica: City of Guilds|R|89015|86| -|Vitu-Ghazi, the City-Tree|Ravnica: City of Guilds|U|89016|285| -|Dark Heart of the Wood|Ravnica: City of Guilds|U|89017|200| -|Bottled Cloister|Ravnica: City of Guilds|R|89018|256| -|Golgari Brownscale|Ravnica: City of Guilds|C|89019|166| -|Shambling Shell|Ravnica: City of Guilds|C|89021|230| -|Tunnel Vision|Ravnica: City of Guilds|R|89022|72| -|Ethereal Usher|Ravnica: City of Guilds|U|89023|47| -|Rolling Spoil|Ravnica: City of Guilds|U|89024|179| -|Root-Kin Ally|Ravnica: City of Guilds|U|89026|180| -|Glare of Subdual|Ravnica: City of Guilds|R|89027|207| -|Vedalken Entrancer|Ravnica: City of Guilds|C|89028|74| -|Guardian of Vitu-Ghazi|Ravnica: City of Guilds|C|89030|212| -|Cyclopean Snare|Ravnica: City of Guilds|U|89035|259| -|Clutch of the Undercity|Ravnica: City of Guilds|U|89037|197| -|Golgari Rotwurm|Ravnica: City of Guilds|C|89038|210| -|Devouring Light|Ravnica: City of Guilds|U|89040|13| -|Stone-Seeder Hierophant|Ravnica: City of Guilds|C|89041|184| -|Ghosts of the Innocent|Ravnica: City of Guilds|R|89042|20| -|Overwhelm|Ravnica: City of Guilds|U|89044|175| -|Svogthos, the Restless Tomb|Ravnica: City of Guilds|U|89045|283| -|Benevolent Ancestor|Ravnica: City of Guilds|C|89047|3| -|Carven Caryatid|Ravnica: City of Guilds|U|89048|155| -|Woebringer Demon|Ravnica: City of Guilds|R|89049|113| -|Hunted Lammasu|Ravnica: City of Guilds|R|89051|22| -|Twisted Justice|Ravnica: City of Guilds|U|89052|237| -|Chorus of the Conclave|Ravnica: City of Guilds|R|89053|195| -|Mindleech Mass|Ravnica: City of Guilds|R|89054|215| -|Last Gasp|Ravnica: City of Guilds|C|89056|93| -|Hex|Ravnica: City of Guilds|R|89059|89| -|Razia, Boros Archangel|Ravnica: City of Guilds|R|89061|223| -|Nightmare Void|Ravnica: City of Guilds|U|89062|100| -|Putrefy|Ravnica: City of Guilds|U|89063|221| -|Chord of Calling|Ravnica: City of Guilds|R|89064|156| -|Sacred Foundry|Ravnica: City of Guilds|R|89066|280| -|Brightflame|Ravnica: City of Guilds|R|89068|194| -|Golgari Germination|Ravnica: City of Guilds|U|89069|209| -|Sunhome Enforcer|Ravnica: City of Guilds|U|89070|233| -|Overgrown Tomb|Ravnica: City of Guilds|R|89072|279| -|Grave-Shell Scarab|Ravnica: City of Guilds|R|89073|211| -|Firemane Angel|Ravnica: City of Guilds|R|89074|205| -|Seeds of Strength|Ravnica: City of Guilds|C|89075|227| -|Hunted Troll|Ravnica: City of Guilds|R|89079|170| -|Molten Sentry|Ravnica: City of Guilds|R|89080|136| -|Vulturous Zombie|Ravnica: City of Guilds|R|89082|238| -|Primordial Sage|Ravnica: City of Guilds|R|89083|177| -|Warp World|Ravnica: City of Guilds|R|89084|150| -|Hunted Dragon|Ravnica: City of Guilds|R|89086|131| -|Reroute|Ravnica: City of Guilds|U|89087|139| -|Moonlight Bargain|Ravnica: City of Guilds|R|89088|95| -|Cloudstone Curio|Ravnica: City of Guilds|R|89089|257| -|Peregrine Mask|Ravnica: City of Guilds|U|89090|268| -|Szadek, Lord of Secrets|Ravnica: City of Guilds|R|89092|234| -|Temple Garden|Ravnica: City of Guilds|R|89093|284| -|Cerulean Sphinx|Ravnica: City of Guilds|R|89095|39| -|Autochthon Wurm|Ravnica: City of Guilds|R|89096|191| -|Breath of Fury|Ravnica: City of Guilds|R|89099|116| -|Agrus Kos, Wojek Veteran|Ravnica: City of Guilds|R|89101|190| -|Blood Funnel|Ravnica: City of Guilds|R|89102|77| -|Stoneshaker Shaman|Ravnica: City of Guilds|U|89105|145| -|Trophy Hunter|Ravnica: City of Guilds|U|89107|187| -|Concerted Effort|Ravnica: City of Guilds|R|89109|8| -|Tolsimir Wolfblood|Ravnica: City of Guilds|R|89110|236| -|Circu, Dimir Lobotomist|Ravnica: City of Guilds|R|89111|196| -|Savra, Queen of the Golgari|Ravnica: City of Guilds|R|89113|225| -|Psychic Drain|Ravnica: City of Guilds|U|89114|220| -|Razia's Purification|Ravnica: City of Guilds|R|89115|224| -|Doubling Season|Ravnica: City of Guilds|R|89116|158| -|Searing Meditation|Ravnica: City of Guilds|R|89117|226| -|Plow Through Reito|Saviors of Kamigawa|C|89397|22| -|Secretkeeper|Saviors of Kamigawa|U|89398|54| -|Cloudhoof Kirin|Saviors of Kamigawa|R|89399|31| -|Descendant of Kiyomaro|Saviors of Kamigawa|U|89400|7| -|Gaze of Adamaro|Saviors of Kamigawa|U|89401|98| -|Glitterfang|Saviors of Kamigawa|C|89402|100| -|Overwhelming Intellect|Saviors of Kamigawa|U|89403|51| -|Meishin, the Mind Cage|Saviors of Kamigawa|R|89406|44| -|Goblin Raider|Ninth Edition|C|94910|8| -|Vizzerdrix|Ninth Edition|R|94911|7| -|Index|Ninth Edition|C|94912|5| -|Spined Wurm|Ninth Edition|C|94914|10| -|Mountain|Ravnica: City of Guilds|L|95096|299| -|Forest|Ravnica: City of Guilds|L|95097|303| -|Forest|Ravnica: City of Guilds|L|95098|305| -|Forest|Ravnica: City of Guilds|L|95099|304| -|Island|Ravnica: City of Guilds|L|95100|293| -|Swamp|Ravnica: City of Guilds|L|95101|297| -|Mountain|Ravnica: City of Guilds|L|95102|301| -|Island|Ravnica: City of Guilds|L|95103|291| -|Mountain|Ravnica: City of Guilds|L|95104|300| -|Plains|Ravnica: City of Guilds|L|95105|289| -|Forest|Ravnica: City of Guilds|L|95106|306| -|Island|Ravnica: City of Guilds|L|95107|292| -|Plains|Ravnica: City of Guilds|L|95108|287| -|Mountain|Ravnica: City of Guilds|L|95109|302| -|Swamp|Ravnica: City of Guilds|L|95110|296| -|Swamp|Ravnica: City of Guilds|L|95111|295| -|Plains|Ravnica: City of Guilds|L|95112|288| -|Island|Ravnica: City of Guilds|L|95113|294| -|Swamp|Ravnica: City of Guilds|L|95114|298| -|Plains|Ravnica: City of Guilds|L|95115|290| -|Ornithopter|Ninth Edition|U|95220|305| -|Tanglebloom|Ninth Edition|U|95221|311| -|Dimir Signet|Ravnica: City of Guilds|C|95535|260| -|Golgari Signet|Ravnica: City of Guilds|C|95536|262| -|Boros Signet|Ravnica: City of Guilds|C|95537|255| -|Selesnya Signet|Ravnica: City of Guilds|C|95538|270| -|Silhana Ledgewalker|Guildpact|C|96825|94| -|Quicken|Guildpact|R|96826|31| -|Repeal|Guildpact|C|96827|32| -|Electrolyze|Guildpact|U|96829|111| -|Gristleback|Guildpact|U|96833|87| -|Ghor-Clan Bloodscale|Guildpact|U|96834|66| -|Sky Swallower|Guildpact|R|96835|34| -|Bloodscale Prowler|Guildpact|C|96836|64| -|Gruul Guildmage|Guildpact|U|96837|144| -|Skyrider Trainee|Guildpact|C|96838|17| -|Hypervolt Grasp|Guildpact|U|96840|67| -|Lionheart Maverick|Guildpact|C|96841|11| -|Ghostway|Guildpact|R|96842|6| -|Harrier Griffin|Guildpact|U|96843|9| -|Orzhov Pontiff|Guildpact|R|96844|124| -|Pyromatics|Guildpact|C|96845|72| -|Dryad Sophisticate|Guildpact|U|96848|83| -|Ghor-Clan Savage|Guildpact|C|96849|86| -|Vacuumelt|Guildpact|U|96851|40| -|Petrified Wood-Kin|Guildpact|R|96853|91| -|Restless Bones|Guildpact|C|96855|58| -|Bioplasm|Guildpact|R|96857|81| -|Abyssal Nocturnus|Guildpact|R|96858|43| -|Gruul Signet|Guildpact|C|96859|150| -|Vertigo Spawn|Guildpact|U|96860|42| -|Silhana Starfletcher|Guildpact|C|96863|95| -|Gigadrowse|Guildpact|C|96864|26| -|Spelltithe Enforcer|Guildpact|R|96865|18| -|Izzet Signet|Guildpact|C|96867|152| -|Orzhov Signet|Guildpact|C|96870|155| -|Orzhov Basilica|Guildpact|C|96871|161| -|Hatching Plans|Guildpact|R|96873|27| -|Living Inferno|Guildpact|R|96874|69| -|Cryptwailing|Guildpact|U|96876|47| -|Gatherer of Graces|Guildpact|U|96877|85| -|Pillory of the Sleepless|Guildpact|C|96882|125| -|Gruul Scrapper|Guildpact|C|96887|89| -|Seize the Soul|Guildpact|R|96888|61| -|Sinstriker's Will|Guildpact|U|96889|16| -|Frazzle|Guildpact|U|96890|25| -|Gelectrode|Guildpact|U|96891|113| -|Agent of Masks|Guildpact|U|96892|100| -|Orzhov Euthanist|Guildpact|C|96893|54| -|Stomping Ground|Guildpact|R|96896|165| -|Petrahydrox|Guildpact|C|96897|148| -|Burning-Tree Bloodscale|Guildpact|C|96898|104| -|Skeletal Vampire|Guildpact|R|96899|62| -|Ghost Warden|Guildpact|C|96901|5| -|Wee Dragonauts|Guildpact|C|96903|137| -|Scab-Clan Mauler|Guildpact|C|96904|128| -|Train of Thought|Guildpact|C|96906|39| -|Cerebral Vortex|Guildpact|R|96907|107| -|Ghost Council of Orzhova|Guildpact|R|96908|114| -|Mourning Thrull|Guildpact|C|96910|146| -|Runeboggle|Guildpact|C|96916|33| -|Crash Landing|Guildpact|U|96918|82| -|Vedalken Plotter|Guildpact|U|96920|41| -|Orzhov Guildmage|Guildpact|U|96921|147| -|Hissing Miasma|Guildpact|U|96922|51| -|Steam Vents|Guildpact|R|96923|164| -|Ζtherplasm|Guildpact|U|96924|22| -|Stratozeppelid|Guildpact|U|96927|36| -|Stitch in Time|Guildpact|R|96928|132| -|Droning Bureaucrats|Guildpact|U|96929|4| -|Mortify|Guildpact|U|96930|122| -|Predatory Focus|Guildpact|U|96931|92| -|Smogsteed Rider|Guildpact|U|96932|63| -|Wild Cantor|Guildpact|C|96934|149| -|Godless Shrine|Guildpact|R|96935|157| -|Cremate|Guildpact|C|96936|45| -|Nivix, Aerie of the Firemind|Guildpact|U|96937|160| -|Order of the Stars|Guildpact|U|96938|13| -|Skarrgan Pit-Skulk|Guildpact|C|96940|96| -|Shadow Lance|Guildpact|U|96944|14| -|Feral Animist|Guildpact|U|96945|112| -|Thunderheads|Guildpact|U|96946|37| -|Daggerclaw Imp|Guildpact|U|96949|48| -|Benediction of Moons|Guildpact|C|96951|3| -|Niv-Mizzet, the Firemind|Guildpact|R|96952|123| -|Absolver Thrull|Guildpact|C|96953|1| -|Shrieking Grotesque|Guildpact|C|96954|15| -|Skarrgan Firebird|Guildpact|R|96957|77| -|Tin Street Hooligan|Guildpact|C|96960|78| -|Cry of Contrition|Guildpact|C|96961|46| -|Belfry Spirit|Guildpact|U|96962|2| -|Battering Wurm|Guildpact|U|96964|79| -|Izzet Guildmage|Guildpact|U|96966|145| -|Storm Herd|Guildpact|R|96968|19| -|Caustic Rain|Guildpact|U|96969|44| -|Skarrg, the Rage Pits|Guildpact|U|96970|163| -|Revenant Patriarch|Guildpact|U|96972|59| -|Ostiary Thrull|Guildpact|C|96974|55| -|Arena|Promo set for Gatherer|Special|97042|| -|Dirtcowl Wurm|Promo set for Gatherer|R|97043|| -|False Prophet|Promo set for Gatherer|R|97044|6| -|Giant Badger|Promo set for Gatherer|Special|97045|| -|Helm of Kaldra|Promo set for Gatherer|R|97046|131| -|Lightning Dragon|Promo set for Gatherer|R|97047|202| -|Mana Crypt|Promo set for Gatherer|Special|97048|| -|Monstrous Hound|Promo set for Gatherer|R|97049|89| -|Nalathni Dragon|Promo set for Gatherer|Special|97050|| -|Overtaker|Promo set for Gatherer|R|97051|89| -|Questing Phelddagrif|Promo set for Gatherer|R|97052|119| -|Revenant|Promo set for Gatherer|R|97053|| -|Sewers of Estark|Promo set for Gatherer|Special|97054|| -|Shield of Kaldra|Promo set for Gatherer||97055|139| -|Sword of Kaldra|Promo set for Gatherer|R|97056|251| -|Windseeker Centaur|Promo set for Gatherer|Special|97057|| -|Beast of Burden|Promo set for Gatherer|R|97058|122| -|Rathi Assassin|Promo set for Gatherer|R|97059|67| -|Avatar of Hope|Promo set for Gatherer|R|97060|3| -|Raging Kavu|Promo set for Gatherer|R|97061|262| -|Fungal Shambler|Promo set for Gatherer|R|97062|100| -|Laquatus's Champion|Promo set for Gatherer|R|97063|67| -|Glory|Promo set for Gatherer|R|97064|11| -|Silent Specter|Promo set for Gatherer|R|97065|169| -|Feral Throwback|Promo set for Gatherer|R|97066|126| -|Soul Collector|Promo set for Gatherer|R|97067|74| -|Ryusei, the Falling Star|Promo set for Gatherer|R|97068|185| -|Hallowed Fountain|Dissension|R|97071|174| -|Rix Maadi, Dungeon Palace|Dissension|U|97072|179| -|Slaughterhouse Bouncer|Dissension|C|97073|54| -|Rakdos Ickspitter|Dissension|C|97074|128| -|Whiptail Moloch|Dissension|C|97075|79| -|Riot Spikes|Dissension|C|97076|146| -|Azorius Guildmage|Dissension|U|97077|141| -|Simic Guildmage|Dissension|U|97078|148| -|Simic Signet|Dissension|C|97079|166| -|Rakdos Carnarium|Dissension|C|97082|178| -|Minister of Impediments|Dissension|C|97083|144| -|Shielding Plax|Dissension|C|97084|147| -|Azorius Signet|Dissension|C|97085|159| -|Jagged Poppet|Dissension|U|97086|115| -|Azorius Chancery|Dissension|C|97087|170| -|Breeding Pool|Dissension|R|97088|172| -|Simic Growth Chamber|Dissension|C|97089|180| -|Novijen Sages|Dissension|R|97091|27| -|Walking Archive|Dissension|R|97092|169| -|Evolution Vat|Dissension|R|97093|161| -|Windreaver|Dissension|R|97094|138| -|Voidslime|Dissension|R|97096|137| -|Pride of the Clouds|Dissension|R|97097|125| -|Rakdos Signet|Dissension|C|97098|165| -|Novijen, Heart of Progress|Dissension|U|97099|175| -|Hellhole Rats|Dissension|U|97100|113| -|Azorius First-Wing|Dissension|C|97101|105| -|Blood Crypt|Dissension|R|97102|171| -|Plaxcaster Frogling|Dissension|U|97104|123| -|Pain Magnification|Dissension|U|97105|121| -|Coiling Oracle|Dissension|C|97106|107| -|Assault Zeppelid|Dissension|C|97107|103| -|Rakdos Guildmage|Dissension|U|97108|145| -|Sky Hussar|Dissension|U|97109|131| -|Anthem of Rakdos|Dissension|R|97110|102| -|Overrule|Dissension|C|97111|120| -|Trygon Predator|Dissension|U|97112|133| -|Twinstrike|Dissension|U|97114|134| -|Steeling Stance|Dissension|C|97115|18| -|Macabre Waltz|Dissension|C|97116|47| -|Prahv, Spires of Order|Dissension|U|97117|177| -|Palliation Accord|Dissension|U|97118|122| -|Rakdos Riteknife|Dissension|R|97119|164| -|Vigean Intuition|Dissension|U|97120|136| -|Sanguine Praetor|Guildpact|R|97190|60| -|Moratorium Stone|Guildpact|R|97192|154| -|Debtors' Knell|Guildpact|R|97193|141| -|Conjurer's Ban|Guildpact|U|97194|108| -|Djinn Illuminatus|Guildpact|R|97197|142| -|Rumbling Slum|Guildpact|R|97199|126| -|Rabble-Rouser|Guildpact|U|97200|73| -|Steamcore Weird|Guildpact|C|97201|35| -|Izzet Chronarch|Guildpact|C|97202|119| -|Withstand|Guildpact|C|97203|21| -|Schismotivate|Guildpact|U|97204|129| -|Burning-Tree Shaman|Guildpact|R|97205|105| -|Orzhova, the Church of Deals|Guildpact|U|97206|162| -|Killer Instinct|Guildpact|R|97207|120| -|Tibor and Lumia|Guildpact|R|97208|135| -|Goblin Flectomancer|Guildpact|U|97211|116| -|Ulasht, the Hate Seed|Guildpact|R|97212|136| -|Culling Sun|Guildpact|R|97215|109| -|Savage Twister|Guildpact|U|97216|127| -|Parallectric Feedback|Guildpact|R|97217|71| -|Torch Drake|Guildpact|C|97218|38| -|Castigate|Guildpact|C|97219|106| -|Izzet Boilerworks|Guildpact|C|97220|159| -|Douse in Gloom|Guildpact|C|97221|49| -|Skarrgan Skybreaker|Guildpact|U|97222|130| -|Gruul Turf|Guildpact|C|97223|158| -|Exhumer Thrull|Guildpact|U|97225|50| -|Blind Hunter|Guildpact|C|97227|102| -|Graven Dominator|Guildpact|R|97228|7| -|Borborygmos|Guildpact|R|97229|103| -|Wurmweaver Coil|Guildpact|R|97230|99| -|Souls of the Faultless|Guildpact|U|97231|131| -|Shattering Spree|Guildpact|U|97233|75| -|Siege of Towers|Guildpact|R|97234|76| -|Ogre Savant|Guildpact|C|97236|70| -|Earth Surge|Guildpact|R|97238|84| -|Molimo, Maro-Sorcerer|Tenth Edition|R|106368|280| -|Reya Dawnbringer|Tenth Edition|R|106384|35| -|Kamahl, Pit Fighter|Tenth Edition|R|106398|214| -|Mirri, Cat Warrior|Tenth Edition|R|106405|279| -|Arcanis the Omnipotent|Tenth Edition|R|106426|66| -|Phage the Untouchable|Tenth Edition|R|106427|166| -|Forbidding Watchtower|Tenth Edition|U|106428|352| -|Treetop Village|Tenth Edition|U|106455|361| -|Squee, Goblin Nabob|Tenth Edition|R|106473|239| -|Jayemdae Tome|Tenth Edition|R|106478|327| -|Rhox|Tenth Edition|R|106504|291| -|Ascendant Evincar|Tenth Edition|R|106525|127| -|Faerie Conclave|Tenth Edition|U|106531|351| -|Platinum Angel|Tenth Edition|R|106537|339| -|Razormane Masticore|Tenth Edition|R|106552|340| -|March of the Machines|Tenth Edition|R|106555|91| -|Spawning Pool|Tenth Edition|U|106556|358| -|Ghitu Encampment|Tenth Edition|U|106564|353| -|Mimeofacture|Guildpact|R|106568|30| -|Streetbreaker Wurm|Guildpact|C|106575|133| -|Giant Solifuge|Guildpact|R|106576|143| -|Sacred Mesa|Time Spiral "Timeshifted"|Special|106625|13| -|Valor|Time Spiral "Timeshifted"|Special|106628|16| -|Chronatog Totem|Time Spiral|U|106630|252| -|Dandβn|Time Spiral "Timeshifted"|Special|106631|19| -|Tendrils of Corruption|Time Spiral|C|106632|136| -|Disintegrate|Time Spiral "Timeshifted"|Special|106636|58| -|Stormscape Familiar|Time Spiral "Timeshifted"|Special|106637|32| -|Sengir Autocrat|Time Spiral "Timeshifted"|Special|106638|45| -|Celestial Dawn|Time Spiral "Timeshifted"|Special|106639|3| -|Lord of Atlantis|Time Spiral "Timeshifted"|Special|106642|24| -|Savage Thallid|Time Spiral|C|106643|213| -|Soul Collector|Time Spiral "Timeshifted"|Special|106644|47| -|Akroma, Angel of Wrath|Time Spiral "Timeshifted"|Special|106645|1| -|Orgg|Time Spiral "Timeshifted"|Special|106646|67| -|Essence Sliver|Time Spiral "Timeshifted"|Special|106647|8| -|Watcher Sliver|Time Spiral|C|106648|45| -|Scragnoth|Time Spiral "Timeshifted"|Special|106650|83| -|Whispers of the Muse|Time Spiral "Timeshifted"|Special|106651|35| -|Foriysian Interceptor|Time Spiral|C|106652|18| -|Flowstone Channeler|Time Spiral|C|106653|155| -|Temporal Isolation|Time Spiral|C|106654|43| -|Swamp Mosquito|Time Spiral "Timeshifted"|Special|106656|49| -|Pull from Eternity|Time Spiral|U|106657|35| -|Mana Skimmer|Time Spiral|C|106658|117| -|Wall of Roots|Time Spiral "Timeshifted"|Special|106662|89| -|Kobold Taskmaster|Time Spiral "Timeshifted"|Special|106664|65| -|Auratog|Time Spiral "Timeshifted"|Special|106665|2| -|Crookclaw Transmuter|Time Spiral|C|106668|55| -|Witch-Maw Nephilim|Guildpact|R|107090|138| -|Dune-Brood Nephilim|Guildpact|R|107091|110| -|Ink-Treader Nephilim|Guildpact|R|107092|117| -|Yore-Tiller Nephilim|Guildpact|R|107093|140| -|Glint-Eye Nephilim|Guildpact|R|107094|115| -|Sword of the Paruns|Guildpact|R|107095|156| -|Mizzium Transreliquat|Guildpact|R|107096|153| -|Wildsize|Guildpact|C|107097|98| -|Gruul War Plow|Guildpact|R|107098|151| -|Poisonbelly Ogre|Guildpact|C|107099|57| -|Demonfire|Dissension|R|107252|60| -|Freewind Equenaut|Dissension|C|107253|9| -|Psychic Possession|Dissension|R|107254|30| -|Cackling Flames|Dissension|C|107258|59| -|Error|Dissension|U|107259|158| -|Mistral Charger|Dissension|U|107260|13| -|Sporeback Troll|Dissension|C|107263|94| -|Flash Foliage|Dissension|U|107264|85| -|Court Hussar|Dissension|U|107265|22| -|Haazda Shield Mate|Dissension|R|107272|12| -|Ratcatcher|Dissension|R|107273|52| -|Safe Haven|Time Spiral "Timeshifted"|Special|107275|121| -|Utvara Scalper|Dissension|C|107276|76| -|Biomantic Mastery|Dissension|R|107277|142| -|Evil Eye of Orms-by-Gore|Time Spiral "Timeshifted"|Special|107278|42| -|Pillar of the Paruns|Dissension|R|107279|176| -|Goblin Snowman|Time Spiral "Timeshifted"|Special|107280|64| -|Spell Snare|Dissension|U|107281|33| -|Hunting Moa|Time Spiral "Timeshifted"|Special|107282|80| -|Icatian Javelineers|Time Spiral "Timeshifted"|Special|107283|10| -|Swift Silence|Dissension|R|107284|132| -|Punishment|Dissension|R|107285|150| -|Plaxmanta|Dissension|U|107286|29| -|Dauthi Slayer|Time Spiral "Timeshifted"|Special|107288|41| -|Flying Men|Time Spiral "Timeshifted"|Special|107291|20| -|Vigean Hydropon|Dissension|C|107293|135| -|Ghost Ship|Time Spiral "Timeshifted"|Special|107294|21| -|Hail Storm|Time Spiral "Timeshifted"|Special|107296|79| -|Browbeat|Time Spiral "Timeshifted"|Special|107299|56| -|Stormscale Anarch|Dissension|R|107300|74| -|Stalking Vengeance|Dissension|R|107301|73| -|Disenchant|Time Spiral "Timeshifted"|Special|107302|6| -|Squealing Devil|Dissension|U|107303|72| -|Bond of Agony|Dissension|U|107306|38| -|Blessing of the Nephilim|Dissension|U|107307|4| -|Infernal Tutor|Dissension|R|107308|46| -|Carom|Dissension|C|107310|6| -|Cytospawn Shambler|Dissension|C|107312|82| -|Silkwing Scout|Dissension|C|107313|31| -|Seek|Dissension|R|107315|151| -|Celestial Ancient|Dissension|R|107317|7| -|Might of the Nephilim|Dissension|U|107320|88| -|Vigean Graftmage|Dissension|U|107321|35| -|Dread Slag|Dissension|R|107322|109| -|Skullmead Cauldron|Dissension|U|107326|167| -|Bronze Bombshell|Dissension|R|107327|160| -|Ocular Halo|Dissension|C|107328|28| -|Grand Arbiter Augustin IV|Dissension|R|107329|112| -|Crypt Champion|Dissension|U|107336|40| -|Flame-Kin War Scout|Dissension|U|107337|61| -|Psychotic Fury|Dissension|C|107338|68| -|Brain Pry|Dissension|U|107340|39| -|Proclamation of Rebirth|Dissension|R|107341|15| -|Enemy of the Guildpact|Dissension|C|107342|44| -|Cytoshape|Dissension|R|107346|108| -|Simic Basilisk|Dissension|U|107347|91| -|Cytoplast Manipulator|Dissension|R|107353|23| -|Rain of Gore|Dissension|R|107358|126| -|Transguild Courier|Dissension|U|107362|168| -|Lyzolda, the Blood Witch|Dissension|R|107363|117| -|Elemental Resonance|Dissension|R|107369|83| -|Street Savvy|Dissension|C|107371|97| -|Determined|Dissension|R|107373|149| -|Nettling Curse|Dissension|C|107374|48| -|Development|Dissension|R|107375|155| -|Indrik Stomphowler|Dissension|U|107377|86| -|Plumes of Peace|Dissension|C|107379|124| -|Experiment Kraj|Dissension|R|107385|110| -|Run|Dissension|U|107387|152| -|Ogre Gatecrasher|Dissension|C|107389|67| -|Thrive|Dissension|C|107390|98| -|Govern the Guildless|Dissension|R|107395|25| -|Vision Skeins|Dissension|C|107397|36| -|Tidespout Tyrant|Dissension|R|107408|34| -|Writ of Passage|Dissension|C|107413|37| -|Nightcreep|Dissension|U|107415|49| -|Rise|Dissension|U|107423|156| -|Azorius Ploy|Dissension|U|107427|106| -|Dovescape|Dissension|R|107428|143| -|Valor Made Real|Dissension|C|107431|20| -|Paladin of Prahv|Dissension|U|107433|14| -|Delirium Skeins|Dissension|C|107435|41| -|Avatar of Discord|Dissension|R|107437|140| -|Rakdos the Defiler|Dissension|R|107438|129| -|Soulsworn Jury|Dissension|C|107440|17| -|Simic Initiate|Dissension|C|107441|92| -|Ends|Dissension|R|107445|153| -|Kindle the Carnage|Dissension|U|107446|66| -|Isperia the Inscrutable|Dissension|R|107448|114| -|Skyscribing|Dissension|U|107449|32| -|Unliving Psychopath|Dissension|R|107451|56| -|Demand|Dissension|U|107464|157| -|Proper Burial|Dissension|R|107466|16| -|Haazda Exonerator|Dissension|C|107467|11| -|Aquastrand Spider|Dissension|C|107472|80| -|Vesper Ghoul|Dissension|C|107477|57| -|War's Toll|Dissension|R|107492|77| -|Kill-Suit Cultist|Dissension|C|107493|65| -|Condemn|Dissension|U|107494|8| -|Ghost Quarter|Dissension|U|107504|173| -|Stomp and Howl|Dissension|U|107505|96| -|Momir Vig, Simic Visionary|Dissension|R|107506|118| -|Cytoplast Root-Kin|Dissension|R|107507|81| -|Nihilistic Glee|Dissension|R|107517|50| -|Gnat Alley Creeper|Dissension|U|107526|63| -|Stoic Ephemera|Dissension|U|107527|19| -|Seal of Fire|Dissension|C|107531|71| -|Simple|Dissension|U|107532|154| -|Seal of Doom|Dissension|C|107534|53| -|Helium Squirter|Dissension|C|107535|26| -|Brace for Impact|Dissension|U|107537|5| -|Gobhobbler Rats|Dissension|C|107542|111| -|Rakdos Augermage|Dissension|R|107543|127| -|Patagia Viper|Dissension|U|107549|89| -|Weight of Spires|Dissension|U|107551|78| -|Muse Vessel|Dissension|R|107553|163| -|Leafdrake Roost|Dissension|U|107557|116| -|Wit's End|Dissension|R|107562|58| -|Simic Ragworm|Dissension|C|107565|93| -|Loaming Shaman|Dissension|R|107568|87| -|Utopia Sprawl|Dissension|C|107569|99| -|Ragamuffyn|Dissension|U|107570|51| -|Azorius Herald|Dissension|U|107577|2| -|Guardian of the Guildpact|Dissension|C|107583|10| -|Taste for Mayhem|Dissension|C|107597|75| -|Protean Hulk|Dissension|R|107598|90| -|Demon's Jester|Dissension|C|107599|42| -|Leap of Flame|Guildpact|C|107680|121| -|Fencer's Magemark|Guildpact|C|107681|65| -|Leyline of the Void|Guildpact|R|107682|52| -|Gruul Nodorog|Guildpact|C|107683|88| -|Infiltrator's Magemark|Guildpact|C|107684|28| -|Necromancer's Magemark|Guildpact|C|107685|53| -|Leyline of Lightning|Guildpact|R|107686|68| -|Drowned Rusalka|Guildpact|U|107687|24| -|Guardian's Magemark|Guildpact|C|107688|8| -|Beastmaster's Magemark|Guildpact|C|107689|80| -|Plagued Rusalka|Guildpact|U|107691|56| -|Starved Rusalka|Guildpact|U|107692|97| -|Wreak Havoc|Guildpact|U|107693|139| -|Primeval Light|Guildpact|U|107694|93| -|Leyline of Lifeforce|Guildpact|R|107695|90| -|Martyred Rusalka|Guildpact|U|107696|12| -|Leyline of Singularity|Guildpact|R|107697|29| -|Scorched Rusalka|Guildpact|U|107698|74| -|Leyline of the Meek|Guildpact|R|107699|10| -|Jolrael, Empress of Beasts|Time Spiral "Timeshifted"|Special|108786|81| -|Teferi's Moat|Time Spiral "Timeshifted"|Special|108787|103| -|Eternity Snare|Time Spiral|C|108788|61| -|Gaea's Blessing|Time Spiral "Timeshifted"|Special|108789|77| -|Undertaker|Time Spiral "Timeshifted"|Special|108791|53| -|Basal Sliver|Time Spiral|C|108792|96| -|Witch Hunter|Time Spiral "Timeshifted"|Special|108794|17| -|Ophidian Eye|Time Spiral|C|108795|70| -|Fungal Reaches|Time Spiral|U|108796|273| -|Shadow Sliver|Time Spiral|C|108797|76| -|Urborg Syphon-Mage|Time Spiral|C|108798|139| -|Blazing Blade Askari|Time Spiral|C|108799|146| -|Consecrate Land|Time Spiral "Timeshifted"|Special|108801|4| -|Search for Tomorrow|Time Spiral|C|108802|216| -|Defiant Vanguard|Time Spiral "Timeshifted"|Special|108803|5| -|Sudden Death|Time Spiral|U|108804|134| -|Uncle Istvan|Time Spiral "Timeshifted"|Special|108805|51| -|Uthden Troll|Time Spiral "Timeshifted"|Special|108806|71| -|Durkwood Baloth|Time Spiral|C|108807|193| -|Havenwood Wurm|Time Spiral|C|108808|199| -|Weatherseed Totem|Time Spiral|U|108809|268| -|Dragon Whelp|Time Spiral "Timeshifted"|Special|108810|59| -|Voidmage Prodigy|Time Spiral "Timeshifted"|Special|108811|34| -|Psionic Blast|Time Spiral "Timeshifted"|Special|108812|30| -|Wildfire Emissary|Time Spiral "Timeshifted"|Special|108813|72| -|Divine Congregation|Time Spiral|C|108814|13| -|Giant Oyster|Time Spiral "Timeshifted"|Special|108816|22| -|Dreadship Reef|Time Spiral|U|108817|271| -|Bad Moon|Time Spiral "Timeshifted"|Special|108818|38| -|Gaze of Justice|Time Spiral|C|108819|20| -|Merfolk Assassin|Time Spiral "Timeshifted"|Special|108821|25| -|Phyrexian Totem|Time Spiral|U|108822|261| -|Think Twice|Time Spiral|C|108823|86| -|Thallid|Time Spiral "Timeshifted"|Special|108825|86| -|Unstable Mutation|Time Spiral "Timeshifted"|Special|108827|33| -|Mystic Enforcer|Time Spiral "Timeshifted"|Special|108828|96| -|Greenseeker|Time Spiral|C|108830|198| -|Call to the Netherworld|Time Spiral|C|108832|97| -|Orcish Librarian|Time Spiral "Timeshifted"|Special|108833|66| -|Avalanche Riders|Time Spiral "Timeshifted"|Special|108835|55| -|Ghitu Firebreathing|Time Spiral|C|108838|158| -|Saltcrusted Steppe|Time Spiral|U|108839|277| -|Faceless Butcher|Time Spiral "Timeshifted"|Special|108840|43| -|Trespasser il-Vec|Time Spiral|C|108841|138| -|Enduring Renewal|Time Spiral "Timeshifted"|Special|108842|7| -|Dragonstorm|Time Spiral "Timeshifted"|Special|108843|60| -|Flickering Spirit|Time Spiral|C|108846|17| -|Twisted Abomination|Time Spiral "Timeshifted"|Special|108848|50| -|Moorish Cavalry|Time Spiral "Timeshifted"|Special|108849|11| -|Drudge Reavers|Time Spiral|C|108850|105| -|Two-Headed Sliver|Time Spiral|C|108851|183| -|Ζther Web|Time Spiral|C|108852|189| -|Spitting Slug|Time Spiral "Timeshifted"|Special|108855|85| -|Soltari Priest|Time Spiral "Timeshifted"|Special|108856|14| -|Traitor's Clutch|Time Spiral|C|108857|137| -|Dream Stalker|Time Spiral|C|108858|58| -|Molten Slagheap|Time Spiral|U|108860|276| -|Willbender|Time Spiral "Timeshifted"|Special|108861|36| -|Pandemonium|Time Spiral "Timeshifted"|Special|108862|68| -|Ovinomancer|Time Spiral "Timeshifted"|Special|108863|27| -|Shadow Guildmage|Time Spiral "Timeshifted"|Special|108864|46| -|Zhalfirin Commander|Time Spiral "Timeshifted"|Special|108868|18| -|Undead Warchief|Time Spiral "Timeshifted"|Special|108869|52| -|Flamecore Elemental|Time Spiral|C|108870|154| -|Merieke Ri Berit|Time Spiral "Timeshifted"|Special|108871|95| -|Pentarch Ward|Time Spiral|C|108874|33| -|Fire Whip|Time Spiral "Timeshifted"|Special|108877|63| -|Honorable Passage|Time Spiral "Timeshifted"|Special|108879|9| -|Fiery Temper|Time Spiral "Timeshifted"|Special|108880|62| -|Suq'Ata Lancer|Time Spiral "Timeshifted"|Special|108883|69| -|Premature Burial|Time Spiral|U|108884|125| -|Resurrection|Time Spiral "Timeshifted"|Special|108885|12| -|Avoid Fate|Time Spiral "Timeshifted"|Special|108886|73| -|Duskrider Peregrine|Time Spiral|U|108887|14| -|Gustcloak Cavalier|Time Spiral|U|108889|22| -|Withered Wretch|Time Spiral "Timeshifted"|Special|108890|54| -|Keldon Halberdier|Time Spiral|C|108891|167| -|Feebleness|Time Spiral|C|108892|110| -|Fiery Justice|Time Spiral "Timeshifted"|Special|108893|92| -|Mindstab|Time Spiral|C|108894|119| -|Funeral Charm|Time Spiral "Timeshifted"|Special|108895|44| -|Snapback|Time Spiral|C|108897|78| -|Zealot il-Vec|Time Spiral|C|108898|47| -|Aven Riftwatcher|Planar Chaos|C|108899|1| -|Icatian Crier|Time Spiral|C|108900|23| -|Bogardan Rager|Time Spiral|C|108901|148| -|Cavalry Master|Time Spiral|U|108903|6| -|Foriysian Totem|Time Spiral|U|108904|254| -|Ground Rift|Time Spiral|C|108905|162| -|Prodigal Sorcerer|Time Spiral "Timeshifted"|Special|108906|29| -|Tolarian Sentinel|Time Spiral|C|108907|87| -|Squire|Time Spiral "Timeshifted"|Special|108908|15| -|Errant Ephemeron|Time Spiral|C|108909|60| -|Corpulent Corpse|Time Spiral|C|108910|98| -|Cockatrice|Time Spiral "Timeshifted"|Special|108912|75| -|Conspiracy|Time Spiral "Timeshifted"|Special|108914|39| -|Rift Bolt|Time Spiral|C|108915|176| -|Tribal Flames|Time Spiral "Timeshifted"|Special|108916|70| -|Desolation Giant|Time Spiral "Timeshifted"|Special|108917|57| -|Drifter il-Dal|Time Spiral|C|108918|59| -|Darkness|Time Spiral "Timeshifted"|Special|108919|40| -|Leviathan|Time Spiral "Timeshifted"|Special|108920|23| -|Eron the Relentless|Time Spiral "Timeshifted"|Special|108922|61| -|Stupor|Time Spiral "Timeshifted"|Special|108923|48| -|Spike Feeder|Time Spiral "Timeshifted"|Special|108924|84| -|Pirate Ship|Time Spiral "Timeshifted"|Special|108925|28| -|Plunder|Time Spiral|C|108926|174| -|Avatar of Woe|Time Spiral "Timeshifted"|Special|108929|37| -|Calciform Pools|Time Spiral|U|108930|270| -|Thunder Totem|Time Spiral|U|108931|265| -|Mindless Automaton|Time Spiral "Timeshifted"|Special|108933|111| -|Sindbad|Time Spiral "Timeshifted"|Special|108935|31| -|Skyknight Legionnaire|Ravnica: City of Guilds|C|109082|232| -|Dementia Sliver|Time Spiral|U|109668|236| -|Stronghold Overseer|Time Spiral|R|109671|133| -|Call of the Herd|Time Spiral "Timeshifted"|Special|109672|74| -|Clockspinning|Time Spiral|C|109673|53| -|Stormbind|Time Spiral "Timeshifted"|Special|109674|102| -|Thrill of the Hunt|Time Spiral|C|109675|229| -|Void|Time Spiral "Timeshifted"|Special|109677|105| -|Spined Sliver|Time Spiral "Timeshifted"|Special|109679|101| -|Spirit Loop|Time Spiral|U|109680|42| -|Whirling Dervish|Time Spiral "Timeshifted"|Special|109683|90| -|Krosan Cloudscraper|Time Spiral "Timeshifted"|Special|109684|82| -|Sulfurous Blast|Time Spiral|U|109685|180| -|Pardic Dragon|Time Spiral|R|109686|173| -|Verdeloth the Ancient|Time Spiral "Timeshifted"|Special|109688|88| -|Spike Tiller|Time Spiral|R|109689|218| -|Claws of Gix|Time Spiral "Timeshifted"|Special|109690|107| -|Careful Consideration|Time Spiral|U|109691|52| -|Mystic Snake|Time Spiral "Timeshifted"|Special|109693|97| -|Feldon's Cane|Time Spiral "Timeshifted"|Special|109694|109| -|Bonesplitter Sliver|Time Spiral|C|109697|149| -|Squall Line|Time Spiral|R|109702|222| -|Thick-Skinned Goblin|Time Spiral|U|109703|182| -|Battery|Time Spiral "Timeshifted"|Special|109704|106| -|Harmonic Sliver|Time Spiral|U|109706|240| -|Spell Burst|Time Spiral|U|109707|79| -|Grinning Totem|Time Spiral "Timeshifted"|Special|109708|110| -|Return to Dust|Time Spiral|U|109709|39| -|Strangling Soot|Time Spiral|C|109710|132| -|Opaline Sliver|Time Spiral|U|109711|244| -|Desert|Time Spiral "Timeshifted"|Special|109713|118| -|Riftwing Cloudskate|Time Spiral|U|109715|73| -|Tormod's Crypt|Time Spiral "Timeshifted"|Special|109716|115| -|Ghostflame Sliver|Time Spiral|U|109717|239| -|Coalition Victory|Time Spiral "Timeshifted"|Special|109718|91| -|Faceless Devourer|Time Spiral|U|109719|108| -|Paradox Haze|Time Spiral|U|109721|71| -|Fury Sliver|Time Spiral|U|109722|157| -|Sol'kanar the Swamp King|Time Spiral "Timeshifted"|Special|109723|100| -|Mirari|Time Spiral "Timeshifted"|Special|109724|112| -|The Rack|Time Spiral "Timeshifted"|Special|109725|113| -|Nantuko Shaman|Time Spiral|C|109726|208| -|Firewake Sliver|Time Spiral|U|109727|238| -|Reiterate|Time Spiral|R|109729|175| -|Serrated Arrows|Time Spiral "Timeshifted"|Special|109730|114| -|Haunting Hymn|Time Spiral|U|109731|112| -|Momentary Blink|Time Spiral|C|109733|29| -|Empty the Warrens|Time Spiral|C|109735|152| -|Dodecapod|Time Spiral "Timeshifted"|Special|109736|108| -|Arena|Time Spiral "Timeshifted"|Special|109739|117| -|Deadwood Treefolk|Planar Chaos|U|109740|126| -|Ivory Giant|Time Spiral|C|109741|24| -|Gaea's Liege|Time Spiral "Timeshifted"|Special|109744|78| -|Thornscape Battlemage|Time Spiral "Timeshifted"|Special|109745|87| -|Lightning Angel|Time Spiral "Timeshifted"|Special|109746|94| -|Craw Giant|Time Spiral "Timeshifted"|Special|109748|76| -|Ancient Grudge|Time Spiral|C|109751|143| -|Jaya Ballard, Task Mage|Time Spiral|R|109752|166| -|Nicol Bolas|Time Spiral "Timeshifted"|Special|109754|98| -|Pendelhaven|Time Spiral "Timeshifted"|Special|109755|120| -|Ignite Memories|Time Spiral|U|109756|164| -|War Barge|Time Spiral "Timeshifted"|Special|109757|116| -|Phthisis|Time Spiral|U|109758|122| -|Vhati il-Dal|Time Spiral "Timeshifted"|Special|109759|104| -|Gemstone Mine|Time Spiral "Timeshifted"|Special|109761|119| -|Barbed Shocker|Time Spiral|U|109762|144| -|Might of Old Krosa|Time Spiral|U|109763|204| -|Jasmine Boreal|Time Spiral "Timeshifted"|Special|109764|93| -|Vesuvan Shapeshifter|Time Spiral|R|109765|90| -|Verdant Embrace|Time Spiral|R|109766|232| -|Trickbind|Time Spiral|R|110499|88| -|Dust Corona|Planar Chaos|C|110501|97| -|Chronosavant|Time Spiral|R|110502|9| -|Waning Wurm|Planar Chaos|U|110503|83| -|Angel's Grace|Time Spiral|R|110504|3| -|Evangelize|Time Spiral|R|110507|16| -|Primal Forcemage|Time Spiral|U|110508|212| -|Plated Pegasus|Time Spiral|U|110510|34| -|Coral Trickster|Time Spiral|C|110511|54| -|Griffin Guide|Time Spiral|U|110514|21| -|Walk the Aeons|Time Spiral|R|110517|93| -|Scarwood Treefolk|Time Spiral|C|110524|214| -|Children of Korlis|Time Spiral|C|110525|8| -|Fledgling Mawcor|Time Spiral|U|110532|63| -|Pentarch Paladin|Time Spiral|R|110533|32| -|Cradle to Grave|Planar Chaos|C|110536|67| -|Sandstorm Eidolon|Dissension|C|110637|70| -|Verdant Eidolon|Dissension|C|110638|100| -|Aurora Eidolon|Dissension|C|110639|1| -|Enigma Eidolon|Dissension|C|110640|24| -|Entropic Eidolon|Dissension|C|110641|45| -|Bogardan Hellkite|Time Spiral|R|111041|147| -|Might Sliver|Time Spiral|U|111042|205| -|Deadly Grub|Planar Chaos|C|111046|69| -|Greater Gargadon|Time Spiral|R|111048|161| -|Curse of the Cabal|Time Spiral|R|111049|99| -|Quilled Sliver|Time Spiral|U|111051|37| -|Lavacore Elemental|Planar Chaos|U|111055|103| -|Draining Whelk|Time Spiral|R|111057|57| -|Mystical Teachings|Time Spiral|C|111058|69| -|Mistform Ultimus|Time Spiral "Timeshifted"|Special|111062|26| -|Firemaw Kavu|Time Spiral|U|111064|153| -|Chronozoa|Planar Chaos|R|111066|37| -|Sporesower Thallid|Time Spiral|U|111068|220| -|Viashino Bladescout|Time Spiral|C|111069|185| -|Spinneret Sliver|Time Spiral|C|111073|219| -|Voidmage Husher|Time Spiral|U|111076|92| -|Nightshade Assassin|Time Spiral|U|111079|121| -|Viscid Lemures|Time Spiral|C|111082|141| -|Pendelhaven Elder|Time Spiral|U|111083|209| -|Telekinetic Sliver|Time Spiral|U|111085|84| -|Rakdos Pit Dragon|Dissension|R|111188|69| -|Ζthermage's Touch|Dissension|R|111192|101| -|Wrecking Ball|Dissension|C|111202|139| -|Fertile Imagination|Dissension|U|111203|84| -|Simic Sky Swallower|Dissension|R|111204|130| -|Sprouting Phytohydra|Dissension|R|111220|95| -|Beacon Hawk|Dissension|C|111225|3| -|Wakestone Gargoyle|Dissension|R|111226|21| -|Flaring Flame-Kin|Dissension|U|111247|62| -|Azorius Ζthermage|Dissension|U|111256|104| -|Drekavac|Dissension|U|111258|43| -|Magewright's Stone|Dissension|U|111259|162| -|Ignorant Bliss|Dissension|U|111281|64| -|Slithering Shade|Dissension|U|111283|55| -|Ancestral Vision|Time Spiral|R|113505|48| -|Deep-Sea Kraken|Time Spiral|R|113506|56| -|Cloudchaser Kestrel|Time Spiral|C|113507|10| -|Amrou Seekers|Time Spiral|C|113509|2| -|Norin the Wary|Time Spiral|R|113512|171| -|Locket of Yesterdays|Time Spiral|U|113513|258| -|D'Avenant Healer|Time Spiral|C|113518|11| -|Serra Avenger|Time Spiral|R|113519|40| -|Restore Balance|Time Spiral|R|113520|38| -|Living End|Time Spiral|R|113521|115| -|Lim-Dϋl the Necromancer|Time Spiral|R|113522|114| -|Cancel|Time Spiral|C|113523|51| -|Sudden Spoiling|Time Spiral|R|113525|135| -|Endrek Sahr, Master Breeder|Time Spiral|R|113527|106| -|Wheel of Fate|Time Spiral|R|113528|187| -|Candles of Leng|Time Spiral|R|113529|250| -|Clockwork Hydra|Time Spiral|U|113530|253| -|Smallpox|Time Spiral|U|113531|131| -|Hypergenesis|Time Spiral|R|113533|201| -|Kaervek the Merciless|Time Spiral|R|113536|242| -|Glass Asp|Time Spiral|C|113537|197| -|Mishra, Artificer Prodigy|Time Spiral|R|113539|243| -|Saffi Eriksdotter|Time Spiral|R|113540|245| -|Dralnu, Lich Lord|Time Spiral|R|113541|237| -|Lovisa Coldeyes|Coldsnap|R|113542|90| -|Vesuva|Time Spiral|R|113543|281| -|Kher Keep|Time Spiral|R|113553|275| -|Ζtherflame Wall|Time Spiral|C|113558|142| -|Psionic Sliver|Time Spiral|R|113559|72| -|Mangara of Corondor|Time Spiral|R|113563|28| -|Lightning Axe|Time Spiral|C|113567|168| -|Jedit's Dragoons|Time Spiral|C|113571|25| -|Pulmonic Sliver|Time Spiral|R|113575|36| -|Unyaro Bees|Time Spiral|R|113579|231| -|Wormwood Dryad|Time Spiral|C|113583|233| -|Subterranean Shambler|Time Spiral|C|113611|178| -|Castle Raptors|Time Spiral|C|113614|5| -|Viscerid Deepwalker|Time Spiral|C|113615|91| -|Tectonic Fiend|Time Spiral|U|113616|181| -|Coal Stoker|Time Spiral|C|113618|150| -|Amrou Scout|Time Spiral|C|113619|1| -|Orcish Cannonade|Time Spiral|C|114902|172| -|Ith, High Arcanist|Time Spiral|R|114903|241| -|Lotus Bloom|Time Spiral|R|114904|259| -|Ashcoat Bear|Time Spiral|C|114905|190| -|Fallen Ideal|Time Spiral|U|114908|109| -|Conflagrate|Time Spiral|U|114909|151| -|Sudden Shock|Time Spiral|U|114911|179| -|Ib Halfheart, Goblin Tactician|Time Spiral|R|114912|163| -|Swarmyard|Time Spiral|R|114913|278| -|Molder|Time Spiral|C|114914|206| -|Cyclopean Giant|Time Spiral|C|114915|100| -|Assembly-Worker|Time Spiral|U|114916|248| -|Wurmcalling|Time Spiral|R|114917|234| -|Assassinate|Time Spiral|C|114918|95| -|Triskelavus|Time Spiral|R|114919|266| -|Sarpadian Empires, Vol. VII|Time Spiral|R|114921|263| -|Errant Doomsayers|Time Spiral|C|116379|15| -|Thallid Germinator|Time Spiral|C|116381|225| -|Sengir Nosferatu|Time Spiral|R|116383|128| -|Urza's Factory|Time Spiral|U|116384|280| -|Slipstream Serpent|Time Spiral|C|116385|77| -|Sprite Noble|Time Spiral|R|116386|81| -|Hivestone|Time Spiral|R|116387|256| -|Moonlace|Time Spiral|R|116391|68| -|Pit Keeper|Time Spiral|C|116396|123| -|Dread Return|Time Spiral|U|116721|104| -|Ironclaw Buzzardiers|Time Spiral|C|116723|165| -|Stuffy Doll|Time Spiral|R|116724|264| -|Academy Ruins|Time Spiral|R|116725|269| -|Tromp the Domains|Time Spiral|U|116726|230| -|Psychotic Episode|Time Spiral|C|116727|126| -|Detainment Spell|Time Spiral|C|116728|12| -|Strength in Numbers|Time Spiral|C|116730|224| -|Thallid Shell-Dweller|Time Spiral|C|116731|226| -|Fortify|Time Spiral|C|116732|19| -|Flagstones of Trokair|Time Spiral|R|116733|272| -|Tivadar of Thorn|Time Spiral|R|116736|44| -|Thelon of Havenwood|Time Spiral|R|116737|227| -|Mogg War Marshal|Time Spiral|C|116739|170| -|Aspect of Mongoose|Time Spiral|U|116740|191| -|Sangrophage|Time Spiral|C|116741|127| -|Nether Traitor|Time Spiral|R|116742|120| -|Deathspore Thallid|Time Spiral|C|116743|102| -|Scion of the Ur-Dragon|Time Spiral|R|116745|246| -|Opal Guardian|Time Spiral|R|116747|30| -|Plague Sliver|Time Spiral|R|116748|124| -|Mindlash Sliver|Time Spiral|C|118867|118| -|Phantom Wurm|Time Spiral|U|118868|211| -|Word of Seizing|Time Spiral|R|118870|188| -|Spectral Force|Time Spiral|R|118871|217| -|Demonic Collusion|Time Spiral|R|118872|103| -|Herd Gnarr|Time Spiral|C|118873|200| -|Terramorphic Expanse|Time Spiral|C|118874|279| -|Brass Gnat|Time Spiral|C|118876|249| -|Skittering Monstrosity|Time Spiral|U|118878|129| -|Jhoira's Timebug|Time Spiral|C|118879|257| -|Prismatic Lens|Time Spiral|C|118880|262| -|Fungus Sliver|Time Spiral|R|118881|195| -|Grapeshot|Time Spiral|C|118882|160| -|Basalt Gargoyle|Time Spiral|U|118883|145| -|Yavimaya Dryad|Time Spiral|U|118884|235| -|Temporal Eddy|Time Spiral|C|118887|85| -|Mwonvuli Acid-Moss|Time Spiral|C|118888|207| -|Stonewood Invocation|Time Spiral|R|118890|223| -|Chromatic Star|Time Spiral|C|118891|251| -|Dark Withering|Time Spiral|C|118892|101| -|Durkwood Tracker|Time Spiral|U|118893|194| -|Stormcloud Djinn|Time Spiral|U|118894|82| -|Brine Elemental|Time Spiral|U|118895|50| -|Skulking Knight|Time Spiral|C|118898|130| -|Penumbra Spider|Time Spiral|C|118899|210| -|Vampiric Sliver|Time Spiral|U|118900|140| -|Bewilder|Time Spiral|C|118901|49| -|Outrider en-Kor|Time Spiral|U|118902|31| -|Swamp|Time Spiral|L|118903|293| -|Swamp|Time Spiral|L|118904|292| -|Island|Time Spiral|L|118905|289| -|Forest|Time Spiral|L|118906|301| -|Knight of the Holy Nimbus|Time Spiral|U|118907|26| -|Sidewinder Sliver|Time Spiral|C|118908|41| -|Truth or Tale|Time Spiral|U|118910|89| -|Wipe Away|Time Spiral|U|118911|94| -|Fathom Seer|Time Spiral|C|118912|62| -|Spiketail Drakeling|Time Spiral|C|118913|80| -|Sage of Epityr|Time Spiral|C|118914|74| -|Stonebrow, Krosan Hero|Time Spiral|R|118915|247| -|Sedge Sliver|Time Spiral|R|118917|177| -|Looter il-Kor|Time Spiral|C|118918|66| -|Mountain|Time Spiral|L|118921|294| -|Gemhide Sliver|Time Spiral|C|118922|196| -|Gorgon Recluse|Time Spiral|C|118923|111| -|Scryb Ranger|Time Spiral|U|118924|215| -|Chameleon Blur|Time Spiral|C|118925|192| -|Mountain|Time Spiral|L|118926|297| -|Forest|Time Spiral|L|118927|300| -|Deathmark|Coldsnap|U|121119|54| -|Phyrexian Etchings|Coldsnap|R|121121|67| -|Coldsteel Heart|Coldsnap|U|121123|136| -|Tresserhorn Sinks|Coldsnap|U|121125|150| -|Garza Zol, Plague Queen|Coldsnap|R|121126|129| -|Phyrexian Ironfoot|Coldsnap|U|121127|139| -|Void Maw|Coldsnap|R|121129|74| -|Snow-Covered Island|Coldsnap|C|121130|152| -|Martyr of Bones|Coldsnap|C|121131|65| -|Frost Raptor|Coldsnap|C|121132|34| -|Gristle Grinner|Coldsnap|U|121133|59| -|Rimebound Dead|Coldsnap|C|121136|69| -|Feast of Flesh|Coldsnap|C|121137|56| -|Diamond Faerie|Coldsnap|R|121138|128| -|Hibernation's End|Coldsnap|R|121139|110| -|Cover of Winter|Coldsnap|R|121140|3| -|Mystic Melting|Coldsnap|U|121141|114| -|Phyrexian Snowcrusher|Coldsnap|U|121142|140| -|Icefall|Coldsnap|C|121143|85| -|Ohran Yeti|Coldsnap|C|121144|93| -|Martyr of Spores|Coldsnap|C|121145|113| -|Phobian Phantasm|Coldsnap|U|121146|66| -|Heidar, Rimewind Master|Coldsnap|R|121147|36| -|Kjeldoran War Cry|Coldsnap|C|121148|13| -|Ursine Fylgja|Coldsnap|U|121150|22| -|Blizzard Specter|Coldsnap|U|121151|126| -|Bull Aurochs|Coldsnap|C|121152|107| -|Luminesce|Coldsnap|U|121153|14| -|Zombie Musher|Coldsnap|C|121154|75| -|Dark Depths|Coldsnap|R|121155|145| -|Sound the Call|Coldsnap|C|121156|123| -|Allosaurus Rider|Coldsnap|R|121157|101| -|Arctic Flats|Coldsnap|U|121158|143| -|Counterbalance|Coldsnap|U|121159|31| -|Phyrexian Soulgorger|Coldsnap|R|121160|141| -|Zur the Enchanter|Coldsnap|R|121162|135| -|Magmatic Core|Coldsnap|U|121163|91| -|Martyr of Frost|Coldsnap|C|121164|40| -|Soul Spike|Coldsnap|R|121165|70| -|Cryoclasm|Coldsnap|U|121169|79| -|Martyr of Ashes|Coldsnap|C|121170|92| -|Juniper Order Ranger|Coldsnap|U|121172|130| -|Thermopod|Coldsnap|C|121173|100| -|Drelnoch|Coldsnap|C|121174|32| -|Balduvian Frostwaker|Coldsnap|U|121175|28| -|Ronom Serpent|Coldsnap|C|121176|45| -|Karplusan Wolverine|Coldsnap|C|121179|87| -|Fury of the Horde|Coldsnap|R|121181|81| -|Simian Brawler|Coldsnap|C|121183|122| -|Rimescale Dragon|Coldsnap|R|121184|95| -|Goblin Furrier|Coldsnap|C|121185|82| -|Vanish into Memory|Coldsnap|U|121187|133| -|Kjeldoran Outrider|Coldsnap|C|121188|12| -|Boreal Shelf|Coldsnap|U|121189|144| -|Chill to the Bone|Coldsnap|C|121190|52| -|Wilderness Elemental|Coldsnap|U|121191|134| -|Snow-Covered Forest|Coldsnap|C|121192|155| -|Boreal Druid|Coldsnap|C|121193|105| -|Gutless Ghoul|Coldsnap|C|121194|60| -|Tresserhorn Skyknight|Coldsnap|U|121195|73| -|Adarkar Valkyrie|Coldsnap|R|121196|1| -|Frostweb Spider|Coldsnap|C|121197|109| -|Jokulmorder|Coldsnap|R|121198|37| -|Into the North|Coldsnap|C|121199|111| -|Boreal Centaur|Coldsnap|C|121200|104| -|Scrying Sheets|Coldsnap|R|121204|149| -|Surging Might|Coldsnap|C|121205|125| -|Volcanic Awakening|Time Spiral|U|121206|186| -|Kjeldoran Gargoyle|Coldsnap|U|121207|10| -|Greater Stone Spirit|Coldsnap|U|121208|84| -|Rimehorn Aurochs|Coldsnap|U|121210|118| -|Glacial Plating|Coldsnap|U|121211|7| -|Frost Marsh|Coldsnap|U|121212|146| -|Gelid Shackles|Coldsnap|C|121213|6| -|Karplusan Strider|Coldsnap|U|121214|112| -|Rimewind Cryomancer|Coldsnap|U|121215|43| -|White Shield Crusader|Coldsnap|U|121216|24| -|Rite of Flame|Coldsnap|C|121217|96| -|Flashfreeze|Coldsnap|U|121218|33| -|Goblin Rimerunner|Coldsnap|C|121219|83| -|Lightning Serpent|Coldsnap|R|121220|88| -|Disciple of Tevesh Szat|Coldsnap|C|121222|55| -|Resize|Coldsnap|U|121223|117| -|Survivor of the Unseen|Coldsnap|C|121224|48| -|Wall of Shards|Coldsnap|U|121225|23| -|Krovikan Scoundrel|Coldsnap|C|121226|64| -|Frozen Solid|Coldsnap|C|121228|35| -|Arctic Nishoba|Coldsnap|U|121229|102| -|Woolly Razorback|Coldsnap|R|121230|25| -|Orcish Bloodpainter|Coldsnap|C|121232|94| -|Snow-Covered Mountain|Coldsnap|C|121233|154| -|Mouth of Ronom|Coldsnap|U|121234|148| -|Kjeldoran Javelineer|Coldsnap|C|121235|11| -|Jφtun Owl Keeper|Coldsnap|U|121236|9| -|Ronom Unicorn|Coldsnap|C|121237|16| -|Perilous Research|Coldsnap|U|121238|41| -|Rimewind Taskmage|Coldsnap|C|121239|44| -|Steam Spitter|Coldsnap|U|121240|124| -|Commandeer|Coldsnap|R|121243|29| -|Boreal Griffin|Coldsnap|C|121244|2| -|Rune Snag|Coldsnap|C|121247|46| -|Balduvian Rage|Coldsnap|U|121248|76| -|Herald of Leshrac|Coldsnap|R|121250|62| -|Sunscour|Coldsnap|R|121251|19| -|Stromgald Crusader|Coldsnap|U|121253|71| -|Earthen Goo|Coldsnap|U|121254|80| -|Swift Maneuver|Coldsnap|C|121255|21| -|Snow-Covered Swamp|Coldsnap|C|121256|153| -|Rime Transfusion|Coldsnap|U|121257|68| -|Chilling Shade|Coldsnap|C|121258|53| -|Highland Weald|Coldsnap|U|121259|147| -|Aurochs Herd|Coldsnap|C|121260|103| -|Sek'Kuar, Deathkeeper|Coldsnap|R|121261|131| -|Tamanoa|Coldsnap|R|121262|132| -|Martyr of Sands|Coldsnap|C|121263|15| -|Panglacial Wurm|Coldsnap|R|121264|116| -|Field Marshal|Coldsnap|R|121265|5| -|Ohran Viper|Coldsnap|R|121266|115| -|Snow-Covered Plains|Coldsnap|C|121267|151| -|Adarkar Windform|Coldsnap|U|121268|26| -|Surging Flame|Coldsnap|C|121269|99| -|Ronom Hulk|Coldsnap|C|121270|119| -|Teferi, Mage of Zhalfir|Time Spiral|R|121271|83| -|Balduvian Fallen|Coldsnap|U|121272|51| -|Squall Drifter|Coldsnap|C|121273|17| -|Krovikan Whispers|Coldsnap|U|121493|39| -|Sun's Bounty|Coldsnap|C|121494|18| -|Lightning Storm|Coldsnap|U|121495|89| -|Haakon, Stromgald Scourge|Coldsnap|R|122045|61| -|Stalking Yeti|Coldsnap|U|122046|98| -|Krovikan Mist|Coldsnap|C|122047|38| -|Darien, King of Kjeldor|Coldsnap|R|122049|4| -|Krovikan Rot|Coldsnap|U|122050|63| -|Garza's Assassin|Coldsnap|R|122051|57| -|Surging Ζther|Coldsnap|C|122052|47| -|Surging Dementia|Coldsnap|C|122053|72| -|Brooding Saurian|Coldsnap|R|122055|106| -|Balduvian Warlord|Coldsnap|U|122056|77| -|Deepfire Elemental|Coldsnap|U|122057|127| -|Freyalise's Radiance|Coldsnap|U|122059|108| -|Jester's Scepter|Coldsnap|R|122066|137| -|Sheltering Ancient|Coldsnap|U|122069|121| -|Karplusan Minotaur|Coldsnap|R|122070|86| -|Vexing Sphinx|Coldsnap|R|122071|50| -|Shape of the Wiitigo|Coldsnap|R|122073|120| -|Jφtun Grunt|Coldsnap|U|122075|8| -|Swamp|Time Spiral|L|122076|291| -|Island|Time Spiral|L|122077|287| -|Swamp|Time Spiral|L|122078|290| -|Sprout|Time Spiral|C|122079|221| -|Mountain|Time Spiral|L|122080|296| -|Benalish Cavalry|Time Spiral|C|122082|4| -|Forest|Time Spiral|L|122083|299| -|Plains|Time Spiral|L|122084|285| -|Plains|Time Spiral|L|122085|284| -|Plains|Time Spiral|L|122087|283| -|Forest|Time Spiral|L|122088|298| -|Island|Time Spiral|L|122089|288| -|Mountain|Time Spiral|L|122090|295| -|Paradise Plume|Time Spiral|U|122091|260| -|Plains|Time Spiral|L|122092|282| -|Gemstone Caverns|Time Spiral|R|122094|274| -|Island|Time Spiral|L|122095|286| -|Grim Harvest|Coldsnap|C|122114|58| -|Rimefeather Owl|Coldsnap|R|122116|42| -|Surging Sentinels|Coldsnap|C|122118|20| -|Thermal Flux|Coldsnap|C|122119|49| -|Skred|Coldsnap|C|122120|97| -|Controvert|Coldsnap|U|122121|30| -|Mishra's Bauble|Coldsnap|U|122122|138| -|Braid of Fire|Coldsnap|R|122123|78| -|Arcum Dagsson|Coldsnap|R|122124|27| -|Needlepeak Spider|Planar Chaos|C|122268|105| -|Gossamer Phantasm|Planar Chaos|C|122280|55| -|Revered Dead|Planar Chaos|C|122282|29| -|Shrouded Lore|Planar Chaos|U|122285|91| -|Rebuff the Wicked|Planar Chaos|U|122287|12| -|Citanul Woodreaders|Planar Chaos|C|122290|125| -|Giant Dustwasp|Planar Chaos|C|122313|129| -|Bog Serpent|Planar Chaos|C|122321|84| -|Pouncing Wurm|Planar Chaos|U|122323|136| -|Mana Tithe|Planar Chaos|C|122324|25| -|Riptide Pilferer|Planar Chaos|U|122325|60| -|Prodigal Pyromancer|Planar Chaos|C|122338|118| -|Mantle of Leadership|Planar Chaos|U|122349|9| -|Sunlance|Planar Chaos|C|122355|31| -|Calciderm|Planar Chaos|U|122360|23| -|Harmonize|Planar Chaos|U|122362|149| -|Vampiric Link|Planar Chaos|C|122366|92| -|Gaea's Anthem|Planar Chaos|R|122367|147| -|Timebender|Planar Chaos|U|122370|50| -|Healing Leaves|Planar Chaos|C|122371|150| -|Brute Force|Planar Chaos|C|122373|116| -|Fa'adiyah Seer|Planar Chaos|C|122374|146| -|Shaper Parasite|Planar Chaos|C|122375|46| -|Screeching Sliver|Time Spiral|C|122387|75| -|Frozen Ζther|Planar Chaos|U|122402|54| -|Hedge Troll|Planar Chaos|U|122405|151| -|Mirri the Cursed|Planar Chaos|R|122406|75| -|Benalish Commander|Planar Chaos|R|122408|2| -|Stormfront Riders|Planar Chaos|U|122412|20| -|Enslave|Planar Chaos|U|122413|70| -|Sulfur Elemental|Planar Chaos|U|122416|108| -|Mire Boa|Planar Chaos|C|122420|135| -|Damnation|Planar Chaos|R|122423|85| -|Essence Warden|Planar Chaos|C|122428|145| -|Groundbreaker|Planar Chaos|R|122429|148| -|Roiling Horror|Planar Chaos|R|122431|79| -|Akroma, Angel of Fury|Planar Chaos|R|122432|94| -|Imp's Mischief|Planar Chaos|R|122434|72| -|Saltblast|Planar Chaos|U|122435|15| -|Pyrohemia|Planar Chaos|U|122436|119| -|Heroes Remembered|Planar Chaos|R|122438|7| -|Serendib Sorcerer|Planar Chaos|R|122442|61| -|Aeon Chronicler|Planar Chaos|R|122449|32| -|Keen Sense|Planar Chaos|U|122451|152| -|Dichotomancy|Planar Chaos|R|122455|38| -|Hunting Wilds|Planar Chaos|U|122458|130| -|Spellshift|Planar Chaos|R|122459|47| -|Wild Pair|Planar Chaos|R|122468|144| -|Stonecloaker|Planar Chaos|U|122469|19| -|Whitemane Lion|Planar Chaos|C|122477|22| -|Muck Drubb|Planar Chaos|U|122478|76| -|Malach of the Dawn|Planar Chaos|U|122481|24| -|Crovax, Ascendant Hero|Planar Chaos|R|122487|3| -|Mycologist|Planar Chaos|U|124033|27| -|Midnight Charm|Planar Chaos|C|124034|74| -|Saltfield Recluse|Planar Chaos|C|124037|16| -|Fury Charm|Planar Chaos|C|124039|100| -|Brain Gorgers|Planar Chaos|C|124040|65| -|Synchronous Sliver|Planar Chaos|C|124044|48| -|Evolution Charm|Planar Chaos|C|124047|127| -|Wistful Thinking|Planar Chaos|C|124055|53| -|Vorosh, the Hunter|Planar Chaos|R|124057|164| -|Numot, the Devastator|Planar Chaos|R|124062|160| -|Fungal Behemoth|Planar Chaos|R|124065|128| -|Piracy Charm|Planar Chaos|C|124066|58| -|Intet, the Dreamer|Planar Chaos|R|124073|158| -|Teneb, the Harvester|Planar Chaos|R|124075|163| -|Dawn Charm|Planar Chaos|C|124080|4| -|Gauntlet of Power|Time Spiral|R|124220|255| -|Ixidron|Time Spiral|R|124313|65| -|Braids, Conjurer Adept|Planar Chaos|R|124316|36| -|Ana Battlemage|Planar Chaos|U|124342|124| -|Dust Elemental|Planar Chaos|R|124343|5| -|Jedit Ojanen of Efrava|Planar Chaos|R|124344|131| -|Body Double|Planar Chaos|R|124443|35| -|Shivan Wumpus|Planar Chaos|R|124445|121| -|Thrumming Stone|Coldsnap|R|124451|142| -|Porphyry Nodes|Planar Chaos|R|124470|28| -|Life and Limb|Planar Chaos|R|124471|133| -|Phantasmagorian|Planar Chaos|U|124472|77| -|Simian Spirit Guide|Planar Chaos|C|124474|122| -|Erratic Mutation|Planar Chaos|C|124476|41| -|Timbermare|Planar Chaos|R|124478|140| -|Jodah's Avenger|Planar Chaos|U|124482|42| -|Ζther Membrane|Planar Chaos|U|124504|93| -|Sophic Centaur|Planar Chaos|U|124505|139| -|Blightspeaker|Planar Chaos|C|124506|64| -|Magus of the Coffers|Planar Chaos|R|124507|73| -|Pallid Mycoderm|Planar Chaos|C|124508|10| -|Fatal Frenzy|Planar Chaos|R|124748|98| -|Primal Plasma|Planar Chaos|C|124757|59| -|Goblin Skycutter|Time Spiral|C|124758|159| -|Venser's Sliver|Time Spiral|C|125866|267| -|Serra Sphinx|Planar Chaos|R|125873|62| -|Null Profusion|Planar Chaos|R|125874|89| -|Merfolk Thaumaturgist|Planar Chaos|C|125877|56| -|Coalition Relic|Future Sight|R|125878|161| -|Sinew Sliver|Planar Chaos|C|125879|30| -|Reality Acid|Planar Chaos|C|125880|45| -|Voidstone Gargoyle|Planar Chaos|R|125882|21| -|Keldon Marauders|Planar Chaos|C|125885|102| -|Frenetic Sliver|Planar Chaos|U|126011|157| -|Darkheart Sliver|Planar Chaos|U|126012|155| -|Poultice Sliver|Planar Chaos|C|126014|11| -|Battering Sliver|Planar Chaos|C|126015|95| -|Reflex Sliver|Planar Chaos|C|126018|138| -|Cautery Sliver|Planar Chaos|U|126021|154| -|Spitting Sliver|Planar Chaos|C|126022|80| -|Necrotic Sliver|Planar Chaos|U|126023|159| -|Aquamorph Entity|Planar Chaos|C|126024|33| -|Dormant Sliver|Planar Chaos|U|126025|156| -|Festering March|Future Sight|U|126131|65| -|Edge of Autumn|Future Sight|C|126132|144| -|Shimian Specter|Future Sight|R|126134|76| -|Leaden Fists|Future Sight|C|126139|38| -|Cryptic Annelid|Future Sight|U|126141|34| -|Blind Phantasm|Future Sight|C|126143|49| -|Lost Auramancers|Future Sight|U|126146|11| -|Llanowar Empath|Future Sight|C|126147|130| -|Putrid Cyclops|Future Sight|C|126148|75| -|Fomori Nomad|Future Sight|C|126149|114| -|Logic Knot|Future Sight|C|126151|52| -|Reality Strobe|Future Sight|U|126153|43| -|Mystic Speculation|Future Sight|U|126156|41| -|Mass of Ghouls|Future Sight|C|126158|88| -|Grave Peril|Future Sight|C|126159|67| -|Phosphorescent Feast|Future Sight|U|126160|149| -|Bogardan Lancer|Future Sight|C|126161|95| -|Homing Sliver|Future Sight|C|126162|118| -|Judge Unworthy|Future Sight|C|126164|9| -|Lymph Sliver|Future Sight|C|126165|26| -|Llanowar Mentor|Future Sight|U|126166|131| -|Cyclical Evolution|Future Sight|U|126169|125| -|Cutthroat il-Dal|Future Sight|C|126177|64| -|Whip-Spine Drake|Future Sight|C|126178|62| -|Lumithread Field|Future Sight|C|126186|25| -|Frenzy Sliver|Future Sight|C|126187|85| -|Arc Blade|Future Sight|U|126193|94| -|New Benalia|Future Sight|U|126198|172| -|Riddle of Lightning|Future Sight|C|126199|105| -|Scout's Warning|Future Sight|R|126200|16| -|Shivan Sand-Mage|Future Sight|U|126201|108| -|Chronomantic Escape|Future Sight|U|126204|4| -|River of Tears|Future Sight|R|126210|179| -|Darksteel Garrison|Future Sight|R|126211|167| -|Ovinize|Planar Chaos|U|126212|57| -|Soultether Golem|Future Sight|U|126213|164| -|Mesa Enchantress|Planar Chaos|R|126214|26| -|Sword of the Meek|Future Sight|U|126215|165| -|Venarian Glimmer|Planar Chaos|U|126216|52| -|Boom|Planar Chaos|R|126218|112| -|Magus of the Candelabra|Time Spiral|R|126273|203| -|Krosan Grip|Time Spiral|U|126274|202| -|Thelonite Hermit|Time Spiral|R|126275|228| -|Magus of the Mirror|Time Spiral|R|126278|116| -|Magus of the Scroll|Time Spiral|R|126279|169| -|Undying Rage|Time Spiral|U|126280|184| -|Celestial Crusader|Time Spiral|U|126281|7| -|Weathered Bodyguards|Time Spiral|R|126283|46| -|Liege of the Pit|Time Spiral|R|126285|113| -|Magus of the Jar|Time Spiral|R|126287|67| -|Fortune Thief|Time Spiral|R|126289|156| -|Fool's Demise|Time Spiral|U|126294|64| -|Magus of the Disk|Time Spiral|R|126298|27| -|Volcano Hellion|Planar Chaos|R|126303|111| -|Uktabi Drake|Planar Chaos|C|126306|141| -|Shadowmage Infiltrator|Time Spiral "Timeshifted"|Special|126333|99| -|Shade of Trokair|Planar Chaos|C|126408|18| -|Gone|Planar Chaos|C|126419|113| -|Tumble|Planar Chaos|U|126420|114| -|Circle of Affliction|Planar Chaos|U|126803|66| -|Extirpate|Planar Chaos|R|126804|71| -|Veiling Oddity|Planar Chaos|C|126806|51| -|Ghost Tactician|Planar Chaos|C|126809|6| -|Torchling|Planar Chaos|R|126810|110| -|Detritivore|Planar Chaos|R|126811|96| -|Dash Hopes|Planar Chaos|C|126812|68| -|Kavu Predator|Planar Chaos|U|126813|132| -|Temporal Extortion|Planar Chaos|R|126814|81| -|Riftmarked Knight|Planar Chaos|U|126816|14| -|Reckless Wurm|Planar Chaos|U|126818|120| -|Dunerider Outlaw|Planar Chaos|U|128940|86| -|Vitaspore Thallid|Planar Chaos|C|128941|143| -|Psychotrope Thallid|Planar Chaos|U|128944|137| -|Hammerheim Deadeye|Planar Chaos|U|128948|101| -|Radha, Heir to Keld|Planar Chaos|R|128949|162| -|Timecrafting|Planar Chaos|U|129012|109| -|Serra's Boon|Planar Chaos|U|129014|17| -|Pongify|Planar Chaos|U|129015|44| -|Dismal Failure|Planar Chaos|U|129022|39| -|Blight Sickle|Shadowmoor|C|129135|247| -|Adarkar Wastes|Tenth Edition|R|129458|347| -|Air Elemental|Tenth Edition|U|129459|64| -|Angel of Mercy|Tenth Edition|U|129465|2| -|Angel's Feather|Tenth Edition|U|129466|311| -|Aven Cloudchaser|Tenth Edition|C|129470|7| -|Snapping Drake|Tenth Edition|C|129471|110| -|Aven Windreader|Tenth Edition|C|129473|69| -|Ballista Squad|Tenth Edition|U|129477|8| -|Battlefield Forge|Tenth Edition|R|129479|348| -|Crucible of Worlds|Tenth Edition|R|129480|319| -|Blaze|Tenth Edition|U|129484|190| -|Dusk Imp|Tenth Edition|C|129490|140| -|Bog Wraith|Tenth Edition|U|129491|130| -|Boomerang|Tenth Edition|C|129494|70| -|Bottle Gnomes|Tenth Edition|U|129495|312| -|Brushland|Tenth Edition|R|129496|349| -|Caves of Koilos|Tenth Edition|R|129497|350| -|Clone|Tenth Edition|R|129501|73| -|Coat of Arms|Tenth Edition|R|129502|316| -|Consume Spirit|Tenth Edition|U|129505|131| -|Sunken Hope|Tenth Edition|R|129509|112| -|Kavu Climber|Tenth Edition|C|129511|273| -|Creeping Mold|Tenth Edition|U|129512|258| -|Skyhunter Skirmisher|Tenth Edition|U|129513|43| -|Cruel Edict|Tenth Edition|U|129514|133| -|Dehydration|Tenth Edition|C|129521|78| -|Demolish|Tenth Edition|C|129522|196| -|Demon's Horn|Tenth Edition|U|129523|320| -|Demystify|Tenth Edition|C|129524|14| -|Diabolic Tutor|Tenth Edition|U|129525|135| -|Pithing Needle|Tenth Edition|R|129526|338| -|Dragon's Claw|Tenth Edition|U|129527|322| -|Drudge Skeletons|Tenth Edition|U|129529|139| -|Elvish Berserker|Tenth Edition|C|129533|260| -|Elvish Champion|Tenth Edition|R|129534|261| -|Elvish Piper|Tenth Edition|R|129535|262| -|Llanowar Sentinel|Tenth Edition|C|129536|275| -|Evacuation|Tenth Edition|R|129541|83| -|Fear|Tenth Edition|C|129544|142| -|Festering Goblin|Tenth Edition|C|129546|143| -|Firebreathing|Tenth Edition|C|129548|200| -|Shimmering Wings|Tenth Edition|C|129553|107| -|Earth Elemental|Tenth Edition|U|129554|199| -|Wild Griffin|Tenth Edition|C|129557|59| -|Forest|Tenth Edition|L|129559|380| -|Forest|Tenth Edition|L|129560|381| -|Forest|Tenth Edition|L|129561|382| -|Forest|Tenth Edition|L|129562|383| -|Highway Robber|Tenth Edition|C|129564|150| -|Furnace of Rath|Tenth Edition|R|129566|204| -|Giant Growth|Tenth Edition|C|129568|266| -|Giant Spider|Tenth Edition|C|129570|267| -|Glorious Anthem|Tenth Edition|R|129572|17| -|Knight of Dusk|Tenth Edition|U|129574|152| -|Spark Elemental|Tenth Edition|U|129577|237| -|Goblin King|Tenth Edition|R|129578|207| -|Duct Crawler|Tenth Edition|C|129579|198| -|Goblin Piker|Tenth Edition|C|129580|209| -|Goblin Sky Raider|Tenth Edition|C|129582|210| -|Grave Pact|Tenth Edition|R|129583|144| -|Gravedigger|Tenth Edition|C|129584|146| -|Grizzly Bears|Tenth Edition|C|129586|268| -|Guerrilla Tactics|Tenth Edition|U|129588|211| -|Contaminated Bond|Tenth Edition|C|129590|132| -|Hill Giant|Tenth Edition|C|129591|212| -|Holy Day|Tenth Edition|C|129593|21| -|Holy Strength|Tenth Edition|C|129594|22| -|Honor Guard|Tenth Edition|C|129595|23| -|Horseshoe Crab|Tenth Edition|C|129596|87| -|Howling Mine|Tenth Edition|R|129598|325| -|Hunted Wumpus|Tenth Edition|U|129599|269| -|Hypnotic Specter|Tenth Edition|R|129600|151| -|Icy Manipulator|Tenth Edition|U|129601|326| -|Tundra Wolves|Tenth Edition|C|129604|54| -|Island|Tenth Edition|L|129606|368| -|Island|Tenth Edition|L|129607|369| -|Island|Tenth Edition|L|129608|370| -|Island|Tenth Edition|L|129609|371| -|True Believer|Tenth Edition|R|129610|53| -|Karplusan Forest|Tenth Edition|R|129614|354| -|Kraken's Eye|Tenth Edition|U|129619|329| -|Lava Axe|Tenth Edition|C|129620|215| -|Lightning Elemental|Tenth Edition|C|129624|217| -|Llanowar Elves|Tenth Edition|C|129626|274| -|Llanowar Wastes|Tenth Edition|R|129627|355| -|Looming Shade|Tenth Edition|C|129628|153| -|Lord of the Undead|Tenth Edition|R|129629|155| -|Loxodon Warhammer|Tenth Edition|R|129630|332| -|Lumengrid Warden|Tenth Edition|C|129631|89| -|Mahamoti Djinn|Tenth Edition|R|129633|90| -|Loxodon Mystic|Tenth Edition|C|129638|26| -|Megrim|Tenth Edition|U|129640|157| -|Might of Oaks|Tenth Edition|R|129642|277| -|Millstone|Tenth Edition|R|129643|334| -|Mind Bend|Tenth Edition|R|129644|93| -|Mind Rot|Tenth Edition|C|129645|159| -|Mortivore|Tenth Edition|R|129648|161| -|Mountain|Tenth Edition|L|129649|376| -|Mountain|Tenth Edition|L|129650|377| -|Mountain|Tenth Edition|L|129651|378| -|Mountain|Tenth Edition|L|129652|379| -|Nantuko Husk|Tenth Edition|U|129653|162| -|Natural Spring|Tenth Edition|C|129655|281| -|Naturalize|Tenth Edition|C|129656|282| -|Nekrataal|Tenth Edition|U|129658|163| -|Nightmare|Tenth Edition|R|129659|164| -|Orcish Artillery|Tenth Edition|U|129663|220| -|Ornithopter|Tenth Edition|U|129665|336| -|Pacifism|Tenth Edition|C|129667|31| -|Paladin en-Vec|Tenth Edition|R|129668|32| -|Angelic Wall|Tenth Edition|C|129671|5| -|Time Stretch|Tenth Edition|R|129677|118| -|Plague Beetle|Tenth Edition|C|129678|168| -|Plague Wind|Tenth Edition|R|129679|169| -|Plains|Tenth Edition|L|129680|364| -|Plains|Tenth Edition|L|129681|365| -|Plains|Tenth Edition|L|129682|366| -|Plains|Tenth Edition|L|129683|367| -|Puppeteer|Tenth Edition|U|129685|98| -|Quicksand|Tenth Edition|U|129687|356| -|Raging Goblin|Tenth Edition|C|129688|224| -|Rampant Growth|Tenth Edition|C|129690|288| -|Ravenous Rats|Tenth Edition|C|129692|171| -|Severed Legion|Tenth Edition|C|129693|177| -|Regeneration|Tenth Edition|U|129696|290| -|Relentless Assault|Tenth Edition|R|129697|225| -|Reminisce|Tenth Edition|U|129698|99| -|Remove Soul|Tenth Edition|C|129699|100| -|Rod of Ruin|Tenth Edition|U|129704|341| -|Rootwalla|Tenth Edition|C|129707|293| -|Royal Assassin|Tenth Edition|R|129708|174| -|Bloodfire Colossus|Tenth Edition|R|129709|191| -|Angelic Chorus|Tenth Edition|R|129710|4| -|Angelic Blessing|Tenth Edition|C|129711|3| -|Rock Badger|Tenth Edition|C|129715|226| -|Mobilization|Tenth Edition|R|129716|29| -|Scathe Zombies|Tenth Edition|C|129718|175| -|Sea Monster|Tenth Edition|C|129719|106| -|Seedborn Muse|Tenth Edition|R|129722|296| -|Sengir Vampire|Tenth Edition|R|129724|176| -|Serra Angel|Tenth Edition|R|129726|39| -|Shivan Dragon|Tenth Edition|R|129730|230| -|Shivan Reef|Tenth Edition|R|129731|357| -|Shock|Tenth Edition|C|129732|232| -|Rootwater Commando|Tenth Edition|C|129733|102| -|Skyhunter Patrol|Tenth Edition|C|129735|41| -|Soul Feast|Tenth Edition|U|129739|179| -|Soul Warden|Tenth Edition|U|129740|44| -|Spellbook|Tenth Edition|U|129741|343| -|Spined Wurm|Tenth Edition|C|129742|298| -|Spineless Thug|Tenth Edition|C|129743|180| -|Spirit Link|Tenth Edition|U|129744|45| -|Story Circle|Tenth Edition|R|129748|49| -|Sudden Impact|Tenth Edition|U|129750|241| -|Sulfurous Springs|Tenth Edition|R|129751|359| -|Suntail Hawk|Tenth Edition|C|129753|50| -|Swamp|Tenth Edition|L|129754|372| -|Swamp|Tenth Edition|L|129755|373| -|Swamp|Tenth Edition|L|129756|374| -|Swamp|Tenth Edition|L|129757|375| -|Telepathy|Tenth Edition|U|129761|113| -|Thieving Magpie|Tenth Edition|U|129764|115| -|Threaten|Tenth Edition|U|129767|242| -|Tidings|Tenth Edition|U|129770|116| -|Wall of Wood|Tenth Edition|C|129773|309| -|Traumatize|Tenth Edition|R|129774|119| -|Treetop Bracers|Tenth Edition|C|129777|304| -|Underground River|Tenth Edition|R|129778|362| -|Underworld Dreams|Tenth Edition|R|129779|184| -|Unholy Strength|Tenth Edition|C|129780|185| -|Venerable Monk|Tenth Edition|C|129786|55| -|Verdant Force|Tenth Edition|R|129788|307| -|Gaea's Herald|Tenth Edition|R|129789|265| -|Youthful Knight|Tenth Edition|C|129790|62| -|Viridian Shaman|Tenth Edition|U|129792|308| -|Warrior's Honor|Tenth Edition|C|129797|58| -|Loyal Sentry|Tenth Edition|R|129798|27| -|Pyroclasm|Tenth Edition|U|129801|222| -|Sleeper Agent|Tenth Edition|R|129803|178| -|Cloud Elemental|Tenth Edition|C|129804|74| -|Wrath of God|Tenth Edition|R|129808|61| -|Wurm's Tooth|Tenth Edition|U|129809|346| -|Yavimaya Coast|Tenth Edition|R|129810|363| -|Doomed Necromancer|Tenth Edition|R|129880|137| -|Terramorphic Expanse|Tenth Edition|C|129881|360| -|Cancel|Tenth Edition|C|129882|71| -|Plagiarize|Tenth Edition|R|129883|97| -|Seismic Assault|Tenth Edition|R|129884|228| -|Hurricane|Tenth Edition|R|129885|270| -|Twincast|Tenth Edition|R|129887|120| -|Time Stop|Tenth Edition|R|129898|117| -|Persuasion|Tenth Edition|U|129900|95| -|Spiketail Hatchling|Tenth Edition|U|129901|111| -|Birds of Paradise|Tenth Edition|R|129906|252| -|Flashfreeze|Tenth Edition|U|129908|84| -|Cryoclasm|Tenth Edition|U|129909|195| -|Deathmark|Tenth Edition|U|129910|134| -|Karplusan Strider|Tenth Edition|U|129911|272| -|Luminesce|Tenth Edition|U|129912|28| -|Ambassador Laquatus|Tenth Edition|R|129913|65| -|Cloudseeder|Future Sight|U|130309|33| -|Goldmeadow Lookout|Future Sight|U|130311|22| -|Skirk Ridge Exhumer|Future Sight|U|130314|77| -|Minions' Murmurs|Future Sight|U|130316|71| -|Saltskitter|Future Sight|C|130320|14| -|Sporoloth Ancient|Future Sight|C|130323|152| -|Vedalken Ζthermage|Future Sight|C|130325|61| -|Samite Censer-Bearer|Future Sight|C|130327|15| -|Haze of Rage|Future Sight|U|130328|100| -|Sliversmith|Future Sight|U|130329|163| -|Wrap in Vigor|Future Sight|C|130331|141| -|Lost Hours|Future Sight|C|130332|69| -|Bound in Silence|Future Sight|U|130334|20| -|Thunderblade Charge|Future Sight|R|130338|124| -|Ravaging Riftwurm|Future Sight|U|130339|135| -|Sparkspitter|Future Sight|U|130341|109| -|Unblinking Bleb|Future Sight|C|130342|45| -|Spin into Myth|Future Sight|U|130344|60| -|Angel of Salvation|Future Sight|R|130345|1| -|Mistmeadow Skulk|Future Sight|U|130346|27| -|Seht's Tiger|Future Sight|R|130347|31| -|Riftsweeper|Future Sight|U|130353|136| -|Shunt|Tenth Edition|R|130362|233| -|Warp World|Tenth Edition|R|130364|248| -|Manabarbs|Tenth Edition|R|130367|218| -|Soulblast|Tenth Edition|R|130369|236| -|Shatterstorm|Tenth Edition|U|130370|229| -|Lavaborn Muse|Tenth Edition|R|130373|216| -|Scoria Wurm|Tenth Edition|R|130374|227| -|Flamewave Invoker|Tenth Edition|U|130378|202| -|Fists of the Anvil|Tenth Edition|C|130379|201| -|Goblin Elite Infantry|Tenth Edition|C|130380|206| -|Thundering Giant|Tenth Edition|U|130381|243| -|Bloodrock Cyclops|Tenth Edition|C|130384|192| -|Starlight Invoker|Tenth Edition|U|130385|47| -|Furnace Whelp|Tenth Edition|U|130386|205| -|Viashino Sandscout|Tenth Edition|C|130387|246| -|Abundance|Tenth Edition|R|130483|249| -|Quirion Dryad|Tenth Edition|R|130489|287| -|Upwelling|Tenth Edition|R|130494|306| -|Troll Ascetic|Tenth Edition|R|130498|305| -|Joiner Adept|Tenth Edition|R|130500|271| -|Scion of the Wild|Tenth Edition|R|130504|295| -|Overrun|Tenth Edition|U|130506|284| -|Recollect|Tenth Edition|U|130507|289| -|Sylvan Scrying|Tenth Edition|U|130513|302| -|Yavimaya Enchantress|Tenth Edition|U|130515|310| -|Commune with Nature|Tenth Edition|C|130521|256| -|Civic Wayfinder|Tenth Edition|C|130522|255| -|Aggressive Urge|Tenth Edition|C|130525|250| -|Pincher Beetles|Tenth Edition|C|130526|285| -|Craw Wurm|Tenth Edition|C|130527|257| -|Condemn|Tenth Edition|U|130528|13| -|Arcane Teachings|Tenth Edition|U|130530|188| -|Viashino Runner|Tenth Edition|C|130531|245| -|Smash|Tenth Edition|C|130532|235| -|Bogardan Firefiend|Tenth Edition|C|130534|193| -|Cone of Flame|Tenth Edition|U|130535|194| -|Shivan Hellkite|Tenth Edition|R|130538|231| -|Siege-Gang Commander|Tenth Edition|R|130539|234| -|Flowstone Slide|Tenth Edition|R|130542|203| -|Nomad Mythmaker|Tenth Edition|R|130547|30| -|Windborn Muse|Tenth Edition|R|130549|60| -|Ancestor's Chosen|Tenth Edition|U|130550|1| -|Kjeldoran Royal Guard|Tenth Edition|R|130551|25| -|Righteousness|Tenth Edition|R|130552|36| -|Beacon of Immortality|Tenth Edition|R|130553|10| -|Cho-Manno, Revolutionary|Tenth Edition|R|130554|12| -|Nix|Future Sight|R|130564|55| -|Horizon Canopy|Future Sight|R|130574|177| -|Graven Cairns|Future Sight|R|130581|175| -|Char-Rumbler|Future Sight|U|130582|96| -|Nacatl War-Pride|Future Sight|U|130588|147| -|Rift Elemental|Future Sight|C|130591|106| -|Grove of the Burnwillows|Future Sight|R|130595|176| -|Muraganda Petroglyphs|Future Sight|R|130614|146| -|Utopia Mycon|Future Sight|U|130616|140| -|Thornweald Archer|Future Sight|C|130630|154| -|Imperiosaur|Future Sight|U|130634|145| -|Daybreak Coronet|Future Sight|R|130635|21| -|Pact of the Titan|Future Sight|R|130638|103| -|Virulent Sliver|Future Sight|C|130644|155| -|Spellwild Ouphe|Future Sight|U|130659|151| -|Foresee|Future Sight|C|130669|36| -|Rites of Flourishing|Future Sight|R|130670|137| -|Boldwyr Intimidator|Future Sight|U|130672|111| -|Storm Entity|Future Sight|U|130675|122| -|Blade of the Sixth Pride|Future Sight|C|130676|19| -|Intervention Pact|Future Sight|R|130680|8| -|Ichor Slick|Future Sight|C|130683|68| -|Centaur Omenreader|Future Sight|U|130684|143| -|Bloodshot Trainee|Future Sight|U|130686|110| -|Marshaling Cry|Future Sight|C|130689|13| -|Gibbering Descent|Future Sight|R|130690|66| -|Lucent Liminid|Future Sight|C|130691|24| -|Infiltrator il-Kor|Future Sight|C|130694|37| -|Henchfiend of Ukor|Future Sight|C|130695|117| -|Knight of Sursi|Future Sight|C|130698|10| -|Fatal Attraction|Future Sight|C|130699|98| -|Pact of Negation|Future Sight|R|130701|42| -|Yixlid Jailer|Future Sight|U|130702|93| -|Slaughter Pact|Future Sight|R|130704|78| -|Summoner's Pact|Future Sight|R|130706|139| -|Gathan Raiders|Future Sight|C|130707|99| -|Snake Cult Initiation|Future Sight|U|130708|89| -|Force of Savagery|Future Sight|R|130713|126| -|Melancholy|Planar Chaos|C|130714|88| -|Blood Knight|Planar Chaos|U|130715|115| -|Ridged Kusite|Planar Chaos|C|130717|78| -|Rathi Trapper|Planar Chaos|C|130718|90| -|Magus of the Tabernacle|Planar Chaos|R|130719|8| -|Firefright Mage|Planar Chaos|C|130720|99| -|Auramancer's Guise|Planar Chaos|U|130813|34| -|Tidewalker|Planar Chaos|U|130814|49| -|Seal of Primordium|Planar Chaos|C|130816|153| -|Scalpelexis|Tenth Edition|R|130818|105| -|Vedalken Mastermind|Tenth Edition|U|130834|123| -|Merfolk Looter|Tenth Edition|C|130900|92| -|Peek|Tenth Edition|C|130903|94| -|Aura Graft|Tenth Edition|U|130976|67| -|Aven Fisher|Tenth Edition|C|130985|68| -|Hate Weaver|Tenth Edition|U|130995|147| -|Might Weaver|Tenth Edition|U|130996|278| -|Rage Weaver|Tenth Edition|U|130997|223| -|Sky Weaver|Tenth Edition|U|130998|109| -|Spirit Weaver|Tenth Edition|U|130999|46| -|Treacherous Urge|Planar Chaos|U|131002|82| -|Utopia Vow|Planar Chaos|C|131004|142| -|Urborg, Tomb of Yawgmoth|Planar Chaos|R|131005|165| -|Kor Dirge|Planar Chaos|U|131006|87| -|Retether|Planar Chaos|R|131007|13| -|Magus of the Bazaar|Planar Chaos|R|131008|43| -|Skirk Shaman|Planar Chaos|C|131011|123| -|Phantom Warrior|Tenth Edition|U|132064|96| -|Cloud Sprite|Tenth Edition|C|132069|75| -|Telling Time|Tenth Edition|U|132071|114| -|Academy Researchers|Tenth Edition|U|132072|63| -|Fog Elemental|Tenth Edition|U|132073|85| -|Reviving Dose|Tenth Edition|C|132089|34| -|Heart of Light|Tenth Edition|C|132090|19| -|Samite Healer|Tenth Edition|C|132101|38| -|Skyhunter Prowler|Tenth Edition|C|132102|42| -|Ghost Warden|Tenth Edition|C|132105|16| -|Bandage|Tenth Edition|C|132106|9| -|Hail of Arrows|Tenth Edition|U|132107|18| -|Steadfast Guard|Tenth Edition|C|132111|48| -|Wall of Swords|Tenth Edition|U|132120|57| -|Icatian Priest|Tenth Edition|U|132123|24| -|Aura of Silence|Tenth Edition|U|132127|6| -|Tempest of Light|Tenth Edition|U|132131|51| -|High Ground|Tenth Edition|U|132145|20| -|Grave Scrabbler|Future Sight|C|132211|86| -|Augur il-Vec|Future Sight|C|132212|2| -|Llanowar Augur|Future Sight|C|132213|129| -|Emberwilde Augur|Future Sight|C|132214|97| -|Zoetic Cavern|Future Sight|U|132215|180| -|Heartwood Storyteller|Future Sight|R|132216|127| -|Quiet Disrepair|Future Sight|C|132217|134| -|Kavu Primarch|Future Sight|C|132218|128| -|Oblivion Crown|Future Sight|C|132219|73| -|Fleshwrither|Future Sight|U|132220|84| -|Spirit en-Dal|Future Sight|U|132221|17| -|Witch's Mist|Future Sight|U|132222|92| -|Petrified Plating|Future Sight|C|132223|133| -|Augur of Skulls|Future Sight|C|132224|63| -|Aven Augur|Future Sight|C|132225|32| -|Deepcavern Imp|Future Sight|C|132226|83| -|Flowstone Embrace|Future Sight|C|132227|113| -|Delay|Future Sight|U|132228|35| -|Bonded Fetch|Future Sight|U|132229|50| -|Molten Firebird|Planar Chaos|R|134738|117| -|Big Game Hunter|Planar Chaos|U|134739|63| -|Shivan Meteor|Planar Chaos|U|134740|106| -|Magus of the Library|Planar Chaos|R|134741|134| -|Dreamscape Artist|Planar Chaos|C|134743|40| -|Stingscourger|Planar Chaos|C|134744|107| -|Magus of the Arena|Planar Chaos|R|134746|104| -|Mogg Fanatic|Tenth Edition|U|134748|219| -|Discombobulate|Tenth Edition|U|134749|81| -|Incinerate|Tenth Edition|C|134751|213| -|Prodigal Pyromancer|Tenth Edition|C|134752|221| -|Anaba Bodyguard|Tenth Edition|C|134753|187| -|Stun|Tenth Edition|C|134755|240| -|Uncontrollable Anger|Tenth Edition|C|134756|244| -|Counsel of the Soratami|Tenth Edition|C|134757|76| -|Crafty Pathmage|Tenth Edition|C|134758|77| -|Fugitive Wizard|Tenth Edition|C|134762|86| -|Robe of Mirrors|Tenth Edition|C|134764|101| -|Skyshroud Ranger|Tenth Edition|C|135182|297| -|Stalking Tiger|Tenth Edition|C|135184|299| -|Canopy Spider|Tenth Edition|C|135185|254| -|Femeref Archers|Tenth Edition|U|135186|264| -|Recover|Tenth Edition|C|135188|172| -|Phyrexian Rager|Tenth Edition|C|135189|167| -|Essence Drain|Tenth Edition|C|135191|141| -|Assassinate|Tenth Edition|C|135194|128| -|Vampire Bats|Tenth Edition|C|135195|186| -|Stronghold Discipline|Tenth Edition|U|135197|181| -|Terror|Tenth Edition|C|135199|182| -|Afflict|Tenth Edition|C|135206|125| -|Serra's Embrace|Tenth Edition|U|135214|40| -|Sylvan Basilisk|Tenth Edition|U|135215|301| -|Dross Crocodile|Tenth Edition|C|135216|138| -|Sage Owl|Tenth Edition|C|135217|104| -|Mass of Ghouls|Tenth Edition|C|135218|156| -|Distress|Tenth Edition|C|135219|136| -|Rain of Tears|Tenth Edition|U|135220|170| -|Goblin Lore|Tenth Edition|U|135221|208| -|Deluge|Tenth Edition|U|135223|79| -|Lure|Tenth Edition|U|135226|276| -|Agonizing Memories|Tenth Edition|U|135228|126| -|Tangle Spider|Tenth Edition|U|135231|303| -|Treasure Hunter|Tenth Edition|U|135232|52| -|Hidden Horror|Tenth Edition|U|135234|149| -|Steel Golem|Tenth Edition|U|135235|344| -|Relentless Rats|Tenth Edition|U|135236|173| -|Juggernaut|Tenth Edition|U|135240|328| -|Sculpting Steel|Tenth Edition|R|135241|342| -|Legacy Weapon|Tenth Edition|R|135242|330| -|Doubling Cube|Tenth Edition|R|135243|321| -|Citanul Flute|Tenth Edition|R|135244|315| -|Dreamborn Muse|Tenth Edition|R|135246|82| -|Pariah|Tenth Edition|R|135248|33| -|Avatar of Might|Tenth Edition|R|135249|251| -|Denizen of the Deep|Tenth Edition|R|135250|80| -|Root Maze|Tenth Edition|R|135251|292| -|Rootwater Matriarch|Tenth Edition|R|135252|103| -|The Hive|Tenth Edition|R|135253|324| -|Chimeric Staff|Tenth Edition|R|135254|313| -|Head Games|Tenth Edition|R|135255|148| -|Graveborn Muse|Tenth Edition|R|135256|145| -|Field Marshal|Tenth Edition|R|135258|15| -|Mortal Combat|Tenth Edition|R|135259|160| -|Hurkyl's Recall|Tenth Edition|R|135260|88| -|Cephalid Constable|Tenth Edition|R|135261|72| -|Beacon of Destruction|Tenth Edition|R|135262|189| -|Enormous Baloth|Tenth Edition|U|135263|263| -|Stampeding Wildebeests|Tenth Edition|U|135264|300| -|Elven Riders|Tenth Edition|U|135266|259| -|Blanchwood Armor|Tenth Edition|U|135267|253| -|Colossus of Sardia|Tenth Edition|R|135268|317| -|Beacon of Unrest|Tenth Edition|R|135270|129| -|Lord of the Pit|Tenth Edition|R|135271|154| -|Midnight Ritual|Tenth Edition|R|135272|158| -|Fountain of Youth|Tenth Edition|U|135273|323| -|Wall of Air|Tenth Edition|U|135274|124| -|Composite Golem|Tenth Edition|U|135275|318| -|Leonin Scimitar|Tenth Edition|U|135277|331| -|Whispersilk Cloak|Tenth Edition|U|135278|345| -|Chromatic Star|Tenth Edition|U|135279|314| -|Mind Stone|Tenth Edition|U|135280|335| -|Phyrexian Vault|Tenth Edition|U|135281|337| -|Overgrowth|Tenth Edition|C|135282|283| -|Blowfly Infestation|Shadowmoor|U|135429|58| -|Wildslayer Elves|Shadowmoor|C|135436|133| -|Cinderhaze Wretch|Shadowmoor|C|135439|60| -|Barrenton Medic|Shadowmoor|C|135451|4| -|Biting Tether|Shadowmoor|U|135485|29| -|Devoted Druid|Shadowmoor|C|135500|110| -|Spellweaver Volute|Future Sight|R|136032|59| -|Magus of the Abyss|Future Sight|R|136033|70| -|Llanowar Reborn|Future Sight|U|136035|171| -|Grinning Ignus|Future Sight|C|136040|116| -|Tombstalker|Future Sight|R|136041|91| -|Sprout Swarm|Future Sight|C|136042|138| -|Death Rattle|Future Sight|C|136043|82| -|Ghostfire|Future Sight|C|136044|115| -|Nimbus Maze|Future Sight|R|136045|178| -|Keldon Megaliths|Future Sight|U|136046|170| -|Tolaria West|Future Sight|U|136047|173| -|Barren Glory|Future Sight|R|136048|3| -|Bitter Ordeal|Future Sight|R|136049|80| -|Magus of the Future|Future Sight|R|136051|40| -|Dakmor Salvage|Future Sight|U|136053|169| -|Bridge from Below|Future Sight|R|136054|81| -|Arcanum Wings|Future Sight|U|136055|48| -|Stronghold Rats|Future Sight|U|136056|79| -|Shah of Naar Isle|Future Sight|R|136137|119| -|Nessian Courser|Future Sight|C|136138|148| -|Tarox Bladewing|Future Sight|R|136139|123| -|Narcomoeba|Future Sight|U|136140|54| -|Whetwheel|Future Sight|R|136141|168| -|Tarmogoyf|Future Sight|R|136142|153| -|Epochrasite|Future Sight|R|136143|162| -|Ramosian Revivalist|Future Sight|U|136145|30| -|Sliver Legion|Future Sight|R|136146|158| -|Magus of the Moat|Future Sight|R|136148|12| -|Veilstone Amulet|Future Sight|R|136149|166| -|Akroma's Memorial|Future Sight|R|136150|159| -|Steamflogger Boss|Future Sight|R|136151|121| -|Magus of the Moon|Future Sight|R|136152|101| -|Quagnoth|Future Sight|R|136153|150| -|Molten Disaster|Future Sight|R|136154|102| -|Baru, Fist of Krosa|Future Sight|R|136155|142| -|Cloud Key|Future Sight|R|136156|160| -|Glittering Wish|Future Sight|R|136157|156| -|Second Wind|Future Sight|U|136158|57| -|Magus of the Vineyard|Future Sight|R|136159|132| -|Skizzik Surger|Future Sight|U|136160|120| -|Scourge of Kher Ridges|Future Sight|R|136161|107| -|Oros, the Avenger|Planar Chaos|R|136170|161| -|Even the Odds|Future Sight|U|136192|6| -|Jhoira of the Ghitu|Future Sight|R|136194|157| -|Maelstrom Djinn|Future Sight|R|136195|39| -|Dryad Arbor|Future Sight|U|136196|174| -|Venser's Diffusion|Future Sight|C|136197|47| -|Linessa, Zephyr Mage|Future Sight|R|136198|51| -|Take Possession|Future Sight|R|136199|44| -|Gift of Granite|Future Sight|C|136200|7| -|Imperial Mask|Future Sight|R|136201|23| -|Mesmeric Sliver|Future Sight|C|136202|53| -|Aven Mindcensor|Future Sight|U|136204|18| -|Street Wraith|Future Sight|U|136205|90| -|Nihilith|Future Sight|R|136206|72| -|Dust of Moments|Future Sight|U|136207|5| -|Korlash, Heir to Blackblade|Future Sight|R|136208|87| -|Venser, Shaper Savant|Future Sight|R|136209|46| -|Oriss, Samite Guardian|Future Sight|R|136210|28| -|Pooling Venom|Future Sight|U|136211|74| -|Sarcomite Myr|Future Sight|C|136212|56| -|Patrician's Scorn|Future Sight|C|136213|29| -|Shapeshifter's Marrow|Future Sight|R|136214|58| -|Emblem of the Warmind|Future Sight|U|136215|112| -|Pyromancer's Swath|Future Sight|R|136216|104| -|Sift|Tenth Edition|C|136217|108| -|Unsummon|Tenth Edition|C|136218|122| -|Benalish Knight|Tenth Edition|C|136279|11| -|Thrull Surgeon|Tenth Edition|U|136282|183| -|No Rest for the Wicked|Tenth Edition|U|136283|165| -|Wall of Fire|Tenth Edition|U|136284|247| -|Rushwood Dryad|Tenth Edition|C|136285|294| -|Twitch|Tenth Edition|C|136286|121| -|Primal Rage|Tenth Edition|U|136288|286| -|Mantis Engine|Tenth Edition|U|136289|333| -|Voice of All|Tenth Edition|R|136290|56| -|Rule of Law|Tenth Edition|U|136291|37| -|Spitting Earth|Tenth Edition|C|136509|238| -|Last Breath|Mercadian Masques|U|136513|27| -|Moonlit Wake|Mercadian Masques|U|136514|29| -|Renounce|Mercadian Masques|U|136515|42| -|Tonic Peddler|Mercadian Masques|U|136516|54| -|Jund Charm|Shards of Alara|U|137900|175| -|Naya Charm|Shards of Alara|U|137905|180| -|Esper Charm|Shards of Alara|U|137913|167| -|Grixis Charm|Shards of Alara|U|137927|171| -|Bant Charm|Shards of Alara|U|137931|155| -|Armillary Sphere|Conflux|C|137936|134| -|Unbender Tine|Alara Reborn|U|138217|15| -|Nacatl Hunt-Pride|Conflux|U|138571|13| -|Burrenton Forge-Tender|Lorwyn|U|139395|7| -|Plover Knights|Lorwyn|C|139396|35| -|Goldmeadow Harrier|Lorwyn|C|139397|17| -|Kithkin Harbinger|Lorwyn|U|139399|26| -|Wellgabber Apothecary|Lorwyn|C|139400|47| -|Lys Alana Huntmaster|Lorwyn|C|139401|229| -|Kinsbaile Balloonist|Lorwyn|C|139403|23| -|Lammastide Weave|Lorwyn|U|139404|226| -|Judge of Currents|Lorwyn|C|139406|22| -|Harpoon Sniper|Lorwyn|U|139407|19| -|Bog-Strider Ash|Lorwyn|C|139410|198| -|Shields of Velis Vel|Lorwyn|C|139411|39| -|Oblivion Ring|Lorwyn|C|139414|34| -|Inkfathom Divers|Lorwyn|C|139419|70| -|Merrow Harbinger|Lorwyn|U|139420|73| -|Streambed Aquitects|Lorwyn|C|139424|91| -|Sentinels of Glen Elendra|Lorwyn|C|139426|84| -|Faerie Harbinger|Lorwyn|U|139427|61| -|Pestermite|Lorwyn|C|139428|78| -|Spellstutter Sprite|Lorwyn|C|139429|89| -|Ethereal Whiskergill|Lorwyn|U|139431|60| -|Faerie Trickery|Lorwyn|C|139435|62| -|Glimmerdust Nap|Lorwyn|C|139436|68| -|Footbottom Feast|Lorwyn|C|139440|115| -|Boggart Harbinger|Lorwyn|U|139441|102| -|Boggart Shenanigans|Lorwyn|U|139445|155| -|Nath's Buffoon|Lorwyn|C|139446|129| -|Ghostly Changeling|Lorwyn|U|139447|116| -|Eyeblight's Ending|Lorwyn|C|139449|110| -|Warren-Scourge Elf|Lorwyn|C|139450|241| -|Nectar Faerie|Lorwyn|U|139451|130| -|Thieving Sprite|Lorwyn|C|139452|143| -|Dreamspoiler Witches|Lorwyn|C|139453|108| -|Black Poplar Shaman|Lorwyn|C|139454|99| -|Nightshade Stinger|Lorwyn|C|139456|132| -|Peppersmoke|Lorwyn|C|139458|134| -|Flamekin Brawler|Lorwyn|C|139461|166| -|Inner-Flame Igniter|Lorwyn|U|139462|182| -|Flamekin Harbinger|Lorwyn|U|139463|167| -|Smokebraider|Lorwyn|C|139465|189| -|Ceaseless Searblades|Lorwyn|U|139466|158| -|Soulbright Flamekin|Lorwyn|C|139467|190| -|Heat Shimmer|Lorwyn|R|139468|175| -|Quill-Slinger Boggart|Lorwyn|C|139469|137| -|Tar Pitcher|Lorwyn|U|139470|193| -|Caterwauling Boggart|Lorwyn|C|139471|157| -|Giant Harbinger|Lorwyn|U|139474|169| -|Tarfire|Lorwyn|C|139476|194| -|Giant's Ire|Lorwyn|C|139477|170| -|Blades of Velis Vel|Lorwyn|C|139480|152| -|Moonglove Winnower|Lorwyn|C|139483|126| -|Elvish Harbinger|Lorwyn|U|139485|207| -|Leaf Gilder|Lorwyn|C|139487|227| -|Spring Cleaning|Lorwyn|C|139489|236| -|Cloudcrown Oak|Lorwyn|C|139492|201| -|Oakgnarl Warrior|Lorwyn|C|139494|232| -|Treefolk Harbinger|Lorwyn|U|139495|239| -|Kithkin Mourncaller|Lorwyn|U|139497|224| -|Kithkin Daggerdare|Lorwyn|C|139498|223| -|Rootgrapple|Lorwyn|C|139499|234| -|Fertile Ground|Lorwyn|C|139502|211| -|Thousand-Year Elixir|Lorwyn|R|139505|263| -|Moonglove Extract|Lorwyn|C|139506|258| -|Runed Stalactite|Lorwyn|C|139508|260| -|Springleaf Drum|Lorwyn|C|139509|261| -|Wanderer's Twig|Lorwyn|C|139510|265| -|Soaring Hope|Lorwyn|C|139511|40| -|Ponder|Lorwyn|C|139512|79| -|Howltooth Hollow|Lorwyn|R|139513|269| -|Spinerock Knoll|Lorwyn|R|139514|274| -|Mosswort Bridge|Lorwyn|R|139515|270| -|Merrow Commerce|Lorwyn|U|139663|72| -|Cloudgoat Ranger|Lorwyn|U|139664|10| -|Guardian of Cloverdell|Lorwyn|U|139665|216| -|Galepowder Mage|Lorwyn|R|139666|15| -|Sunrise Sovereign|Lorwyn|R|139667|192| -|Scattering Stroke|Lorwyn|U|139668|82| -|Veteran of the Depths|Lorwyn|U|139669|46| -|Makeshift Mannequin|Lorwyn|U|139670|124| -|Scarred Vinebreeder|Lorwyn|C|139674|138| -|Elvish Promenade|Lorwyn|U|139676|208| -|Wings of Velis Vel|Lorwyn|C|139678|97| -|Rebellion of the Flamekin|Lorwyn|U|139679|188| -|Silvergill Adept|Lorwyn|U|139682|86| -|Imperious Perfect|Lorwyn|U|139683|220| -|Faerie Tauntings|Lorwyn|U|139685|112| -|Ingot Chewer|Lorwyn|C|139686|180| -|Protective Bubble|Lorwyn|C|139687|80| -|Consuming Bonfire|Lorwyn|C|139688|161| -|Timber Protector|Lorwyn|R|139690|238| -|Hearthcage Giant|Lorwyn|U|139691|174| -|Ego Erasure|Lorwyn|U|139692|59| -|Neck Snap|Lorwyn|C|139693|32| -|Benthicore|Lorwyn|U|139696|53| -|Goldmeadow Stalwart|Lorwyn|U|139698|18| -|Merrow Reejerey|Lorwyn|U|139702|74| -|Lignify|Lorwyn|C|139703|228| -|Marsh Flitter|Lorwyn|U|139705|125| -|Mad Auntie|Lorwyn|R|139708|123| -|Boggart Loggers|Lorwyn|C|139709|103| -|Squeaking Pie Sneak|Lorwyn|U|139710|142| -|Knight of Meadowgrain|Lorwyn|U|139715|28| -|Wizened Cenn|Lorwyn|U|139716|49| -|Immaculate Magistrate|Lorwyn|R|139721|219| -|Hunter of Eyeblights|Lorwyn|U|139723|119| -|Jagged-Scar Archers|Lorwyn|U|139726|222| -|Deathrender|Lorwyn|R|139727|255| -|Flamekin Spitfire|Lorwyn|U|139728|168| -|Incandescent Soulstoke|Lorwyn|R|139730|178| -|Wren's Run Vanquisher|Lorwyn|U|139736|245| -|Thundercloud Shaman|Lorwyn|U|139738|195| -|Herbal Poultice|Lorwyn|C|139740|257| -|Scion of Oona|Lorwyn|R|139741|83| -|Mudbutton Torchrunner|Lorwyn|C|139742|185| -|Hostility|Lorwyn|R|140164|176| -|Sower of Temptation|Lorwyn|R|140165|88| -|Thorn of Amethyst|Lorwyn|R|140166|262| -|Dread|Lorwyn|R|140168|107| -|Cairn Wanderer|Lorwyn|R|140171|105| -|Sygg, River Guide|Lorwyn|R|140172|251| -|Chandra Nalaar|Lorwyn|R|140176|159| -|Wanderwine Prophets|Lorwyn|R|140177|95| -|Lowland Oaf|Lorwyn|C|140183|184| -|Masked Admirers|Lorwyn|R|140184|230| -|Gaddock Teeg|Lorwyn|R|140188|248| -|Arbiter of Knollridge|Lorwyn|R|140189|2| -|Guile|Lorwyn|R|140190|69| -|Militia's Pride|Lorwyn|R|140193|30| -|Wren's Run Packmaster|Lorwyn|R|140194|244| -|Shapesharer|Lorwyn|R|140200|85| -|Doran, the Siege Tower|Lorwyn|R|140201|247| -|Garruk Wildspeaker|Lorwyn|R|140205|213| -|Dolmen Gate|Lorwyn|R|140206|256| -|Colfenor's Urn|Lorwyn|R|140209|254| -|Liliana Vess|Lorwyn|R|140212|121| -|Purity|Lorwyn|R|140214|37| -|Rings of Brighthearth|Lorwyn|R|140216|259| -|Brion Stoutarm|Lorwyn|R|140217|246| -|Horde of Notions|Lorwyn|R|140219|249| -|Jace Beleren|Lorwyn|R|140222|71| -|Wort, Boggart Auntie|Lorwyn|R|140226|252| -|Vigor|Lorwyn|R|140227|240| -|Wydwen, the Biting Gale|Lorwyn|R|140229|253| -|Boggart Mob|Lorwyn|R|140230|104| -|Thoughtweft Trio|Lorwyn|R|140232|44| -|Ajani Goldmane|Lorwyn|R|140233|1| -|Nova Chaser|Lorwyn|R|140239|187| -|Fire-Belly Changeling|Lorwyn|C|140338|164| -|Amoeboid Changeling|Lorwyn|C|140339|51| -|Flamekin Bladewhirl|Lorwyn|U|140343|165| -|Changeling Titan|Lorwyn|U|140345|200| -|Shimmering Grotto|Lorwyn|C|141802|273| -|Elvish Eulogist|Lorwyn|C|141804|205| -|Profane Command|Lorwyn|R|141814|135| -|Austere Command|Lorwyn|R|141817|3| -|Mirror Entity|Lorwyn|R|141818|31| -|Cryptic Command|Lorwyn|R|141819|56| -|Ashling the Pilgrim|Lorwyn|R|141822|149| -|Primal Command|Lorwyn|R|141824|233| -|Mistbind Clique|Lorwyn|R|141825|75| -|Surgespanner|Lorwyn|R|141828|92| -|Brigid, Hero of Kinsbaile|Lorwyn|R|141829|6| -|Incendiary Command|Lorwyn|R|141830|179| -|Dauntless Dourbark|Lorwyn|R|141851|203| -|Silvergill Douser|Lorwyn|C|141853|87| -|Battlewand Oak|Lorwyn|C|141857|197| -|Vivid Grove|Lorwyn|U|141879|277| -|Vivid Marsh|Lorwyn|U|141880|278| -|Vivid Creek|Lorwyn|U|141881|276| -|Vivid Crag|Lorwyn|U|141882|275| -|Vivid Meadow|Lorwyn|U|141883|279| -|Apothecary Initiate|Shadowmoor|C|141929|1| -|Resplendent Mentor|Shadowmoor|U|141930|19| -|Gravelgill Axeshark|Shadowmoor|C|141935|164| -|Sootwalkers|Shadowmoor|C|141936|196| -|Merrow Grimeblotter|Shadowmoor|U|141937|171| -|Heartlash Cinder|Eventide|C|141942|56| -|Moonring Island|Shadowmoor|U|141943|276| -|Whimwader|Shadowmoor|C|141957|54| -|Elvish Hexhunter|Shadowmoor|C|141958|226| -|Madblind Mountain|Shadowmoor|U|141959|274| -|Roughshod Mentor|Shadowmoor|U|141972|128| -|Oona's Gatewarden|Shadowmoor|C|141975|173| -|Kitchen Finks|Shadowmoor|U|141976|229| -|Medicine Runner|Shadowmoor|C|141977|230| -|Manaforge Cinder|Shadowmoor|C|141978|191| -|Deepchannel Mentor|Shadowmoor|U|141981|35| -|Blistering Dieflyn|Shadowmoor|C|141988|82| -|Worldpurge|Shadowmoor|R|141991|156| -|Mudbrawler Raiders|Shadowmoor|C|141992|213| -|Puca's Mischief|Shadowmoor|R|141996|47| -|Foxfire Oak|Shadowmoor|C|141998|115| -|Barrenton Cragtreads|Shadowmoor|C|142000|138| -|Loamdragger Giant|Shadowmoor|C|142001|210| -|Rune-Cervin Rider|Shadowmoor|C|142003|20| -|Elsewhere Flask|Shadowmoor|C|142004|250| -|Drowner Initiate|Shadowmoor|C|142005|36| -|Old Ghastbark|Shadowmoor|C|142007|232| -|Fulminator Mage|Shadowmoor|R|142009|188| -|Inundate|Eventide|R|142010|25| -|Wanderbrine Rootcutters|Shadowmoor|C|142012|178| -|Tattermunge Maniac|Shadowmoor|U|142013|219| -|Mistveil Plains|Shadowmoor|U|142014|275| -|Marshdrinker Giant|Eventide|U|142015|69| -|Godhead of Awe|Shadowmoor|R|142019|142| -|Leechridden Swamp|Shadowmoor|U|142020|273| -|Intimidator Initiate|Shadowmoor|C|142026|96| -|Silkbind Faerie|Shadowmoor|C|142027|148| -|Zealous Guardian|Shadowmoor|C|142028|157| -|Tatterkite|Shadowmoor|U|142030|264| -|Glamer Spinners|Shadowmoor|U|142031|141| -|Consign to Dream|Shadowmoor|C|142032|32| -|Corrosive Mentor|Shadowmoor|U|142034|61| -|Nurturer Initiate|Shadowmoor|C|142035|124| -|Everlasting Torment|Shadowmoor|R|142036|186| -|Raven's Run Dragoon|Shadowmoor|C|142037|235| -|Safewright Quest|Shadowmoor|C|142038|240| -|Ballynock Cohort|Shadowmoor|C|142045|3| -|Sapseep Forest|Shadowmoor|U|142048|279| -|Scar|Shadowmoor|C|142049|194| -|Cinderbones|Shadowmoor|C|142051|59| -|Scuzzback Scrapper|Shadowmoor|C|142052|217| -|Torpor Dust|Shadowmoor|C|142053|177| -|Soul Snuffers|Eventide|U|142054|45| -|Ashenmoor Cohort|Shadowmoor|C|142060|56| -|Bloodmark Mentor|Shadowmoor|U|142062|83| -|Scuttlemutt|Shadowmoor|C|142067|263| -|Cultbrand Cinder|Shadowmoor|C|142068|182| -|Torture|Shadowmoor|C|142070|80| -|Worldly Counsel|Conflux|C|142298|39| -|Rupture Spire|Conflux|C|142301|144| -|Deeptread Merrow|Lorwyn|C|142352|57| -|Aquitect's Will|Lorwyn|C|142354|52| -|Hornet Harasser|Lorwyn|C|142355|118| -|Goldmeadow Dodger|Lorwyn|C|142356|16| -|Zephyr Net|Lorwyn|C|142357|98| -|Stonybrook Angler|Lorwyn|C|142358|90| -|Boggart Birth Rite|Lorwyn|C|142359|101| -|Cenn's Heir|Lorwyn|C|142360|8| -|Facevaulter|Lorwyn|C|142361|111| -|Tideshaper Mystic|Lorwyn|C|142362|93| -|Goatnapper|Lorwyn|U|142363|172| -|Briarhorn|Lorwyn|U|142365|199| -|Thorntooth Witch|Lorwyn|U|143015|144| -|Springjack Knight|Lorwyn|C|143016|41| -|Kinsbaile Skirmisher|Lorwyn|C|143018|24| -|Lys Alana Scarblade|Lorwyn|U|143021|122| -|Dragon Roost|Tenth Edition|R|143024|197| -|War-Spike Changeling|Morningtide|C|143199|112| -|Moonglove Changeling|Morningtide|C|143218|67| -|Changeling Sentinel|Morningtide|C|143230|6| -|Game-Trail Changeling|Morningtide|C|143253|123| -|Mothdust Changeling|Morningtide|C|143333|42| -|Nath of the Gilt-Leaf|Lorwyn|R|143370|250| -|Fistful of Force|Lorwyn|C|143372|212| -|Twinning Glass|Lorwyn|R|143375|264| -|Lace with Moonglove|Lorwyn|C|143376|225| -|Crib Swap|Lorwyn|U|143380|11| -|Hurly-Burly|Lorwyn|C|143381|177| -|Lairwatch Giant|Lorwyn|C|143383|29| -|Crush Underfoot|Lorwyn|U|143384|162| -|Nameless Inversion|Lorwyn|C|143388|128| -|Stinkdrinker Daredevil|Lorwyn|C|143607|191| -|Knucklebone Witch|Lorwyn|R|143609|120| -|Hunt Down|Lorwyn|C|143611|218| -|Forest|Lorwyn|L|143617|300| -|Forest|Lorwyn|L|143618|298| -|Island|Lorwyn|L|143619|289| -|Plains|Lorwyn|L|143620|285| -|Plains|Lorwyn|L|143621|282| -|Plains|Lorwyn|L|143622|284| -|Mountain|Lorwyn|L|143623|294| -|Island|Lorwyn|L|143624|287| -|Forest|Lorwyn|L|143625|299| -|Mountain|Lorwyn|L|143626|297| -|Mountain|Lorwyn|L|143627|295| -|Island|Lorwyn|L|143628|286| -|Swamp|Lorwyn|L|143629|292| -|Plains|Lorwyn|L|143630|283| -|Mountain|Lorwyn|L|143631|296| -|Island|Lorwyn|L|143632|288| -|Forest|Lorwyn|L|143633|301| -|Swamp|Lorwyn|L|143634|291| -|Swamp|Lorwyn|L|143635|293| -|Swamp|Lorwyn|L|143636|290| -|Hamletback Goliath|Lorwyn|R|143682|173| -|Favor of the Mighty|Lorwyn|R|143683|14| -|Summon the School|Lorwyn|U|143684|42| -|Eyes of the Wisent|Lorwyn|R|143728|210| -|Hoofprints of the Stag|Lorwyn|R|143730|21| -|Nettlevine Blight|Lorwyn|R|143731|131| -|Epic Proportions|Lorwyn|R|143732|209| -|Pale Recluse|Alara Reborn|C|144249|74| -|Valley Rannet|Alara Reborn|C|144260|61| -|Igneous Pouncer|Alara Reborn|C|144276|40| -|Sanctum Plowbeast|Alara Reborn|C|144282|10| -|Jhessian Zombies|Alara Reborn|C|144286|22| -|Windbrisk Heights|Lorwyn|R|145798|281| -|Surge of Thoughtweft|Lorwyn|C|145799|43| -|Mournwhelk|Lorwyn|C|145800|127| -|Dawnfluke|Lorwyn|C|145801|12| -|Ringskipper|Lorwyn|C|145802|81| -|Fallowsage|Lorwyn|U|145803|63| -|Changeling Berserker|Lorwyn|U|145804|160| -|Turtleshell Changeling|Lorwyn|U|145807|94| -|Heal the Scars|Lorwyn|C|145808|217| -|Skeletal Changeling|Lorwyn|C|145809|140| -|Mulldrifter|Lorwyn|C|145811|76| -|Gilt-Leaf Seer|Lorwyn|C|145812|215| -|Avian Changeling|Lorwyn|C|145813|4| -|Paperfin Rascal|Lorwyn|C|145814|77| -|Pollen Lullaby|Lorwyn|U|145815|36| -|Woodland Changeling|Lorwyn|C|145816|242| -|Ζthersnipe|Lorwyn|C|145817|50| -|Faultgrinder|Lorwyn|C|145964|163| -|Bog Hoodlums|Lorwyn|C|145966|100| -|Warren Pilferers|Lorwyn|C|145967|146| -|Changeling Hero|Lorwyn|U|145968|9| -|Thoughtseize|Lorwyn|R|145969|145| -|Sentry Oak|Lorwyn|U|145970|38| -|Hillcomber Giant|Lorwyn|C|145971|20| -|Battle Mastery|Lorwyn|U|145973|5| -|Wispmare|Lorwyn|C|145974|48| -|Whirlpool Whelm|Lorwyn|C|145975|96| -|Axegrinder Giant|Lorwyn|C|145976|151| -|Drowner of Secrets|Lorwyn|U|145979|58| -|Glarewielder|Lorwyn|U|145981|171| -|Gilt-Leaf Ambush|Lorwyn|C|145984|214| -|Kithkin Healer|Lorwyn|C|145986|27| -|Lash Out|Lorwyn|C|145987|183| -|Oaken Brawler|Lorwyn|C|145988|33| -|Broken Ambitions|Lorwyn|C|145989|54| -|Nath's Elite|Lorwyn|C|145990|231| -|Weed Strangle|Lorwyn|C|145991|147| -|Adder-Staff Boggart|Lorwyn|C|145992|148| -|Prison Term|Shadowmoor|U|146001|18| -|Dusk Urchins|Shadowmoor|R|146002|65| -|Archon of Justice|Eventide|R|146006|1| -|Order of Whiteclay|Shadowmoor|R|146007|16| -|Crabapple Cohort|Shadowmoor|C|146009|109| -|Doomgape|Eventide|R|146010|120| -|Corrupt|Shadowmoor|U|146013|62| -|Gnarled Effigy|Shadowmoor|U|146015|251| -|Vexing Shusher|Shadowmoor|R|146016|222| -|Flame Javelin|Shadowmoor|U|146017|92| -|Mossbridge Troll|Shadowmoor|R|146021|123| -|Painter's Servant|Shadowmoor|R|146022|257| -|Thoughtweft Gambit|Shadowmoor|U|146024|154| -|Grief Tyrant|Shadowmoor|U|146035|189| -|Knacksaw Clique|Shadowmoor|R|146036|42| -|Illuminated Folio|Shadowmoor|U|146040|254| -|Armored Ascension|Shadowmoor|U|146041|2| -|Briarberry Cohort|Shadowmoor|C|146043|30| -|Revelsong Horn|Shadowmoor|U|146047|261| -|Crowd of Cinders|Shadowmoor|U|146051|63| -|Mass Calcify|Shadowmoor|R|146053|12| -|Crimson Wisps|Shadowmoor|C|146060|88| -|Mudbrawler Cohort|Shadowmoor|C|146062|100| -|Ashenmoor Liege|Shadowmoor|R|146065|181| -|Jaws of Stone|Shadowmoor|U|146070|97| -|Puncture Bolt|Shadowmoor|C|146071|102| -|Safehold Elite|Shadowmoor|C|146077|239| -|Curse of Chains|Shadowmoor|C|146079|139| -|Elemental Mastery|Shadowmoor|R|146087|90| -|Spiteful Visions|Shadowmoor|R|146089|198| -|Windbrisk Raptor|Shadowmoor|R|146090|26| -|River Kelpie|Shadowmoor|R|146094|49| -|Hollowborn Barghest|Shadowmoor|R|146095|68| -|Impromptu Raid|Shadowmoor|R|146097|209| -|Hoarder's Greed|Lorwyn|U|146160|117| -|Needle Drop|Lorwyn|C|146161|186| -|Glen Elendra Pranksters|Lorwyn|U|146162|67| -|Seedguide Ash|Lorwyn|U|146165|235| -|Forced Fruition|Lorwyn|R|146166|66| -|Prowess of the Fair|Lorwyn|U|146167|136| -|Boggart Forager|Lorwyn|C|146168|154| -|Elvish Branchbender|Lorwyn|C|146169|204| -|Fathom Trawl|Lorwyn|R|146170|65| -|Final Revels|Lorwyn|U|146171|113| -|Captivating Glance|Lorwyn|U|146172|55| -|Cloudthresher|Lorwyn|R|146173|202| -|Shriekmaw|Lorwyn|U|146175|139| -|Shelldock Isle|Lorwyn|R|146178|272| -|Elvish Handservant|Lorwyn|C|146179|206| -|Exiled Boggart|Lorwyn|C|146443|109| -|Kithkin Greatheart|Lorwyn|C|146444|25| -|Spiderwig Boggart|Lorwyn|C|146445|141| -|Boggart Sprite-Chaser|Lorwyn|C|146446|156| -|Fodder Launch|Lorwyn|U|146447|114| -|Triclopean Sight|Lorwyn|C|146580|45| -|Colfenor's Plans|Lorwyn|R|146581|106| -|Oona's Prowler|Lorwyn|R|146582|133| -|Entangling Trap|Lorwyn|U|146583|13| -|Familiar's Ruse|Lorwyn|U|146584|64| -|Scapeshift|Morningtide|R|146593|136| -|Woodland Guidance|Lorwyn|U|146594|243| -|Ashling's Prerogative|Lorwyn|R|146595|150| -|Blind-Spot Giant|Lorwyn|C|146597|153| -|Inner-Flame Acolyte|Lorwyn|C|146599|181| -|Wild Ricochet|Lorwyn|R|146600|196| -|Sylvan Echoes|Lorwyn|U|146601|237| -|Rage Reflection|Shadowmoor|R|146727|104| -|Thought Reflection|Shadowmoor|R|146728|53| -|Sunken Ruins|Shadowmoor|R|146729|280| -|Din of the Fireherd|Shadowmoor|R|146733|184| -|Oversoul of Dusk|Shadowmoor|R|146735|234| -|Fossil Find|Shadowmoor|U|146736|206| -|Grim Poppet|Shadowmoor|R|146739|252| -|Wheel of Sun and Moon|Shadowmoor|R|146740|243| -|Memory Plunder|Shadowmoor|R|146742|169| -|Glen Elendra Liege|Shadowmoor|R|146743|163| -|Mystic Gate|Shadowmoor|R|146746|277| -|Wooded Bastion|Shadowmoor|R|146747|281| -|Mana Reflection|Shadowmoor|R|146750|122| -|Boon Reflection|Shadowmoor|R|146751|5| -|Fire-Lit Thicket|Shadowmoor|R|146753|271| -|Swans of Bryn Argoll|Shadowmoor|R|146754|151| -|Fracturing Gust|Shadowmoor|R|146759|227| -|Puppeteer Clique|Shadowmoor|R|146761|75| -|Wound Reflection|Shadowmoor|R|146762|81| -|Graven Cairns|Shadowmoor|R|146764|272| -|Polluted Bonds|Shadowmoor|R|146766|74| -|Tyrannize|Shadowmoor|R|146767|201| -|Deus of Calamity|Shadowmoor|R|146773|204| -|Incremental Growth|Lorwyn|U|146777|221| -|Isleback Spawn|Shadowmoor|R|147370|40| -|Regal Force|Eventide|R|147373|74| -|Gloomwidow|Shadowmoor|U|147375|117| -|Smolder Initiate|Shadowmoor|C|147376|78| -|Sygg, River Cutthroat|Shadowmoor|R|147377|176| -|Splitting Headache|Shadowmoor|C|147378|79| -|Wort, the Raidmother|Shadowmoor|R|147379|223| -|Pili-Pala|Shadowmoor|C|147381|258| -|Rustrazor Butcher|Shadowmoor|C|147389|105| -|Rhys the Redeemed|Shadowmoor|R|147393|237| -|Safehold Sentry|Shadowmoor|C|147394|22| -|Knollspine Dragon|Shadowmoor|R|147398|98| -|Somnomancer|Shadowmoor|C|147399|149| -|Leech Bonder|Shadowmoor|U|147406|43| -|Augury Adept|Shadowmoor|R|147407|137| -|Thistledown Liege|Shadowmoor|R|147409|153| -|Fate Transfer|Shadowmoor|C|147411|161| -|Hatchet Bully|Eventide|U|147413|54| -|Loch Korrigan|Shadowmoor|C|147414|71| -|Chainbreaker|Shadowmoor|C|147419|249| -|Trip Noose|Shadowmoor|U|147420|266| -|Kulrath Knight|Shadowmoor|U|147423|190| -|Last Breath|Shadowmoor|C|147424|11| -|Greater Auramancy|Shadowmoor|R|147425|7| -|Poison the Well|Shadowmoor|C|147427|193| -|Boartusk Liege|Shadowmoor|R|147428|202| -|Inescapable Brute|Shadowmoor|C|147429|95| -|Midnight Banshee|Shadowmoor|R|147431|72| -|Incremental Blight|Shadowmoor|U|147433|70| -|Scrapbasket|Shadowmoor|C|147435|262| -|Lingering Tormentor|Eventide|U|147437|36| -|Wilt-Leaf Liege|Shadowmoor|R|147439|245| -|Retaliator Griffin|Alara Reborn|R|147530|123| -|Reliquary Tower|Conflux|U|150807|143| -|Might of Alara|Conflux|C|150810|85| -|Asha's Favor|Conflux|C|150826|2| -|Rotting Rats|Conflux|C|150833|51| -|Voices from the Void|Conflux|U|150847|55| -|Duergar Assailant|Eventide|C|150975|136| -|Odious Trow|Eventide|C|150977|125| -|Nip Gwyllion|Eventide|C|150986|92| -|Helix Pinnacle|Eventide|R|150992|68| -|Divinity of Pride|Eventide|R|150995|86| -|Slippery Bogle|Eventide|C|150999|160| -|Loyal Gyrfalcon|Eventide|U|151059|11| -|Cauldron Haze|Eventide|U|151060|84| -|Cinder Pyromancer|Eventide|C|151067|50| -|Riverfall Mimic|Eventide|C|151068|111| -|Drain the Well|Eventide|C|151079|121| -|Unmake|Eventide|C|151083|96| -|Merrow Levitator|Eventide|C|151088|26| -|Flickerwisp|Eventide|U|151089|6| -|Hobgoblin Dragoon|Eventide|C|151090|142| -|Nettle Sentinel|Eventide|C|151095|71| -|Tilling Treefolk|Eventide|C|151096|78| -|Wickerbough Elder|Eventide|C|151097|80| -|Bloodied Ghost|Eventide|U|151098|83| -|Nightsky Mimic|Eventide|C|151099|91| -|Duergar Mine-Captain|Eventide|U|151106|138| -|Invert the Skies|Eventide|U|151108|155| -|Phosphorescent Feast|Eventide|U|151113|72| -|Rise of the Hobgoblins|Eventide|R|151114|145| -|Favor of the Overbeing|Eventide|C|151118|151| -|Stalker Hag|Eventide|U|151120|129| -|Stream Hopper|Eventide|C|151124|113| -|Mindwrack Liege|Eventide|R|151132|104| -|Worm Harvest|Eventide|R|151135|131| -|Ashling, the Extinguisher|Eventide|R|151137|33| -|Light from Within|Eventide|R|151139|10| -|Talara's Bane|Eventide|C|151142|47| -|Wistful Selkie|Eventide|U|151143|165| -|Shorecrasher Mimic|Eventide|C|151147|159| -|Fire at Will|Eventide|C|151149|140| -|Soul Reap|Eventide|C|151150|44| -|Overbeing of Myth|Eventide|R|151151|157| -|Gift of the Deity|Eventide|C|151153|122| -|Dominus of Fealty|Eventide|R|151154|102| -|Edge of the Divinity|Eventide|C|151155|87| -|Merrow Bonegnawer|Eventide|C|151158|37| -|Duskdale Wurm|Eventide|U|151164|67| -|Battlegate Mimic|Eventide|C|151165|133| -|Spirit of the Hearth|Eventide|R|151169|14| -|Watchwing Scarecrow|Shadowmoor|C|151630|268| -|Rattleblaze Scarecrow|Shadowmoor|C|151631|259| -|Blazethorn Scarecrow|Shadowmoor|C|151632|246| -|Wingrattle Scarecrow|Shadowmoor|C|151633|270| -|Thornwatch Scarecrow|Shadowmoor|C|151634|265| -|Enchanted Evening|Shadowmoor|R|151979|140| -|Woodfall Primus|Shadowmoor|R|151987|135| -|Prismatic Omen|Shadowmoor|R|151989|126| -|Scourge of the Nobilis|Eventide|C|152015|146| -|Noggle Ransacker|Eventide|U|152032|109| -|Canker Abomination|Eventide|U|152033|115| -|Puncture Blast|Eventide|C|152034|60| -|Spitemare|Eventide|U|152044|147| -|Gilder Bairn|Eventide|U|152046|152| -|Impelled Giant|Eventide|U|152049|58| -|Parapet Watchers|Shadowmoor|C|152059|45| -|Twilight Shepherd|Shadowmoor|R|152060|25| -|Oona, Queen of the Fae|Shadowmoor|R|152063|172| -|Cauldron of Souls|Shadowmoor|R|152065|248| -|Witherscale Wurm|Shadowmoor|R|152068|134| -|Furystoke Giant|Shadowmoor|R|152069|93| -|Spectral Procession|Shadowmoor|U|152070|23| -|Tower Above|Shadowmoor|U|152075|131| -|Scuzzback Marauders|Shadowmoor|C|152078|216| -|Beseech the Queen|Shadowmoor|U|152079|57| -|Necroskitter|Eventide|R|152080|38| -|Quillspike|Eventide|U|152086|126| -|Fable of Wolf and Owl|Eventide|R|152087|150| -|Harvest Gwyllion|Eventide|C|152089|90| -|Murkfiend Liege|Eventide|R|152091|156| -|Clout of the Dominus|Eventide|C|152092|99| -|Kithkin Spellduster|Eventide|C|152096|8| -|Mirror Sheen|Eventide|R|152106|105| -|Trapjaw Kelpie|Eventide|C|152140|164| -|Hateflayer|Eventide|R|152155|55| -|Reflecting Pool|Shadowmoor|R|152158|278| -|Power of Fire|Shadowmoor|C|152159|101| -|Door of Destinies|Morningtide|R|152526|143| -|Supreme Exemplar|Morningtide|R|152533|53| -|Fire Juggler|Morningtide|C|152534|90| -|Sensation Gorger|Morningtide|R|152539|102| -|Maralen of the Mornsong|Morningtide|R|152546|65| -|Vendilion Clique|Morningtide|R|152549|55| -|Titan's Revenge|Morningtide|R|152552|110| -|Walker of the Grove|Morningtide|U|152553|138| -|Hostile Realm|Morningtide|C|152555|91| -|Heritage Druid|Morningtide|U|152556|126| -|Bosk Banneret|Morningtide|C|152557|114| -|Kindled Fury|Morningtide|C|152563|92| -|Negate|Morningtide|C|152570|43| -|Offalsnout|Morningtide|U|152571|71| -|Notorious Throng|Morningtide|R|152579|45| -|Lunk Errant|Morningtide|C|152581|94| -|Mosquito Guard|Morningtide|C|152585|18| -|Rivals' Duel|Morningtide|U|152586|99| -|Frogtosser Banneret|Morningtide|C|152587|64| -|Stonehewer Giant|Morningtide|R|152588|24| -|Sigil Tracer|Morningtide|R|152590|49| -|Preeminent Captain|Morningtide|R|152595|20| -|Cloak and Dagger|Morningtide|U|152604|141| -|Fendeep Summoner|Morningtide|R|152607|61| -|Redeem the Lost|Morningtide|U|152616|21| -|Research the Deep|Morningtide|U|152618|46| -|Release the Ants|Morningtide|U|152619|98| -|Ballyrush Banneret|Morningtide|C|152623|1| -|Reins of the Vinesteed|Morningtide|C|152625|134| -|Mind Spring|Morningtide|R|152628|41| -|Final-Sting Faerie|Morningtide|C|152641|63| -|Rhys the Exiled|Morningtide|R|152643|135| -|Bitterblossom|Morningtide|R|152648|58| -|Feudkiller's Verdict|Morningtide|R|152649|9| -|Brighthearth Banneret|Morningtide|C|152651|88| -|Stonybrook Banneret|Morningtide|C|152652|51| -|Waterspout Weavers|Morningtide|U|152656|56| -|Shinewend|Morningtide|C|152659|23| -|Knowledge Exploitation|Morningtide|R|152664|38| -|Pulling Teeth|Morningtide|C|152667|75| -|Burrenton Shield-Bearers|Morningtide|C|152668|4| -|Winnower Patrol|Morningtide|C|152669|139| -|Wandering Graybeard|Morningtide|U|152672|27| -|Leaf-Crowned Elder|Morningtide|R|152682|128| -|Burrenton Bombardier|Morningtide|C|152694|3| -|Merrow Witsniper|Morningtide|C|152699|40| -|Stingmoggie|Morningtide|C|152704|106| -|Blightsoil Druid|Morningtide|C|152705|59| -|Earthbrawn|Morningtide|C|152710|119| -|Reveillark|Morningtide|R|152716|22| -|Prickly Boggart|Morningtide|C|152718|74| -|Stream of Unconsciousness|Morningtide|C|152720|52| -|Mutavault|Morningtide|R|152724|148| -|Disperse|Morningtide|C|152727|31| -|Wolf-Skull Shaman|Morningtide|U|152728|140| -|Swell of Courage|Morningtide|U|152729|26| -|Warren Weirding|Morningtide|U|152732|82| -|Ink Dissolver|Morningtide|C|152736|36| -|Weight of Conscience|Morningtide|C|152737|28| -|Weed-Pruner Poplar|Morningtide|C|152741|83| -|Thieves' Fortune|Morningtide|U|152815|54| -|Inspired Sprite|Morningtide|U|152826|37| -|Dewdrop Spy|Morningtide|C|152828|30| -|Floodchaser|Morningtide|C|152830|34| -|Revive the Fallen|Morningtide|U|152836|76| -|Shard Volley|Morningtide|C|152837|103| -|Daily Regimen|Morningtide|U|152838|8| -|Noggin Whack|Morningtide|U|152844|70| -|Squeaking Pie Grubfellows|Morningtide|C|152847|78| -|Kithkin Zephyrnaut|Morningtide|C|152858|16| -|Grimoire Thief|Morningtide|R|152870|35| -|Sage of Fables|Morningtide|U|152871|47| -|Recross the Paths|Morningtide|U|152874|133| -|Mudbutton Clanger|Morningtide|C|152876|95| -|Cenn's Tactician|Morningtide|U|152878|5| -|Spitebellows|Morningtide|U|152887|105| -|Lightning Crafter|Morningtide|R|152893|93| -|Morsel Theft|Morningtide|C|152903|68| -|Thornbite Staff|Morningtide|U|152904|145| -|Stinkdrinker Bandit|Morningtide|U|152917|80| -|Fertilid|Morningtide|C|152926|122| -|Nevermaker|Morningtide|U|152934|44| -|Unstoppable Ash|Morningtide|R|152937|137| -|Idyllic Tutor|Morningtide|R|152938|12| -|Festercreep|Morningtide|C|152944|62| -|Hunting Triad|Morningtide|U|152963|127| -|Indomitable Ancients|Morningtide|R|152967|13| -|Everbark Shaman|Morningtide|C|152968|121| -|Boldwyr Intimidator|Morningtide|U|152974|86| -|Kinsbaile Borderguard|Morningtide|R|152977|14| -|Countryside Crusher|Morningtide|R|152980|89| -|Sage's Dousing|Morningtide|U|152988|48| -|Orchard Warden|Morningtide|U|152991|131| -|Ambassador Oak|Morningtide|C|152998|113| -|Nightshade Schemers|Morningtide|U|153001|69| -|Elvish Warrior|Morningtide|C|153003|120| -|Pyroclast Consul|Morningtide|U|153007|96| -|Weirding Shaman|Morningtide|R|153011|84| -|Veteran's Armaments|Morningtide|U|153012|146| -|Springjack Shepherd|Eventide|U|153032|15| -|Dream Fracture|Eventide|U|153036|19| -|Stillmoon Cavalier|Eventide|R|153037|95| -|Double Cleave|Eventide|C|153039|135| -|Stigma Lasher|Eventide|R|153049|62| -|Groundling Pouncer|Eventide|U|153056|154| -|Nucklavee|Eventide|U|153058|110| -|Oona's Blackguard|Morningtide|U|153099|72| -|Seething Pathblazer|Morningtide|C|153101|101| -|Borderland Behemoth|Morningtide|R|153102|87| -|Rage Forger|Morningtide|U|153104|97| -|Latchkey Faerie|Morningtide|C|153122|39| -|Stenchskipper|Morningtide|R|153126|79| -|Distant Melody|Morningtide|C|153133|32| -|Earwig Squad|Morningtide|R|153135|60| -|Boldwyr Heavyweights|Morningtide|R|153137|85| -|Graceful Reprieve|Morningtide|U|153138|11| -|Bramblewood Paragon|Morningtide|U|153139|115| -|Luminescent Rain|Morningtide|C|153147|129| -|Coordinated Barrage|Morningtide|C|153151|7| -|Vengeful Firebrand|Morningtide|R|153153|111| -|Sunflare Shaman|Morningtide|C|153155|108| -|Roar of the Crowd|Morningtide|C|153158|100| -|Greatbow Doyen|Morningtide|R|153163|125| -|Pack's Disdain|Morningtide|C|153165|73| -|Stonybrook Schoolmaster|Morningtide|C|153166|25| -|Declaration of Naught|Morningtide|R|153169|29| -|Scarblade Elite|Morningtide|R|153278|77| -|Kinsbaile Cavalier|Morningtide|R|153279|15| -|Auntie's Snitch|Morningtide|R|153280|57| -|Tattermunge Duo|Shadowmoor|C|153282|218| -|Farhaven Elf|Shadowmoor|C|153289|113| -|Ghastlord of Fugue|Shadowmoor|R|153297|162| -|Murderous Redcap|Shadowmoor|U|153298|192| -|Thistledown Duo|Shadowmoor|C|153301|152| -|Emberstrike Duo|Shadowmoor|C|153307|185| -|Gravelgill Duo|Shadowmoor|C|153308|165| -|Pale Wayfarer|Shadowmoor|U|153310|17| -|Dire Undercurrents|Shadowmoor|R|153311|159| -|Heartmender|Shadowmoor|R|153312|228| -|Firespout|Shadowmoor|U|153314|205| -|Umbral Mantle|Shadowmoor|U|153317|267| -|Merrow Wavebreakers|Shadowmoor|C|153319|44| -|Cache Raiders|Eventide|U|153419|18| -|Suture Spirit|Eventide|U|153420|16| -|Indigo Faerie|Eventide|U|153422|24| -|Twilight Mire|Eventide|R|153425|180| -|Hotheaded Giant|Eventide|C|153426|57| -|Aerie Ouphes|Eventide|C|153427|65| -|Grazing Kelpie|Eventide|C|153428|153| -|Talonrend|Eventide|U|153430|30| -|Primalcrux|Eventide|R|153431|73| -|Flame Jab|Eventide|C|153432|53| -|Cascade Bluffs|Eventide|R|153433|175| -|Rugged Prairie|Eventide|R|153434|178| -|Recumbent Bliss|Eventide|C|153435|13| -|Twinblade Slasher|Eventide|U|153436|79| -|Duergar Cave-Guard|Eventide|U|153437|51| -|Savage Conception|Eventide|U|153438|75| -|Glamerdye|Eventide|R|153439|21| -|Monstrify|Eventide|C|153441|70| -|Razorfin Abolisher|Eventide|U|153442|28| -|Voracious Hatchling|Eventide|U|153444|97| -|Fetid Heath|Eventide|R|153446|176| -|Syphon Life|Eventide|U|153447|46| -|Noxious Hatchling|Eventide|U|153448|124| -|Chameleon Colossus|Morningtide|R|153450|116| -|Battletide Alchemist|Morningtide|R|153451|2| -|Taurean Mauler|Morningtide|R|153452|109| -|Gilt-Leaf Archdruid|Morningtide|R|153453|124| -|Ancient Amphitheater|Lorwyn|R|153454|266| -|Gilt-Leaf Palace|Lorwyn|R|153455|268| -|Wanderwine Hub|Lorwyn|R|153456|280| -|Auntie's Hovel|Lorwyn|R|153457|267| -|Secluded Glen|Lorwyn|R|153458|271| -|Rustic Clachan|Morningtide|R|153460|150| -|Lys Alana Bowmaster|Morningtide|C|153462|130| -|Order of the Golden Cricket|Morningtide|C|153463|19| -|Primal Beyond|Morningtide|R|153464|149| -|Murmuring Bosk|Morningtide|R|153467|147| -|Cenn's Enlistment|Eventide|C|153469|3| -|Cold-Eyed Selkie|Eventide|R|153471|149| -|Outrage Shaman|Eventide|U|153473|59| -|Needle Specter|Eventide|R|153474|39| -|Oona's Grace|Eventide|C|153475|27| -|Wilderness Hypnotist|Eventide|C|153476|32| -|Sturdy Hatchling|Eventide|U|153477|163| -|Belligerent Hatchling|Eventide|U|153478|134| -|Ballynock Trapper|Eventide|C|153480|2| -|Flooded Grove|Eventide|R|153481|177| -|Shrewd Hatchling|Eventide|U|153486|112| -|Raven's Crime|Eventide|C|153487|41| -|Deity of Scars|Eventide|R|153488|118| -|Aerie Mystics|Conflux|U|153946|1| -|Wilt-Leaf Cavaliers|Shadowmoor|U|153962|244| -|Safehold Duo|Shadowmoor|C|153963|238| -|Faerie Macabre|Shadowmoor|C|153964|66| -|Counterbore|Shadowmoor|R|153966|33| -|Wasp Lancer|Shadowmoor|U|153967|179| -|Manamorphose|Shadowmoor|C|153968|211| -|Boggart Ram-Gang|Shadowmoor|U|153970|203| -|Demigod of Revenge|Shadowmoor|R|153972|183| -|Mirrorweave|Shadowmoor|R|153973|143| -|Juvenile Gloomwidow|Shadowmoor|C|153976|121| -|Knollspine Invocation|Shadowmoor|R|153977|99| -|Plumeveil|Shadowmoor|U|153980|145| -|Ashenmoor Gouger|Shadowmoor|U|153981|180| -|Woeleecher|Shadowmoor|C|153985|27| -|Sootstoke Kindler|Shadowmoor|C|153989|195| -|Slinking Giant|Shadowmoor|U|153995|106| -|Howl of the Night Pack|Shadowmoor|U|153996|119| -|Hungry Spriggan|Shadowmoor|C|153997|120| -|Spell Syphon|Shadowmoor|C|153999|52| -|Dramatic Entrance|Shadowmoor|R|154003|111| -|Runed Halo|Shadowmoor|R|154005|21| -|Sickle Ripper|Shadowmoor|C|154010|77| -|Inkwell Leviathan|Conflux|R|154081|30| -|Deglamer|Morningtide|C|154160|118| -|Reach of Branches|Morningtide|R|154162|132| -|Diviner's Wand|Morningtide|U|154163|142| -|Obsidian Battle-Axe|Morningtide|U|154164|144| -|Nobilis of War|Eventide|R|154258|144| -|Spitting Image|Eventide|R|154261|162| -|Inside Out|Eventide|C|154263|103| -|Kithkin Zealot|Eventide|C|154346|9| -|Swirling Spriggan|Eventide|U|154348|76| -|Banishing Knack|Eventide|C|154350|17| -|Aphotic Wisps|Shadowmoor|C|154392|55| -|Gloomwidow's Feast|Shadowmoor|C|154394|118| -|Heap Doll|Shadowmoor|U|154395|253| -|Scarscale Ritual|Shadowmoor|C|154396|175| -|Lurebound Scarecrow|Shadowmoor|U|154397|256| -|Inkfathom Infiltrator|Shadowmoor|U|154401|167| -|Prismwake Merrow|Shadowmoor|C|154402|46| -|Reknit|Shadowmoor|U|154403|236| -|Advice from the Fae|Shadowmoor|U|154408|28| -|Horde of Boggarts|Shadowmoor|U|154409|94| -|Wicker Warcrawler|Shadowmoor|U|154410|269| -|Lockjaw Snapper|Shadowmoor|U|154411|255| -|Endure|Eventide|U|157199|5| -|Fiery Bombardment|Eventide|R|157200|52| -|Hearthfire Hobgoblin|Eventide|U|157201|141| -|Unwilling Recruit|Eventide|U|157202|64| -|Sanity Grinding|Eventide|R|157204|29| -|Creakwood Ghoul|Eventide|U|157206|34| -|Dream Thief|Eventide|C|157207|20| -|Patrol Signaler|Eventide|U|157210|12| -|Smoldering Butcher|Eventide|C|157211|42| -|Crag Puca|Eventide|U|157285|101| -|Noggle Bandit|Eventide|C|157286|106| -|Deathbringer Liege|Eventide|R|157288|85| -|Restless Apparition|Eventide|U|157291|94| -|Cankerous Thirst|Eventide|U|157393|116| -|Hallowed Burial|Eventide|R|157394|7| -|Talara's Battalion|Eventide|R|157395|77| -|Pyrrhic Revival|Eventide|R|157397|93| -|Umbra Stalker|Eventide|R|157399|48| -|Call the Skybreaker|Eventide|R|157400|98| -|Snakeform|Eventide|C|157401|161| -|Moonhold|Eventide|U|157403|143| -|Wake Thrasher|Eventide|R|157405|31| -|Creakwood Liege|Eventide|R|157406|117| -|Batwing Brume|Eventide|U|157407|81| -|Thunderblust|Eventide|R|157411|63| -|Idle Thoughts|Eventide|U|157412|23| -|Nightmare Incursion|Eventide|R|157414|40| -|Beckon Apparition|Eventide|C|157415|82| -|Unnerving Assault|Eventide|U|157416|114| -|Desecrator Hag|Eventide|C|157419|119| -|Crackleburr|Eventide|R|157420|100| -|Stomping Slabs|Morningtide|U|157421|107| -|Mind Shatter|Morningtide|R|157422|66| -|Cream of the Crop|Morningtide|R|157423|117| -|Fencer Clique|Morningtide|C|157424|33| -|Violet Pall|Morningtide|C|157426|81| -|Slithermuse|Morningtide|R|157428|50| -|Forfend|Morningtide|C|157431|10| -|Meadowboon|Morningtide|U|157432|17| -|Shared Animosity|Morningtide|R|157433|104| -|Infectious Horror|Conflux|C|157732|47| -|Forest|Shadowmoor|L|157870|299| -|Swamp|Shadowmoor|L|157871|291| -|Seedcradle Witch|Shadowmoor|U|157872|241| -|Plains|Shadowmoor|L|157873|285| -|Island|Shadowmoor|L|157874|287| -|Island|Shadowmoor|L|157875|288| -|Kinscaer Harpoonist|Shadowmoor|C|157876|41| -|Forest|Shadowmoor|L|157877|298| -|Drove of Elves|Shadowmoor|U|157878|112| -|Inkfathom Witch|Shadowmoor|U|157879|168| -|Spiteflame Witch|Shadowmoor|U|157880|197| -|Mistmeadow Witch|Shadowmoor|U|157881|144| -|Mountain|Shadowmoor|L|157882|297| -|Island|Shadowmoor|L|157883|289| -|Tattermunge Witch|Shadowmoor|U|157884|220| -|Mountain|Shadowmoor|L|157885|296| -|Swamp|Shadowmoor|L|157886|293| -|Plains|Shadowmoor|L|157887|284| -|Mountain|Shadowmoor|L|157888|295| -|Swamp|Shadowmoor|L|157889|290| -|Boggart Shenanigans|Duel Decks: Elves vs. Goblins|U|157915|54| -|Mudbutton Torchrunner|Duel Decks: Elves vs. Goblins|C|157919|46| -|Tar Pitcher|Duel Decks: Elves vs. Goblins|U|157920|53| -|Tarfire|Duel Decks: Elves vs. Goblins|C|157921|56| -|Goblin Cohort|Duel Decks: Elves vs. Goblins|C|157922|38| -|Ib Halfheart, Goblin Tactician|Duel Decks: Elves vs. Goblins|R|157923|43| -|Mogg War Marshal|Duel Decks: Elves vs. Goblins|C|157924|45| -|Mogg Fanatic|Duel Decks: Elves vs. Goblins|U|157925|44| -|Siege-Gang Commander|Duel Decks: Elves vs. Goblins|R|157926|32| -|Clickslither|Duel Decks: Elves vs. Goblins|R|157928|34| -|Gempalm Incinerator|Duel Decks: Elves vs. Goblins|U|157929|37| -|Skirk Drill Sergeant|Duel Decks: Elves vs. Goblins|U|157931|49| -|Emberwilde Augur|Duel Decks: Elves vs. Goblins|C|157932|35| -|Goblin Matron|Duel Decks: Elves vs. Goblins|U|157933|39| -|Goblin Warchief|Duel Decks: Elves vs. Goblins|U|157934|42| -|Goblin Burrows|Duel Decks: Elves vs. Goblins|U|157935|58| -|Skirk Fire Marshal|Duel Decks: Elves vs. Goblins|R|157936|50| -|Goblin Ringleader|Duel Decks: Elves vs. Goblins|U|157937|40| -|Mountain|Duel Decks: Elves vs. Goblins|L|157939|61| -|Mountain|Duel Decks: Elves vs. Goblins|L|157940|59| -|Mountain|Duel Decks: Elves vs. Goblins|L|157941|62| -|Forest|Duel Decks: Elves vs. Goblins|L|157946|28| -|Forest|Duel Decks: Elves vs. Goblins|L|157948|29| -|Ambush Commander|Duel Decks: Elves vs. Goblins|R|157950|1| -|Leering Emblem|Eventide|R|157971|171| -|Ward of Bones|Eventide|R|157972|174| -|Sapling of Colfenor|Eventide|R|157973|128| -|Altar Golem|Eventide|R|157974|166| -|Endless Horizons|Eventide|R|157975|4| -|Springjack Pasture|Eventide|R|157976|179| -|Glen Elendra Archmage|Eventide|R|157977|22| -|Evershrike|Eventide|R|157978|88| -|Scarecrone|Eventide|R|157979|172| -|Hag Hedge-Mage|Eventide|U|157980|123| -|Allosaurus Rider|Duel Decks: Elves vs. Goblins|R|158100|2| -|Crumbling Ashes|Eventide|U|158103|35| -|Balefire Liege|Eventide|R|158104|132| -|Figure of Destiny|Eventide|R|158106|139| -|Waves of Aggression|Eventide|R|158107|148| -|Rekindled Flame|Eventide|R|158108|61| -|Wellwisher|Duel Decks: Elves vs. Goblins|C|158109|15| -|Wirewood Herald|Duel Decks: Elves vs. Goblins|C|158110|16| -|Wirewood Lodge|Duel Decks: Elves vs. Goblins|U|158111|26| -|Llanowar Elves|Duel Decks: Elves vs. Goblins|C|158112|9| -|Heedless One|Duel Decks: Elves vs. Goblins|U|158113|7| -|Gempalm Strider|Duel Decks: Elves vs. Goblins|U|158117|6| -|Timberwatch Elf|Duel Decks: Elves vs. Goblins|C|158118|13| -|Elvish Eulogist|Duel Decks: Elves vs. Goblins|C|158120|3| -|Elvish Harbinger|Duel Decks: Elves vs. Goblins|U|158121|4| -|Imperious Perfect|Duel Decks: Elves vs. Goblins|U|158123|8| -|Lys Alana Huntmaster|Duel Decks: Elves vs. Goblins|C|158125|10| -|Wren's Run Vanquisher|Duel Decks: Elves vs. Goblins|U|158129|19| -|Elvish Warrior|Duel Decks: Elves vs. Goblins|C|158136|5| -|Hollowsage|Shadowmoor|U|158234|69| -|Plains|Shadowmoor|L|158235|282| -|Plains|Shadowmoor|L|158236|283| -|Island|Shadowmoor|L|158237|286| -|Kithkin Shielddare|Shadowmoor|C|158238|10| -|Swamp|Shadowmoor|L|158239|292| -|Mountain|Shadowmoor|L|158240|294| -|Forest|Shadowmoor|L|158241|301| -|Forest|Shadowmoor|L|158242|300| -|Smash to Smithereens|Shadowmoor|C|158243|107| -|Antler Skulkin|Eventide|C|158293|167| -|Hoof Skulkin|Eventide|C|158294|169| -|Jawbone Skulkin|Eventide|C|158295|170| -|Fang Skulkin|Eventide|C|158296|168| -|Shell Skulkin|Eventide|C|158297|173| -|Mirror-Sigil Sergeant|Conflux|M|158598|12| -|Woodlurker Mimic|Eventide|C|158599|130| -|Gleeful Sabotage|Shadowmoor|C|158681|116| -|Ghastly Discovery|Shadowmoor|C|158682|39| -|Cerulean Wisps|Shadowmoor|C|158683|31| -|Boggart Arsonists|Shadowmoor|C|158684|85| -|Faerie Swarm|Shadowmoor|U|158685|37| -|Wild Swing|Shadowmoor|U|158686|108| -|Spawnwrithe|Shadowmoor|R|158687|129| -|Burn Trail|Shadowmoor|C|158688|86| -|Disturbing Plot|Shadowmoor|C|158689|64| -|Mistmeadow Skulk|Shadowmoor|U|158690|14| -|Raking Canopy|Shadowmoor|U|158691|127| -|Flow of Ideas|Shadowmoor|U|158692|38| -|Giantbaiting|Shadowmoor|C|158693|207| -|Niveous Wisps|Shadowmoor|C|158694|15| -|Kithkin Rabble|Shadowmoor|U|158695|9| -|Puresight Merrow|Shadowmoor|U|158745|146| -|Traitor's Roar|Shadowmoor|C|158746|200| -|Dawnglow Infusion|Shadowmoor|U|158747|225| -|Steel of the Godhead|Shadowmoor|C|158749|150| -|Ζthertow|Shadowmoor|C|158750|136| -|Torrent of Souls|Shadowmoor|U|158751|199| -|Turn to Mist|Shadowmoor|C|158752|155| -|Fists of the Demigod|Shadowmoor|C|158753|187| -|Runes of the Deus|Shadowmoor|C|158754|215| -|River's Grasp|Shadowmoor|U|158755|174| -|Mine Excavation|Shadowmoor|C|158756|13| -|Gloomlance|Shadowmoor|C|158757|67| -|Viridescent Wisps|Shadowmoor|C|158758|132| -|Memory Sluice|Shadowmoor|C|158759|170| -|Sinking Feeling|Shadowmoor|C|158760|51| -|Repel Intruders|Shadowmoor|U|158761|147| -|Shield of the Oversoul|Shadowmoor|C|158762|242| -|Cursecatcher|Shadowmoor|U|158763|34| -|Flourishing Defenses|Shadowmoor|U|158764|114| -|Inquisitor's Snare|Shadowmoor|C|158765|8| -|Ember Gale|Shadowmoor|C|158766|91| -|Cemetery Puca|Shadowmoor|R|158767|158| -|Presence of Gond|Shadowmoor|C|158768|125| -|Helm of the Ghastlord|Shadowmoor|C|158769|166| -|Mercy Killing|Shadowmoor|U|158771|231| -|Barkshell Blessing|Shadowmoor|C|158772|224| -|Guttural Response|Shadowmoor|U|158773|208| -|Dream Salvage|Shadowmoor|U|158774|160| -|Noggle Bridgebreaker|Eventide|C|158899|107| -|Soot Imp|Eventide|U|158900|43| -|Bloom Tender|Eventide|R|158901|66| -|Rendclaw Trow|Eventide|C|158902|127| -|Chaotic Backlash|Eventide|U|158903|49| -|Voice of the Woods|Duel Decks: Elves vs. Goblins|R|159029|14| -|Elvish Promenade|Duel Decks: Elves vs. Goblins|U|159030|20| -|Moonglove Extract|Duel Decks: Elves vs. Goblins|C|159032|24| -|Harmonize|Duel Decks: Elves vs. Goblins|U|159033|22| -|Sylvan Messenger|Duel Decks: Elves vs. Goblins|U|159035|12| -|Wildsize|Duel Decks: Elves vs. Goblins|C|159036|23| -|Giant Growth|Duel Decks: Elves vs. Goblins|C|159037|21| -|Wood Elves|Duel Decks: Elves vs. Goblins|C|159038|18| -|Forest|Duel Decks: Elves vs. Goblins|L|159041|31| -|Forest|Duel Decks: Elves vs. Goblins|L|159042|30| -|Elf Warrior|Duel Decks: Elves vs. Goblins|C|159047|2| -|Elemental|Duel Decks: Elves vs. Goblins|C|159048|1| -|Goblin Sledder|Duel Decks: Elves vs. Goblins|C|159049|41| -|Reckless One|Duel Decks: Elves vs. Goblins|U|159050|48| -|Skirk Prospector|Duel Decks: Elves vs. Goblins|C|159051|51| -|Flamewave Invoker|Duel Decks: Elves vs. Goblins|U|159053|36| -|Spitting Earth|Duel Decks: Elves vs. Goblins|C|159054|55| -|Skirk Shaman|Duel Decks: Elves vs. Goblins|C|159055|52| -|Goblin|Duel Decks: Elves vs. Goblins|C|159056|3| -|Mountain|Duel Decks: Elves vs. Goblins|L|159061|60| -|Noggle Hedge-Mage|Eventide|U|159066|108| -|Selkie Hedge-Mage|Eventide|U|159067|158| -|Duergar Hedge-Mage|Eventide|U|159068|137| -|Gwyllion Hedge-Mage|Eventide|U|159069|89| -|Arcane Denial|Masters Edition|C|159084|31| -|Balduvian Horde|Masters Edition|R|159086|86| -|Apprentice Wizard|Masters Edition|C|159087|30| -|Contagion|Masters Edition|R|159089|64| -|Diminishing Returns|Masters Edition|R|159090|32| -|Exile|Masters Edition|C|159091|12| -|Force of Will|Masters Edition|R|159092|33| -|Gargantuan Gorilla|Masters Edition|R|159093|119| -|Lake of the Dead|Masters Edition|R|159095|177| -|Lord of Tresserhorn|Masters Edition|R|159096|149| -|Phelddagrif|Masters Edition|R|159097|150| -|Phyrexian War Beast|Masters Edition|U|159098|162| -|Shield Sphere|Masters Edition|C|159103|166| -|Thawing Glaciers|Masters Edition|R|159106|180| -|Yavimaya Ants|Masters Edition|U|159109|140| -|Ashnod's Transmogrant|Masters Edition|C|159110|152| -|Ivory Tower|Masters Edition|R|159111|158| -|Mishra's Factory|Masters Edition|U|159114|178| -|Onulet|Masters Edition|C|159116|161| -|Orcish Mechanics|Masters Edition|U|159117|106| -|Su-Chi|Masters Edition|R|159119|168| -|Tawnos's Coffin|Masters Edition|R|159120|169| -|Cuombajj Witches|Masters Edition|C|159123|65| -|Diamond Valley|Masters Edition|R|159124|175| -|Erg Raiders|Masters Edition|C|159126|68| -|Ghazbαn Ogre|Masters Edition|C|159127|120| -|Giant Tortoise|Masters Edition|C|159129|34| -|Ifh-Bνff Efreet|Masters Edition|R|159130|123| -|Juzαm Djinn|Masters Edition|R|159132|74| -|Oubliette|Masters Edition|C|159135|79| -|Ring of Ma'rϋf|Masters Edition|R|159136|163| -|Serendib Efreet|Masters Edition|R|159137|50| -|Ball Lightning|Masters Edition|R|159139|87| -|Brothers of Fire|Masters Edition|C|159141|89| -|Carnivorous Plant|Masters Edition|U|159142|115| -|Dust to Dust|Masters Edition|C|159144|10| -|Eater of the Dead|Masters Edition|U|159145|67| -|Fissure|Masters Edition|C|159147|93| -|Holy Light|Masters Edition|C|159148|16| -|Knights of Thorn|Masters Edition|C|159149|19| -|Preacher|Masters Edition|R|159153|24| -|Stone Calendar|Masters Edition|U|159154|167| -|Sunken City|Masters Edition|U|159155|51| -|The Fallen|Masters Edition|U|159156|69| -|Breeding Pit|Masters Edition|U|159166|62| -|Derelor|Masters Edition|U|159171|66| -|Dwarven Soldier|Masters Edition|C|159173|92| -|Hand of Justice|Masters Edition|R|159175|15| -|High Tide|Masters Edition|U|159177|35| -|Homarid Spawning Bed|Masters Edition|U|159179|36| -|Hymn to Tourach|Masters Edition|U|159180|73| -|Order of Leitbur|Masters Edition|C|159188|22| -|Order of the Ebon Hand|Masters Edition|C|159193|78| -|Thorn Thallid|Masters Edition|C|159196|135| -|Thrull Champion|Masters Edition|R|159200|83| -|Thrull Retainer|Masters Edition|C|159201|84| -|Vodalian Knights|Masters Edition|U|159202|55| -|Autumn Willow|Masters Edition|R|159205|113| -|Baron Sengir|Masters Edition|R|159208|58| -|Hungry Mist|Masters Edition|C|159212|121| -|Primal Order|Masters Edition|R|159215|125| -|Roots|Masters Edition|C|159218|127| -|Sea Sprite|Masters Edition|C|159219|48| -|Spectral Bears|Masters Edition|U|159224|131| -|Chub Toad|Masters Edition|C|159226|116| -|Fyndhorn Elves|Masters Edition|C|159228|118| -|Goblin Mutant|Masters Edition|U|159229|96| -|Hallowed Ground|Masters Edition|U|159230|14| -|Hydroblast|Masters Edition|C|159231|37| -|Illusionary Forces|Masters Edition|U|159232|38| -|Illusionary Wall|Masters Edition|C|159233|39| -|Jokulhaups|Masters Edition|R|159235|100| -|Mαrton Stromgald|Masters Edition|R|159237|104| -|Nature's Lore|Masters Edition|C|159238|124| -|Polar Kraken|Masters Edition|R|159241|44| -|Pox|Masters Edition|R|159242|82| -|Pyroblast|Masters Edition|C|159243|107| -|Seraph|Masters Edition|R|159245|26| -|Shambling Strider|Masters Edition|C|159246|129| -|Urza's Bauble|Masters Edition|U|159247|170| -|Walking Wall|Masters Edition|U|159248|172| -|Animate Dead|Masters Edition|U|159249|57| -|Animate Wall|Masters Edition|U|159250|2| -|Ankh of Mishra|Masters Edition|R|159251|151| -|Armageddon|Masters Edition|R|159252|4| -|Benalish Hero|Masters Edition|C|159253|5| -|Berserk|Masters Edition|R|159254|114| -|Clockwork Beast|Masters Edition|U|159256|153| -|Copper Tablet|Masters Edition|U|159257|154| -|Granite Gargoyle|Masters Edition|U|159259|99| -|Ice Storm|Masters Edition|U|159260|122| -|Keldon Warlord|Masters Edition|U|159262|101| -|Lightning Bolt|Masters Edition|C|159263|102| -|Mana Flare|Masters Edition|R|159264|103| -|Nether Shadow|Masters Edition|U|159265|77| -|Nevinyrral's Disk|Masters Edition|R|159266|160| -|Paralyze|Masters Edition|C|159267|80| -|Phantom Monster|Masters Edition|C|159268|43| -|Psychic Venom|Masters Edition|C|159269|46| -|Scryb Sprites|Masters Edition|C|159270|128| -|Stone Giant|Masters Edition|U|159274|109| -|Thicket Basilisk|Masters Edition|U|159275|134| -|Winter Orb|Masters Edition|R|159277|173| -|Forest|Masters Edition|L|159278|193| -|Forest|Masters Edition|L|159279|194| -|Forest|Masters Edition|L|159280|195| -|Island|Masters Edition|L|159281|184| -|Island|Masters Edition|L|159282|185| -|Island|Masters Edition|L|159283|186| -|Mountain|Masters Edition|L|159284|190| -|Mountain|Masters Edition|L|159285|191| -|Mountain|Masters Edition|L|159286|192| -|Plains|Masters Edition|L|159287|181| -|Plains|Masters Edition|L|159288|182| -|Plains|Masters Edition|L|159289|183| -|Swamp|Masters Edition|L|159290|187| -|Swamp|Masters Edition|L|159291|188| -|Swamp|Masters Edition|L|159292|189| -|Adun Oakenshield|Masters Edition|R|159294|141| -|Dakkon Blackblade|Masters Edition|R|159298|143| -|Divine Transformation|Masters Edition|U|159299|9| -|Eureka|Masters Edition|R|159300|117| -|Jacques le Vert|Masters Edition|R|159301|147| -|Mirror Universe|Masters Edition|R|159307|159| -|Moat|Masters Edition|R|159308|21| -|Petra Sphinx|Masters Edition|R|159309|23| -|Psychic Purge|Masters Edition|U|159311|45| -|Rabid Wombat|Masters Edition|U|159312|126| -|Righteous Avengers|Masters Edition|C|159314|25| -|Spinal Villain|Masters Edition|U|159315|108| -|Storm Seeker|Masters Edition|U|159316|132| -|Sylvan Library|Masters Edition|R|159317|133| -|Thunder Spirit|Masters Edition|U|159318|27| -|Winds of Change|Masters Edition|U|159320|111| -|Angry Mob|Masters Edition|U|159321|1| -|Wirewood Symbiote|Duel Decks: Elves vs. Goblins|U|159322|17| -|Stonewood Invoker|Duel Decks: Elves vs. Goblins|C|159324|11| -|Tranquil Thicket|Duel Decks: Elves vs. Goblins|C|159325|27| -|Raging Goblin|Duel Decks: Elves vs. Goblins|C|159326|47| -|Forgotten Cave|Duel Decks: Elves vs. Goblins|C|159327|57| -|Akki Coalflinger|Duel Decks: Elves vs. Goblins|U|159328|33| -|Bloodshed Fever|Shadowmoor|C|159395|84| -|Deep-Slumber Titan|Shadowmoor|R|159396|89| -|Valleymaker|Shadowmoor|R|159397|221| -|Put Away|Shadowmoor|C|159398|48| -|Pyre Charger|Shadowmoor|U|159399|103| -|Rite of Consumption|Shadowmoor|C|159400|76| -|Cragganwick Cremator|Shadowmoor|R|159402|87| -|Savor the Moment|Shadowmoor|R|159404|50| -|Plague of Vermin|Shadowmoor|R|159406|73| -|Morselhoarder|Shadowmoor|C|159407|212| -|Reaper King|Shadowmoor|R|159408|260| -|Strip Bare|Shadowmoor|C|159409|24| -|Toil to Renown|Shadowmoor|C|159410|130| -|Rosheen Meanderer|Shadowmoor|R|159412|214| -|Goldenglow Moth|Shadowmoor|C|159413|6| -|Oracle of Nectars|Shadowmoor|R|159414|233| -|Slate of Ancestry|Duel Decks: Elves vs. Goblins|R|159501|25| -|Bloodhall Ooze|Conflux|R|159610|59| -|Cliffrunner Behemoth|Conflux|R|159612|79| -|Dreadwing|Conflux|U|159629|43| -|Rhox Meditant|Conflux|C|159634|16| -|Sigiled Behemoth|Alara Reborn|C|159688|79| -|Basal Thrull|Masters Edition|C|159728|59| -|Dwarven Catapult|Masters Edition|U|159729|91| -|Goblin Chirurgeon|Masters Edition|C|159730|94| -|Goblin Grenade|Masters Edition|U|159731|95| -|Rainbow Vale|Masters Edition|R|159734|179| -|Bestial Fury|Masters Edition|C|159736|88| -|Feast or Famine|Masters Edition|C|159739|70| -|Phyrexian Boon|Masters Edition|C|159741|81| -|Varchild's War-Riders|Masters Edition|R|159742|110| -|Argivian Archaeologist|Masters Edition|R|159743|3| -|Artifact Blast|Masters Edition|C|159744|85| -|Hecatomb|Masters Edition|R|159748|71| -|Illusions of Grandeur|Masters Edition|R|159749|40| -|Word of Undoing|Masters Edition|C|159751|56| -|Zuran Orb|Masters Edition|U|159752|174| -|Death Ward|Masters Edition|C|159754|8| -|Forcefield|Masters Edition|R|159755|157| -|Wanderlust|Masters Edition|C|159757|137| -|Goblin Wizard|Masters Edition|R|159758|97| -|Goblins of the Flarg|Masters Edition|C|159759|98| -|Island of Wak-Wak|Masters Edition|R|159763|176| -|Khabαl Ghoul|Masters Edition|R|159764|75| -|Singing Tree|Masters Edition|U|159765|130| -|Wyluli Wolf|Masters Edition|C|159766|139| -|Blight|Masters Edition|U|159769|61| -|Crookshank Kobolds|Masters Edition|C|159770|90| -|Juxtapose|Masters Edition|U|159772|41| -|Mountain Yeti|Masters Edition|C|159773|105| -|Telekinesis|Masters Edition|C|159774|52| -|Time Elemental|Masters Edition|R|159775|53| -|Death Speakers|Masters Edition|C|159816|7| -|Black Knight|Masters Edition|U|159817|60| -|Crusade|Masters Edition|R|159818|6| -|Mesa Pegasus|Masters Edition|C|159819|20| -|Vesuvan Doppelganger|Masters Edition|R|159820|54| -|Mindstab Thrull|Masters Edition|C|159821|76| -|River Merfolk|Masters Edition|C|159822|47| -|Chains of Mephistopheles|Masters Edition|R|159823|63| -|Elder Land Wurm|Masters Edition|U|159824|11| -|Greater Realm of Preservation|Masters Edition|U|159825|13| -|Serpent Generator|Masters Edition|R|159826|164| -|Winter Blast|Masters Edition|U|159827|138| -|Amnesia|Masters Edition|R|159828|29| -|Tivadar's Crusade|Masters Edition|U|159829|28| -|Energy Arc|Masters Edition|U|159830|144| -|Mystic Remora|Masters Edition|U|159831|42| -|Lim-Dϋl's Vault|Masters Edition|U|159832|148| -|Tornado|Masters Edition|R|159833|136| -|Centaur Archer|Masters Edition|U|159834|142| -|Fire Covenant|Masters Edition|U|159836|145| -|Hyalopterous Lemure|Masters Edition|C|159837|72| -|Hymn of Rebirth|Masters Edition|U|159838|146| -|Shield of the Ages|Masters Edition|U|159839|165| -|Cursed Rack|Masters Edition|U|159840|155| -|Dragon Engine|Masters Edition|C|159841|156| -|Urza's Chalice|Masters Edition|C|159842|171| -|Icatian Town|Masters Edition|U|159843|18| -|Ydwen Efreet|Masters Edition|R|159844|112| -|Seasinger|Masters Edition|U|159845|49| -|Icatian Lieutenant|Masters Edition|C|159846|17| -|Mistvein Borderpost|Alara Reborn|C|161276|27| -|Breath of Malfegor|Alara Reborn|C|161291|35| -|Trace of Abundance|Alara Reborn|C|161292|142| -|Predatory Urge|Zendikar|R|169958|175| -|Kabira Crossroads|Zendikar|C|169963|216| -|Turntimber Ranger|Zendikar|R|169971|191| -|Piranha Marsh|Zendikar|C|169975|222| -|Turntimber Grove|Zendikar|C|169977|227| -|Toxic Iguanar|Conflux|C|170956|72| -|Territorial Baloth|Zendikar|C|170971|188| -|Plated Geopede|Zendikar|C|170977|141| -|Merfolk Wayfinder|Zendikar|U|170978|56| -|Windrider Eel|Zendikar|C|170982|78| -|Goblin Guide|Zendikar|R|170987|126| -|Kor Cartographer|Zendikar|C|170991|18| -|Ζther Figment|Zendikar|U|170993|40| -|Blood Tribute|Zendikar|R|170995|81| -|Hagra Crocodile|Zendikar|C|170998|94| -|Noble Vestige|Zendikar|C|171001|29| -|Lavaclaw Reaches|Worldwake|R|171007|139| -|Steppe Lynx|Zendikar|C|171012|36| -|Mosstodon|Shards of Alara|C|174787|139| -|Cradle of Vitality|Shards of Alara|R|174789|7| -|Jhessian Balmgiver|Conflux|U|174791|112| -|Scepter of Dominance|Conflux|R|174792|17| -|Minion Reflector|Shards of Alara|R|174796|211| -|Hellspark Elemental|Conflux|U|174799|65| -|Courier's Capsule|Shards of Alara|C|174800|37| -|Gustrider Exuberant|Shards of Alara|C|174805|13| -|Incurable Ogre|Shards of Alara|C|174806|105| -|Soul's Might|Shards of Alara|C|174808|149| -|Soul's Grace|Shards of Alara|C|174813|28| -|Cloudheath Drake|Shards of Alara|C|174814|35| -|Glaze Fiend|Shards of Alara|C|174816|77| -|Banewasp Affliction|Shards of Alara|C|174817|65| -|Lich's Mirror|Shards of Alara|M|174818|210| -|Bloodthorn Taunter|Shards of Alara|C|174821|94| -|Godtoucher|Shards of Alara|C|174822|133| -|Ranger of Eos|Shards of Alara|R|174823|21| -|Relic of Progenitus|Shards of Alara|C|174824|218| -|Angelic Benediction|Shards of Alara|U|174826|3| -|Sacellum Godspeaker|Shards of Alara|R|174828|146| -|Dispeller's Capsule|Shards of Alara|C|174830|8| -|Onyx Goblet|Shards of Alara|C|174831|81| -|Protomatter Powder|Shards of Alara|U|174833|53| -|Dregscape Zombie|Shards of Alara|C|174835|74| -|Kathari Screecher|Shards of Alara|C|174837|47| -|Sedraxis Specter|Shards of Alara|R|174838|192| -|Titanic Ultimatum|Shards of Alara|R|174839|204| -|Bant Panorama|Shards of Alara|C|174842|221| -|Scourge Devil|Shards of Alara|U|174845|113| -|Archdemon of Unx|Shards of Alara|R|174847|64| -|Dreg Reaver|Shards of Alara|C|174848|73| -|Ajani Vengeant|Shards of Alara|M|174852|154| -|Scourglass|Shards of Alara|R|174853|25| -|Elspeth, Knight-Errant|Shards of Alara|M|174859|9| -|Sprouting Thrinax|Shards of Alara|U|174863|197| -|Sigil of Distinction|Shards of Alara|R|174867|219| -|Grixis Battlemage|Shards of Alara|U|174868|78| -|Qasali Ambusher|Shards of Alara|U|174869|184| -|Thunder-Thrash Elder|Shards of Alara|U|174870|117| -|Fleshbag Marauder|Shards of Alara|U|174871|76| -|Esper Battlemage|Shards of Alara|U|174872|40| -|Hissing Iguanar|Shards of Alara|C|174873|104| -|Kresh the Bloodbraided|Shards of Alara|M|174876|178| -|Savage Lands|Shards of Alara|U|174877|228| -|Sharding Sphinx|Shards of Alara|R|174881|55| -|Kederekt Leviathan|Shards of Alara|R|174882|48| -|Ooze Garden|Shards of Alara|R|174886|143| -|Obelisk of Grixis|Shards of Alara|C|174887|214| -|Filigree Sages|Shards of Alara|U|174888|44| -|Volcanic Submersion|Shards of Alara|C|174889|121| -|Naturalize|Shards of Alara|C|174890|141| -|Obelisk of Jund|Shards of Alara|C|174892|215| -|Blister Beetle|Shards of Alara|C|174893|66| -|Executioner's Capsule|Shards of Alara|C|174895|75| -|Salvage Titan|Shards of Alara|R|174900|84| -|Resounding Roar|Shards of Alara|C|174901|144| -|Druid of the Anima|Shards of Alara|C|174903|128| -|Obelisk of Esper|Shards of Alara|C|174906|213| -|Wretched Banquet|Conflux|C|174907|56| -|Oblivion Ring|Shards of Alara|C|174909|20| -|Tezzeret the Seeker|Shards of Alara|M|174912|60| -|Ad Nauseam|Shards of Alara|R|174915|63| -|Spearbreaker Behemoth|Shards of Alara|R|174916|150| -|Blightning|Shards of Alara|C|174917|156| -|Vithian Stinger|Shards of Alara|C|174922|120| -|Tower Gargoyle|Shards of Alara|U|174924|205| -|Sanctum Gargoyle|Shards of Alara|C|174925|24| -|Forest|Shards of Alara|L|174927|246| -|Forest|Shards of Alara|L|174928|248| -|Forest|Shards of Alara|L|174929|247| -|Forest|Shards of Alara|L|174930|249| -|Ethersworn Canonist|Shards of Alara|R|174931|10| -|Cylian Elf|Shards of Alara|C|174935|127| -|Dragon Fodder|Shards of Alara|C|174936|97| -|Goblin Mountaineer|Shards of Alara|C|174938|102| -|Goblin Assault|Shards of Alara|R|174939|101| -|Savage Hunger|Shards of Alara|C|174941|147| -|Drumhunter|Shards of Alara|U|174943|129| -|Naya Battlemage|Shards of Alara|U|174944|142| -|Rafiq of the Many|Shards of Alara|M|174948|185| -|Seaside Citadel|Shards of Alara|U|174950|229| -|Soul's Fire|Shards of Alara|C|174951|115| -|Bull Cerodon|Shards of Alara|U|174952|161| -|Skyward Eye Prophets|Conflux|U|174953|125| -|Waveskimmer Aven|Shards of Alara|C|174955|207| -|Sighted-Caste Sorcerer|Shards of Alara|C|174956|26| -|Rhox War Monk|Shards of Alara|U|174957|188| -|Sigiled Paladin|Shards of Alara|U|174958|27| -|Rhox Charger|Shards of Alara|U|174959|145| -|Court Archers|Shards of Alara|C|174960|126| -|Akrasan Squire|Shards of Alara|C|174963|1| -|Bone Splinters|Shards of Alara|C|174967|67| -|Predator Dragon|Shards of Alara|R|174968|109| -|Feral Hydra|Shards of Alara|R|174973|131| -|Mycoloth|Shards of Alara|R|174975|140| -|Kiss of the Amesha|Shards of Alara|U|174976|177| -|Island|Shards of Alara|L|174977|234| -|Island|Shards of Alara|L|174978|235| -|Island|Shards of Alara|L|174979|237| -|Island|Shards of Alara|L|174980|236| -|Sarkhan Vol|Shards of Alara|M|174983|191| -|Resounding Silence|Shards of Alara|C|174985|22| -|Algae Gharial|Shards of Alara|U|174986|123| -|Scavenger Drake|Shards of Alara|U|174987|85| -|Rockslide Elemental|Shards of Alara|U|174988|112| -|Wild Nacatl|Shards of Alara|C|174989|152| -|Cavern Thoctar|Shards of Alara|C|174994|125| -|Topan Ascetic|Shards of Alara|U|174999|151| -|Angelsong|Shards of Alara|C|175000|4| -|Vein Drinker|Shards of Alara|R|175004|91| -|Manaplasm|Shards of Alara|R|175006|138| -|Steelclad Serpent|Shards of Alara|C|175009|59| -|Swerve|Shards of Alara|U|175010|200| -|Gather Specimens|Shards of Alara|R|175011|45| -|Puppet Conjurer|Shards of Alara|U|175012|82| -|Windwright Mage|Shards of Alara|C|175014|208| -|Tidehollow Strix|Shards of Alara|C|175015|203| -|Mountain|Shards of Alara|L|175017|244| -|Mountain|Shards of Alara|L|175018|243| -|Mountain|Shards of Alara|L|175019|242| -|Mountain|Shards of Alara|L|175020|245| -|Parasitic Strix|Conflux|C|175021|32| -|Necrogenesis|Shards of Alara|U|175023|181| -|Rockcaster Platoon|Shards of Alara|U|175024|23| -|Lapse of Certainty|Conflux|C|175026|9| -|Plains|Shards of Alara|L|175029|230| -|Plains|Shards of Alara|L|175030|231| -|Plains|Shards of Alara|L|175031|232| -|Plains|Shards of Alara|L|175032|233| -|Keeper of Progenitus|Shards of Alara|R|175033|135| -|Shard Convergence|Conflux|U|175034|91| -|Ethersworn Adjudicator|Conflux|M|175035|26| -|Gift of the Gargantuan|Shards of Alara|C|175036|132| -|Spell Snip|Shards of Alara|C|175038|57| -|Invincible Hymn|Shards of Alara|R|175039|14| -|Coma Veil|Shards of Alara|C|175042|36| -|Resounding Thunder|Shards of Alara|C|175043|110| -|Knight of the Skyward Eye|Shards of Alara|C|175047|15| -|Vicious Shadows|Shards of Alara|R|175048|119| -|Exuberant Firestoker|Shards of Alara|U|175049|99| -|Jund Battlemage|Shards of Alara|U|175050|106| -|Agony Warp|Shards of Alara|C|175052|153| -|Call to Heel|Shards of Alara|C|175053|32| -|Tidehollow Sculler|Shards of Alara|U|175054|202| -|Hellkite Overlord|Shards of Alara|M|175057|172| -|Mayael the Anima|Shards of Alara|M|175058|179| -|Jungle Shrine|Shards of Alara|U|175060|226| -|Obelisk of Naya|Shards of Alara|C|175061|216| -|Woolly Thoctar|Shards of Alara|U|175062|209| -|Thorn-Thrash Viashino|Shards of Alara|C|175064|116| -|Skeletonize|Shards of Alara|U|175070|114| -|Caldera Hellion|Shards of Alara|R|175072|95| -|Deathgreeter|Shards of Alara|C|175073|71| -|Yoked Plowbeast|Shards of Alara|C|175078|31| -|Cruel Ultimatum|Shards of Alara|R|175079|164| -|Dawnray Archer|Shards of Alara|U|175085|39| -|Swamp|Shards of Alara|L|175088|240| -|Swamp|Shards of Alara|L|175089|239| -|Swamp|Shards of Alara|L|175090|238| -|Swamp|Shards of Alara|L|175091|241| -|Viashino Skeleton|Shards of Alara|C|175097|118| -|Resounding Wave|Shards of Alara|C|175098|54| -|Blood Cultist|Shards of Alara|U|175100|157| -|Tar Fiend|Shards of Alara|R|175101|89| -|Obelisk of Bant|Shards of Alara|C|175102|212| -|Guardians of Akrasa|Shards of Alara|C|175103|12| -|Empyrial Archangel|Shards of Alara|M|175104|166| -|Godsire|Shards of Alara|M|175105|170| -|Prince of Thralls|Shards of Alara|M|175106|182| -|Sphinx Sovereign|Shards of Alara|M|175107|196| -|Memory Erosion|Shards of Alara|R|175108|50| -|Identity Crisis|Alara Reborn|R|175109|81| -|Sedris, the Traitor King|Shards of Alara|M|175111|193| -|Crumbling Necropolis|Shards of Alara|U|175112|222| -|Metallurgeon|Shards of Alara|U|175113|19| -|Master of Etherium|Shards of Alara|R|175114|49| -|Where Ancients Tread|Shards of Alara|R|175115|122| -|Bloodpyre Elemental|Shards of Alara|C|175117|93| -|Skeletal Kathari|Shards of Alara|C|175119|88| -|Deft Duelist|Shards of Alara|C|175121|165| -|Sunseed Nurturer|Shards of Alara|U|175122|29| -|Bant Battlemage|Shards of Alara|U|175123|5| -|Elvish Visionary|Shards of Alara|C|175124|130| -|Immortal Coil|Shards of Alara|R|175125|79| -|Sharuum the Hegemon|Shards of Alara|M|175127|194| -|Arcane Sanctum|Shards of Alara|U|175128|220| -|Steward of Valeron|Shards of Alara|C|175134|198| -|Violent Ultimatum|Shards of Alara|R|175135|206| -|Etherium Astrolabe|Shards of Alara|U|175138|41| -|Angel's Herald|Shards of Alara|U|175141|2| -|Clarion Ultimatum|Shards of Alara|R|175142|163| -|Brilliant Ultimatum|Shards of Alara|R|175143|159| -|Viscera Dragger|Shards of Alara|C|175144|92| -|Vectis Silencers|Shards of Alara|C|175147|62| -|Dragon's Herald|Shards of Alara|U|175239|98| -|Sphinx's Herald|Shards of Alara|U|175242|58| -|Demon's Herald|Shards of Alara|U|175243|72| -|Magma Spray|Shards of Alara|C|175245|108| -|Marble Chalice|Shards of Alara|C|175249|18| -|Outrider of Jhess|Shards of Alara|C|175252|52| -|Rakeclaw Gargantuan|Shards of Alara|C|175253|186| -|Reborn Hope|Alara Reborn|U|175256|76| -|Ridge Rannet|Shards of Alara|C|175257|111| -|Jungle Weaver|Shards of Alara|C|175262|134| -|Behemoth's Herald|Shards of Alara|U|175263|124| -|Mindlock Orb|Shards of Alara|R|175385|51| -|Shore Snapper|Shards of Alara|C|175390|87| -|Jhessian Infiltrator|Shards of Alara|U|175392|174| -|Battlegrace Angel|Shards of Alara|R|175394|6| -|Stoic Angel|Shards of Alara|R|175396|199| -|Worldheart Phoenix|Conflux|R|175401|77| -|Jhessian Lookout|Shards of Alara|C|176428|46| -|Cunning Lethemancer|Shards of Alara|R|176429|69| -|Death Baron|Shards of Alara|R|176430|70| -|Cathartic Adept|Shards of Alara|C|176433|34| -|Etherium Sculptor|Shards of Alara|C|176435|42| -|Skullmulcher|Shards of Alara|R|176436|148| -|Sangrite Surge|Shards of Alara|U|176438|190| -|Lush Growth|Shards of Alara|C|176441|136| -|Carrion Thrash|Shards of Alara|C|176443|162| -|Resounding Scream|Shards of Alara|C|176444|83| -|Lightning Talons|Shards of Alara|C|176446|107| -|Fire-Field Ogre|Shards of Alara|U|176447|168| -|Corpse Connoisseur|Shards of Alara|U|176448|68| -|Terminate|Alara Reborn|C|176449|46| -|Punish Ignorance|Shards of Alara|R|176450|183| -|Undead Leotau|Shards of Alara|C|176452|90| -|Hell's Thunder|Shards of Alara|R|176455|103| -|Fatestitcher|Shards of Alara|U|176456|43| -|Shadowfeed|Shards of Alara|C|177473|86| -|Flameblast Dragon|Shards of Alara|R|177476|100| -|Bog Tatters|Zendikar|C|177500|84| -|Goblin Bushwhacker|Zendikar|C|177501|125| -|Journey to Nowhere|Zendikar|C|177505|14| -|Anowon, the Ruin Sage|Worldwake|R|177508|49| -|Shoal Serpent|Zendikar|C|177517|65| -|Creeping Tar Pit|Worldwake|R|177520|134| -|Kor Aeronaut|Zendikar|U|177530|17| -|Soaring Seacliff|Zendikar|C|177541|225| -|Kor Duelist|Zendikar|U|177542|19| -|Marsh Casualties|Zendikar|U|177543|101| -|Celestial Colonnade|Worldwake|R|177545|133| -|Cliff Threader|Zendikar|C|177546|7| -|Teetering Peaks|Zendikar|C|177549|226| -|Sunspring Expedition|Zendikar|C|177551|37| -|Burst Lightning|Zendikar|C|177558|119| -|Stirring Wildwood|Worldwake|R|177560|144| -|Vines of Vastwood|Zendikar|C|177571|193| -|Raging Ravine|Worldwake|R|177583|141| -|Arid Mesa|Zendikar|R|177584|211| -|Kraken Hatchling|Zendikar|C|177585|50| -|Soul Stair Expedition|Zendikar|C|177586|112| -|Goblin Deathraiders|Shards of Alara|C|177596|169| -|Sigil Blessing|Shards of Alara|C|177597|195| -|Hindering Light|Shards of Alara|C|177598|173| -|Rip-Clan Crasher|Shards of Alara|C|177600|189| -|Thoughtcutter Agent|Shards of Alara|U|177601|201| -|Branching Bolt|Shards of Alara|C|177602|158| -|Lord of Extinction|Alara Reborn|M|177922|91| -|Rhox Bodyguard|Conflux|C|177924|122| -|Grixis Illusionist|Conflux|C|177927|29| -|Beacon Behemoth|Conflux|C|177931|78| -|Unsummon|Conflux|C|177932|37| -|Kranioceros|Conflux|C|177940|67| -|Bladewing the Risen|From the Vault: Dragons|R|178014|1| -|Dragonstorm|From the Vault: Dragons|R|178015|5| -|Form of the Dragon|From the Vault: Dragons|R|178016|7| -|Bogardan Hellkite|From the Vault: Dragons|R|178017|2| -|Draco|From the Vault: Dragons|R|178018|3| -|Dragon Whelp|From the Vault: Dragons|R|178019|4| -|Nicol Bolas|From the Vault: Dragons|R|178020|10| -|Ebon Dragon|From the Vault: Dragons|R|178021|6| -|Kokusho, the Evening Star|From the Vault: Dragons|R|178022|9| -|Niv-Mizzet, the Firemind|From the Vault: Dragons|R|178023|11| -|Rith, the Awakener|From the Vault: Dragons|R|178024|12| -|Shivan Dragon|From the Vault: Dragons|R|178025|13| -|Thunder Dragon|From the Vault: Dragons|R|178026|14| -|Two-Headed Dragon|From the Vault: Dragons|R|178027|15| -|Hellkite Overlord|From the Vault: Dragons|R|178028|8| -|Covenant of Minds|Shards of Alara|R|178091|38| -|Cancel|Shards of Alara|C|178092|33| -|Knight of the White Orchid|Shards of Alara|R|178094|16| -|Welkin Guide|Shards of Alara|C|178096|30| -|Mighty Emergence|Shards of Alara|U|178097|137| -|Broodmate Dragon|Shards of Alara|R|178101|160| -|Paralyzing Grasp|Zendikar|C|178109|58| -|Scythe Tiger|Zendikar|C|178113|183| -|Relic Crush|Zendikar|C|178115|179| -|Shieldmate's Blessing|Zendikar|C|178119|35| -|Crypt Ripper|Zendikar|C|178121|85| -|Kor Hookmaster|Zendikar|C|178131|20| -|Spidersilk Net|Zendikar|C|178134|206| -|Adventuring Gear|Zendikar|C|178135|195| -|Slaughter Cry|Zendikar|C|178136|149| -|Desecrated Earth|Zendikar|C|178137|86| -|Oran-Rief Survivalist|Zendikar|C|178138|174| -|Turntimber Basilisk|Zendikar|U|178140|190| -|Spell Pierce|Zendikar|C|178144|67| -|Kor Skyfisher|Zendikar|C|178145|23| -|Vampire's Bite|Zendikar|C|178150|117| -|Into the Roil|Zendikar|C|178151|48| -|Martial Coup|Conflux|R|178560|11| -|Path to Exile|Conflux|U|179235|15| -|Drag Down|Conflux|C|179239|42| -|Viashino Slaughtermaster|Conflux|U|179245|73| -|Matca Rioters|Conflux|C|179248|84| -|Master Transmuter|Conflux|R|179252|31| -|Salvage Slasher|Conflux|C|179254|52| -|Blitz Hellion|Alara Reborn|R|179406|49| -|Soulquake|Alara Reborn|R|179409|30| -|Knight-Captain of Eos|Shards of Alara|R|179421|17| -|Realm Razer|Shards of Alara|R|179422|187| -|Naya Panorama|Shards of Alara|C|179423|227| -|Infest|Shards of Alara|U|179424|80| -|Jund Panorama|Shards of Alara|C|179425|225| -|Crucible of Fire|Shards of Alara|R|179426|96| -|Skill Borrower|Shards of Alara|R|179428|56| -|Kederekt Creeper|Shards of Alara|C|179430|176| -|Esper Panorama|Shards of Alara|C|179431|223| -|Tortoise Formation|Shards of Alara|C|179432|61| -|Grixis Panorama|Shards of Alara|C|179433|224| -|Noble Hierarch|Conflux|R|179434|87| -|Conflux|Conflux|M|179437|102| -|Charnelhoard Wurm|Conflux|R|179438|100| -|Filigree Fracture|Conflux|U|179439|82| -|Quenchable Fire|Conflux|C|179440|70| -|Nicol Bolas, Planeswalker|Conflux|M|179441|120| -|Fusion Elemental|Conflux|U|179443|107| -|Goblin Razerunners|Conflux|R|179487|64| -|Sacellum Archers|Conflux|U|179488|89| -|Wild Leotau|Conflux|C|179489|97| -|Progenitus|Conflux|M|179496|121| -|Gleam of Resistance|Conflux|C|179505|8| -|Traumatic Visions|Conflux|C|179508|36| -|Gluttonous Slime|Conflux|U|179512|83| -|Absorb Vis|Conflux|C|179513|40| -|Pestilent Kathari|Conflux|C|179518|50| -|Fiery Fall|Conflux|C|179519|63| -|Sylvan Bounty|Conflux|C|179523|94| -|Stormcaller's Boon|Alara Reborn|C|179534|13| -|Vithian Renegades|Alara Reborn|U|179535|64| -|Talon Trooper|Alara Reborn|C|179537|14| -|Anathemancer|Alara Reborn|U|179538|33| -|Maelstrom Nexus|Alara Reborn|M|179540|130| -|Ethercaste Knight|Alara Reborn|C|179542|3| -|Deadshot Minotaur|Alara Reborn|C|179543|52| -|Double Negative|Alara Reborn|U|179544|87| -|Behemoth Sledge|Alara Reborn|U|179545|65| -|Meddling Mage|Alara Reborn|R|179547|8| -|Mycoid Shepherd|Alara Reborn|R|179548|73| -|Spellbreaker Behemoth|Alara Reborn|R|179551|60| -|Sangrite Backlash|Alara Reborn|C|179553|139| -|Lich Lord of Unx|Alara Reborn|R|179555|24| -|Qasali Pridemage|Alara Reborn|C|179556|75| -|Sigil Captain|Alara Reborn|U|179560|77| -|Gorger Wurm|Alara Reborn|C|179561|56| -|Fight to the Death|Alara Reborn|R|179562|97| -|Mage Slayer|Alara Reborn|U|179567|57| -|Intimidation Bolt|Alara Reborn|U|179568|99| -|Skyclaw Thrash|Alara Reborn|U|179569|89| -|Etherium Abomination|Alara Reborn|C|179573|20| -|Singe-Mind Ogre|Alara Reborn|C|179574|45| -|Zealous Persecution|Alara Reborn|U|179575|85| -|Glassdust Hulk|Alara Reborn|C|179576|7| -|Ethersworn Shieldmage|Alara Reborn|C|179578|4| -|Nulltread Gargantuan|Alara Reborn|U|179580|102| -|Mask of Riddles|Alara Reborn|U|179584|25| -|Marisi's Twinclaws|Alara Reborn|U|179585|140| -|Drastic Revelation|Alara Reborn|U|179587|111| -|Stun Sniper|Alara Reborn|U|179589|100| -|Wildfield Borderpost|Alara Reborn|C|179590|80| -|Magefire Wings|Alara Reborn|C|179591|88| -|Vectis Dominator|Alara Reborn|C|179592|84| -|Sewn-Eye Drake|Alara Reborn|C|179594|135| -|Illusory Demon|Alara Reborn|U|179596|21| -|Architects of Will|Alara Reborn|C|179597|17| -|Giant Ambush Beetle|Alara Reborn|U|179598|137| -|Mind Funeral|Alara Reborn|U|179599|26| -|Wall of Denial|Alara Reborn|U|179601|16| -|Kathari Bomber|Alara Reborn|C|179602|41| -|Winged Coatl|Alara Reborn|C|179603|105| -|Flurry of Wings|Alara Reborn|U|179605|127| -|Brainbite|Alara Reborn|C|179607|18| -|Glory of Warfare|Alara Reborn|R|179611|98| -|Putrid Leech|Alara Reborn|C|179612|95| -|Morbid Bloom|Alara Reborn|U|179614|94| -|Etherwrought Page|Alara Reborn|U|179618|108| -|Crystallization|Alara Reborn|C|179621|144| -|Sanity Gnawers|Alara Reborn|U|179623|44| -|Colossal Might|Alara Reborn|C|179624|51| -|Vengeful Rebirth|Alara Reborn|U|179628|62| -|Sigil of the Nayan Gods|Alara Reborn|C|179630|78| -|Lorescale Coatl|Alara Reborn|U|179633|101| -|Grixis Slavedriver|Conflux|U|179804|46| -|Paragon of the Amesha|Conflux|U|179878|14| -|Fleshformer|Conflux|U|179884|45| -|Meglonoth|Conflux|R|179886|118| -|Yoke of the Damned|Conflux|C|179891|57| -|Magister Sphinx|Conflux|R|179892|116| -|Disfigure|Zendikar|C|180115|87| -|Grim Discovery|Zendikar|C|180127|91| -|Seismic Shudder|Zendikar|C|180134|147| -|Excommunicate|Shards of Alara|C|180144|11| -|Brackwater Elemental|Conflux|C|180147|21| -|Esperzoa|Conflux|U|180158|25| -|Manaforce Mace|Conflux|U|180159|139| -|Knotvine Mystic|Conflux|U|180265|114| -|Blood Tyrant|Conflux|R|180267|99| -|Sigil of the Empty Throne|Conflux|R|180271|18| -|Constricting Tendrils|Conflux|C|180272|22| -|Volcanic Fallout|Conflux|U|180274|74| -|Aven Trailblazer|Conflux|C|180278|4| -|Wandering Goblins|Conflux|C|180279|76| -|Demonspine Whip|Alara Reborn|U|180311|39| -|Cumber Stone|Conflux|U|180322|24| -|Darklit Gargoyle|Conflux|C|180334|7| -|Thornling|Conflux|M|180341|95| -|Vagrant Plowbeasts|Conflux|U|180344|129| -|Suicidal Charge|Conflux|C|180345|128| -|Nimbus Wings|Zendikar|C|180346|28| -|Kabira Evangel|Zendikar|R|180347|15| -|Hedron Crab|Zendikar|U|180348|47| -|Bladetusk Boar|Zendikar|C|180350|118| -|Magma Rift|Zendikar|C|180352|136| -|Narrow Escape|Zendikar|C|180360|27| -|Frontier Guide|Zendikar|U|180361|161| -|Blood Seeker|Zendikar|C|180362|80| -|Harrow|Zendikar|C|180408|165| -|Goblin Ruinblaster|Zendikar|U|180411|127| -|Horizon Drake|Worldwake|U|180412|30| -|Mindless Null|Zendikar|C|180415|103| -|Crusher Zendikon|Worldwake|C|180416|78| -|Torch Slinger|Zendikar|C|180423|151| -|Hideous End|Zendikar|C|180435|98| -|Umara Raptor|Zendikar|C|180447|75| -|Quest for the Gravelord|Zendikar|U|180448|108| -|Vastwood Gorger|Zendikar|C|180454|192| -|Scute Mob|Zendikar|R|180455|182| -|Tajuru Archer|Zendikar|U|180457|185| -|Timbermaw Larva|Zendikar|C|180458|189| -|Surrakar Marauder|Zendikar|C|180465|113| -|Highland Berserker|Zendikar|C|180467|132| -|Goblin Shortcutter|Zendikar|C|180473|128| -|Tempest Owl|Zendikar|C|180482|72| -|Reckless Scholar|Zendikar|C|180493|60| -|Spire Barrage|Zendikar|C|180495|150| -|Guul Draz Vampire|Zendikar|C|180498|93| -|Shatterskull Giant|Zendikar|C|180505|148| -|Bold Defense|Zendikar|C|180509|3| -|Child of Alara|Conflux|M|180516|101| -|Karrthus, Tyrant of Jund|Alara Reborn|M|180587|117| -|Wargate|Alara Reborn|R|180592|129| -|Thraximundar|Alara Reborn|M|180595|113| -|Thought Hemorrhage|Alara Reborn|R|180596|47| -|Enigma Sphinx|Alara Reborn|R|180597|106| -|Sovereigns of Lost Alara|Alara Reborn|R|180600|12| -|Sages of the Anima|Alara Reborn|R|180601|103| -|Predatory Advantage|Alara Reborn|R|180602|58| -|Cerodon Yearling|Alara Reborn|C|180604|96| -|Jenara, Asura of War|Alara Reborn|M|180605|128| -|Leonin Armorguard|Alara Reborn|C|180606|72| -|Sen Triplets|Alara Reborn|M|180607|109| -|Aven Mimeomancer|Alara Reborn|R|180608|2| -|Finest Hour|Alara Reborn|R|180609|126| -|Spellbound Dragon|Alara Reborn|R|180611|90| -|Lavalanche|Alara Reborn|R|180612|118| -|Maelstrom Pulse|Alara Reborn|R|180613|92| -|Dauntless Escort|Alara Reborn|R|180614|67| -|Dragon Appeasement|Alara Reborn|U|180616|115| -|Lightning Reaver|Alara Reborn|R|180617|42| -|Tainted Sigil|Alara Reborn|U|180618|83| -|Vedalken Heretic|Alara Reborn|R|180619|104| -|Mayael's Aria|Alara Reborn|R|180620|121| -|Deathbringer Thoctar|Alara Reborn|R|180622|36| -|Knotvine Paladin|Alara Reborn|R|180624|71| -|Madrush Cyclops|Alara Reborn|R|180625|119| -|Sedraxis Alchemist|Conflux|C|182306|54| -|Court Homunculus|Conflux|C|182607|6| -|Faerie Mechanist|Conflux|C|182608|27| -|Maniacal Rage|Conflux|C|182609|68| -|Fieldmist Borderpost|Alara Reborn|C|183005|5| -|Offering to Asha|Alara Reborn|C|183007|9| -|Soul Manipulation|Alara Reborn|C|183008|29| -|Vedalken Ghoul|Alara Reborn|C|183010|32| -|Necromancer's Covenant|Alara Reborn|R|183011|82| -|Marrow Chomper|Alara Reborn|U|183014|93| -|Thopter Foundry|Alara Reborn|U|183017|133| -|Obelisk of Alara|Conflux|R|183018|140| -|Sludge Strider|Conflux|U|183019|126| -|Nacatl Savage|Conflux|C|183022|86| -|Elder Mastery|Conflux|U|183024|104| -|Scarland Thrinax|Conflux|U|183025|123| -|Controlled Instincts|Conflux|U|183053|23| -|Corrupted Roots|Conflux|U|183054|41| -|Celestial Purge|Conflux|U|183055|5| -|Ignite Disorder|Conflux|U|183056|66| -|View from Above|Conflux|U|183058|38| -|Vectis Agents|Conflux|C|183063|131| -|Apocalypse Hydra|Conflux|M|183068|98| -|Zektar Shrine Expedition|Zendikar|C|183403|155| -|Mold Shambler|Zendikar|C|183414|169| -|Caller of Gales|Zendikar|C|183417|43| -|Guul Draz Specter|Zendikar|R|183418|92| -|Godtracker of Jund|Alara Reborn|C|183994|55| -|Aeolipile|Masters Edition II|C|184464|202| -|Deep Spawn|Masters Edition II|R|184477|45| -|Dwarven Ruins|Masters Edition II|U|184478|227| -|Ebon Praetor|Masters Edition II|R|184482|89| -|Ebon Stronghold|Masters Edition II|U|184483|228| -|Elvish Farmer|Masters Edition II|R|184484|156| -|Feral Thallid|Masters Edition II|C|184485|161| -|Havenwood Battleground|Masters Edition II|U|184486|230| -|Aysen Bureaucrats|Masters Edition II|C|184490|6| -|Icatian Phalanx|Masters Edition II|C|184491|16| -|Orcish Captain|Masters Edition II|U|184505|139| -|Ruins of Trokair|Masters Edition II|U|184516|234| -|Soul Exchange|Masters Edition II|U|184517|111| -|Spore Flower|Masters Edition II|U|184521|177| -|Svyelunite Temple|Masters Edition II|U|184522|237| -|Thallid Devourer|Masters Edition II|C|184527|181| -|Thelonite Druid|Masters Edition II|R|184528|182| -|Balduvian Trading Post|Masters Edition II|R|184533|226| -|Bounty of the Hunt|Masters Edition II|R|184534|154| -|Death Spark|Masters Edition II|C|184537|123| -|Dystopia|Masters Edition II|R|184538|88| -|Woolly Spider|Masters Edition II|U|184539|189| -|Elvish Spirit Guide|Masters Edition II|U|184542|159| -|Ambush Party|Masters Edition II|C|184543|115| -|Gustha's Scepter|Masters Edition II|R|184548|209| -|Heart of Yavimaya|Masters Edition II|R|184549|231| -|Helm of Obedience|Masters Edition II|R|184550|210| -|Ivory Gargoyle|Masters Edition II|R|184551|19| -|Juniper Order Advocate|Masters Edition II|U|184552|20| -|Kaysa|Masters Edition II|R|184553|170| -|Kjeldoran Home Guard|Masters Edition II|U|184554|22| -|Kjeldoran Outpost|Masters Edition II|R|184555|233| -|Krovikan Horror|Masters Edition II|R|184556|101| -|Lodestone Bauble|Masters Edition II|R|184559|213| -|Mishra's Groundbreaker|Masters Edition II|U|184560|215| -|Nature's Wrath|Masters Edition II|R|184561|172| -|Phyrexian Devourer|Masters Edition II|U|184563|216| -|Phyrexian Portal|Masters Edition II|R|184564|217| -|Pillage|Masters Edition II|U|184567|146| -|Ritual of the Machine|Masters Edition II|R|184570|109| -|Rogue Skycaptain|Masters Edition II|R|184571|149| -|Scars of the Veteran|Masters Edition II|R|184572|34| -|Forbidden Lore|Masters Edition II|U|184573|163| -|Soldevi Digger|Masters Edition II|U|184574|221| -|Soldevi Excavations|Masters Edition II|R|184575|236| -|Fyndhorn Pollen|Masters Edition II|R|184580|166| -|Storm Elemental|Masters Edition II|U|184581|68| -|Thought Lash|Masters Edition II|R|184582|70| -|Whirling Catapult|Masters Edition II|U|184583|224| -|Winter's Night|Masters Edition II|R|184584|200| -|Abbey Gargoyles|Masters Edition II|U|184585|1| -|An-Zerrin Ruins|Masters Edition II|R|184586|117| -|Aysen Crusader|Masters Edition II|U|184587|7| -|Grandmother Sengir|Masters Edition II|R|184588|93| -|Broken Visage|Masters Edition II|U|184589|81| -|Clockwork Steed|Masters Edition II|U|184590|205| -|Ihsan's Shade|Masters Edition II|R|184591|95| -|Joven's Ferrets|Masters Edition II|U|184592|169| -|Marjhan|Masters Edition II|R|184593|54| -|Narwhal|Masters Edition II|U|184594|57| -|Retribution|Masters Edition II|U|184595|148| -|Roterothopter|Masters Edition II|C|184596|218| -|Reinforcements|Masters Edition II|C|184597|28| -|Wall of Kelp|Masters Edition II|C|184598|74| -|Adarkar Sentinel|Masters Edition II|C|184599|201| -|Anarchy|Masters Edition II|R|184600|116| -|Ashen Ghoul|Masters Edition II|U|184601|78| -|Elvish Hunter|Masters Edition II|C|184602|157| -|Balduvian Conjurer|Masters Edition II|C|184603|40| -|Barbed Sextant|Masters Edition II|C|184604|204| -|Binding Grasp|Masters Edition II|R|184605|41| -|Brainstorm|Masters Edition II|C|184606|42| -|Caribou Range|Masters Edition II|R|184607|8| -|Sacred Boon|Masters Edition II|U|184608|33| -|Conquer|Masters Edition II|U|184609|122| -|Soul Kiss|Masters Edition II|U|184611|112| -|Dance of the Dead|Masters Edition II|U|184612|83| -|Dark Banishing|Masters Edition II|C|184613|84| -|Demonic Consultation|Masters Edition II|U|184614|85| -|Despotic Scepter|Masters Edition II|R|184615|206| -|Diabolic Vision|Masters Edition II|U|184616|191| -|Dreams of the Dead|Masters Edition II|R|184618|46| -|Elemental Augury|Masters Edition II|R|184619|193| -|Elkin Bottle|Masters Edition II|R|184620|207| -|Energy Storm|Masters Edition II|R|184621|11| -|Enervate|Masters Edition II|C|184622|47| -|Folk of the Pines|Masters Edition II|C|184623|162| -|Forgotten Lore|Masters Edition II|U|184624|164| -|Foul Familiar|Masters Edition II|C|184625|90| -|Fumarole|Masters Edition II|U|184626|194| -|Gangrenous Zombies|Masters Edition II|C|184627|92| -|Wings of Aesthir|Masters Edition II|U|184628|199| -|Giant Trap Door Spider|Masters Edition II|U|184630|195| -|Glacial Chasm|Masters Edition II|R|184631|229| -|Glacial Crevasses|Masters Edition II|R|184632|127| -|Ice Floe|Masters Edition II|U|184633|232| -|Icequake|Masters Edition II|C|184634|94| -|Inheritance|Masters Edition II|U|184635|18| -|Incinerate|Masters Edition II|C|184636|131| -|Infernal Darkness|Masters Edition II|R|184637|97| -|Jester's Mask|Masters Edition II|R|184638|211| -|Jeweled Amulet|Masters Edition II|U|184639|212| -|Johtull Wurm|Masters Edition II|U|184640|168| -|Kjeldoran Dead|Masters Edition II|C|184641|98| -|Kjeldoran Elite Guard|Masters Edition II|C|184642|21| -|Farrel's Mantle|Masters Edition II|U|184643|13| -|Kjeldoran Skycaptain|Masters Edition II|C|184644|23| -|Knight of Stromgald|Masters Edition II|U|184645|99| -|Krovikan Sorcerer|Masters Edition II|C|184646|51| -|Krovikan Vampire|Masters Edition II|U|184647|102| -|Lava Burst|Masters Edition II|U|184648|134| -|Lost Order of Jarkeld|Masters Edition II|R|184649|24| -|Meteor Shower|Masters Edition II|C|184650|135| -|Necropotence|Masters Edition II|R|184651|107| -|Orcish Cannoneers|Masters Edition II|U|184652|138| -|Orcish Conscripts|Masters Edition II|C|184653|140| -|Orcish Farmer|Masters Edition II|C|184654|141| -|Stone Spirit|Masters Edition II|U|184655|150| -|Orcish Lumberjack|Masters Edition II|C|184656|142| -|Orcish Squatters|Masters Edition II|R|184657|143| -|Order of the Sacred Torch|Masters Edition II|R|184658|25| -|Order of the White Shield|Masters Edition II|U|184659|26| -|Sea Spirit|Masters Edition II|U|184660|65| -|Portent|Masters Edition II|C|184661|60| -|Ray of Command|Masters Edition II|U|184663|61| -|Ritual of Subdual|Masters Edition II|R|184664|174| -|Sibilant Spirit|Masters Edition II|R|184665|67| -|Skeleton Ship|Masters Edition II|R|184666|197| -|Skull Catapult|Masters Edition II|U|184667|219| -|Soldevi Simulacrum|Masters Edition II|U|184668|222| -|Cloak of Confusion|Masters Edition II|C|184669|82| -|Stampede|Masters Edition II|U|184670|178| -|Funeral March|Masters Edition II|C|184671|91| -|Storm Spirit|Masters Edition II|R|184672|198| -|Stromgald Cabal|Masters Edition II|R|184673|113| -|Stunted Growth|Masters Edition II|R|184674|179| -|Swords to Plowshares|Masters Edition II|U|184675|37| -|Thermokarst|Masters Edition II|C|184676|183| -|Time Bomb|Masters Edition II|R|184677|223| -|Tinder Wall|Masters Edition II|C|184678|184| -|Wiitigo|Masters Edition II|R|184679|186| -|Wind Spirit|Masters Edition II|U|184680|75| -|Withering Wisps|Masters Edition II|U|184681|114| -|Woolly Mammoths|Masters Edition II|C|184682|188| -|Zuran Spellcaster|Masters Edition II|C|184683|76| -|Armor Thrull|Masters Edition II|C|184684|77| -|Brassclaw Orcs|Masters Edition II|C|184685|119| -|Combat Medic|Masters Edition II|C|184686|9| -|Counterspell|Masters Edition II|U|184687|44| -|Shrink|Masters Edition II|C|184688|175| -|Disenchant|Masters Edition II|C|184689|10| -|Goblin Ski Patrol|Masters Edition II|C|184690|128| -|Elvish Ranger|Masters Edition II|C|184691|158| -|Giant Growth|Masters Edition II|C|184692|167| -|Gorilla Shaman|Masters Edition II|U|184693|129| -|Stonehands|Masters Edition II|C|184694|151| -|Icatian Javelineers|Masters Edition II|C|184695|15| -|Icatian Scout|Masters Edition II|C|184696|17| -|Lat-Nam's Legacy|Masters Edition II|C|184697|52| -|Misinformation|Masters Edition II|U|184698|105| -|Necrite|Masters Edition II|C|184699|106| -|Night Soil|Masters Edition II|U|184700|173| -|Orcish Veteran|Masters Edition II|C|184701|144| -|Shield Bearer|Masters Edition II|C|184702|35| -|Dry Spell|Masters Edition II|C|184703|87| -|Snow Fortress|Masters Edition II|U|184705|220| -|Viscerid Armor|Masters Edition II|C|184706|72| -|Reprisal|Masters Edition II|C|184707|29| -|Phantasmal Mount|Masters Edition II|C|184708|59| -|Elven Lyre|Masters Edition II|C|184709|208| -|Spore Cloud|Masters Edition II|U|184710|176| -|Thallid|Masters Edition II|C|184711|180| -|Aurochs|Masters Edition II|C|184712|153| -|Karplusan Giant|Masters Edition II|U|184713|133| -|Lim-Dϋl's High Guard|Masters Edition II|U|184714|103| -|Royal Decree|Masters Edition II|R|184715|31| -|Imperial Recruiter|Masters Edition II|R|184716|130| -|Imperial Seal|Masters Edition II|R|184717|96| -|Essence Filter|Masters Edition II|U|184718|160| -|Warning|Masters Edition II|C|184719|38| -|Varchild's Crusader|Masters Edition II|C|184720|152| -|Shyft|Masters Edition II|C|184721|66| -|Ζther Storm|Masters Edition II|U|184722|39| -|Fire Dragon|Masters Edition II|R|184723|125| -|Ravages of War|Masters Edition II|R|184724|27| -|Red Cliffs Armada|Masters Edition II|C|184725|62| -|Armor of Faith|Masters Edition II|C|184726|4| -|Mudslide|Masters Edition II|R|184727|136| -|Armored Griffin|Masters Edition II|C|184728|5| -|Farrel's Zealot|Masters Edition II|U|184729|14| -|Errand of Duty|Masters Edition II|U|184730|12| -|Essence Flare|Masters Edition II|C|184731|48| -|Magus of the Unseen|Masters Edition II|R|184732|53| -|Iceberg|Masters Edition II|U|184733|49| -|Drift of the Dead|Masters Edition II|C|184734|86| -|Balduvian Dead|Masters Edition II|U|184735|79| -|Brine Shaman|Masters Edition II|C|184736|80| -|Krovikan Fetish|Masters Edition II|C|184737|100| -|Screeching Drake|Masters Edition II|C|184738|63| -|Thunder Wall|Masters Edition II|U|184739|71| -|Minion of Leshrac|Masters Edition II|R|184740|104| -|Errantry|Masters Edition II|C|184741|124| -|Panic|Masters Edition II|C|184742|145| -|Flame Spirit|Masters Edition II|U|184743|126| -|Sustaining Spirit|Masters Edition II|R|184744|36| -|Songs of the Damned|Masters Edition II|C|184745|110| -|Angel of Fury|Masters Edition II|R|184746|2| -|Mesmeric Trance|Masters Edition II|R|184747|55| -|Badlands|Masters Edition II|R|184748|225| -|Savannah|Masters Edition II|R|184749|235| -|Taiga|Masters Edition II|R|184750|238| -|Tundra|Masters Edition II|R|184751|239| -|Underground Sea|Masters Edition II|R|184752|240| -|Angel of Light|Masters Edition II|U|184753|3| -|Icy Prison|Masters Edition II|C|184754|50| -|Musician|Masters Edition II|R|184755|56| -|Righteous Fury|Masters Edition II|R|184756|30| -|Balduvian Hydra|Masters Edition II|R|184757|118| -|Royal Trooper|Masters Edition II|C|184758|32| -|Ironclaw Orcs|Masters Edition II|C|184759|132| -|Ashnod's Cylix|Masters Edition II|R|184760|203| -|Browse|Masters Edition II|U|184761|43| -|Burnout|Masters Edition II|U|184762|121| -|Pyrokinesis|Masters Edition II|R|184763|147| -|Viscerid Drone|Masters Edition II|U|184764|73| -|Yavimaya Ancients|Masters Edition II|U|184765|190| -|Brimstone Dragon|Masters Edition II|R|184767|120| -|Whiteout|Masters Edition II|C|184768|185| -|Sea Drake|Masters Edition II|R|184769|64| -|Temporal Manipulation|Masters Edition II|R|184770|69| -|Fungal Bloom|Masters Edition II|R|184771|165| -|Leaping Lizard|Masters Edition II|C|184772|171| -|Mana Crypt|Masters Edition II|R|184773|214| -|Orc General|Masters Edition II|U|184774|137| -|Personal Tutor|Masters Edition II|U|184775|58| -|Earthlink|Masters Edition II|R|184776|192| -|Carapace|Masters Edition II|C|184777|155| -|Wolf Pack|Masters Edition II|R|184778|187| -|Nature's Blessing|Masters Edition II|U|184779|196| -|Snow-Covered Forest|Masters Edition II|L|184812|245| -|Snow-Covered Island|Masters Edition II|L|184813|242| -|Snow-Covered Mountain|Masters Edition II|L|184814|244| -|Snow-Covered Plains|Masters Edition II|L|184815|241| -|Snow-Covered Swamp|Masters Edition II|L|184816|243| -|Esper Cormorants|Conflux|C|184983|105| -|Valiant Guard|Conflux|C|184984|19| -|Molten Frame|Conflux|C|184988|69| -|Scepter of Insight|Conflux|R|184989|33| -|Ember Weaver|Conflux|C|184990|81| -|Shambling Remains|Conflux|U|184991|124| -|Aven Squire|Conflux|C|184992|3| -|Frontline Sage|Conflux|C|184993|28| -|Canyon Minotaur|Conflux|C|184994|60| -|Tukatongue Thallid|Conflux|C|184995|96| -|Deny Reality|Alara Reborn|C|185045|19| -|Enlisted Wurm|Alara Reborn|U|185047|68| -|Monstrous Carabid|Alara Reborn|C|185051|43| -|Bloodbraid Elf|Alara Reborn|U|185053|50| -|Ardent Plea|Alara Reborn|U|185054|1| -|Violent Outburst|Alara Reborn|C|185056|63| -|Bituminous Blast|Alara Reborn|U|185057|34| -|Kathari Remnant|Alara Reborn|U|185060|23| -|Demonic Dread|Alara Reborn|C|185062|38| -|Shield of the Righteous|Alara Reborn|U|185063|11| -|Captured Sunlight|Alara Reborn|C|185064|66| -|Maelstrom Archangel|Conflux|M|185136|115| -|Soul's Majesty|Conflux|R|185137|92| -|Zombie Outlander|Conflux|C|185138|133| -|Nacatl Outlander|Conflux|C|185140|119| -|Vedalken Outlander|Conflux|C|185141|132| -|Goblin Outlander|Conflux|C|185142|109| -|Dark Temper|Conflux|C|185143|61| -|Valeron Outlander|Conflux|C|185144|130| -|Greenweaver Druid|Zendikar|U|185694|164| -|Oran-Rief Recluse|Zendikar|C|185696|173| -|Caravan Hurda|Zendikar|C|185697|5| -|Gatekeeper of Malakir|Zendikar|U|185698|89| -|Nissa's Chosen|Zendikar|C|185699|171| -|Goblin War Paint|Zendikar|C|185701|129| -|Beast Hunt|Zendikar|C|185703|158| -|Kalitas, Bloodchief of Ghet|Zendikar|M|185704|99| -|Vampire Nighthawk|Zendikar|U|185707|116| -|Sphinx of Jwar Isle|Zendikar|R|185709|68| -|Ior Ruin Expedition|Zendikar|C|185711|49| -|Roil Elemental|Zendikar|R|185712|62| -|Hellkite Charger|Zendikar|R|185727|131| -|Brave the Elements|Zendikar|U|185734|4| -|Oracle of Mul Daya|Zendikar|R|185737|172| -|Felidar Sovereign|Zendikar|M|185743|12| -|Lotus Cobra|Zendikar|M|185749|168| -|Sphinx of Lost Truths|Zendikar|R|185751|69| -|Halo Hunter|Zendikar|R|185752|96| -|Quietus Spike|Shards of Alara|R|185774|217| -|Rakka Mar|Conflux|R|185810|71| -|Gwafa Hazid, Profiteer|Conflux|R|185811|110| -|Malfegor|Conflux|M|185812|117| -|Chandra Nalaar|Duel Decks: Jace vs. Chandra|M|185815|34| -|Jace Beleren|Duel Decks: Jace vs. Chandra|M|185816|1| -|Seal of Fire|Duel Decks: Jace vs. Chandra|C|185817|50| -|Incinerate|Duel Decks: Jace vs. Chandra|C|185818|51| -|Fact or Fiction|Duel Decks: Jace vs. Chandra|U|185819|26| -|Counterspell|Duel Decks: Jace vs. Chandra|C|185820|24| -|Scattershot Archer|Conflux|C|185828|90| -|Spore Burst|Conflux|U|185829|93| -|Day of Judgment|Zendikar|R|186309|9| -|Savage Silhouette|Zendikar|C|186316|181| -|Khalni Heart Expedition|Zendikar|C|186320|167| -|Terra Stomper|Zendikar|R|186321|187| -|Cosi's Trickster|Zendikar|R|186322|45| -|Mark of Mutiny|Zendikar|U|186324|137| -|Countersquall|Conflux|U|186327|103| -|Scornful Ζther-Lich|Conflux|U|186328|34| -|Voracious Dragon|Conflux|R|186329|75| -|Dragonsoul Knight|Conflux|U|186392|62| -|Banefire|Conflux|R|186613|58| -|Giltspire Avenger|Conflux|R|186614|108| -|Mark of Asylum|Conflux|R|186615|10| -|Nyxathid|Conflux|R|186616|49| -|Nemesis of Reason|Alara Reborn|R|188962|28| -|Bant Sojourners|Alara Reborn|C|188963|125| -|Filigree Angel|Alara Reborn|R|188965|6| -|Jund Sojourners|Alara Reborn|C|188966|116| -|Esper Sojourners|Alara Reborn|C|188967|107| -|Esper Stormblade|Alara Reborn|C|188968|132| -|Naya Hushblade|Alara Reborn|C|188969|141| -|Naya Sojourners|Alara Reborn|C|188970|122| -|Slave of Bolas|Alara Reborn|U|188971|136| -|Grixis Sojourners|Alara Reborn|C|188972|112| -|Jund Hackblade|Alara Reborn|C|188973|138| -|Firewild Borderpost|Alara Reborn|C|188974|54| -|Bant Sureblade|Alara Reborn|C|188975|143| -|Grixis Grimblade|Alara Reborn|C|188976|134| -|Landbind Ritual|Zendikar|U|188999|24| -|Cancel|Zendikar|C|189001|44| -|Eternity Vessel|Zendikar|M|189006|200| -|Unstable Frontier|Conflux|U|189078|145| -|Sphinx Summoner|Conflux|R|189079|127| -|Kederekt Parasite|Conflux|R|189080|48| -|Cylian Sunsinger|Conflux|R|189081|80| -|Extractor Demon|Conflux|R|189082|44| -|Scepter of Fugue|Conflux|R|189084|53| -|Telemin Performance|Conflux|R|189085|35| -|Knight of the Reliquary|Conflux|R|189145|113| -|Hellkite Hatchling|Conflux|U|189146|111| -|Font of Mythos|Conflux|R|189147|136| -|Lightkeeper of Emeria|Worldwake|U|189159|12| -|Wolfbriar Elemental|Worldwake|R|189162|118| -|Refraction Trap|Worldwake|U|189163|17| -|Rest for the Weary|Worldwake|C|189180|18| -|Voyager Drake|Worldwake|U|189181|45| -|Ζthersnipe|Duel Decks: Jace vs. Chandra|C|189211|17| -|Flamekin Brawler|Duel Decks: Jace vs. Chandra|C|189212|35| -|Guile|Duel Decks: Jace vs. Chandra|R|189213|14| -|Hostility|Duel Decks: Jace vs. Chandra|R|189214|48| -|Ingot Chewer|Duel Decks: Jace vs. Chandra|C|189215|45| -|Inner-Flame Acolyte|Duel Decks: Jace vs. Chandra|C|189216|41| -|Mulldrifter|Duel Decks: Jace vs. Chandra|C|189217|12| -|Soulbright Flamekin|Duel Decks: Jace vs. Chandra|C|189218|37| -|Fireslinger|Duel Decks: Jace vs. Chandra|C|189219|36| -|Flame Javelin|Duel Decks: Jace vs. Chandra|U|189220|53| -|Pyre Charger|Duel Decks: Jace vs. Chandra|U|189221|38| -|Slith Firewalker|Duel Decks: Jace vs. Chandra|U|189222|39| -|Air Elemental|Duel Decks: Jace vs. Chandra|U|189223|13| -|Bottle Gnomes|Duel Decks: Jace vs. Chandra|U|189224|7| -|Cone of Flame|Duel Decks: Jace vs. Chandra|U|189225|54| -|Flamewave Invoker|Duel Decks: Jace vs. Chandra|U|189226|40| -|Furnace Whelp|Duel Decks: Jace vs. Chandra|U|189227|43| -|Mind Stone|Duel Decks: Jace vs. Chandra|U|189228|22| -|Demonfire|Duel Decks: Jace vs. Chandra|R|189229|57| -|Rakdos Pit Dragon|Duel Decks: Jace vs. Chandra|R|189230|44| -|Fireball|Duel Decks: Jace vs. Chandra|U|189231|56| -|Oxidda Golem|Duel Decks: Jace vs. Chandra|C|189232|46| -|Spire Golem|Duel Decks: Jace vs. Chandra|C|189233|16| -|Flametongue Kavu|Duel Decks: Jace vs. Chandra|U|189234|42| -|Chartooth Cougar|Duel Decks: Jace vs. Chandra|C|189235|47| -|Firebolt|Duel Decks: Jace vs. Chandra|C|189236|49| -|Condescend|Duel Decks: Jace vs. Chandra|C|189237|28| -|Magma Jet|Duel Decks: Jace vs. Chandra|U|189238|52| -|Fireblast|Duel Decks: Jace vs. Chandra|C|189239|55| -|Man-o'-War|Duel Decks: Jace vs. Chandra|C|189240|8| -|Waterspout Djinn|Duel Decks: Jace vs. Chandra|U|189241|11| -|Keldon Megaliths|Duel Decks: Jace vs. Chandra|U|189242|58| -|Martyr of Frost|Duel Decks: Jace vs. Chandra|C|189243|2| -|Ancestral Vision|Duel Decks: Jace vs. Chandra|R|189244|21| -|Brine Elemental|Duel Decks: Jace vs. Chandra|U|189245|18| -|Errant Ephemeron|Duel Decks: Jace vs. Chandra|C|189246|20| -|Fathom Seer|Duel Decks: Jace vs. Chandra|C|189247|3| -|Fledgling Mawcor|Duel Decks: Jace vs. Chandra|U|189248|10| -|Riftwing Cloudskate|Duel Decks: Jace vs. Chandra|U|189249|15| -|Voidmage Apprentice|Duel Decks: Jace vs. Chandra|C|189250|4| -|Wall of Deceit|Duel Decks: Jace vs. Chandra|U|189251|5| -|Willbender|Duel Decks: Jace vs. Chandra|U|189252|6| -|Ophidian|Duel Decks: Jace vs. Chandra|C|189253|9| -|Quicksilver Dragon|Duel Decks: Jace vs. Chandra|R|189254|19| -|Daze|Duel Decks: Jace vs. Chandra|C|189255|23| -|Terrain Generator|Duel Decks: Jace vs. Chandra|U|189256|29| -|Repulse|Duel Decks: Jace vs. Chandra|C|189257|25| -|Gush|Duel Decks: Jace vs. Chandra|C|189258|27| -|Mana Cylix|Conflux|C|189269|138| -|Bone Saw|Conflux|C|189270|135| -|Ancient Ziggurat|Conflux|U|189271|141| -|Kaleidostone|Conflux|C|189272|137| -|Exotic Orchard|Conflux|R|189273|142| -|Exploding Borders|Conflux|C|189378|106| -|Zendikar Farguide|Zendikar|C|189620|194| -|Grazing Gladehart|Zendikar|C|189621|163| -|Ruinous Minotaur|Zendikar|C|189624|145| -|Merfolk Seastalkers|Zendikar|U|189625|55| -|Sejiri Refuge|Zendikar|U|189626|224| -|Jwar Isle Refuge|Zendikar|U|189627|215| -|Feast of Blood|Zendikar|U|189629|88| -|Graypelt Refuge|Zendikar|U|189631|214| -|Kazandu Refuge|Zendikar|U|189635|217| -|Living Tsunami|Zendikar|U|189636|52| -|Kor Outfitter|Zendikar|C|189637|21| -|Akoum Refuge|Zendikar|U|189638|210| -|Veinfire Borderpost|Alara Reborn|C|189640|48| -|Sphinx of the Steel Wind|Alara Reborn|M|189641|110| -|Knight of New Alara|Alara Reborn|R|189642|70| -|Messenger Falcons|Alara Reborn|U|189644|145| -|Uril, the Miststalker|Alara Reborn|M|189645|124| -|Defiler of Souls|Alara Reborn|M|189646|37| -|Grizzled Leotau|Alara Reborn|C|189647|69| -|Dragon Broodmother|Alara Reborn|M|189648|53| -|Time Sieve|Alara Reborn|R|189649|31| -|Rhox Brute|Alara Reborn|C|189650|59| -|Unscythe, Killer of Kings|Alara Reborn|R|189651|114| -|Arsenal Thresher|Alara Reborn|C|189652|131| -|Cloven Casting|Alara Reborn|R|189653|86| -|Gloryscale Viashino|Alara Reborn|U|189654|120| -|Paleoloth|Conflux|R|189873|88| -|Wall of Reverence|Conflux|R|189874|20| -|Solemn Offering|Magic 2010|C|189875|33| -|Fabricate|Magic 2010|U|189876|52| -|White Knight|Magic 2010|U|189877|41| -|Llanowar Elves|Magic 2010|C|189878|189| -|Giant Growth|Magic 2010|C|189879|184| -|Acidic Slime|Magic 2010|U|189880|165| -|Enormous Baloth|Magic 2010|U|189882|180| -|Centaur Courser|Magic 2010|C|189883|172| -|Air Elemental|Magic 2010|U|189884|42| -|Xathrid Demon|Magic 2010|M|189885|122| -|Rampant Growth|Magic 2010|C|189887|201| -|Runeclaw Bear|Magic 2010|C|189888|203| -|Emerald Oryx|Magic 2010|C|189890|179| -|Razorfoot Griffin|Magic 2010|C|189891|25| -|Phantom Warrior|Magic 2010|U|189892|66| -|Consume Spirit|Magic 2010|U|189893|89| -|Alluring Siren|Magic 2010|U|189894|43| -|Giant Spider|Magic 2010|C|189895|185| -|Naturalize|Magic 2010|C|189896|195| -|Illusionary Servant|Magic 2010|C|189897|57| -|Cudgel Troll|Magic 2010|U|189898|174| -|Stampeding Rhino|Magic 2010|C|189899|204| -|Prized Unicorn|Magic 2010|U|189900|199| -|Entangling Vines|Magic 2010|C|189901|181| -|Elite Vanguard|Magic 2010|U|189902|9| -|Craw Wurm|Magic 2010|C|189903|173| -|Megrim|Magic 2010|U|189904|104| -|Borderland Ranger|Magic 2010|C|189905|169| -|Overrun|Magic 2010|U|189906|198| -|Awakener Druid|Magic 2010|U|189907|167| -|Howl of the Night Pack|Magic 2010|U|189908|187| -|Mold Adder|Magic 2010|U|189909|194| -|Telepathy|Magic 2010|U|189910|74| -|Divine Verdict|Magic 2010|C|189912|8| -|Bountiful Harvest|Magic 2010|C|189913|170| -|Capricious Efreet|Magic 2010|R|189914|131| -|Bramble Creeper|Magic 2010|C|189915|171| -|Nature's Spiral|Magic 2010|U|189917|196| -|Cancel|Magic 2010|C|189918|44| -|Fog|Magic 2010|C|189919|182| -|Ice Cage|Magic 2010|C|189920|56| -|Mist Leopard|Magic 2010|C|189921|193| -|Oakenform|Magic 2010|C|189922|197| -|Veteran Armorsmith|Magic 2010|C|189923|38| -|Deadly Recluse|Magic 2010|C|189924|175| -|Ponder|Magic 2010|C|190159|68| -|Wall of Frost|Magic 2010|U|190160|80| -|Convincing Mirage|Magic 2010|C|190161|46| -|Snapping Drake|Magic 2010|C|190163|72| -|Negate|Magic 2010|C|190164|65| -|Bog Wraith|Magic 2010|U|190165|86| -|Harm's Way|Magic 2010|U|190166|14| -|Zephyr Sprite|Magic 2010|C|190167|82| -|Flashfreeze|Magic 2010|U|190168|53| -|Serpent of the Endless Sea|Magic 2010|C|190169|70| -|Griffin Sentinel|Magic 2010|C|190170|12| -|Disorient|Magic 2010|C|190171|48| -|Divination|Magic 2010|C|190172|49| -|Excommunicate|Magic 2010|C|190173|10| -|Merfolk Looter|Magic 2010|C|190174|61| -|Safe Passage|Magic 2010|C|190176|28| -|Traumatize|Magic 2010|R|190177|77| -|Horned Turtle|Magic 2010|C|190178|55| -|Lifelink|Magic 2010|C|190180|18| -|Wall of Faith|Magic 2010|C|190182|40| -|Unsummon|Magic 2010|C|190183|79| -|Sleep|Magic 2010|U|190186|71| -|Warp World|Magic 2010|R|190187|163| -|Sage Owl|Magic 2010|C|190188|69| -|Sanguine Bond|Magic 2010|R|190190|111| -|Levitation|Magic 2010|U|190191|60| -|Rise from the Grave|Magic 2010|U|190192|109| -|Cemetery Reaper|Magic 2010|R|190193|87| -|Veteran Swordsmith|Magic 2010|C|190194|39| -|Blinding Mage|Magic 2010|C|190195|5| -|Glorious Charge|Magic 2010|C|190196|11| -|Mind Control|Magic 2010|U|190197|63| -|Djinn of Wishes|Magic 2010|R|190198|50| -|Elemental Shaman|Duel Decks: Jace vs. Chandra|C|190199|1| -|Scalding Tarn|Zendikar|R|190393|223| -|Crypt of Agadeem|Zendikar|R|190394|212| -|Pillarfield Ox|Zendikar|C|190395|31| -|Explorer's Scope|Zendikar|C|190396|202| -|Stonework Puma|Zendikar|C|190397|207| -|Malakir Bloodwitch|Zendikar|R|190398|100| -|Emeria Angel|Zendikar|R|190399|11| -|Valakut, the Molten Pinnacle|Zendikar|R|190400|228| -|Mire Blight|Zendikar|C|190401|104| -|Lullmage Mentor|Zendikar|R|190404|54| -|Spreading Seas|Zendikar|C|190405|70| -|Demolish|Zendikar|C|190406|121| -|Iona, Shield of Emeria|Zendikar|M|190407|13| -|Kazuul Warlord|Zendikar|R|190408|134| -|Trailblazer's Boots|Zendikar|U|190410|208| -|Nissa Revane|Zendikar|M|190411|170| -|Magosi, the Waterveil|Zendikar|R|190412|218| -|Misty Rainforest|Zendikar|R|190413|220| -|Emeria, the Sky Ruin|Zendikar|R|190414|213| -|Oran-Rief, the Vastwood|Zendikar|R|190417|221| -|Windborne Charge|Zendikar|U|190418|38| -|Armament Master|Zendikar|R|190420|1| -|Phantasmal Fiend|Masters Edition II|C|190426|108| -|Diabolic Tutor|Magic 2010|U|190533|91| -|Palace Guard|Magic 2010|C|190534|23| -|Doom Blade|Magic 2010|C|190535|93| -|Kelinore Bat|Magic 2010|C|190536|101| -|Sign in Blood|Magic 2010|C|190537|112| -|Holy Strength|Magic 2010|C|190538|15| -|Weakness|Magic 2010|C|190539|121| -|Black Knight|Magic 2010|U|190540|85| -|Stormfront Pegasus|Magic 2010|C|190543|35| -|Ignite Disorder|Magic 2010|U|190544|141| -|Zombie Goliath|Magic 2010|C|190545|123| -|Unholy Strength|Magic 2010|C|190546|116| -|Howling Banshee|Magic 2010|U|190548|99| -|Angel's Mercy|Magic 2010|C|190549|2| -|Looming Shade|Magic 2010|C|190550|103| -|Earthquake|Magic 2010|R|190551|134| -|Drudge Skeletons|Magic 2010|C|190552|95| -|Mind Rot|Magic 2010|C|190555|105| -|Hive Mind|Magic 2010|R|190556|54| -|Soul Bleed|Magic 2010|C|190557|113| -|Goblin Chieftain|Magic 2010|R|190558|139| -|Disentomb|Magic 2010|C|190559|92| -|Terramorphic Expanse|Magic 2010|C|190560|229| -|Glacial Fortress|Magic 2010|R|190562|226| -|Vampire Aristocrat|Magic 2010|C|190563|117| -|Tempest of Light|Magic 2010|U|190564|36| -|Hypnotic Specter|Magic 2010|R|190566|100| -|Indestructibility|Magic 2010|R|190568|17| -|Gravedigger|Magic 2010|C|190570|97| -|Soul Warden|Magic 2010|C|190571|34| -|Pacifism|Magic 2010|C|190574|22| -|Dread Warlock|Magic 2010|C|190575|94| -|Rhox Pikemaster|Magic 2010|U|190576|26| -|Haunting Echoes|Magic 2010|R|190577|98| -|Wall of Bone|Magic 2010|U|190578|119| -|Acolyte of Xathrid|Magic 2010|C|190579|83| -|Duress|Magic 2010|C|190580|96| -|Deathmark|Magic 2010|U|190581|90| -|Undead Slayer|Magic 2010|U|190582|37| -|Island|Duel Decks: Jace vs. Chandra|L|190583|31| -|Mountain|Duel Decks: Jace vs. Chandra|L|190584|59| -|Mountain|Duel Decks: Jace vs. Chandra|L|190585|62| -|Mountain|Duel Decks: Jace vs. Chandra|L|190586|60| -|Mountain|Duel Decks: Jace vs. Chandra|L|190587|61| -|Island|Duel Decks: Jace vs. Chandra|L|190588|30| -|Island|Duel Decks: Jace vs. Chandra|L|190589|33| -|Island|Duel Decks: Jace vs. Chandra|L|190590|32| -|Sparkmage Apprentice|Magic 2010|C|191053|158| -|Lightning Elemental|Magic 2010|C|191054|147| -|Raging Goblin|Magic 2010|C|191056|153| -|Rootbound Crag|Magic 2010|R|191057|227| -|Honor of the Pure|Magic 2010|R|191058|16| -|Canyon Minotaur|Magic 2010|C|191059|130| -|Dragon Whelp|Magic 2010|U|191060|133| -|Burst of Speed|Magic 2010|C|191061|129| -|Ant Queen|Magic 2010|R|191063|166| -|Master of the Wild Hunt|Magic 2010|M|191064|191| -|Baneslayer Angel|Magic 2010|M|191065|4| -|Drowned Catacomb|Magic 2010|R|191067|224| -|Child of Night|Magic 2010|C|191068|88| -|Captain of the Watch|Magic 2010|R|191070|6| -|Berserkers of Blood Ridge|Magic 2010|C|191071|126| -|Viashino Spearhunter|Magic 2010|C|191072|161| -|Jackal Familiar|Magic 2010|C|191073|143| -|Goblin Piker|Magic 2010|C|191074|140| -|Fiery Hellhound|Magic 2010|C|191075|135| -|Fireball|Magic 2010|U|191076|136| -|Trumpet Blast|Magic 2010|C|191077|160| -|Whispersilk Cloak|Magic 2010|U|191078|221| -|Firebreathing|Magic 2010|C|191079|137| -|Birds of Paradise|Magic 2010|R|191080|168| -|Panic Attack|Magic 2010|C|191081|150| -|Act of Treason|Magic 2010|U|191082|124| -|Silence|Magic 2010|R|191083|31| -|Lava Axe|Magic 2010|C|191084|145| -|Shatter|Magic 2010|C|191086|155| -|Merfolk Sovereign|Magic 2010|R|191087|62| -|Yawning Fissure|Magic 2010|C|191088|164| -|Lightning Bolt|Magic 2010|C|191089|146| -|Inferno Elemental|Magic 2010|U|191090|142| -|Dragonskull Summit|Magic 2010|R|191091|223| -|Goblin Artillery|Magic 2010|U|191092|138| -|Stone Giant|Magic 2010|U|191094|159| -|Seismic Strike|Magic 2010|C|191095|154| -|Burning Inquiry|Magic 2010|C|191096|128| -|Sphinx Ambassador|Magic 2010|M|191098|73| -|Sunpetal Grove|Magic 2010|R|191100|228| -|Prodigal Pyromancer|Magic 2010|U|191102|151| -|Ajani Goldmane|Magic 2010|M|191239|1| -|Jace Beleren|Magic 2010|M|191240|58| -|Liliana Vess|Magic 2010|M|191241|102| -|Chandra Nalaar|Magic 2010|M|191242|132| -|Garruk Wildspeaker|Magic 2010|M|191243|183| -|Dragon's Claw|Magic 2010|U|191244|210| -|Angel's Feather|Magic 2010|U|191245|206| -|Kraken's Eye|Magic 2010|U|191246|213| -|Demon's Horn|Magic 2010|U|191247|209| -|Wurm's Tooth|Magic 2010|U|191248|222| -|Darksteel Colossus|Magic 2010|M|191312|208| -|Platinum Angel|Magic 2010|M|191313|218| -|Coat of Arms|Magic 2010|R|191314|207| -|Howling Mine|Magic 2010|R|191315|212| -|Might of Oaks|Magic 2010|R|191316|192| -|Elvish Piper|Magic 2010|R|191317|177| -|Royal Assassin|Magic 2010|R|191318|110| -|Nightmare|Magic 2010|R|191319|107| -|Shivan Dragon|Magic 2010|R|191320|156| -|Clone|Magic 2010|R|191321|45| -|Twincast|Magic 2010|R|191322|78| -|Mind Spring|Magic 2010|R|191323|64| -|Mind Shatter|Magic 2010|R|191324|106| -|Relentless Rats|Magic 2010|U|191336|108| -|Ornithopter|Magic 2010|U|191337|216| -|Spellbook|Magic 2010|U|191338|220| -|Rod of Ruin|Magic 2010|U|191339|219| -|Bogardan Hellkite|Magic 2010|M|191340|127| -|Righteousness|Magic 2010|U|191341|27| -|Underworld Dreams|Magic 2010|R|191343|115| -|Welkin Tern|Zendikar|C|191353|76| -|Tanglesap|Zendikar|C|191355|186| -|Kazandu Blademaster|Zendikar|U|191356|16| -|Molten Ravager|Zendikar|C|191359|138| -|Summoner's Bane|Zendikar|U|191360|71| -|Heartstabber Mosquito|Zendikar|C|191361|97| -|Warren Instigator|Zendikar|M|191368|154| -|Lorthos, the Tidemaker|Zendikar|M|191369|53| -|Marsh Flats|Zendikar|R|191371|219| -|Blazing Torch|Zendikar|U|191372|197| -|Electropotence|Zendikar|R|191373|122| -|Devout Lightcaster|Zendikar|R|191374|10| -|World Queller|Zendikar|R|191376|39| -|Mesa Enchantress|Magic 2010|R|191378|20| -|Time Warp|Magic 2010|M|191379|75| -|Polymorph|Magic 2010|R|191380|67| -|Swamp|Magic 2010|L|191381|240| -|Plains|Magic 2010|L|191382|231| -|Vampire Nocturnus|Magic 2010|M|191384|118| -|Plains|Magic 2010|L|191385|232| -|Island|Magic 2010|L|191387|234| -|Lurking Predators|Magic 2010|R|191388|190| -|Island|Magic 2010|L|191389|235| -|Island|Magic 2010|L|191390|236| -|Swamp|Magic 2010|L|191391|239| -|Elvish Archdruid|Magic 2010|R|191392|176| -|Ball Lightning|Magic 2010|R|191393|125| -|Kalonian Behemoth|Magic 2010|R|191394|188| -|Plains|Magic 2010|L|191395|230| -|Plains|Magic 2010|L|191396|233| -|Magma Phoenix|Magic 2010|R|191397|148| -|Swamp|Magic 2010|L|191398|241| -|Swamp|Magic 2010|L|191399|238| -|Island|Magic 2010|L|191400|237| -|Mountain|Magic 2010|L|191401|245| -|Mountain|Magic 2010|L|191402|242| -|Mountain|Magic 2010|L|191403|243| -|Mountain|Magic 2010|L|191404|244| -|Forest|Magic 2010|L|191405|246| -|Forest|Magic 2010|L|191406|247| -|Forest|Magic 2010|L|191407|248| -|Forest|Magic 2010|L|191409|249| -|Deathforge Shaman|Worldwake|U|191540|80| -|Snapping Creeper|Worldwake|C|191547|112| -|Grotag Thrasher|Worldwake|C|191548|83| -|Ricochet Trap|Worldwake|U|191549|87| -|Stone Idol Trap|Worldwake|R|191552|93| -|Lodestone Golem|Worldwake|R|191557|127| -|Calcite Snapper|Worldwake|C|191569|25| -|Bloodhusk Ritualist|Worldwake|U|191570|50| -|Amulet of Vigor|Worldwake|R|191577|121| -|Smother|Worldwake|U|191578|68| -|Fledgling Griffin|Worldwake|C|191580|5| -|Jagwasp Swarm|Worldwake|C|191581|58| -|Magebane Armor|Magic 2010|R|191591|214| -|Pithing Needle|Magic 2010|R|191592|217| -|Celestial Purge|Magic 2010|U|191595|7| -|Windstorm|Magic 2010|U|191596|205| -|Gorgon Flail|Magic 2010|U|191597|211| -|Tome Scour|Magic 2010|C|191598|76| -|Planar Cleansing|Magic 2010|R|191599|24| -|Unstable Footing|Zendikar|U|192209|153| -|Ondu Cleric|Zendikar|C|192210|30| -|Sky Ruin Drake|Zendikar|C|192211|66| -|Trapfinder's Trick|Zendikar|C|192212|73| -|Kor Sanctifiers|Zendikar|C|192214|22| -|Hellfire Mongrel|Zendikar|U|192215|130| -|Punishing Fire|Zendikar|U|192217|142| -|Gideon Jura|Rise of the Eldrazi|M|192218|21| -|Ob Nixilis, the Fallen|Zendikar|M|192219|107| -|Grappling Hook|Zendikar|R|192220|203| -|Elemental Appeal|Zendikar|R|192221|123| -|Rampaging Baloths|Zendikar|M|192222|178| -|Trapmaker's Snare|Zendikar|U|192223|74| -|Obsidian Fireheart|Zendikar|M|192224|140| -|Vampire Lacerator|Zendikar|C|192225|115| -|Giant Scorpion|Zendikar|C|192226|90| -|Joraga Bard|Zendikar|C|192227|166| -|Tuktuk Grunts|Zendikar|C|192229|152| -|Bloodghast|Zendikar|R|192230|83| -|Baloth Woodcrasher|Zendikar|U|192231|157| -|Vampire Hexmage|Zendikar|U|192232|114| -|Hedron Scrabbler|Zendikar|C|193394|204| -|Trusty Machete|Zendikar|U|193396|209| -|Blade of the Bloodchief|Zendikar|R|193397|196| -|Eldrazi Monument|Zendikar|M|193398|199| -|Shepherd of the Lost|Zendikar|U|193399|34| -|Verdant Catacombs|Zendikar|R|193400|229| -|Mind Sludge|Zendikar|U|193403|102| -|Arrow Volley Trap|Zendikar|U|193404|2| -|Expedition Map|Zendikar|C|193405|201| -|Carnage Altar|Zendikar|U|193406|198| -|Primal Bellow|Zendikar|U|193407|176| -|Wildheart Invoker|Rise of the Eldrazi|C|193414|213| -|Skeletal Wurm|Rise of the Eldrazi|U|193415|127| -|Umbra Mystic|Rise of the Eldrazi|R|193416|52| -|Nest Invader|Rise of the Eldrazi|C|193420|201| -|Hedron-Field Purists|Rise of the Eldrazi|R|193421|25| -|Lone Missionary|Rise of the Eldrazi|C|193426|34| -|Inquisition of Kozilek|Rise of the Eldrazi|U|193428|115| -|Artisan of Kozilek|Rise of the Eldrazi|U|193429|2| -|Pestilence Demon|Rise of the Eldrazi|R|193431|124| -|Goblin Tunneler|Rise of the Eldrazi|C|193432|148| -|Kabira Vindicator|Rise of the Eldrazi|U|193433|28| -|Spawning Breath|Rise of the Eldrazi|C|193435|164| -|Angelheart Vial|Rise of the Eldrazi|R|193436|215| -|Ancient Stirrings|Rise of the Eldrazi|C|193437|174| -|Naturalize|Rise of the Eldrazi|C|193439|199| -|Champion's Drake|Rise of the Eldrazi|C|193440|56| -|Keening Stone|Rise of the Eldrazi|R|193441|219| -|Brimstone Mage|Rise of the Eldrazi|U|193442|137| -|Venerated Teacher|Rise of the Eldrazi|C|193443|93| -|Demonic Appetite|Rise of the Eldrazi|C|193444|106| -|Guard Duty|Rise of the Eldrazi|C|193445|23| -|Curse of Wizardry|Rise of the Eldrazi|U|193447|104| -|Time of Heroes|Rise of the Eldrazi|U|193448|49| -|Tajuru Preserver|Rise of the Eldrazi|R|193451|211| -|Emrakul, the Aeons Torn|Rise of the Eldrazi|M|193452|4| -|Magmaw|Rise of the Eldrazi|R|193453|158| -|Rage Nimbus|Rise of the Eldrazi|R|193454|160| -|Thought Gorger|Rise of the Eldrazi|R|193455|129| -|Unified Will|Rise of the Eldrazi|U|193456|92| -|Gravitational Shift|Rise of the Eldrazi|R|193458|69| -|Joraga Treespeaker|Rise of the Eldrazi|U|193462|190| -|Lightmine Field|Rise of the Eldrazi|R|193463|32| -|Jaddi Lifestrider|Rise of the Eldrazi|U|193464|189| -|Bramblesnap|Rise of the Eldrazi|U|193465|180| -|Near-Death Experience|Rise of the Eldrazi|R|193467|38| -|Conquering Manticore|Rise of the Eldrazi|R|193468|139| -|Lay Bare|Rise of the Eldrazi|C|193469|74| -|Jwari Scuttler|Rise of the Eldrazi|C|193470|73| -|Nirkana Revenant|Rise of the Eldrazi|M|193472|120| -|Splinter Twin|Rise of the Eldrazi|R|193474|165| -|Consume the Meek|Rise of the Eldrazi|R|193475|100| -|Frostwind Invoker|Rise of the Eldrazi|C|193476|68| -|Aura Gnarlid|Rise of the Eldrazi|C|193478|175| -|Explosive Revelation|Rise of the Eldrazi|U|193479|143| -|Vent Sentinel|Rise of the Eldrazi|C|193480|171| -|Kargan Dragonlord|Rise of the Eldrazi|M|193482|152| -|Evolving Wilds|Rise of the Eldrazi|C|193483|228| -|World at War|Rise of the Eldrazi|R|193484|172| -|Emrakul's Hatcher|Rise of the Eldrazi|C|193485|142| -|Nighthaze|Rise of the Eldrazi|C|193487|118| -|Living Destiny|Rise of the Eldrazi|C|193489|195| -|Training Grounds|Rise of the Eldrazi|R|193490|91| -|Mnemonic Wall|Rise of the Eldrazi|C|193491|78| -|Eldrazi Conscription|Rise of the Eldrazi|R|193492|3| -|Eel Umbra|Rise of the Eldrazi|C|193495|65| -|Grotag Siege-Runner|Rise of the Eldrazi|C|193496|149| -|Momentous Fall|Rise of the Eldrazi|R|193497|197| -|Soul's Attendant|Rise of the Eldrazi|C|193499|44| -|Crab Umbra|Rise of the Eldrazi|U|193500|58| -|Dreamstone Hedron|Rise of the Eldrazi|U|193501|216| -|Gelatinous Genesis|Rise of the Eldrazi|R|193503|183| -|Merfolk Skyscout|Rise of the Eldrazi|U|193505|77| -|Akoum Boulderfoot|Rise of the Eldrazi|U|193506|134| -|Awakening Zone|Rise of the Eldrazi|R|193507|176| -|Boar Umbra|Rise of the Eldrazi|U|193509|179| -|Arrogant Bloodlord|Rise of the Eldrazi|U|193511|94| -|Forked Bolt|Rise of the Eldrazi|U|193512|146| -|Gloomhunter|Rise of the Eldrazi|C|193513|111| -|Makindi Griffin|Rise of the Eldrazi|C|193514|36| -|Cadaver Imp|Rise of the Eldrazi|C|193515|99| -|Ogre's Cleaver|Rise of the Eldrazi|U|193517|220| -|Lust for War|Rise of the Eldrazi|U|193518|157| -|Deprive|Rise of the Eldrazi|C|193519|59| -|Induce Despair|Rise of the Eldrazi|C|193520|114| -|Battle-Rattle Shaman|Rise of the Eldrazi|C|193523|136| -|Stalwart Shield-Bearers|Rise of the Eldrazi|C|193525|46| -|Growth Spasm|Rise of the Eldrazi|C|193526|186| -|Irresistible Prey|Rise of the Eldrazi|U|193527|188| -|Pennon Blade|Rise of the Eldrazi|U|193528|221| -|Survival Cache|Rise of the Eldrazi|U|193531|48| -|Shrivel|Rise of the Eldrazi|C|193534|126| -|Spawnsire of Ulamog|Rise of the Eldrazi|R|193535|11| -|Hedron Matrix|Rise of the Eldrazi|R|193536|218| -|Sporecap Spider|Rise of the Eldrazi|C|193537|209| -|Bloodrite Invoker|Rise of the Eldrazi|C|193538|97| -|Mammoth Umbra|Rise of the Eldrazi|U|193541|37| -|Dread Drone|Rise of the Eldrazi|C|193542|108| -|Zof Shade|Rise of the Eldrazi|C|193543|132| -|Kor Spiritdancer|Rise of the Eldrazi|R|193544|31| -|Wall of Omens|Rise of the Eldrazi|U|193545|53| -|Last Kiss|Rise of the Eldrazi|C|193546|116| -|Might of the Masses|Rise of the Eldrazi|C|193547|196| -|Luminous Wake|Rise of the Eldrazi|U|193549|35| -|Kor Line-Slinger|Rise of the Eldrazi|C|193550|30| -|Khalni Hydra|Rise of the Eldrazi|M|193551|192| -|Valakut Fireboar|Rise of the Eldrazi|U|193552|170| -|Battle Rampart|Rise of the Eldrazi|C|193554|135| -|Vengevine|Rise of the Eldrazi|M|193556|212| -|Glory Seeker|Rise of the Eldrazi|C|193557|22| -|Dawnglare Invoker|Rise of the Eldrazi|C|193558|16| -|Wrap in Flames|Rise of the Eldrazi|C|193563|173| -|Prey's Vengeance|Rise of the Eldrazi|U|193565|205| -|Puncturing Light|Rise of the Eldrazi|C|193566|41| -|Stomper Cub|Rise of the Eldrazi|C|193567|210| -|Haze Frog|Rise of the Eldrazi|C|193569|187| -|Staggershock|Rise of the Eldrazi|C|193571|166| -|Raid Bombardment|Rise of the Eldrazi|C|193573|161| -|Soulsurge Elemental|Rise of the Eldrazi|U|193575|163| -|See Beyond|Rise of the Eldrazi|C|193577|86| -|Disaster Radius|Rise of the Eldrazi|R|193579|141| -|Renegade Doppelganger|Rise of the Eldrazi|R|193582|84| -|Ogre Sentry|Rise of the Eldrazi|C|193583|159| -|Dormant Gomazoa|Rise of the Eldrazi|R|193584|62| -|Snake Umbra|Rise of the Eldrazi|C|193585|207| -|Lighthouse Chronologist|Rise of the Eldrazi|M|193590|75| -|Skywatcher Adept|Rise of the Eldrazi|C|193591|88| -|Drana, Kalastria Bloodchief|Rise of the Eldrazi|R|193593|107| -|Narcolepsy|Rise of the Eldrazi|C|193594|79| -|Smite|Rise of the Eldrazi|C|193595|43| -|Sphinx-Bone Wand|Rise of the Eldrazi|R|193596|225| -|Student of Warfare|Rise of the Eldrazi|R|193598|47| -|Aura Finesse|Rise of the Eldrazi|C|193599|54| -|Domestication|Rise of the Eldrazi|U|193600|61| -|Guard Gomazoa|Rise of the Eldrazi|U|193602|70| -|Regress|Rise of the Eldrazi|C|193603|83| -|Realms Uncharted|Rise of the Eldrazi|R|193605|206| -|Pathrazer of Ulamog|Rise of the Eldrazi|U|193607|9| -|Contaminated Ground|Rise of the Eldrazi|C|193608|102| -|Overgrown Battlement|Rise of the Eldrazi|C|193610|203| -|Kazandu Tuskcaller|Rise of the Eldrazi|R|193611|191| -|Guul Draz Assassin|Rise of the Eldrazi|R|193612|112| -|Skittering Invasion|Rise of the Eldrazi|U|193614|10| -|Soulbound Guardians|Rise of the Eldrazi|U|193615|45| -|Hand of Emrakul|Rise of the Eldrazi|C|193616|5| -|Suffer the Past|Rise of the Eldrazi|U|193619|128| -|Pelakka Wurm|Rise of the Eldrazi|U|193621|204| -|Lavafume Invoker|Rise of the Eldrazi|C|193624|155| -|Corpsehatch|Rise of the Eldrazi|U|193625|103| -|Enatu Golem|Rise of the Eldrazi|U|193626|217| -|Nema Siltlurker|Rise of the Eldrazi|C|193628|200| -|Deathless Angel|Rise of the Eldrazi|R|193629|17| -|Kozilek, Butcher of Truth|Rise of the Eldrazi|M|193632|6| -|Brood Birthing|Rise of the Eldrazi|C|193633|138| -|Broodwarden|Rise of the Eldrazi|U|193634|181| -|Drake Umbra|Rise of the Eldrazi|U|193635|63| -|Beastbreaker of Bala Ged|Rise of the Eldrazi|U|193638|178| -|Escaped Null|Rise of the Eldrazi|U|193643|109| -|Null Champion|Rise of the Eldrazi|C|193647|121| -|Flame Slash|Rise of the Eldrazi|C|193648|145| -|Heat Ray|Rise of the Eldrazi|C|193649|150| -|Coralhelm Commander|Rise of the Eldrazi|R|193651|57| -|Reality Spasm|Rise of the Eldrazi|U|193652|81| -|Reinforced Bulwark|Rise of the Eldrazi|C|193654|223| -|Hellcarver Demon|Rise of the Eldrazi|M|193656|113| -|Repay in Kind|Rise of the Eldrazi|R|193657|125| -|All Is Dust|Rise of the Eldrazi|M|193658|1| -|Sarkhan the Mad|Rise of the Eldrazi|M|193659|214| -|Linvala, Keeper of Silence|Rise of the Eldrazi|M|193660|33| -|Armored Ascension|Magic 2010|U|193738|3| -|Regenerate|Magic 2010|C|193739|202| -|Warpath Ghoul|Magic 2010|C|193740|120| -|Kindled Fury|Magic 2010|C|193741|144| -|Essence Scatter|Magic 2010|C|193742|51| -|Jump|Magic 2010|C|193743|59| -|Tendrils of Corruption|Magic 2010|C|193744|114| -|Assassinate|Magic 2010|C|193745|84| -|Manabarbs|Magic 2010|R|193748|149| -|Coral Merfolk|Magic 2010|C|193749|47| -|Silvercoat Lion|Magic 2010|C|193750|32| -|Siege-Gang Commander|Magic 2010|R|193751|157| -|Protean Hydra|Magic 2010|M|193753|200| -|Gargoyle Castle|Magic 2010|R|193754|225| -|Great Sable Stag|Magic 2010|R|193759|186| -|Lightwielder Paladin|Magic 2010|R|193763|19| -|Guardian Seraph|Magic 2010|R|193766|13| -|Serra Angel|Magic 2010|U|193767|29| -|Demonic Tutor|Duel Decks: Divine vs. Demonic|U|193867|49| -|Lord of the Pit|Duel Decks: Divine vs. Demonic|M|193868|30| -|Faith's Fetters|Duel Decks: Divine vs. Demonic|C|193869|20| -|Stinkweed Imp|Duel Decks: Divine vs. Demonic|C|193870|36| -|Akroma, Angel of Wrath|Duel Decks: Divine vs. Demonic|M|193871|1| -|Luminous Angel|Duel Decks: Divine vs. Demonic|R|193872|12| -|Open the Vaults|Magic 2010|R|193877|21| -|Mirror of Fate|Magic 2010|R|193878|215| -|Siege Mastodon|Magic 2010|C|193931|30| -|Wind Drake|Magic 2010|C|193962|81| -|Canopy Cover|Worldwake|U|193970|98| -|Claws of Valakut|Worldwake|C|193975|75| -|Searing Blaze|Worldwake|C|193982|90| -|Graypelt Hunter|Worldwake|C|193994|103| -|Groundswell|Worldwake|C|193998|104| -|Mire's Toll|Worldwake|C|194002|60| -|Vapor Snare|Worldwake|U|194003|44| -|Quest for Renewal|Worldwake|U|194007|110| -|Tideforce Elemental|Worldwake|U|194012|41| -|Slingbow Trap|Worldwake|U|194017|111| -|Kitesail Apprentice|Worldwake|C|194018|10| -|Glimmerpoint Stag|Scars of Mirrodin|U|194046|9| -|Glint Hawk Idol|Scars of Mirrodin|C|194049|156| -|Necropede|Scars of Mirrodin|U|194052|185| -|Perilous Myr|Scars of Mirrodin|C|194056|192| -|Plated Seastrider|Scars of Mirrodin|C|194061|38| -|Copper Myr|Scars of Mirrodin|C|194063|146| -|Rusted Relic|Scars of Mirrodin|U|194069|199| -|Surge Node|New Phyrexia|U|194070|160| -|Vector Asp|Scars of Mirrodin|C|194074|219| -|Memnite|Scars of Mirrodin|U|194078|174| -|Kemba's Skyguard|Scars of Mirrodin|C|194083|13| -|Ezuri's Archers|Scars of Mirrodin|C|194092|120| -|Wing Puncture|Scars of Mirrodin|C|194097|133| -|Sky-Eel School|Scars of Mirrodin|C|194103|44| -|Grasp of Darkness|Scars of Mirrodin|C|194105|65| -|Melt Terrain|Scars of Mirrodin|C|194106|97| -|Neurok Invisimancer|Scars of Mirrodin|C|194109|37| -|Halt Order|Scars of Mirrodin|U|194110|34| -|Assault Strobe|Scars of Mirrodin|C|194119|82| -|Revoke Existence|Scars of Mirrodin|C|194123|18| -|Ghalma's Warden|Scars of Mirrodin|C|194124|8| -|Culling Dais|Scars of Mirrodin|U|194127|148| -|Liege of the Tangle|Scars of Mirrodin|M|194130|123| -|Grindclock|Scars of Mirrodin|R|194134|163| -|Shatter|Scars of Mirrodin|C|194147|103| -|Contagious Nim|Scars of Mirrodin|C|194150|58| -|Blight Mamba|Scars of Mirrodin|C|194158|112| -|Untamed Might|Scars of Mirrodin|C|194160|131| -|Blade-Tribe Berserkers|Scars of Mirrodin|C|194165|84| -|Iron Myr|Scars of Mirrodin|C|194168|168| -|Glissa's Scorn|New Phyrexia|C|194171|110| -|Ichor Rats|Scars of Mirrodin|U|194177|67| -|Lumengrid Drake|Scars of Mirrodin|C|194178|36| -|Shape Anew|Scars of Mirrodin|R|194201|43| -|Embersmith|Scars of Mirrodin|U|194202|87| -|Leaden Myr|Scars of Mirrodin|C|194204|170| -|Seize the Initiative|Scars of Mirrodin|C|194206|20| -|Apostle's Blessing|New Phyrexia|C|194208|2| -|Painsmith|Scars of Mirrodin|U|194210|74| -|Oxidda Daredevil|Scars of Mirrodin|C|194213|100| -|Parasitic Implant|New Phyrexia|C|194216|67| -|Darkslick Drake|Scars of Mirrodin|U|194217|30| -|Necrogen Censer|Scars of Mirrodin|C|194223|184| -|Trigon of Infestation|Scars of Mirrodin|U|194232|214| -|Kuldotha Rebirth|Scars of Mirrodin|C|194239|96| -|Ezuri, Renegade Leader|Scars of Mirrodin|R|194243|119| -|Bloodshot Trainee|Scars of Mirrodin|U|194255|85| -|Ichorclaw Myr|Scars of Mirrodin|C|194256|166| -|Vault Skyward|Scars of Mirrodin|C|194265|51| -|Viridian Revel|Scars of Mirrodin|U|194266|132| -|Copperhorn Scout|Scars of Mirrodin|C|194270|116| -|Dross Hopper|Scars of Mirrodin|C|194273|60| -|Melira, Sylvok Outcast|New Phyrexia|R|194274|115| -|Myr Superion|New Phyrexia|R|194275|146| -|Oxidda Scrapmelter|Scars of Mirrodin|U|194281|101| -|Blackcleave Goblin|Scars of Mirrodin|C|194297|54| -|Turn Aside|Scars of Mirrodin|C|194303|49| -|Moriok Reaver|Scars of Mirrodin|C|194309|70| -|Golem Foundry|Scars of Mirrodin|C|194314|160| -|Barrage Ogre|Scars of Mirrodin|U|194316|83| -|Ferrovore|Scars of Mirrodin|C|194317|88| -|Shrine of Piercing Vision|New Phyrexia|U|194318|156| -|Vulshok Heartstoker|Scars of Mirrodin|C|194320|107| -|Razor Hippogriff|Scars of Mirrodin|U|194323|17| -|Kuldotha Phoenix|Scars of Mirrodin|R|194326|95| -|Thrummingbird|Scars of Mirrodin|U|194332|47| -|Corpse Cur|Scars of Mirrodin|C|194337|147| -|Carrion Call|Scars of Mirrodin|U|194340|115| -|Contagion Clasp|Scars of Mirrodin|U|194341|144| -|Instill Infection|Scars of Mirrodin|C|194349|68| -|Steady Progress|Scars of Mirrodin|C|194361|45| -|Inexorable Tide|Scars of Mirrodin|R|194363|35| -|Abuna Acolyte|Scars of Mirrodin|U|194371|1| -|Goblin Gaveleer|Scars of Mirrodin|C|194373|92| -|Furnace Celebration|Scars of Mirrodin|U|194374|90| -|Silver Myr|Scars of Mirrodin|C|194378|202| -|Whipflare|New Phyrexia|U|194383|102| -|Gold Myr|Scars of Mirrodin|C|194384|157| -|Tempered Steel|Scars of Mirrodin|R|194391|24| -|Trigon of Rage|Scars of Mirrodin|U|194393|216| -|Wall of Fire|Magic 2010|U|194423|162| -|Elvish Visionary|Magic 2010|C|194424|178| -|Pyroclasm|Magic 2010|U|194425|152| -|Roiling Terrain|Worldwake|C|194671|88| -|Talus Paladin|Worldwake|R|194672|21| -|Harabaz Druid|Worldwake|R|194675|105| -|Ruthless Cullblade|Worldwake|C|194678|65| -|Dead Reckoning|Worldwake|C|194679|56| -|Goblin Roughrider|Worldwake|C|194681|82| -|Hedron Rover|Worldwake|C|194686|125| -|Mysteries of the Deep|Worldwake|C|194699|33| -|Selective Memory|Worldwake|R|194700|37| -|Permafrost Trap|Worldwake|U|194703|34| -|Join the Ranks|Worldwake|C|194706|9| -|Kor Firewalker|Worldwake|U|194708|11| -|Spell Contortion|Worldwake|U|194714|38| -|Marsh Threader|Worldwake|C|194718|14| -|Goblin Arsonist|Rise of the Eldrazi|C|194902|147| -|Enclave Cryptologist|Rise of the Eldrazi|U|194903|66| -|Pawn of Ulamog|Rise of the Eldrazi|U|194907|122| -|Ulamog's Crusher|Rise of the Eldrazi|C|194908|13| -|Ulamog, the Infinite Gyre|Rise of the Eldrazi|M|194911|12| -|Kiln Fiend|Rise of the Eldrazi|C|194912|153| -|Perish the Thought|Rise of the Eldrazi|C|194915|123| -|Warmonger's Chariot|Rise of the Eldrazi|U|194916|226| -|Transcendent Master|Rise of the Eldrazi|M|194917|51| -|Caravan Escort|Rise of the Eldrazi|C|194918|15| -|Gravity Well|Rise of the Eldrazi|U|194919|185| -|Vendetta|Rise of the Eldrazi|C|194922|130| -|Oust|Rise of the Eldrazi|U|194923|40| -|Spider Umbra|Rise of the Eldrazi|C|194925|208| -|Daggerback Basilisk|Rise of the Eldrazi|C|194926|182| -|Devastating Summons|Rise of the Eldrazi|R|194927|140| -|Hada Spy Patrol|Rise of the Eldrazi|U|194928|71| -|Ondu Giant|Rise of the Eldrazi|C|194929|202| -|Repel the Darkness|Rise of the Eldrazi|C|194930|42| -|Nirkana Cutthroat|Rise of the Eldrazi|U|194933|119| -|Recurring Insight|Rise of the Eldrazi|R|194936|82| -|Sea Gate Oracle|Rise of the Eldrazi|C|194938|85| -|Essence Feed|Rise of the Eldrazi|C|194939|110| -|Tuktuk the Explorer|Rise of the Eldrazi|R|194940|169| -|Eland Umbra|Rise of the Eldrazi|C|194941|19| -|Bala Ged Scorpion|Rise of the Eldrazi|C|194944|95| -|Runed Servitor|Rise of the Eldrazi|U|194946|224| -|Halimar Wavewatch|Rise of the Eldrazi|C|194947|72| -|Death Cultist|Rise of the Eldrazi|C|194948|105| -|Emerge Unscathed|Rise of the Eldrazi|U|194949|20| -|Shared Discovery|Rise of the Eldrazi|C|194950|87| -|Knight of Cliffhaven|Rise of the Eldrazi|C|194951|29| -|Balance|From the Vault: Exiled|M|194966|1| -|Channel|From the Vault: Exiled|M|194967|3| -|Strip Mine|From the Vault: Exiled|M|194968|13| -|Berserk|From the Vault: Exiled|M|194969|2| -|Serendib Efreet|From the Vault: Exiled|M|194970|11| -|Gifts Ungiven|From the Vault: Exiled|M|194971|4| -|Sensei's Divining Top|From the Vault: Exiled|M|194972|10| -|Goblin Lackey|From the Vault: Exiled|M|194973|5| -|Kird Ape|From the Vault: Exiled|M|194974|6| -|Lotus Petal|From the Vault: Exiled|M|194975|7| -|Mystical Tutor|From the Vault: Exiled|M|194976|8| -|Necropotence|From the Vault: Exiled|M|194977|9| -|Skullclamp|From the Vault: Exiled|M|194978|12| -|Trinisphere|From the Vault: Exiled|M|194979|15| -|Tinker|From the Vault: Exiled|M|194980|14| -|Swamp|Zendikar|L|195157|241| -|Forest|Zendikar|L|195158|246| -|Swamp|Zendikar|L|195159|240| -|Island|Zendikar|L|195161|236| -|Plains|Zendikar|L|195163|233| -|Island|Zendikar|L|195165|235| -|Island|Zendikar|L|195170|237| -|Mountain|Zendikar|L|195171|243| -|Swamp|Zendikar|L|195172|238| -|Plains|Zendikar|L|195173|231| -|Forest|Zendikar|L|195177|248| -|Mountain|Zendikar|L|195178|242| -|Plains|Zendikar|L|195179|230| -|Mountain|Zendikar|L|195181|244| -|Forest|Zendikar|L|195183|249| -|Mountain|Zendikar|L|195184|245| -|Island|Zendikar|L|195187|234| -|Forest|Zendikar|L|195192|247| -|Swamp|Zendikar|L|195194|239| -|Plains|Zendikar|L|195196|232| -|Jace, the Mind Sculptor|Worldwake|M|195297|31| -|Tomb Hex|Worldwake|C|195307|69| -|Chandra Ablaze|Zendikar|M|195402|120| -|Sorin Markov|Zendikar|M|195403|111| -|Quest for the Gemblades|Zendikar|U|195572|177| -|Conqueror's Pledge|Zendikar|R|195626|8| -|Gigantiform|Zendikar|R|195627|162| -|Makindi Shieldmate|Zendikar|C|195628|26| -|Sea Gate Loremaster|Zendikar|R|195629|63| -|Rite of Replication|Zendikar|R|195630|61| -|Seascape Aerialist|Zendikar|U|195631|64| -|Sadistic Sacrament|Zendikar|R|195632|110| -|Murasa Pyromancer|Zendikar|U|195634|139| -|Quest for Ancient Secrets|Zendikar|U|195635|59| -|Angel of Mercy|Duel Decks: Divine vs. Demonic|U|196990|9| -|Angel's Feather|Duel Decks: Divine vs. Demonic|U|196991|23| -|Consume Spirit|Duel Decks: Divine vs. Demonic|U|196992|56| -|Cruel Edict|Duel Decks: Divine vs. Demonic|U|196993|48| -|Demon's Horn|Duel Decks: Divine vs. Demonic|U|196994|57| -|Dusk Imp|Duel Decks: Divine vs. Demonic|C|196995|34| -|Icatian Priest|Duel Decks: Divine vs. Demonic|U|196996|2| -|Pacifism|Duel Decks: Divine vs. Demonic|C|196997|17| -|Reya Dawnbringer|Duel Decks: Divine vs. Demonic|R|196998|13| -|Serra Angel|Duel Decks: Divine vs. Demonic|R|196999|10| -|Serra's Embrace|Duel Decks: Divine vs. Demonic|U|197000|21| -|Unholy Strength|Duel Decks: Divine vs. Demonic|C|197001|47| -|Venerable Monk|Duel Decks: Divine vs. Demonic|C|197002|5| -|Cackling Imp|Duel Decks: Divine vs. Demonic|C|197003|41| -|Duress|Duel Decks: Divine vs. Demonic|C|197004|46| -|Marble Diamond|Duel Decks: Divine vs. Demonic|U|197005|24| -|Serra Advocate|Duel Decks: Divine vs. Demonic|U|197006|7| -|Sustainer of the Realm|Duel Decks: Divine vs. Demonic|U|197007|8| -|Abyssal Specter|Duel Decks: Divine vs. Demonic|U|197008|40| -|Angelic Page|Duel Decks: Divine vs. Demonic|C|197009|3| -|Fallen Angel|Duel Decks: Divine vs. Demonic|R|197010|42| -|Healing Salve|Duel Decks: Divine vs. Demonic|C|197011|14| -|Foul Imp|Duel Decks: Divine vs. Demonic|C|197012|32| -|Angelic Benediction|Duel Decks: Divine vs. Demonic|U|197013|19| -|Angelsong|Duel Decks: Divine vs. Demonic|C|197014|15| -|Kuro, Pitlord|Duel Decks: Divine vs. Demonic|R|197015|44| -|Oni Possession|Duel Decks: Divine vs. Demonic|U|197016|51| -|Otherworldly Journey|Duel Decks: Divine vs. Demonic|U|197017|16| -|Demon's Jester|Duel Decks: Divine vs. Demonic|C|197018|38| -|Dark Ritual|Duel Decks: Divine vs. Demonic|C|197019|45| -|Soot Imp|Duel Decks: Divine vs. Demonic|U|197020|37| -|Charging Paladin|Duel Decks: Divine vs. Demonic|C|197021|4| -|Daggerclaw Imp|Duel Decks: Divine vs. Demonic|U|197022|33| -|Dark Banishing|Duel Decks: Divine vs. Demonic|C|197023|50| -|Breeding Pit|Duel Decks: Divine vs. Demonic|U|197024|53| -|Barter in Blood|Duel Decks: Divine vs. Demonic|U|197025|52| -|Promise of Power|Duel Decks: Divine vs. Demonic|R|197026|54| -|Reiver Demon|Duel Decks: Divine vs. Demonic|R|197027|43| -|Overeager Apprentice|Duel Decks: Divine vs. Demonic|C|197028|35| -|Barren Moor|Duel Decks: Divine vs. Demonic|C|197029|58| -|Righteous Cause|Duel Decks: Divine vs. Demonic|U|197030|22| -|Secluded Steppe|Duel Decks: Divine vs. Demonic|C|197031|25| -|Serra's Boon|Duel Decks: Divine vs. Demonic|U|197032|18| -|Corrupt|Duel Decks: Divine vs. Demonic|U|197033|55| -|Twilight Shepherd|Duel Decks: Divine vs. Demonic|R|197034|11| -|Angelic Protector|Duel Decks: Divine vs. Demonic|U|197035|6| -|Souldrinker|Duel Decks: Divine vs. Demonic|U|197036|39| -|Abyssal Gatekeeper|Duel Decks: Divine vs. Demonic|C|197037|31| -|Kalastria Highborn|Worldwake|R|197118|59| -|Butcher of Malakir|Worldwake|R|197125|53| -|Halimar Excavator|Worldwake|C|197129|29| -|Terastodon|Worldwake|R|197137|115| -|Kazuul, Tyrant of the Cliffs|Worldwake|R|197145|84| -|Kitesail|Worldwake|C|197152|126| -|Goliath Sphinx|Worldwake|R|197153|28| -|Pulse Tracker|Worldwake|C|197154|62| -|Bojuka Brigand|Worldwake|C|197159|51| -|Admonition Angel|Worldwake|M|197160|1| -|Mordant Dragon|Worldwake|R|197162|85| -|Plains|Duel Decks: Divine vs. Demonic|L|197253|29| -|Plains|Duel Decks: Divine vs. Demonic|L|197254|26| -|Plains|Duel Decks: Divine vs. Demonic|L|197255|28| -|Plains|Duel Decks: Divine vs. Demonic|L|197256|27| -|Swamp|Duel Decks: Divine vs. Demonic|L|197257|59| -|Swamp|Duel Decks: Divine vs. Demonic|L|197258|60| -|Swamp|Duel Decks: Divine vs. Demonic|L|197259|61| -|Swamp|Duel Decks: Divine vs. Demonic|L|197260|62| -|Thrull|Duel Decks: Divine vs. Demonic|C|197261|3| -|Bala Ged Thief|Zendikar|R|197402|79| -|Nimana Sell-Sword|Zendikar|C|197403|106| -|Hagra Diabolist|Zendikar|U|197404|95| -|River Boa|Zendikar|U|197405|180| -|Quest for the Holy Relic|Zendikar|U|197406|33| -|Quest for Pure Flame|Zendikar|U|197407|144| -|Whiplash Trap|Zendikar|C|197526|77| -|Summoning Trap|Zendikar|R|197527|184| -|Lavaball Trap|Zendikar|R|197528|135| -|Needlebite Trap|Zendikar|U|197529|105| -|Inferno Trap|Zendikar|U|197530|133| -|Baloth Cage Trap|Zendikar|U|197531|156| -|Mindbreak Trap|Zendikar|M|197532|57| -|Pitfall Trap|Zendikar|U|197533|32| -|Lethargy Trap|Zendikar|C|197534|51| -|Cobra Trap|Zendikar|U|197535|160| -|Runeflare Trap|Zendikar|U|197536|146| -|Ravenous Trap|Zendikar|U|197537|109| -|Archive Trap|Zendikar|R|197538|41| -|Skitter of Lizards|Worldwake|C|197758|91| -|Omnath, Locus of Mana|Worldwake|M|197759|109| -|Quag Vampires|Worldwake|C|197763|63| -|Joraga Warcaller|Worldwake|R|197765|106| -|Comet Storm|Worldwake|M|197766|76| -|Enclave Elite|Worldwake|C|197767|27| -|Apex Hawks|Worldwake|C|197769|2| -|Rumbling Aftershocks|Worldwake|U|197770|89| -|Gnarlid Pack|Worldwake|C|197771|101| -|Smoldering Spires|Worldwake|C|197785|143| -|Bojuka Bog|Worldwake|C|197786|132| -|Halimar Depths|Worldwake|C|197787|137| -|Sejiri Steppe|Worldwake|C|197788|142| -|Khalni Garden|Worldwake|C|197789|138| -|Nemesis Trap|Worldwake|U|197836|61| -|Wrexial, the Risen Deep|Worldwake|M|197840|120| -|Bestial Menace|Worldwake|U|197843|97| -|Sejiri Merfolk|Worldwake|U|197844|36| -|Quicksand|Worldwake|C|197853|140| -|Dragonmaster Outcast|Worldwake|M|197854|81| -|Tectonic Edge|Worldwake|U|197855|145| -|Leatherback Baloth|Worldwake|U|197856|107| -|Novablast Wurm|Worldwake|M|197857|119| -|Slavering Nulls|Worldwake|U|197859|92| -|Summit Apes|Worldwake|U|197864|114| -|Wind Zendikon|Worldwake|C|197865|46| -|Terra Eternal|Worldwake|R|197866|22| -|Abyssal Persecutor|Worldwake|M|197869|47| -|Vastwood Zendikon|Worldwake|C|197870|117| -|Hammer of Ruin|Worldwake|U|197871|124| -|Guardian Zendikon|Worldwake|C|197872|6| -|Loam Lion|Worldwake|U|197873|13| -|Corrupted Zendikon|Worldwake|C|197874|55| -|Strength of the Tajuru|Worldwake|R|197875|113| -|Shoreline Salvager|Worldwake|U|197877|67| -|Iona's Judgment|Worldwake|C|197880|8| -|Eye of Ugin|Worldwake|M|197881|136| -|Geyser Glider|Zendikar|U|197887|124| -|Luminarch Ascension|Zendikar|R|197889|25| -|Beastmaster Ascension|Zendikar|R|197890|159| -|Pyromancer Ascension|Zendikar|R|197891|143| -|Bloodchief Ascension|Zendikar|R|197892|82| -|Archmage Ascension|Zendikar|R|197893|42| -|Demon|Duel Decks: Divine vs. Demonic|C|197936|2| -|Spirit|Duel Decks: Divine vs. Demonic|C|197937|1| -|Arbor Elf|Worldwake|C|197959|95| -|Treasure Hunt|Worldwake|C|197968|42| -|Thada Adel, Acquisitor|Worldwake|R|197973|40| -|Lagac Lizard|Rise of the Eldrazi|C|198162|154| -|Echo Mage|Rise of the Eldrazi|R|198163|64| -|Lord of Shatterskull Pass|Rise of the Eldrazi|R|198164|156| -|Harmless Assault|Rise of the Eldrazi|C|198165|24| -|Zulaport Enforcer|Rise of the Eldrazi|C|198166|133| -|Mul Daya Channelers|Rise of the Eldrazi|R|198167|198| -|Distortion Strike|Rise of the Eldrazi|C|198168|60| -|Sphinx of Magosi|Rise of the Eldrazi|R|198169|89| -|Fissure Vent|Rise of the Eldrazi|C|198170|144| -|It That Betrays|Rise of the Eldrazi|R|198171|7| -|Gigantomancer|Rise of the Eldrazi|R|198172|184| -|Merfolk Observer|Rise of the Eldrazi|C|198173|76| -|Phantasmal Abomination|Rise of the Eldrazi|U|198174|80| -|Totem-Guide Hartebeest|Rise of the Eldrazi|C|198175|50| -|Ikiral Outrider|Rise of the Eldrazi|C|198176|27| -|Traitorous Instinct|Rise of the Eldrazi|U|198177|168| -|Surreal Memoir|Rise of the Eldrazi|U|198179|167| -|Nomads' Assembly|Rise of the Eldrazi|R|198180|39| -|Rapacious One|Rise of the Eldrazi|U|198181|162| -|Hyena Umbra|Rise of the Eldrazi|C|198294|26| -|Prophetic Prism|Rise of the Eldrazi|C|198295|222| -|Not of This World|Rise of the Eldrazi|U|198296|8| -|Virulent Swipe|Rise of the Eldrazi|U|198298|131| -|Cast Through Time|Rise of the Eldrazi|M|198301|55| -|Baneful Omen|Rise of the Eldrazi|R|198302|96| -|Kozilek's Predator|Rise of the Eldrazi|C|198303|193| -|Bear Umbra|Rise of the Eldrazi|R|198304|177| -|Affa Guard Hound|Rise of the Eldrazi|U|198305|14| -|Hellion Eruption|Rise of the Eldrazi|R|198306|151| -|Bloodthrone Vampire|Rise of the Eldrazi|C|198308|98| -|Surrakar Spellblade|Rise of the Eldrazi|R|198310|90| -|Fleeting Distraction|Rise of the Eldrazi|C|198311|67| -|Eldrazi Temple|Rise of the Eldrazi|R|198312|227| -|Demystify|Rise of the Eldrazi|C|198313|18| -|Basilisk Collar|Worldwake|R|198356|122| -|Nature's Claim|Worldwake|C|198357|108| -|Akoum Battlesinger|Worldwake|C|198360|71| -|Perimeter Captain|Worldwake|U|198361|16| -|Feral Contest|Worldwake|C|198362|100| -|Bazaar Trader|Worldwake|R|198364|72| -|Pilgrim's Eye|Worldwake|C|198367|128| -|Urge to Feed|Worldwake|U|198368|70| -|Surrakar Banisher|Worldwake|C|198370|39| -|Grappler Spider|Worldwake|C|198371|102| -|Death's Shadow|Worldwake|R|198372|57| -|Everflowing Chalice|Worldwake|U|198374|123| -|Walking Atlas|Worldwake|C|198375|131| -|Caustic Crawler|Worldwake|U|198376|54| -|Ruin Ghost|Worldwake|U|198378|19| -|Scrib Nibblers|Worldwake|U|198382|66| -|Stoneforge Mystic|Worldwake|R|198383|20| -|Veteran's Reflexes|Worldwake|C|198384|23| -|Quest for the Nihil Stone|Worldwake|R|198386|64| -|Jwari Shapeshifter|Worldwake|R|198390|32| -|Quest for the Goblin Lord|Worldwake|U|198392|86| -|Marshal's Anthem|Worldwake|R|198393|15| -|Battle Hurda|Worldwake|C|198394|4| -|Razor Boomerang|Worldwake|U|198395|129| -|Twitch|Worldwake|C|198396|43| -|Hada Freeblade|Worldwake|U|198400|7| -|Quest for Ula's Temple|Worldwake|R|198401|35| -|Agadeem Occultist|Worldwake|R|198402|48| -|Khalni Gem|Zendikar|U|198519|205| -|Gomazoa|Zendikar|U|198523|46| -|Celestial Mantle|Zendikar|R|198524|6| -|Lu Meng, Wu General|Masters Edition III|U|201097|41| -|Active Volcano|Masters Edition III|U|201098|85| -|Akron Legionnaire|Masters Edition III|R|201117|1| -|Alabaster Potion|Masters Edition III|U|201118|2| -|All Hallow's Eve|Masters Edition III|R|201119|57| -|Wall of Light|Masters Edition III|C|201120|27| -|Lightning Blow|Masters Edition III|C|201121|18| -|Boomerang|Masters Edition III|C|201122|30| -|Dong Zhou, the Tyrant|Masters Edition III|R|201123|96| -|Spiny Starfish|Masters Edition III|U|201124|50| -|Carrion Ants|Masters Edition III|U|201125|60| -|Chain Lightning|Masters Edition III|C|201126|90| -|Cleanse|Masters Edition III|R|201127|5| -|Jedit Ojanen|Masters Edition III|C|201128|153| -|Cosmic Horror|Masters Edition III|R|201129|61| -|Crimson Kobolds|Masters Edition III|C|201130|93| -|Crimson Manticore|Masters Edition III|U|201131|94| -|Disharmony|Masters Edition III|U|201133|95| -|D'Avenant Archer|Masters Edition III|C|201134|6| -|Capture of Jingzhou|Masters Edition III|R|201135|33| -|Loyal Retainers|Masters Edition III|U|201136|20| -|Flash Flood|Masters Edition III|U|201137|35| -|Frost Giant|Masters Edition III|U|201138|101| -|Ghosts of the Damned|Masters Edition III|C|201139|68| -|Bone Flute|Masters Edition III|C|201140|192| -|Hellfire|Masters Edition III|R|201141|70| -|Immolation|Masters Edition III|C|201142|103| -|Spirit Shackle|Masters Edition III|C|201143|74| -|Old Man of the Sea|Masters Edition III|R|201144|45| -|Young Wei Recruits|Masters Edition III|C|201145|84| -|Ivory Guardians|Masters Edition III|U|201146|15| -|Call to Arms|Masters Edition III|U|201147|4| -|Kobold Drill Sergeant|Masters Edition III|U|201148|104| -|Kobold Overlord|Masters Edition III|U|201149|105| -|Kobold Taskmaster|Masters Edition III|C|201150|106| -|Kobolds of Kher Keep|Masters Edition III|C|201151|107| -|Land Equilibrium|Masters Edition III|R|201152|40| -|Land Tax|Masters Edition III|R|201153|17| -|Lesser Werewolf|Masters Edition III|C|201154|71| -|Mana Drain|Masters Edition III|R|201156|43| -|Torsten Von Ursus|Masters Edition III|C|201157|183| -|Nether Void|Masters Edition III|R|201158|73| -|Benthic Explorers|Masters Edition III|C|201159|29| -|Force Spike|Masters Edition III|C|201160|36| -|Recall|Masters Edition III|U|201161|46| -|Disenchant|Masters Edition III|C|201162|7| -|Reset|Masters Edition III|R|201163|48| -|Xiahou Dun, the One-Eyed|Masters Edition III|U|201164|83| -|Storm World|Masters Edition III|R|201165|111| -|Demonic Torment|Masters Edition III|C|201166|62| -|The Abyss|Masters Edition III|R|201167|77| -|The Wretched|Masters Edition III|U|201168|78| -|Fevered Strength|Masters Edition III|C|201169|66| -|Angus Mackenzie|Masters Edition III|R|201175|141| -|Arboria|Masters Edition III|R|201176|113| -|Arcades Sabboth|Masters Edition III|R|201177|142| -|Axelrod Gunnarson|Masters Edition III|U|201178|143| -|Wandering Mage|Masters Edition III|R|201179|186| -|Bartel Runeaxe|Masters Edition III|U|201181|145| -|Boris Devilboon|Masters Edition III|U|201182|146| -|Sol Grail|Masters Edition III|C|201183|201| -|Chromium|Masters Edition III|R|201184|147| -|Concordant Crossroads|Masters Edition III|R|201185|114| -|Fire Sprites|Masters Edition III|C|201186|118| -|Slashing Tiger|Masters Edition III|C|201187|133| -|Gabriel Angelfire|Masters Edition III|R|201188|148| -|Spectral Shield|Masters Edition III|U|201189|176| -|Barl's Cage|Masters Edition III|R|201190|190| -|Gwendlyn Di Corci|Masters Edition III|R|201191|149| -|Halfdane|Masters Edition III|R|201192|150| -|Hazezon Tamar|Masters Edition III|R|201193|151| -|Hunding Gjornersen|Masters Edition III|U|201194|152| -|Knowledge Vault|Masters Edition III|U|201195|198| -|Jerrard of the Closed Fist|Masters Edition III|C|201196|154| -|Kjeldoran Frostbeast|Masters Edition III|U|201197|156| -|Karakas|Masters Edition III|R|201198|208| -|Illusionary Mask|Masters Edition III|R|201199|197| -|Kei Takahashi|Masters Edition III|U|201200|155| -|Killer Bees|Masters Edition III|U|201201|126| -|Urborg|Masters Edition III|U|201202|214| -|Lady Evangela|Masters Edition III|U|201203|158| -|The Lady of the Mountain|Masters Edition III|C|201204|180| -|Life Chisel|Masters Edition III|R|201205|199| -|Coal Golem|Masters Edition III|C|201206|193| -|Living Plane|Masters Edition III|R|201207|127| -|Xira Arien|Masters Edition III|R|201208|187| -|Arena of the Ancients|Masters Edition III|R|201209|188| -|Desert Twister|Masters Edition III|U|201210|115| -|Gaea's Touch|Masters Edition III|U|201211|120| -|Nebuchadnezzar|Masters Edition III|U|201212|162| -|Nicol Bolas|Masters Edition III|R|201213|163| -|Nova Pentacle|Masters Edition III|R|201214|200| -|Palladia-Mors|Masters Edition III|R|201215|164| -|Firestorm Phoenix|Masters Edition III|R|201216|99| -|Freyalise's Winds|Masters Edition III|R|201217|119| -|Astrolabe|Masters Edition III|C|201218|189| -|Meng Huo's Horde|Masters Edition III|C|201219|129| -|Bazaar of Baghdad|Masters Edition III|R|201220|205| -|Ragnar|Masters Edition III|U|201221|167| -|Marhault Elsdragon|Masters Edition III|U|201222|161| -|Ramses Overdark|Masters Edition III|U|201223|169| -|Rasputin Dreamweaver|Masters Edition III|R|201224|170| -|Riven Turnbull|Masters Edition III|U|201225|171| -|Rohgahh of Kher Keep|Masters Edition III|R|201226|172| -|Rubinia Soulsinger|Masters Edition III|R|201227|173| -|Fellwar Stone|Masters Edition III|C|201228|195| -|Sir Shandlar of Eberyn|Masters Edition III|C|201229|174| -|Takklemaggot|Masters Edition III|U|201230|76| -|Stangg|Masters Edition III|U|201231|177| -|Sunastian Falconer|Masters Edition III|U|201232|178| -|Sword of the Ages|Masters Edition III|R|201233|202| -|Tetsuo Umezawa|Masters Edition III|R|201234|179| -|Gauntlets of Chaos|Masters Edition III|R|201235|196| -|The Tabernacle at Pendrell Vale|Masters Edition III|R|201236|212| -|Divine Intervention|Masters Edition III|R|201237|8| -|Tor Wauki|Masters Edition III|U|201238|182| -|Black Vise|Masters Edition III|R|201239|191| -|Tuknir Deathlock|Masters Edition III|U|201240|184| -|Jungle Lion|Masters Edition III|C|201241|125| -|Hammerheim|Masters Edition III|U|201242|207| -|Vaevictis Asmadi|Masters Edition III|R|201243|185| -|Willow Satyr|Masters Edition III|R|201244|139| -|Ashes to Ashes|Masters Edition III|U|201250|58| -|Banshee|Masters Edition III|U|201251|59| -|City of Shadows|Masters Edition III|R|201252|206| -|Dance of Many|Masters Edition III|U|201253|34| -|Wu Longbowman|Masters Edition III|C|201254|55| -|Exorcist|Masters Edition III|U|201255|10| -|Fire Drake|Masters Edition III|C|201256|98| -|Borrowing 100,000 Arrows|Masters Edition III|U|201257|31| -|Reincarnation|Masters Edition III|U|201258|130| -|Barktooth Warbeard|Masters Edition III|C|201259|144| -|Mana Vortex|Masters Edition III|R|201260|44| -|Evil Presence|Masters Edition III|C|201261|64| -|Wu Warship|Masters Edition III|C|201262|56| -|Maze of Ith|Masters Edition IV|R|201263|246| -|Infuse|Masters Edition III|C|201264|38| -|Amrou Kithkin|Masters Edition III|C|201265|3| -|Giant Growth|Masters Edition III|C|201266|121| -|Livonya Silone|Masters Edition III|U|201267|160| -|Sorrow's Path|Masters Edition III|R|201268|211| -|Remove Soul|Masters Edition III|C|201269|47| -|Tracker|Masters Edition III|U|201270|136| -|Wormwood Treefolk|Masters Edition III|U|201271|140| -|Blood Lust|Masters Edition III|C|201272|88| -|Hua Tuo, Honored Physician|Masters Edition III|R|201273|123| -|Burning of Xinye|Masters Edition III|R|201274|89| -|False Defeat|Masters Edition III|U|201275|11| -|Famine|Masters Edition III|U|201276|65| -|Fire Ambush|Masters Edition III|C|201277|97| -|Forced Retreat|Masters Edition III|C|201278|37| -|Ghostly Visit|Masters Edition III|C|201279|67| -|Guan Yu, Sainted Warrior|Masters Edition III|U|201280|12| -|Heavy Fog|Masters Edition III|C|201281|122| -|Kongming, "Sleeping Dragon"|Masters Edition III|R|201282|16| -|Liu Bei, Lord of Shu|Masters Edition III|R|201283|19| -|Guan Yu's 1,000-Li March|Masters Edition III|R|201284|13| -|Lu Bu, Master-at-Arms|Masters Edition III|R|201285|108| -|Lu Xun, Scholar General|Masters Edition III|U|201286|42| -|Meng Huo, Barbarian King|Masters Edition III|R|201287|128| -|Misfortune's Gain|Masters Edition III|C|201288|21| -|Stolen Grain|Masters Edition III|U|201289|75| -|Brilliant Plan|Masters Edition III|C|201290|32| -|Heal|Masters Edition III|C|201291|14| -|Forked Lightning|Masters Edition III|U|201292|100| -|Rolling Earthquake|Masters Edition III|R|201293|110| -|Shu Cavalry|Masters Edition III|C|201294|23| -|Shu Elite Companions|Masters Edition III|C|201295|24| -|Peach Garden Oath|Masters Edition III|C|201296|22| -|Shu General|Masters Edition III|C|201297|25| -|Shu Soldier-Farmers|Masters Edition III|C|201298|26| -|Spoils of Victory|Masters Edition III|C|201299|134| -|Strategic Planning|Masters Edition III|C|201300|51| -|Sun Ce, Young Conquerer|Masters Edition III|U|201301|52| -|Sun Quan, Lord of Wu|Masters Edition III|R|201302|53| -|Three Visits|Masters Edition III|C|201303|135| -|Eightfold Maze|Masters Edition III|U|201304|9| -|Wei Elite Companions|Masters Edition III|C|201305|79| -|Wei Night Raiders|Masters Edition III|U|201306|81| -|Wei Strike Force|Masters Edition III|C|201307|82| -|Wu Elite Cavalry|Masters Edition III|C|201308|54| -|Reveka, Wizard Savant|Masters Edition III|U|201309|49| -|Ramirez DePietro|Masters Edition III|C|201310|168| -|Mind Twist|Masters Edition III|R|201311|72| -|Zhang Fei, Fierce Warrior|Masters Edition III|U|201312|28| -|Zodiac Dragon|Masters Edition III|R|201313|112| -|Anaba Ancestor|Masters Edition III|C|201315|86| -|Anaba Spirit Crafter|Masters Edition III|C|201316|87| -|Didgeridoo|Masters Edition III|U|201317|194| -|Faerie Noble|Masters Edition III|U|201318|117| -|Labyrinth Minotaur|Masters Edition III|C|201319|39| -|Trip Wire|Masters Edition III|C|201320|137| -|Willow Priestess|Masters Edition III|U|201321|138| -|Riding the Dilu Horse|Masters Edition III|U|201322|131| -|Cinder Storm|Masters Edition III|U|201323|91| -|Elves of Deep Shadow|Masters Edition III|C|201324|116| -|Raging Minotaur|Masters Edition III|C|201325|109| -|Garruk Wildspeaker|Duel Decks: Garruk vs. Liliana|M|201347|1| -|Liliana Vess|Duel Decks: Garruk vs. Liliana|M|201348|32| -|Bayou|Masters Edition III|R|201400|204| -|Hurloon Minotaur|Masters Edition III|C|201401|102| -|Plateau|Masters Edition III|R|201402|209| -|Scrubland|Masters Edition III|R|201403|210| -|Scryb Sprites|Masters Edition III|C|201404|132| -|Tropical Island|Masters Edition III|R|201405|213| -|Volcanic Island|Masters Edition III|R|201406|215| -|Hunting Cheetah|Masters Edition III|C|201407|124| -|Corrupt Eunuchs|Masters Edition III|U|201408|92| -|Grim Tutor|Masters Edition III|R|201409|69| -|Lady Caleria|Masters Edition III|U|201410|157| -|Bull Rush|Worldwake|C|201560|73| -|Seer's Sundial|Worldwake|R|201561|130| -|Dispel|Worldwake|C|201562|26| -|Cunning Sparkmage|Worldwake|U|201563|79| -|Cosi's Ravager|Worldwake|C|201565|77| -|Vastwood Animist|Worldwake|U|201566|116| -|Ζther Tradewinds|Worldwake|C|201568|24| -|Avenger of Zendikar|Worldwake|M|201570|96| -|Brink of Disaster|Worldwake|C|201571|52| -|Chain Reaction|Worldwake|R|201573|74| -|Archon of Redemption|Worldwake|R|201575|3| -|Explore|Worldwake|C|201578|99| -|Tuktuk Scrapper|Worldwake|U|201579|94| -|Overrun|Duel Decks: Garruk vs. Liliana|U|201779|24| -|Windstorm|Duel Decks: Garruk vs. Liliana|U|201780|25| -|Albino Troll|Duel Decks: Garruk vs. Liliana|U|201781|3| -|Polluted Mire|Duel Decks: Garruk vs. Liliana|C|201782|59| -|Slippery Karst|Duel Decks: Garruk vs. Liliana|C|201784|26| -|Phyrexian Rager|Duel Decks: Garruk vs. Liliana|C|201790|39| -|Ravenous Rats|Duel Decks: Garruk vs. Liliana|C|201791|37| -|Genju of the Cedars|Duel Decks: Garruk vs. Liliana|U|201792|13| -|Genju of the Fens|Duel Decks: Garruk vs. Liliana|U|201793|47| -|Snuff Out|Duel Decks: Garruk vs. Liliana|C|201794|53| -|Keening Banshee|Duel Decks: Garruk vs. Liliana|U|201796|44| -|Rise from the Grave|Duel Decks: Garruk vs. Liliana|U|201800|56| -|Sign in Blood|Duel Decks: Garruk vs. Liliana|C|201801|49| -|Skeletal Vampire|Duel Decks: Garruk vs. Liliana|R|201809|46| -|Tendrils of Corruption|Duel Decks: Garruk vs. Liliana|C|201812|54| -|Twisted Abomination|Duel Decks: Garruk vs. Liliana|C|201813|45| -|Enslave|Duel Decks: Garruk vs. Liliana|U|201816|58| -|Harmonize|Duel Decks: Garruk vs. Liliana|U|201817|21| -|Mutilate|Duel Decks: Garruk vs. Liliana|R|201819|55| -|Bad Moon|Duel Decks: Garruk vs. Liliana|R|201820|48| -|Corrupt|Duel Decks: Garruk vs. Liliana|U|201821|57| -|Faerie Macabre|Duel Decks: Garruk vs. Liliana|C|201822|42| -|Beast Attack|Duel Decks: Garruk vs. Liliana|U|201824|23| -|Wild Mongrel|Duel Decks: Garruk vs. Liliana|C|201826|5| -|Krosan Tusker|Duel Decks: Garruk vs. Liliana|C|201829|11| -|Wirewood Savage|Duel Decks: Garruk vs. Liliana|C|201830|6| -|Blastoderm|Duel Decks: Garruk vs. Liliana|C|201831|7| -|Elephant Guide|Duel Decks: Garruk vs. Liliana|U|201832|18| -|Indrik Stomphowler|Duel Decks: Garruk vs. Liliana|U|201834|10| -|Plated Slagwurm|Duel Decks: Garruk vs. Liliana|R|201835|12| -|Basking Rootwalla|Duel Decks: Garruk vs. Liliana|C|201836|2| -|Lignify|Duel Decks: Garruk vs. Liliana|C|201837|16| -|Rancor|Duel Decks: Garruk vs. Liliana|C|201838|15| -|Giant Growth|Duel Decks: Garruk vs. Liliana|C|201839|14| -|Nature's Lore|Duel Decks: Garruk vs. Liliana|C|201840|17| -|Beast|Duel Decks: Garruk vs. Liliana|C|201842|1| -|Elephant|Duel Decks: Garruk vs. Liliana|C|201843|3| -|Beast|Duel Decks: Garruk vs. Liliana|C|201844|2| -|Vine Trellis|Duel Decks: Garruk vs. Liliana|C|201845|4| -|Stampeding Wildebeests|Duel Decks: Garruk vs. Liliana|U|201881|9| -|Ravenous Baloth|Duel Decks: Garruk vs. Liliana|R|201882|8| -|Forest|Zendikar|L|201959|246| -|Forest|Zendikar|L|201960|248| -|Forest|Zendikar|L|201961|249| -|Forest|Zendikar|L|201962|247| -|Island|Zendikar|L|201963|236| -|Island|Zendikar|L|201964|235| -|Island|Zendikar|L|201965|237| -|Island|Zendikar|L|201966|234| -|Mountain|Zendikar|L|201967|243| -|Mountain|Zendikar|L|201968|242| -|Mountain|Zendikar|L|201969|244| -|Mountain|Zendikar|L|201970|245| -|Plains|Zendikar|L|201971|233| -|Plains|Zendikar|L|201972|231| -|Plains|Zendikar|L|201973|230| -|Plains|Zendikar|L|201974|232| -|Swamp|Zendikar|L|201975|241| -|Swamp|Zendikar|L|201976|240| -|Swamp|Zendikar|L|201977|238| -|Swamp|Zendikar|L|201978|239| -|Deathgreeter|Duel Decks: Garruk vs. Liliana|C|202143|33| -|Fleshbag Marauder|Duel Decks: Garruk vs. Liliana|U|202144|38| -|Ichor Slick|Duel Decks: Garruk vs. Liliana|C|202145|51| -|Urborg Syphon-Mage|Duel Decks: Garruk vs. Liliana|C|202146|40| -|Hideous End|Duel Decks: Garruk vs. Liliana|C|202147|52| -|Howling Banshee|Duel Decks: Garruk vs. Liliana|U|202148|43| -|Invigorate|Duel Decks: Garruk vs. Liliana|C|202261|19| -|Vicious Hunger|Duel Decks: Garruk vs. Liliana|C|202262|50| -|Ghost-Lit Stalker|Duel Decks: Garruk vs. Liliana|U|202274|34| -|Drudge Skeletons|Duel Decks: Garruk vs. Liliana|C|202275|36| -|Vampire Bats|Duel Decks: Garruk vs. Liliana|C|202276|35| -|Wall of Bone|Duel Decks: Garruk vs. Liliana|U|202277|41| -|Treetop Village|Duel Decks: Garruk vs. Liliana|U|202279|27| -|Serrated Arrows|Duel Decks: Garruk vs. Liliana|C|202280|20| -|Rude Awakening|Duel Decks: Garruk vs. Liliana|R|202281|22| -|Braingeyser|Masters Edition IV|R|202409|40| -|In the Eye of Chaos|Masters Edition IV|R|202410|51| -|Control Magic|Masters Edition IV|R|202411|43| -|Naked Singularity|Masters Edition IV|R|202412|216| -|Weakness|Masters Edition IV|C|202413|101| -|Armageddon Clock|Masters Edition IV|R|202414|180| -|Water Elemental|Masters Edition IV|U|202415|70| -|Scavenger Folk|Masters Edition IV|C|202416|166| -|Animate Artifact|Masters Edition IV|U|202417|38| -|Living Wall|Masters Edition IV|U|202418|212| -|Weakstone|Masters Edition IV|U|202419|239| -|Wicked Pact|Masters Edition IV|U|202420|102| -|Taiga|Masters Edition IV|R|202421|253| -|Tundra|Masters Edition IV|R|202424|255| -|Lifeforce|Masters Edition IV|R|202425|160| -|Goblin Caves|Masters Edition IV|C|202426|119| -|Hasran Ogress|Masters Edition IV|C|202427|86| -|Argothian Treefolk|Masters Edition IV|U|202428|143| -|Library of Alexandria|Masters Edition IV|R|202429|245| -|Clockwork Gnomes|Masters Edition IV|U|202431|191| -|Elephant Graveyard|Masters Edition IV|U|202432|244| -|Strip Mine|Masters Edition IV|R|202433|252| -|Kismet|Masters Edition IV|R|202434|17| -|Champion Lancer|Masters Edition IV|R|202435|8| -|Osai Vultures|Masters Edition IV|C|202436|21| -|Counterspell|Masters Edition IV|C|202437|45| -|Radjan Spirit|Masters Edition IV|U|202438|162| -|Sinkhole|Masters Edition IV|R|202439|97| -|Zombie Master|Masters Edition IV|U|202440|105| -|Scavenging Ghoul|Masters Edition IV|U|202441|95| -|Volcanic Island|Masters Edition IV|R|202442|260| -|Lim-Dϋl's Cohort|Masters Edition IV|C|202443|90| -|Brass Man|Masters Edition IV|C|202445|185| -|Tropical Island|Masters Edition IV|R|202446|254| -|Red Elemental Blast|Masters Edition IV|U|202447|131| -|Gaea's Avenger|Masters Edition IV|U|202448|155| -|Whiptail Wurm|Masters Edition IV|U|202449|173| -|Blaze of Glory|Masters Edition IV|U|202450|7| -|Aladdin|Masters Edition IV|R|202452|106| -|Mightstone|Masters Edition IV|C|202453|215| -|Sedge Troll|Masters Edition IV|R|202454|135| -|Library of Leng|Masters Edition IV|C|202455|211| -|Clockwork Avian|Masters Edition IV|U|202456|190| -|Tsunami|Masters Edition IV|R|202457|171| -|Phantasmal Forces|Masters Edition IV|C|202458|55| -|Scarwood Bandits|Masters Edition IV|R|202459|165| -|Regrowth|Masters Edition IV|R|202461|163| -|Swords to Plowshares|Masters Edition IV|U|202462|30| -|Atog|Masters Edition IV|C|202463|109| -|Floodwater Dam|Masters Edition IV|R|202464|200| -|War Mammoth|Masters Edition IV|C|202465|172| -|Soul Shred|Masters Edition IV|C|202466|98| -|Dread Wight|Masters Edition IV|U|202467|79| -|Triassic Egg|Masters Edition IV|R|202469|235| -|Time Vault|Masters Edition IV|R|202470|234| -|Goblin Firestarter|Masters Edition IV|C|202471|120| -|Stasis|Masters Edition IV|R|202472|64| -|Spotted Griffin|Masters Edition IV|C|202473|28| -|Bottle of Suleiman|Masters Edition IV|R|202474|184| -|Goblin General|Masters Edition IV|U|202475|121| -|Angelic Voices|Masters Edition IV|U|202477|3| -|Deathgrip|Masters Edition IV|R|202478|75| -|Goblin Warrens|Masters Edition IV|U|202479|123| -|Energy Flux|Masters Edition IV|U|202480|48| -|Serra Bestiary|Masters Edition IV|C|202481|27| -|Drop of Honey|Masters Edition IV|R|202482|150| -|Lich|Masters Edition IV|R|202483|89| -|Ring of Renewal|Masters Edition IV|R|202484|224| -|Divine Offering|Masters Edition IV|C|202485|10| -|Terror|Masters Edition IV|C|202486|99| -|Overwhelming Forces|Masters Edition IV|R|202488|92| -|Personal Incarnation|Masters Edition IV|R|202489|22| -|Roc of Kher Ridges|Masters Edition IV|U|202490|132| -|Primitive Justice|Masters Edition IV|U|202491|130| -|Eye for an Eye|Masters Edition IV|R|202492|12| -|Fork|Masters Edition IV|R|202493|116| -|Ice Cauldron|Masters Edition IV|R|202494|206| -|Coral Helm|Masters Edition IV|U|202497|194| -|Owl Familiar|Masters Edition IV|C|202498|54| -|Kormus Bell|Masters Edition IV|R|202499|210| -|Sol Ring|Masters Edition IV|R|202500|227| -|Balance|Masters Edition IV|R|202501|6| -|Mijae Djinn|Masters Edition IV|R|202503|127| -|Demonic Hordes|Masters Edition IV|R|202507|76| -|Pentagram of the Ages|Masters Edition IV|U|202509|220| -|Aesthir Glider|Masters Edition IV|C|202510|176| -|Detonate|Masters Edition IV|U|202511|111| -|Clay Statue|Masters Edition IV|U|202513|189| -|Scrubland|Masters Edition IV|R|202515|251| -|Gloom|Masters Edition IV|R|202516|83| -|Cyclopean Tomb|Masters Edition IV|R|202517|195| -|Mystic Decree|Masters Edition IV|U|202518|53| -|Blue Elemental Blast|Masters Edition IV|U|202520|39| -|Oasis|Masters Edition IV|C|202521|248| -|Soldevi Machinist|Masters Edition IV|U|202522|63| -|Ebony Rhino|Masters Edition IV|C|202523|199| -|Ebony Horse|Masters Edition IV|C|202524|198| -|Righteous Charge|Masters Edition IV|C|202525|23| -|Serra Aviary|Masters Edition IV|U|202527|26| -|Giant Growth|Masters Edition IV|C|202528|156| -|Fastbond|Masters Edition IV|R|202529|152| -|Glasses of Urza|Masters Edition IV|C|202530|203| -|Drain Power|Masters Edition IV|R|202532|46| -|Cyclone|Masters Edition IV|R|202533|148| -|Gate to Phyrexia|Masters Edition IV|U|202534|82| -|Underground Sea|Masters Edition IV|R|202536|256| -|Fire Tempest|Masters Edition IV|R|202537|114| -|Mana Vault|Masters Edition IV|R|202538|214| -|Guardian Beast|Masters Edition IV|R|202539|85| -|Dust to Dust|Masters Edition IV|U|202542|11| -|Conversion|Masters Edition IV|R|202543|9| -|Thunder Dragon|Masters Edition IV|R|202544|138| -|Just Fate|Masters Edition IV|C|202545|16| -|Serendib Djinn|Masters Edition IV|R|202546|61| -|Horn of Deafening|Masters Edition IV|U|202547|205| -|Yotian Soldier|Masters Edition IV|C|202548|240| -|False Summoning|Masters Edition IV|C|202549|49| -|Cyclopean Mummy|Masters Edition IV|C|202550|72| -|Two-Headed Giant of Foriys|Masters Edition IV|U|202551|139| -|Bird Maiden|Masters Edition IV|C|202553|110| -|Drowned|Masters Edition IV|C|202554|47| -|Wood Elemental|Masters Edition IV|R|202555|175| -|Island Sanctuary|Masters Edition IV|R|202556|15| -|Southern Elephant|Masters Edition IV|C|202557|167| -|Wheel of Fortune|Masters Edition IV|R|202558|140| -|Serra Angel|Masters Edition IV|U|202561|25| -|Gorilla War Cry|Masters Edition IV|C|202562|124| -|Xenic Poltergeist|Masters Edition IV|U|202563|104| -|Jade Monolith|Masters Edition IV|R|202564|208| -|Basalt Monolith|Masters Edition IV|U|202565|182| -|Power Artifact|Masters Edition IV|R|202566|57| -|Amulet of Kroog|Masters Edition IV|C|202567|179| -|Temple Acolyte|Masters Edition IV|C|202568|31| -|Soldevi Golem|Masters Edition IV|U|202569|228| -|Titania's Song|Masters Edition IV|R|202570|170| -|Savannah|Masters Edition IV|R|202571|250| -|Instill Energy|Masters Edition IV|U|202572|157| -|Book of Rass|Masters Edition IV|U|202573|183| -|Fire Imp|Masters Edition IV|U|202575|113| -|Primal Clay|Masters Edition IV|C|202576|222| -|Wild Aesthir|Masters Edition IV|C|202577|34| -|Mishra's Workshop|Masters Edition IV|R|202578|247| -|Symbol of Unsummoning|Masters Edition IV|C|202579|65| -|Reconstruction|Masters Edition IV|C|202580|59| -|Shapeshifter|Masters Edition IV|U|202581|226| -|Crumble|Masters Edition IV|C|202582|147| -|Veteran Bodyguard|Masters Edition IV|R|202583|32| -|Goblin Shrine|Masters Edition IV|C|202584|122| -|Rock Hydra|Masters Edition IV|R|202586|133| -|Howl from Beyond|Masters Edition IV|C|202588|87| -|Argothian Pixies|Masters Edition IV|C|202589|142| -|Tetravus|Masters Edition IV|R|202590|233| -|Word of Command|Masters Edition IV|R|202591|103| -|Rockslide Ambush|Masters Edition IV|C|202592|134| -|Channel|Masters Edition IV|R|202596|145| -|Gravebind|Masters Edition IV|C|202597|84| -|Celestial Sword|Masters Edition IV|U|202600|188| -|Kudzu|Masters Edition IV|U|202601|159| -|Obelisk of Undoing|Masters Edition IV|R|202603|217| -|Bayou|Masters Edition IV|R|202604|242| -|Junϊn Efreet|Masters Edition IV|U|202605|88| -|Staff of Zegon|Masters Edition IV|C|202607|229| -|Goblin Cavaliers|Masters Edition IV|C|202608|118| -|Bronze Horse|Masters Edition IV|U|202610|186| -|Copy Artifact|Masters Edition IV|R|202611|44| -|Plateau|Masters Edition IV|R|202612|249| -|Planar Gate|Masters Edition IV|U|202613|221| -|Lava Flow|Masters Edition IV|C|202614|126| -|Scarecrow|Masters Edition IV|U|202615|225| -|Transmute Artifact|Masters Edition IV|R|202616|69| -|Fog|Masters Edition IV|C|202617|153| -|Clockwork Swarm|Masters Edition IV|C|202618|192| -|Ali from Cairo|Masters Edition IV|R|202619|107| -|Ashnod's Altar|Masters Edition IV|R|202622|181| -|Diabolic Machine|Masters Edition IV|U|202623|196| -|Obsianus Golem|Masters Edition IV|C|202624|218| -|Citanul Druid|Masters Edition IV|C|202625|146| -|Badlands|Masters Edition IV|R|202626|241| -|Candelabra of Tawnos|Masters Edition IV|R|202627|187| -|Demonic Tutor|Masters Edition IV|R|202628|77| -|Gauntlet of Might|Masters Edition IV|R|202629|202| -|Dissipation Field|Scars of Mirrodin|R|202635|32| -|Tel-Jilad Defiance|Scars of Mirrodin|C|202636|129| -|Bonds of Quicksilver|Scars of Mirrodin|C|202638|29| -|Corrupted Harvester|Scars of Mirrodin|U|202640|59| -|Arm with Ζther|New Phyrexia|U|202641|28| -|Riddlesmith|Scars of Mirrodin|U|202643|40| -|Alpha Tyrranax|Scars of Mirrodin|C|202651|109| -|Wall of Tanglecord|Scars of Mirrodin|C|202652|222| -|Necrogen Scudder|Scars of Mirrodin|U|202653|71| -|Throne of Geth|Scars of Mirrodin|U|202675|211| -|Trigon of Corruption|Scars of Mirrodin|U|202686|213| -|Blistergrub|Scars of Mirrodin|C|202687|56| -|Skinrender|Scars of Mirrodin|U|204958|78| -|Forest|Duel Decks: Garruk vs. Liliana|L|204964|31| -|Forest|Duel Decks: Garruk vs. Liliana|L|204965|29| -|Forest|Duel Decks: Garruk vs. Liliana|L|204966|28| -|Forest|Duel Decks: Garruk vs. Liliana|L|204967|30| -|Swamp|Duel Decks: Garruk vs. Liliana|L|204968|62| -|Swamp|Duel Decks: Garruk vs. Liliana|L|204969|61| -|Swamp|Duel Decks: Garruk vs. Liliana|L|204970|60| -|Swamp|Duel Decks: Garruk vs. Liliana|L|204971|63| -|Wild Evocation|Magic 2011|R|204972|160| -|Thunder Strike|Magic 2011|C|204973|157| -|Harbor Serpent|Magic 2011|C|204974|56| -|Angelic Arbiter|Magic 2011|R|204975|4| -|Sylvan Ranger|Magic 2011|C|204976|198| -|Mass Polymorph|Magic 2011|R|204977|64| -|Mystifying Maze|Magic 2011|R|204978|226| -|Dark Tutelage|Magic 2011|R|204979|90| -|Ancient Hellkite|Magic 2011|R|204980|122| -|Mana Leak|Magic 2011|C|204981|62| -|Conundrum Sphinx|Magic 2011|R|204982|51| -|Wall of Vines|Magic 2011|C|204983|199| -|Azure Drake|Magic 2011|C|204984|46| -|Gargoyle Sentinel|Magic 2011|U|204985|207| -|Earth Servant|Magic 2011|U|204986|134| -|Ajani's Mantra|Magic 2011|C|204987|2| -|Knight Exemplar|Magic 2011|R|204988|20| -|Serra Ascendant|Magic 2011|R|204989|28| -|Arc Runner|Magic 2011|C|204991|123| -|Fire Servant|Magic 2011|U|204992|137| -|Leyline of Sanctity|Magic 2011|R|204993|21| -|Nether Horror|Magic 2011|C|204994|108| -|Primal Cocoon|Magic 2011|C|204995|191| -|Cultivate|Magic 2011|C|204996|168| -|Armored Ascension|Magic 2011|U|204997|5| -|Liliana's Specter|Magic 2011|C|204998|104| -|Frost Titan|Magic 2011|M|204999|55| -|Tome Scour|Magic 2011|C|205000|76| -|Barony Vampire|Magic 2011|C|205001|82| -|Brittle Effigy|Magic 2011|R|205002|202| -|Overwhelming Stampede|Magic 2011|R|205003|189| -|Scroll Thief|Magic 2011|C|205004|72| -|Haunting Echoes|Magic 2011|R|205005|99| -|Water Servant|Magic 2011|U|205006|80| -|Bloodcrazed Goblin|Magic 2011|C|205007|125| -|Leyline of Anticipation|Magic 2011|R|205008|61| -|Merfolk Spy|Magic 2011|C|205009|66| -|Mind Rot|Magic 2011|C|205010|105| -|Combust|Magic 2011|U|205011|130| -|Grave Titan|Magic 2011|M|205012|97| -|Leyline of the Void|Magic 2011|R|205013|101| -|Tireless Missionaries|Magic 2011|C|205014|36| -|Jace's Ingenuity|Magic 2011|U|205015|60| -|Greater Basilisk|Magic 2011|C|205016|180| -|Phantom Beast|Magic 2011|C|205017|69| -|Leyline of Punishment|Magic 2011|R|205018|148| -|Preordain|Magic 2011|C|205019|70| -|Ζther Adept|Magic 2011|C|205020|41| -|Time Reversal|Magic 2011|M|205022|75| -|Sacred Wolf|Magic 2011|C|205023|196| -|Duress|Magic 2011|C|205024|96| -|Garruk's Companion|Magic 2011|C|205025|176| -|Chandra's Spitfire|Magic 2011|U|205026|129| -|Primeval Titan|Magic 2011|M|205027|192| -|Quag Sickness|Magic 2011|C|205028|111| -|Stormtide Leviathan|Magic 2011|R|205029|74| -|Sun Titan|Magic 2011|M|205030|35| -|Leyline of Vitality|Magic 2011|R|205031|183| -|Mitotic Slime|Magic 2011|R|205032|185| -|Gaea's Revenge|Magic 2011|M|205033|174| -|Phylactery Lich|Magic 2011|R|205034|110| -|Liliana's Caress|Magic 2011|U|205035|103| -|Steel Overseer|Magic 2011|R|205036|214| -|Hunters' Feast|Magic 2011|C|205037|182| -|Reverberate|Magic 2011|R|205038|155| -|Brindle Boar|Magic 2011|C|205039|166| -|Maritime Guard|Magic 2011|C|205040|63| -|Captivating Vampire|Magic 2011|R|205041|87| -|Inferno Titan|Magic 2011|M|205042|146| -|Jace's Erasure|Magic 2011|C|205043|59| -|Sword of Vengeance|Magic 2011|R|205044|216| -|Incite|Magic 2011|C|205045|145| -|Destructive Force|Magic 2011|R|205046|133| -|Rotting Legion|Magic 2011|C|205047|115| -|Stabbing Pain|Magic 2011|C|205048|118| -|Crystal Ball|Magic 2011|U|205049|203| -|Hornet Sting|Magic 2011|C|205050|181| -|Autumn's Veil|Magic 2011|U|205051|162| -|Goblin Piker|Magic 2011|C|205052|142| -|Berserkers of Blood Ridge|Magic 2011|C|205053|124| -|Blood Tithe|Magic 2011|C|205054|84| -|Roc Egg|Magic 2011|U|205055|25| -|Stone Golem|Magic 2011|U|205056|215| -|Warlord's Axe|Magic 2011|U|205057|220| -|Temple Bell|Magic 2011|R|205058|217| -|Fauna Shaman|Magic 2011|R|205059|172| -|Garruk's Packleader|Magic 2011|U|205060|177| -|Elixir of Immortality|Magic 2011|U|205061|206| -|Plummet|Magic 2011|C|205062|190| -|Fog|Magic 2011|C|205064|173| -|Ajani's Pridemate|Magic 2011|U|205065|3| -|Reassembling Skeleton|Magic 2011|U|205066|112| -|Pyretic Ritual|Magic 2011|C|205067|153| -|Foresee|Magic 2011|C|205068|54| -|Sorcerer's Strongbox|Magic 2011|U|205069|213| -|Air Servant|Magic 2011|U|205070|42| -|Chandra's Outrage|Magic 2011|C|205071|128| -|Act of Treason|Magic 2011|C|205072|121| -|Alluring Siren|Magic 2011|U|205073|43| -|Inspired Charge|Magic 2011|C|205074|19| -|Obstinate Baloth|Magic 2011|R|205075|188| -|Awakener Druid|Magic 2011|U|205076|163| -|Baneslayer Angel|Magic 2011|M|205077|7| -|Relentless Rats|Magic 2011|U|205082|113| -|Armored Cancrix|Magic 2011|C|205083|44| -|Cudgel Troll|Magic 2011|U|205084|167| -|Doom Blade|Magic 2011|C|205088|95| -|Dragonskull Summit|Magic 2011|R|205089|223| -|Drowned Catacomb|Magic 2011|R|205090|224| -|Elvish Archdruid|Magic 2011|R|205091|171| -|Fiery Hellhound|Magic 2011|C|205093|136| -|Glacial Fortress|Magic 2011|R|205094|225| -|Solemn Offering|Magic 2011|C|205095|32| -|Goblin Chieftain|Magic 2011|R|205096|141| -|Condemn|Magic 2011|U|205098|11| -|Honor of the Pure|Magic 2011|R|205099|17| -|Howling Banshee|Magic 2011|U|205100|100| -|Ice Cage|Magic 2011|C|205101|57| -|Cyclops Gladiator|Magic 2011|R|205107|131| -|Merfolk Sovereign|Magic 2011|R|205108|65| -|Dryad's Favor|Magic 2011|C|205109|169| -|Palace Guard|Magic 2011|C|205110|24| -|Prized Unicorn|Magic 2011|U|205111|193| -|Protean Hydra|Magic 2011|R|205112|194| -|Rise from the Grave|Magic 2011|U|205113|114| -|Rootbound Crag|Magic 2011|R|205114|227| -|Safe Passage|Magic 2011|C|205115|26| -|Lava Axe|Magic 2011|C|205117|147| -|Sign in Blood|Magic 2011|C|205118|117| -|Silence|Magic 2011|R|205119|30| -|Sleep|Magic 2011|U|205120|73| -|Child of Night|Magic 2011|C|205122|88| -|Spined Wurm|Magic 2011|C|205123|197| -|Sunpetal Grove|Magic 2011|R|205124|228| -|Wall of Frost|Magic 2011|U|205128|79| -|Demon of Death's Gate|Magic 2011|M|205131|92| -|Assassinate|Magic 2011|C|205217|81| -|Black Knight|Magic 2011|U|205218|83| -|Blinding Mage|Magic 2011|C|205219|8| -|Clone|Magic 2011|R|205220|49| -|Yavimaya Wurm|Magic 2011|C|205221|200| -|Diabolic Tutor|Magic 2011|U|205222|93| -|Fireball|Magic 2011|U|205223|138| -|Giant Growth|Magic 2011|C|205224|178| -|Giant Spider|Magic 2011|C|205225|179| -|Holy Strength|Magic 2011|C|205226|16| -|Lightning Bolt|Magic 2011|C|205227|149| -|Llanowar Elves|Magic 2011|C|205228|184| -|Nantuko Shade|Magic 2011|R|205229|106| -|Juggernaut|Magic 2011|U|205230|209| -|Prodigal Pyromancer|Magic 2011|U|205231|152| -|Viscera Seer|Magic 2011|C|205232|120| -|Royal Assassin|Magic 2011|R|205233|116| -|Serra Angel|Magic 2011|U|205234|27| -|Hoarding Dragon|Magic 2011|R|205235|144| -|Terramorphic Expanse|Magic 2011|C|205236|229| -|Unholy Strength|Magic 2011|C|205237|119| -|Bloodthrone Vampire|Magic 2011|C|205238|85| -|White Knight|Magic 2011|U|205239|39| -|Ascendant Evincar|Planechase|R|205263|17| -|Blaze|Planechase|U|205264|47| -|Bogardan Firefiend|Planechase|C|205265|48| -|Cone of Flame|Planechase|U|205266|52| -|Festering Goblin|Planechase|C|205267|27| -|Furnace of Rath|Planechase|R|205268|55| -|Grave Pact|Planechase|R|205269|28| -|Loxodon Warhammer|Planechase|R|205270|118| -|Relentless Assault|Planechase|R|205271|62| -|Verdant Force|Planechase|R|205272|81| -|Forgotten Ancient|Planechase|R|205273|73| -|Nefashu|Planechase|R|205274|34| -|Ancient Den|Planechase|C|205275|130| -|Bosh, Iron Golem|Planechase|R|205276|108| -|Broodstar|Planechase|R|205277|8| -|Copper Myr|Planechase|C|205278|109| -|Forest|Planechase|L|205279|169| -|Gold Myr|Planechase|C|205283|114| -|Great Furnace|Planechase|C|205284|133| -|Iron Myr|Planechase|C|205285|115| -|Island|Planechase|L|205286|147| -|Island|Planechase|L|205287|148| -|Island|Planechase|L|205288|149| -|Island|Planechase|L|205289|150| -|Leaden Myr|Planechase|C|205290|116| -|Lodestone Myr|Planechase|R|205291|117| -|Mountain|Planechase|L|205292|160| -|Myr Enforcer|Planechase|C|205296|120| -|Nuisance Engine|Planechase|U|205297|121| -|Pentavus|Planechase|R|205298|123| -|Plains|Planechase|L|205301|142| -|Seat of the Synod|Planechase|C|205303|136| -|Serum Tank|Planechase|U|205304|125| -|Silver Myr|Planechase|C|205305|126| -|Skeleton Shard|Planechase|U|205306|127| -|Swamp|Planechase|L|205309|151| -|Thirst for Knowledge|Planechase|U|205311|14| -|Tree of Tales|Planechase|C|205312|140| -|Vault of Whispers|Planechase|C|205313|141| -|Wizard Replica|Planechase|C|205314|129| -|Living Hive|Planechase|R|205315|75| -|Mask of Memory|Planechase|U|205316|119| -|Arsenal Thresher|Planechase|C|205317|96| -|Glory of Warfare|Planechase|R|205318|88| -|Mage Slayer|Planechase|U|205319|91| -|Branching Bolt|Planechase|C|205320|83| -|Bull Cerodon|Planechase|U|205321|84| -|Death Baron|Planechase|R|205322|25| -|Dregscape Zombie|Planechase|C|205323|26| -|Master of Etherium|Planechase|R|205325|11| -|Relic of Progenitus|Planechase|C|205326|124| -|Rockslide Elemental|Planechase|U|205327|63| -|Cranial Plating|Planechase|C|205328|110| -|Door to Nothingness|Planechase|R|205329|112| -|Etched Oracle|Planechase|U|205330|113| -|Pentad Prism|Planechase|C|205331|122| -|Qumulox|Planechase|U|205332|12| -|Tornado Elemental|Planechase|R|205333|79| -|Suntouched Myr|Planechase|C|205334|128| -|Arcbound Crusher|Planechase|U|205335|105| -|Arcbound Slith|Planechase|U|205336|106| -|Darksteel Forge|Planechase|R|205337|111| -|Vedalken Engineer|Planechase|C|205338|15| -|Sarcomite Myr|Planechase|C|205339|13| -|Beast Hunt|Planechase|C|205340|68| -|Hideous End|Planechase|C|205341|31| -|Kor Sanctifiers|Planechase|C|205342|3| -|Whiplash Trap|Planechase|C|205343|16| -|Rotting Rats|Planechase|C|205344|39| -|Sludge Strider|Planechase|U|205345|95| -|Keep Watch|Planechase|C|205346|10| -|Consume Spirit|Planechase|U|205347|21| -|Fabricate|Planechase|U|205348|9| -|Gravedigger|Planechase|C|205349|29| -|Rampant Growth|Planechase|C|205350|76| -|Soul Warden|Planechase|C|205351|7| -|Terramorphic Expanse|Planechase|C|205352|139| -|Gruul Turf|Planechase|C|205353|134| -|Rumbling Slum|Planechase|R|205354|93| -|Savage Twister|Planechase|U|205355|94| -|Boros Garrison|Planechase|C|205356|131| -|Boros Guildmage|Planechase|U|205357|99| -|Boros Signet|Planechase|C|205358|107| -|Boros Swiftblade|Planechase|U|205359|82| -|Helldozer|Planechase|R|205360|30| -|Lightning Helix|Planechase|U|205361|90| -|Razia, Boros Archangel|Planechase|R|205362|92| -|Sunhome, Fortress of the Legion|Planechase|U|205363|138| -|Innocent Blood|Planechase|C|205364|33| -|Reckless Charge|Planechase|C|205365|61| -|Akroma's Vengeance|Planechase|R|205366|1| -|Cruel Revival|Planechase|C|205367|23| -|Explosive Vegetation|Planechase|U|205368|70| -|Insurrection|Planechase|R|205369|57| -|Menacing Ogre|Planechase|R|205370|59| -|Rorix Bladewing|Planechase|R|205371|65| -|Shepherd of Rot|Planechase|C|205372|40| -|Soulless One|Planechase|U|205373|41| -|Syphon Mind|Planechase|C|205374|42| -|Syphon Soul|Planechase|C|205375|43| -|Tribal Unity|Planechase|U|205376|80| -|Balefire Liege|Planechase|R|205377|97| -|Battlegate Mimic|Planechase|C|205378|98| -|Double Cleave|Planechase|C|205379|100| -|Duergar Hedge-Mage|Planechase|U|205380|101| -|Hearthfire Hobgoblin|Planechase|U|205381|102| -|Captain's Maneuver|Planechase|U|205382|85| -|Chaos|Planechase|U|205384|104| -|Orim's Thunder|Planechase|C|205385|5| -|Arc Lightning|Planechase|C|205386|46| -|Congregate|Planechase|C|205387|2| -|Goblin Offensive|Planechase|U|205388|56| -|Phyrexian Ghoul|Planechase|C|205389|37| -|Rolling Thunder|Planechase|C|205391|64| -|Flametongue Kavu|Planechase|U|205392|54| -|Briarhorn|Planechase|U|205393|69| -|Fertile Ground|Planechase|C|205394|71| -|Flamekin Harbinger|Planechase|U|205395|53| -|Oblivion Ring|Planechase|C|205396|4| -|Profane Command|Planechase|R|205397|38| -|Smokebraider|Planechase|C|205398|66| -|Beseech the Queen|Planechase|U|205399|19| -|Incremental Blight|Planechase|U|205400|32| -|Leechridden Swamp|Planechase|U|205401|135| -|Prison Term|Planechase|U|205402|6| -|Fertilid|Planechase|C|205403|72| -|Taurean Mauler|Planechase|R|205404|67| -|Pyrotechnics|Planechase|U|205405|60| -|Shivan Oasis|Planechase|U|205406|137| -|Bogardan Rager|Planechase|C|205407|49| -|Search for Tomorrow|Planechase|C|205408|77| -|Battery|Planechase|U|205409|103| -|Undead Warchief|Planechase|U|205410|44| -|Withered Wretch|Planechase|U|205411|45| -|Fires of Yavimaya|Planechase|U|205412|87| -|Hull Breach|Planechase|C|205413|89| -|Cinder Elemental|Planechase|U|205414|51| -|Silverglade Elemental|Planechase|C|205415|78| -|Browbeat|Planechase|U|205416|50| -|Phyrexian Arena|Planechase|R|205417|36| -|Beacon of Unrest|Planechase|R|205418|18| -|Corpse Harvester|Planechase|U|205419|22| -|Noxious Ghoul|Planechase|U|205420|35| -|Cabal Coffers|Planechase|U|205421|132| -|Dark Ritual|Planechase|C|205422|24| -|Cadaverous Knight|Planechase|C|205423|20| -|Dread Statuary|Worldwake|U|205425|135| -|Plains|Planechase|L|205428|144| -|Plains|Planechase|L|205430|143| -|Mountain|Planechase|L|205432|162| -|Swamp|Planechase|L|205434|153| -|Mountain|Planechase|L|205435|164| -|Plains|Planechase|L|205436|145| -|Plains|Planechase|L|205440|146| -|Mountain|Planechase|L|205441|163| -|Swamp|Planechase|L|205442|154| -|Swamp|Planechase|L|205443|152| -|Swamp|Planechase|L|205446|155| -|Mountain|Planechase|L|205447|161| -|Forest|Planechase|L|205464|165| -|Forest|Planechase|L|205465|168| -|Forest|Planechase|L|205466|166| -|Forest|Planechase|L|205467|167| -|Mountain|Planechase|L|205468|156| -|Mountain|Planechase|L|205469|159| -|Mountain|Planechase|L|205470|158| -|Mountain|Planechase|L|205471|157| -|Golem's Heart|Scars of Mirrodin|U|205472|161| -|Trigon of Thought|Scars of Mirrodin|U|205476|217| -|Cystbearer|Scars of Mirrodin|C|205477|117| -|Infiltration Lens|Scars of Mirrodin|U|205480|167| -|Ratchet Bomb|Scars of Mirrodin|R|205482|196| -|Tel-Jilad Fallen|Scars of Mirrodin|C|205483|130| -|Soliton|Scars of Mirrodin|C|205484|204| -|Tangle Angler|Scars of Mirrodin|U|205485|128| -|Blunt the Assault|Scars of Mirrodin|C|205486|113| -|Fulgent Distraction|Scars of Mirrodin|C|205488|7| -|Vigil for the Lost|Scars of Mirrodin|U|205489|26| -|Salvage Scout|Scars of Mirrodin|C|205491|19| -|Keldon Champion|Planechase|U|205801|58| -|Cerodon Yearling|Planechase|C|205802|86| -|Lady Orca|Masters Edition III|C|205867|159| -|Sivitri Scarzam|Masters Edition III|C|205868|175| -|Princess Lucrezia|Masters Edition III|U|205869|166| -|Tobias Andrion|Masters Edition III|C|205870|181| -|Pavel Maliki|Masters Edition III|U|205922|165| -|Mountain|Rise of the Eldrazi|L|205923|243| -|Plains|Rise of the Eldrazi|L|205925|229| -|Mountain|Rise of the Eldrazi|L|205926|242| -|Forest|Rise of the Eldrazi|L|205927|247| -|Plains|Rise of the Eldrazi|L|205928|232| -|Leaf Arrow|Rise of the Eldrazi|C|205929|194| -|Plains|Rise of the Eldrazi|L|205931|231| -|Island|Rise of the Eldrazi|L|205932|233| -|Forest|Rise of the Eldrazi|L|205933|246| -|Forest|Rise of the Eldrazi|L|205935|245| -|Consuming Vapors|Rise of the Eldrazi|R|205936|101| -|Mountain|Rise of the Eldrazi|L|205937|244| -|Plains|Rise of the Eldrazi|L|205938|230| -|Island|Rise of the Eldrazi|L|205939|234| -|Swamp|Rise of the Eldrazi|L|205940|237| -|Swamp|Rise of the Eldrazi|L|205941|238| -|Swamp|Rise of the Eldrazi|L|205942|239| -|Island|Rise of the Eldrazi|L|205944|235| -|Island|Rise of the Eldrazi|L|205945|236| -|Mountain|Rise of the Eldrazi|L|205947|241| -|Swamp|Rise of the Eldrazi|L|205948|240| -|Forest|Rise of the Eldrazi|L|205949|248| -|Ajani Goldmane|Magic 2011|M|205957|1| -|Chandra Nalaar|Magic 2011|M|205958|127| -|Garruk Wildspeaker|Magic 2011|M|205959|175| -|Jace Beleren|Magic 2011|M|205960|58| -|Liliana Vess|Magic 2011|M|205961|102| -|Ivy Elemental|Planechase|R|206024|74| -|Desperate Charge|Masters Edition III|C|206068|63| -|Forest|Masters Edition III|L|206069|228| -|Forest|Masters Edition III|L|206070|229| -|Forest|Masters Edition III|L|206071|230| -|Island|Masters Edition III|L|206072|221| -|Island|Masters Edition III|L|206073|220| -|Island|Masters Edition III|L|206074|219| -|Mountain|Masters Edition III|L|206075|227| -|Mountain|Masters Edition III|L|206076|226| -|Mountain|Masters Edition III|L|206077|225| -|Plains|Masters Edition III|L|206078|217| -|Plains|Masters Edition III|L|206079|218| -|Plains|Masters Edition III|L|206080|216| -|Swamp|Masters Edition III|L|206081|223| -|Swamp|Masters Edition III|L|206082|224| -|Swamp|Masters Edition III|L|206083|222| -|Voodoo Doll|Masters Edition III|R|206084|203| -|Wei Infantry|Masters Edition III|C|206117|80| -|Angel's Feather|Magic 2011|U|206325|201| -|Demon's Horn|Magic 2011|U|206326|204| -|Dragon's Claw|Magic 2011|U|206327|205| -|Kraken's Eye|Magic 2011|U|206328|210| -|Platinum Angel|Magic 2011|M|206329|212| -|Wurm's Tooth|Magic 2011|U|206330|222| -|Ornithopter|Magic 2011|U|206331|211| -|Voltaic Key|Magic 2011|U|206332|219| -|Whispersilk Cloak|Magic 2011|U|206342|221| -|Arc Trail|Scars of Mirrodin|U|206343|81| -|Strider Harness|Scars of Mirrodin|C|206344|207| -|Psychic Miasma|Scars of Mirrodin|C|206345|76| -|Shrine of Loyal Legions|New Phyrexia|U|206347|155| -|Precursor Golem|Scars of Mirrodin|R|206348|194| -|Whitesun's Passage|Scars of Mirrodin|C|206349|27| -|Steel Hellkite|Scars of Mirrodin|R|206351|205| -|Bladed Pinions|Scars of Mirrodin|C|206354|140| -|Carnifex Demon|Scars of Mirrodin|R|206357|57| -|Glint Hawk|Scars of Mirrodin|C|206358|10| -|Golem Artisan|Scars of Mirrodin|U|206360|159| -|Tunnel Ignus|Scars of Mirrodin|R|206361|105| -|Triskelion|Magic 2011|R|206719|218| -|Deathmark|Magic 2011|U|207100|91| -|Disentomb|Magic 2011|C|207101|94| -|Gravedigger|Magic 2011|C|207102|98| -|Nightwing Shade|Magic 2011|C|207103|109| -|Necrotic Plague|Magic 2011|R|207104|107| -|Bog Raiders|Magic 2011|C|207105|86| -|Corrupt|Magic 2011|U|207106|89| -|Acidic Slime|Magic 2011|U|207333|161| -|Birds of Paradise|Magic 2011|R|207334|165| -|Duskdale Wurm|Magic 2011|U|207335|170| -|Naturalize|Magic 2011|C|207336|186| -|Runeclaw Bear|Magic 2011|C|207337|195| -|Nature's Spiral|Magic 2011|U|207338|187| -|Sylvok Lifestaff|Scars of Mirrodin|C|207857|209| -|Scrapdiver Serpent|Scars of Mirrodin|C|207863|41| -|Tower of Calamities|Scars of Mirrodin|R|207864|212| -|Darksteel Sentinel|Scars of Mirrodin|U|207865|152| -|Strata Scythe|Scars of Mirrodin|R|207870|206| -|Putrefax|Scars of Mirrodin|R|207871|126| -|Quicksilver Gargantuan|Scars of Mirrodin|M|207874|39| -|Wurmcoil Engine|Scars of Mirrodin|M|207875|223| -|Necrotic Ooze|Scars of Mirrodin|R|207876|72| -|Genesis Wave|Scars of Mirrodin|R|207882|122| -|Mimic Vat|Scars of Mirrodin|R|207883|175| -|Grand Architect|Scars of Mirrodin|R|207884|33| -|Loxodon Wayfarer|Scars of Mirrodin|C|207885|15| -|Urza's Rage|Duel Decks: Phyrexia vs. the Coalition|M|207886|36| -|Yavimaya Elder|Duel Decks: Phyrexia vs. the Coalition|C|207887|44| -|Phyrexian Processor|Duel Decks: Phyrexia vs. the Coalition|R|207888|29| -|Voltaic Key|Duel Decks: Phyrexia vs. the Coalition|U|207889|17| -|Armadillo Cloak|Duel Decks: Phyrexia vs. the Coalition|C|207890|58| -|Phyrexian Negator|Duel Decks: Phyrexia vs. the Coalition|M|207891|1| -|Acidic Sliver|Premium Deck Series: Slivers|U|207897|13| -|Armor Sliver|Premium Deck Series: Slivers|U|207898|16| -|Barbed Sliver|Premium Deck Series: Slivers|U|207899|18| -|Clot Sliver|Premium Deck Series: Slivers|C|207900|5| -|Crystalline Sliver|Premium Deck Series: Slivers|U|207901|11| -|Frenzy Sliver|Premium Deck Series: Slivers|C|207902|6| -|Fungus Sliver|Premium Deck Series: Slivers|R|207903|21| -|Fury Sliver|Premium Deck Series: Slivers|U|207904|25| -|Gemhide Sliver|Premium Deck Series: Slivers|C|207905|8| -|Heart Sliver|Premium Deck Series: Slivers|C|207906|7| -|Hibernation Sliver|Premium Deck Series: Slivers|U|207907|12| -|Homing Sliver|Premium Deck Series: Slivers|C|207908|19| -|Might Sliver|Premium Deck Series: Slivers|U|207910|23| -|Muscle Sliver|Premium Deck Series: Slivers|C|207911|9| -|Necrotic Sliver|Premium Deck Series: Slivers|U|207912|20| -|Quick Sliver|Premium Deck Series: Slivers|C|207913|10| -|Sliver Overlord|Premium Deck Series: Slivers|M|207915|24| -|Spectral Sliver|Premium Deck Series: Slivers|U|207916|17| -|Victual Sliver|Premium Deck Series: Slivers|U|207918|15| -|Virulent Sliver|Premium Deck Series: Slivers|C|207919|2| -|Winged Sliver|Premium Deck Series: Slivers|C|207920|4| -|Amoeboid Changeling|Premium Deck Series: Slivers|C|207921|3| -|Vivid Grove|Premium Deck Series: Slivers|U|207922|36| -|Heartstone|Premium Deck Series: Slivers|U|207924|26| -|Aphetto Dredging|Premium Deck Series: Slivers|C|207925|28| -|Distant Melody|Premium Deck Series: Slivers|C|207926|27| -|Coat of Arms|Premium Deck Series: Slivers|R|207927|29| -|Terramorphic Expanse|Premium Deck Series: Slivers|C|207928|34| -|Wild Pair|Premium Deck Series: Slivers|R|207929|30| -|Ancient Ziggurat|Premium Deck Series: Slivers|U|207930|31| -|Rupture Spire|Premium Deck Series: Slivers|C|207933|33| -|Forest|Premium Deck Series: Slivers|L|207934|41| -|Island|Premium Deck Series: Slivers|L|207935|38| -|Mountain|Premium Deck Series: Slivers|L|207936|40| -|Plains|Premium Deck Series: Slivers|L|207937|37| -|Swamp|Premium Deck Series: Slivers|L|207938|39| -|Minion|Duel Decks: Phyrexia vs. the Coalition|C|207998|2| -|Goblin Tunneler|Magic 2011|C|207999|143| -|Canyon Minotaur|Magic 2011|C|208000|126| -|Fling|Magic 2011|C|208001|139| -|Shiv's Embrace|Magic 2011|U|208002|156| -|Magma Phoenix|Magic 2011|R|208003|150| -|Volcanic Strength|Magic 2011|C|208004|158| -|Demolish|Magic 2011|C|208005|132| -|Jinxed Idol|Magic 2011|R|208006|208| -|Manic Vandal|Magic 2011|C|208007|151| -|Ember Hauler|Magic 2011|U|208008|135| -|Pyroclasm|Magic 2011|U|208009|154| -|Goblin Balloon Brigade|Magic 2011|C|208010|140| -|Vulshok Berserker|Magic 2011|C|208011|159| -|Brood Sliver|Premium Deck Series: Slivers|R|208039|22| -|Metallic Sliver|Premium Deck Series: Slivers|C|208040|1| -|Spined Sliver|Premium Deck Series: Slivers|U|208041|14| -|Rootbound Crag|Premium Deck Series: Slivers|R|208042|32| -|Vivid Creek|Premium Deck Series: Slivers|U|208043|35| -|Cancel|Magic 2011|C|208217|48| -|Call to Mind|Magic 2011|U|208218|47| -|Flashfreeze|Magic 2011|U|208219|53| -|Mind Control|Magic 2011|U|208220|67| -|Traumatize|Magic 2011|R|208221|77| -|Negate|Magic 2011|C|208222|68| -|Unsummon|Magic 2011|C|208223|78| -|Cloud Elemental|Magic 2011|C|208224|50| -|Augury Owl|Magic 2011|C|208225|45| -|Diminish|Magic 2011|C|208226|52| -|Redirect|Magic 2011|R|208227|71| -|Mox Opal|Scars of Mirrodin|M|208248|179| -|Auriok Sunchaser|Scars of Mirrodin|C|208249|4| -|Carapace Forger|Scars of Mirrodin|C|208250|114| -|Galvanic Blast|Scars of Mirrodin|C|208251|91| -|Lifesmith|Scars of Mirrodin|U|208252|124| -|Twisted Image|Scars of Mirrodin|U|208253|50| -|Slice in Twain|Scars of Mirrodin|U|208254|127| -|Barbed Battlegear|Scars of Mirrodin|U|208255|139| -|Flameborn Hellion|Scars of Mirrodin|C|208256|89| -|Vedalken Certarch|Scars of Mirrodin|C|208257|52| -|Auriok Edgewright|Scars of Mirrodin|U|208260|3| -|Plague Stinger|Scars of Mirrodin|C|208261|75| -|True Conviction|Scars of Mirrodin|R|208262|25| -|Excommunicate|Magic 2011|C|208273|14| -|War Priest of Thune|Magic 2011|U|208274|38| -|Wild Griffin|Magic 2011|C|208275|40| -|Infantry Veteran|Magic 2011|C|208278|18| -|Squadron Hawk|Magic 2011|C|208279|33| -|Mighty Leap|Magic 2011|C|208280|22| -|Silvercoat Lion|Magic 2011|C|208283|31| -|Back to Nature|Magic 2011|U|208284|164| -|Cloud Crusader|Magic 2011|C|208287|10| -|Vengeful Archon|Magic 2011|R|208288|37| -|Celestial Purge|Magic 2011|U|208290|9| -|Elite Vanguard|Magic 2011|U|208291|13| -|Pacifism|Magic 2011|C|208292|23| -|Siege Mastodon|Magic 2011|C|208293|29| -|Stormfront Pegasus|Magic 2011|C|208294|34| -|Goldenglow Moth|Magic 2011|C|208295|15| -|Assault Griffin|Magic 2011|C|208296|6| -|Day of Judgment|Magic 2011|R|208297|12| -|Flesh Allergy|Scars of Mirrodin|U|208999|62| -|Darksteel Myr|Scars of Mirrodin|U|209000|151| -|Volition Reins|Scars of Mirrodin|U|209001|53| -|Semblance Anvil|Scars of Mirrodin|R|209002|201| -|Fume Spitter|Scars of Mirrodin|C|209005|63| -|Bleak Coven Vampires|Scars of Mirrodin|C|209006|55| -|Arrest|Scars of Mirrodin|C|209007|2| -|Sunspear Shikari|Scars of Mirrodin|C|209008|23| -|Prototype Portal|Scars of Mirrodin|R|209009|195| -|Snapsail Glider|Scars of Mirrodin|C|209010|203| -|Darksteel Juggernaut|Scars of Mirrodin|R|209011|150| -|Dispense Justice|Scars of Mirrodin|U|209015|5| -|Darksteel Axe|Scars of Mirrodin|U|209033|149| -|Vulshok Replica|Scars of Mirrodin|C|209034|221| -|Withstand Death|Scars of Mirrodin|C|209035|134| -|Moriok Replica|Scars of Mirrodin|C|209037|178| -|Neurok Replica|Scars of Mirrodin|C|209039|186| -|Trinket Mage|Scars of Mirrodin|U|209040|48| -|Echo Circlet|Scars of Mirrodin|C|209042|153| -|Glimmerpost|Scars of Mirrodin|C|209043|227| -|Mindslaver|Scars of Mirrodin|M|209044|176| -|Grafted Exoskeleton|Scars of Mirrodin|U|209045|162| -|Accorder's Shield|Scars of Mirrodin|C|209046|136| -|Bellowing Tanglewurm|Scars of Mirrodin|U|209048|111| -|Tainted Strike|Scars of Mirrodin|C|209049|80| -|Heavy Arbalest|Scars of Mirrodin|U|209050|164| -|Auriok Replica|Scars of Mirrodin|C|209051|138| -|Sylvok Replica|Scars of Mirrodin|C|209052|210| -|Mortician Beetle|Rise of the Eldrazi|R|209108|117| -|Darigaaz, the Igniter|Duel Decks: Phyrexia vs. the Coalition|R|209111|47| -|Elfhame Palace|Duel Decks: Phyrexia vs. the Coalition|U|209112|64| -|Fertile Ground|Duel Decks: Phyrexia vs. the Coalition|C|209113|52| -|Harrow|Duel Decks: Phyrexia vs. the Coalition|C|209114|57| -|Nomadic Elf|Duel Decks: Phyrexia vs. the Coalition|C|209115|38| -|Phyrexian Battleflies|Duel Decks: Phyrexia vs. the Coalition|C|209116|3| -|Power Armor|Duel Decks: Phyrexia vs. the Coalition|U|209117|62| -|Rith, the Awakener|Duel Decks: Phyrexia vs. the Coalition|R|209118|48| -|Shivan Oasis|Duel Decks: Phyrexia vs. the Coalition|U|209119|65| -|Thornscape Apprentice|Duel Decks: Phyrexia vs. the Coalition|C|209120|37| -|Treva, the Renewer|Duel Decks: Phyrexia vs. the Coalition|R|209121|49| -|Bone Shredder|Duel Decks: Phyrexia vs. the Coalition|U|209123|5| -|Phyrexian Debaser|Duel Decks: Phyrexia vs. the Coalition|C|209124|10| -|Phyrexian Defiler|Duel Decks: Phyrexia vs. the Coalition|U|209125|12| -|Phyrexian Denouncer|Duel Decks: Phyrexia vs. the Coalition|C|209126|4| -|Phyrexian Plaguelord|Duel Decks: Phyrexia vs. the Coalition|R|209127|13| -|Order of Yawgmoth|Duel Decks: Phyrexia vs. the Coalition|U|209128|11| -|Phyrexian Ghoul|Duel Decks: Phyrexia vs. the Coalition|C|209129|6| -|Priest of Gix|Duel Decks: Phyrexia vs. the Coalition|U|209130|7| -|Phyrexian Arena|Duel Decks: Phyrexia vs. the Coalition|R|209132|27| -|Phyrexian Hulk|Duel Decks: Phyrexia vs. the Coalition|U|209133|14| -|Slay|Duel Decks: Phyrexia vs. the Coalition|U|209134|25| -|Dark Ritual|Duel Decks: Phyrexia vs. the Coalition|C|209137|18| -|Puppet Strings|Duel Decks: Phyrexia vs. the Coalition|U|209139|22| -|Lightning Greaves|Duel Decks: Phyrexia vs. the Coalition|U|209141|19| -|Phyrexian Totem|Duel Decks: Phyrexia vs. the Coalition|U|209142|20| -|Thornscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|U|209144|42| -|Tribal Flames|Duel Decks: Phyrexia vs. the Coalition|C|209145|51| -|Hornet Cannon|Duel Decks: Phyrexia vs. the Coalition|U|209146|28| -|Allied Strategies|Duel Decks: Phyrexia vs. the Coalition|U|209148|63| -|Darigaaz's Charm|Duel Decks: Phyrexia vs. the Coalition|U|209149|59| -|Rith's Charm|Duel Decks: Phyrexia vs. the Coalition|U|209152|60| -|Sunscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|U|209153|40| -|Thunderscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|U|209155|41| -|Treva's Charm|Duel Decks: Phyrexia vs. the Coalition|U|209156|61| -|Gerrard Capashen|Duel Decks: Phyrexia vs. the Coalition|R|209157|46| -|Coalition Relic|Duel Decks: Phyrexia vs. the Coalition|R|209158|54| -|Terramorphic Expanse|Duel Decks: Phyrexia vs. the Coalition|C|209159|66| -|Phyrexian Colossus|Duel Decks: Phyrexia vs. the Coalition|R|209160|16| -|Sanguine Guard|Duel Decks: Phyrexia vs. the Coalition|U|209161|9| -|Saproling|Duel Decks: Phyrexia vs. the Coalition|C|209162|3| -|Hornet|Duel Decks: Phyrexia vs. the Coalition|C|209163|1| -|Clone Shell|Scars of Mirrodin|U|209278|143| -|Sword of Body and Mind|Scars of Mirrodin|M|209280|208| -|Screeching Silcaw|Scars of Mirrodin|C|209281|42| -|Rust Tick|Scars of Mirrodin|U|209282|198| -|Leonin Arbiter|Scars of Mirrodin|R|209287|14| -|Nim Deathmantle|Scars of Mirrodin|R|209289|188| -|Acid Web Spider|Scars of Mirrodin|U|209290|108| -|Seachrome Coast|Scars of Mirrodin|R|209399|229| -|Darkslick Shores|Scars of Mirrodin|R|209400|226| -|Blackcleave Cliffs|Scars of Mirrodin|R|209401|224| -|Molder Beast|Scars of Mirrodin|C|209403|125| -|Spikeshot Elder|Scars of Mirrodin|R|209404|104| -|Razorverge Thicket|Scars of Mirrodin|R|209407|228| -|Copperline Gorge|Scars of Mirrodin|R|209408|225| -|Myrsmith|Scars of Mirrodin|U|209712|16| -|Chimeric Mass|Scars of Mirrodin|R|209714|141| -|Myr Battlesphere|Scars of Mirrodin|R|209717|180| -|Turn to Slag|Scars of Mirrodin|C|209719|106| -|Relic Putrescence|Scars of Mirrodin|C|209720|77| -|Razorfield Thresher|Scars of Mirrodin|C|209725|197| -|Carrion Feeder|Duel Decks: Phyrexia vs. the Coalition|C|210133|2| -|Phyrexian Broodlings|Duel Decks: Phyrexia vs. the Coalition|C|210134|8| -|Phyrexian Gargantua|Duel Decks: Phyrexia vs. the Coalition|U|210135|15| -|Phyrexian Vault|Duel Decks: Phyrexia vs. the Coalition|U|210136|21| -|Worn Powerstone|Duel Decks: Phyrexia vs. the Coalition|U|210137|24| -|Living Death|Duel Decks: Phyrexia vs. the Coalition|R|210138|31| -|Tendrils of Corruption|Duel Decks: Phyrexia vs. the Coalition|C|210139|30| -|Whispersilk Cloak|Duel Decks: Phyrexia vs. the Coalition|U|210140|23| -|Hideous End|Duel Decks: Phyrexia vs. the Coalition|C|210141|26| -|Exotic Curse|Duel Decks: Phyrexia vs. the Coalition|C|210143|56| -|Narrow Escape|Duel Decks: Phyrexia vs. the Coalition|C|210152|55| -|Evasive Action|Duel Decks: Phyrexia vs. the Coalition|U|210153|50| -|Nihil Spellbomb|Scars of Mirrodin|C|210226|187| -|Horizon Spellbomb|Scars of Mirrodin|C|210229|165| -|Tumble Magnet|Scars of Mirrodin|C|210232|218| -|Flight Spellbomb|Scars of Mirrodin|C|210233|155| -|Panic Spellbomb|Scars of Mirrodin|C|210234|191| -|Exsanguinate|Scars of Mirrodin|U|210235|61| -|Lux Cannon|Scars of Mirrodin|M|210236|173| -|Origin Spellbomb|Scars of Mirrodin|C|210239|189| -|Swamp|Duel Decks: Phyrexia vs. the Coalition|L|210505|34| -|Swamp|Duel Decks: Phyrexia vs. the Coalition|L|210506|33| -|Swamp|Duel Decks: Phyrexia vs. the Coalition|L|210507|32| -|Swamp|Duel Decks: Phyrexia vs. the Coalition|L|210508|35| -|Forest|Duel Decks: Phyrexia vs. the Coalition|L|210509|70| -|Forest|Duel Decks: Phyrexia vs. the Coalition|L|210510|71| -|Island|Duel Decks: Phyrexia vs. the Coalition|L|210511|68| -|Mountain|Duel Decks: Phyrexia vs. the Coalition|L|210512|69| -|Plains|Duel Decks: Phyrexia vs. the Coalition|L|210513|67| -|Charging Troll|Duel Decks: Phyrexia vs. the Coalition|U|210556|45| -|Quirion Elves|Duel Decks: Phyrexia vs. the Coalition|C|210557|39| -|Verduran Emissary|Duel Decks: Phyrexia vs. the Coalition|U|210558|43| -|Gerrard's Command|Duel Decks: Phyrexia vs. the Coalition|C|210559|53| -|Koth of the Hammer|Scars of Mirrodin|M|212238|94| -|Livewire Lash|Scars of Mirrodin|R|212239|172| -|Venser, the Sojourner|Scars of Mirrodin|M|212240|135| -|Elspeth Tirel|Scars of Mirrodin|M|212241|6| -|Disperse|Scars of Mirrodin|C|212242|31| -|Painful Quandary|Scars of Mirrodin|R|212243|73| -|Chrome Steed|Scars of Mirrodin|C|212247|142| -|Indomitable Archangel|Scars of Mirrodin|M|212248|11| -|Skithiryx, the Blight Dragon|Scars of Mirrodin|M|212249|79| -|Palladium Myr|Scars of Mirrodin|U|212251|190| -|Contagion Engine|Scars of Mirrodin|R|212252|145| -|Isochron Scepter|From the Vault: Relics|M|212626|3| -|Jester's Cap|From the Vault: Relics|M|212627|5| -|Zuran Orb|From the Vault: Relics|M|212628|15| -|Masticore|From the Vault: Relics|M|212629|7| -|Ζther Vial|From the Vault: Relics|M|212630|1| -|Sundering Titan|From the Vault: Relics|M|212631|13| -|Karn, Silver Golem|From the Vault: Relics|M|212632|6| -|Memory Jar|From the Vault: Relics|M|212633|8| -|Mox Diamond|From the Vault: Relics|M|212634|10| -|Mirari|From the Vault: Relics|M|212635|9| -|Black Vise|From the Vault: Relics|M|212636|2| -|Nevinyrral's Disk|From the Vault: Relics|M|212637|11| -|Sol Ring|From the Vault: Relics|M|212638|12| -|Ivory Tower|From the Vault: Relics|M|212639|4| -|Sword of Body and Mind|From the Vault: Relics|M|212640|14| -|Stoic Rebuttal|Scars of Mirrodin|C|212703|46| -|Soul Parry|Scars of Mirrodin|C|212705|21| -|Ezuri's Brigade|Scars of Mirrodin|R|212707|121| -|Liquimetal Coating|Scars of Mirrodin|U|212709|171| -|Scoria Elemental|Scars of Mirrodin|C|212710|102| -|Trigon of Mending|Scars of Mirrodin|U|212714|215| -|Molten Psyche|Scars of Mirrodin|R|212716|98| -|Saberclaw Golem|Scars of Mirrodin|C|212717|200| -|Plains|Magic 2011|L|213612|231| -|Plains|Magic 2011|L|213613|232| -|Plains|Magic 2011|L|213614|230| -|Plains|Magic 2011|L|213615|233| -|Island|Magic 2011|L|213616|237| -|Island|Magic 2011|L|213617|235| -|Island|Magic 2011|L|213618|236| -|Island|Magic 2011|L|213619|234| -|Swamp|Magic 2011|L|213620|239| -|Swamp|Magic 2011|L|213621|238| -|Swamp|Magic 2011|L|213622|240| -|Swamp|Magic 2011|L|213623|241| -|Mountain|Magic 2011|L|213624|242| -|Mountain|Magic 2011|L|213625|243| -|Mountain|Magic 2011|L|213626|244| -|Mountain|Magic 2011|L|213627|245| -|Forest|Magic 2011|L|213628|246| -|Forest|Magic 2011|L|213629|247| -|Forest|Magic 2011|L|213630|248| -|Forest|Magic 2011|L|213631|249| -|Horrifying Revelation|Mirrodin Besieged|C|213723|45| -|Phyrexian Crusader|Mirrodin Besieged|R|213724|50| -|Mortarpod|Mirrodin Besieged|U|213725|115| -|Steel Sabotage|Mirrodin Besieged|C|213726|33| -|Viridian Emissary|Mirrodin Besieged|C|213728|95| -|Titan Forge|Mirrodin Besieged|R|213730|141| -|Inkmoth Nexus|Mirrodin Besieged|R|213731|145| -|Fangren Marauder|Mirrodin Besieged|C|213732|79| -|Myr Sire|Mirrodin Besieged|C|213734|116| -|Vivisection|Mirrodin Besieged|C|213735|38| -|Fuel for the Cause|Mirrodin Besieged|C|213736|25| -|Ichor Wellspring|Mirrodin Besieged|C|213737|110| -|Silverskin Armor|Mirrodin Besieged|U|213738|132| -|Lead the Stampede|Mirrodin Besieged|U|213739|82| -|Magnetic Mine|Mirrodin Besieged|R|213740|113| -|Piston Sledge|Mirrodin Besieged|U|213742|124| -|Phyrexian Digester|Mirrodin Besieged|C|213743|120| -|Pistus Strike|Mirrodin Besieged|C|213744|86| -|Rusted Slasher|Mirrodin Besieged|C|213746|128| -|Septic Rats|Mirrodin Besieged|U|213748|55| -|Darksteel Plate|Mirrodin Besieged|R|213749|104| -|Vedalken Infuser|Mirrodin Besieged|U|213750|37| -|Scourge Servant|Mirrodin Besieged|C|213751|54| -|Plaguemaw Beast|Mirrodin Besieged|U|213752|87| -|Treasure Mage|Mirrodin Besieged|U|213753|34| -|Neurok Commando|Mirrodin Besieged|U|213754|28| -|Quilled Slagwurm|Mirrodin Besieged|U|213755|89| -|Concussive Bolt|Mirrodin Besieged|C|213756|60| -|Myr Turbine|Mirrodin Besieged|R|213757|117| -|Tine Shrike|Mirrodin Besieged|C|213758|17| -|Flesh-Eater Imp|Mirrodin Besieged|U|213759|42| -|Divine Offering|Mirrodin Besieged|C|213760|5| -|Loxodon Partisan|Mirrodin Besieged|C|213761|12| -|Quicksilver Geyser|Mirrodin Besieged|C|213762|30| -|Gnathosaur|Mirrodin Besieged|C|213763|63| -|Training Drone|Mirrodin Besieged|C|213764|142| -|Distant Memories|Mirrodin Besieged|R|213765|24| -|Koth's Courier|Mirrodin Besieged|C|213766|68| -|Rally the Forces|Mirrodin Besieged|C|213767|73| -|Gust-Skimmer|Mirrodin Besieged|C|213768|108| -|Leonin Skyhunter|Mirrodin Besieged|C|213770|11| -|Burn the Impure|Mirrodin Besieged|C|213771|59| -|Viridian Corrupter|Mirrodin Besieged|U|213772|94| -|Signal Pest|Mirrodin Besieged|U|213773|131| -|Rot Wolf|Mirrodin Besieged|C|213774|90| -|Contested War Zone|Mirrodin Besieged|R|213775|144| -|Sphere of the Suns|Mirrodin Besieged|U|213776|134| -|Virulent Wound|Mirrodin Besieged|C|213777|57| -|Unnatural Predation|Mirrodin Besieged|C|213778|93| -|Mirran Spy|Mirrodin Besieged|C|213779|26| -|Serum Raker|Mirrodin Besieged|C|213780|31| -|Peace Strider|Mirrodin Besieged|U|213781|119| -|Goblin Wardriver|Mirrodin Besieged|U|213782|64| -|Glissa's Courier|Mirrodin Besieged|C|213783|80| -|Viridian Claw|Mirrodin Besieged|U|213784|143| -|Plague Myr|Mirrodin Besieged|U|213785|125| -|Shriekhorn|Mirrodin Besieged|C|213786|130| -|Kuldotha Ringleader|Mirrodin Besieged|C|213787|70| -|Into the Core|Mirrodin Besieged|U|213788|67| -|Caustic Hound|Mirrodin Besieged|C|213789|40| -|Strandwalker|Mirrodin Besieged|U|213790|137| -|Frantic Salvage|Mirrodin Besieged|C|213791|6| -|Banishment Decree|Mirrodin Besieged|C|213792|3| -|Blisterstick Shaman|Mirrodin Besieged|C|213793|58| -|Ardent Recruit|Mirrodin Besieged|C|213794|2| -|Ogre Resister|Mirrodin Besieged|C|213795|72| -|Melira's Keepers|Mirrodin Besieged|U|213796|83| -|Phyresis|Mirrodin Besieged|C|213797|49| -|Gore Vassal|Mirrodin Besieged|U|213798|7| -|Go for the Throat|Mirrodin Besieged|U|213799|43| -|Brass Squire|Mirrodin Besieged|U|213800|101| -|Spire Serpent|Mirrodin Besieged|C|213801|32| -|Mirran Crusader|Mirrodin Besieged|R|213802|14| -|Phyrexian Rager|Mirrodin Besieged|C|213804|51| -|Copper Carapace|Mirrodin Besieged|C|213805|102| -|Crush|Mirrodin Besieged|C|213806|61| -|Hexplate Golem|Mirrodin Besieged|C|213807|109| -|Choking Fumes|Mirrodin Besieged|U|213808|4| -|Kuldotha Flamefiend|Mirrodin Besieged|U|213810|69| -|Metallic Mastery|Mirrodin Besieged|U|213812|71| -|Priests of Norn|Mirrodin Besieged|C|213814|16| -|Razorfield Rhino|Mirrodin Besieged|C|213815|127| -|Nested Ghoul|Mirrodin Besieged|U|213816|48| -|Flensermite|Mirrodin Besieged|C|213817|41| -|Accorder Paladin|Mirrodin Besieged|U|213818|1| -|Mirran Mettle|Mirrodin Besieged|C|213819|84| -|Blightwidow|Mirrodin Besieged|C|213820|77| -|Turn the Tide|Mirrodin Besieged|C|213821|35| -|Core Prowler|Mirrodin Besieged|U|213822|103| -|Golden Urn|Scars of Mirrodin|C|213926|158| -|Hero of Oxid Ridge|Mirrodin Besieged|M|214028|66| -|Creeping Corrosion|Mirrodin Besieged|R|214029|78| -|Victory's Herald|Mirrodin Besieged|R|214030|18| -|Forest|Mirrodin Besieged|L|214031|154| -|Dross Ripper|Mirrodin Besieged|C|214032|106| -|Praetor's Counsel|Mirrodin Besieged|M|214034|88| -|Knowledge Pool|Mirrodin Besieged|R|214035|111| -|Oculus|Mirrodin Besieged|C|214036|29| -|Cryptoplasm|Mirrodin Besieged|R|214037|23| -|Phyrexian Juggernaut|Mirrodin Besieged|U|214038|121| -|Thopter Assembly|Mirrodin Besieged|R|214039|140| -|Bonehoard|Mirrodin Besieged|R|214040|100| -|Tangle Hulk|Mirrodin Besieged|C|214041|139| -|Shimmer Myr|Mirrodin Besieged|R|214042|129| -|Corrupted Conscience|Mirrodin Besieged|U|214043|22| -|Massacre Wurm|Mirrodin Besieged|M|214044|46| -|Mountain|Mirrodin Besieged|L|214045|152| -|Psychosis Crawler|Mirrodin Besieged|R|214047|126| -|Phyrexian Rebirth|Mirrodin Besieged|R|214048|15| -|Bladed Sentinel|Mirrodin Besieged|C|214049|98| -|Thrun, the Last Troll|Mirrodin Besieged|M|214050|92| -|Hellkite Igniter|Mirrodin Besieged|R|214052|65| -|Galvanoth|Mirrodin Besieged|R|214053|62| -|Slagstorm|Mirrodin Besieged|R|214054|75| -|Decimator Web|Mirrodin Besieged|R|214055|105| -|Kemba's Legion|Mirrodin Besieged|U|214056|9| -|Plains|Mirrodin Besieged|L|214057|146| -|Lumengrid Gargoyle|Mirrodin Besieged|U|214059|112| -|Phyrexian Hydra|Mirrodin Besieged|R|214060|85| -|Black Sun's Zenith|Mirrodin Besieged|R|214061|39| -|Sangromancer|Mirrodin Besieged|R|214062|53| -|Consecrated Sphinx|Mirrodin Besieged|M|214063|21| -|Hero of Bladehold|Mirrodin Besieged|M|214064|8| -|Tezzeret, Agent of Bolas|Mirrodin Besieged|M|214065|97| -|Mountain|Mirrodin Besieged|L|214066|153| -|Myr Welder|Mirrodin Besieged|R|214067|118| -|Mirrorworks|Mirrodin Besieged|R|214068|114| -|Spin Engine|Mirrodin Besieged|C|214069|135| -|Sword of Feast and Famine|Mirrodin Besieged|M|214070|138| -|Mitotic Manipulation|Mirrodin Besieged|R|214071|27| -|Glissa, the Traitor|Mirrodin Besieged|M|214072|96| -|Gruesome Encore|Mirrodin Besieged|U|214073|44| -|Phyrexian Vatmother|Mirrodin Besieged|R|214074|52| -|Forest|Mirrodin Besieged|L|214075|155| -|Spine of Ish Sah|Mirrodin Besieged|R|214076|136| -|Alloy Myr|New Phyrexia|U|214344|129| -|Caged Sun|New Phyrexia|R|214345|132| -|Glistening Oil|New Phyrexia|R|214346|62| -|Psychic Surgery|New Phyrexia|R|214347|44| -|Jin-Gitaxias, Core Augur|New Phyrexia|M|214349|37| -|Karn Liberated|New Phyrexia|M|214350|1| -|Elesh Norn, Grand Cenobite|New Phyrexia|M|214352|9| -|Auriok Survivors|New Phyrexia|U|214353|3| -|Sickleslicer|New Phyrexia|U|214357|157| -|Lashwrithe|New Phyrexia|R|214359|143| -|Chancellor of the Spires|New Phyrexia|R|214360|31| -|Life's Finale|New Phyrexia|R|214362|65| -|Exclusion Ritual|New Phyrexia|U|214364|10| -|Deceiver Exarch|New Phyrexia|U|214365|33| -|Necropouncer|New Phyrexia|U|214367|147| -|Sword of War and Peace|New Phyrexia|M|214368|161| -|Reaper of Sheoldred|New Phyrexia|U|214374|72| -|Phyrexian Metamorph|New Phyrexia|R|214375|42| -|Geth's Verdict|New Phyrexia|C|214376|61| -|Urabrask the Hidden|New Phyrexia|M|214378|98| -|Phyrexian Hulk|New Phyrexia|C|214379|150| -|Kiln Walker|New Phyrexia|U|214380|142| -|Volt Charge|New Phyrexia|C|214381|100| -|Sheoldred, Whispering One|New Phyrexia|M|214382|73| -|Blighted Agent|New Phyrexia|C|214383|29| -|Phyrexian Ingester|New Phyrexia|R|214384|41| -|Rage Extractor|New Phyrexia|U|214385|91| -|Phyrexian Obliterator|New Phyrexia|M|214386|68| -|Viridian Harvest|New Phyrexia|C|214388|125| -|Grim Affliction|New Phyrexia|C|214389|63| -|Viridian Betrayers|New Phyrexia|C|214390|124| -|Forest|Scars of Mirrodin|L|214665|246| -|Island|Scars of Mirrodin|L|214666|235| -|Mountain|Scars of Mirrodin|L|214667|242| -|Mountain|Scars of Mirrodin|L|214668|243| -|Swamp|Scars of Mirrodin|L|214669|239| -|Forest|Scars of Mirrodin|L|214670|249| -|Plains|Scars of Mirrodin|L|214671|232| -|Island|Scars of Mirrodin|L|214672|234| -|Forest|Scars of Mirrodin|L|214673|247| -|Swamp|Scars of Mirrodin|L|214674|241| -|Mountain|Scars of Mirrodin|L|214675|244| -|Swamp|Scars of Mirrodin|L|214676|240| -|Plains|Scars of Mirrodin|L|214677|230| -|Island|Scars of Mirrodin|L|214678|236| -|Plains|Scars of Mirrodin|L|214679|231| -|Forest|Scars of Mirrodin|L|214680|248| -|Mountain|Scars of Mirrodin|L|214681|245| -|Island|Scars of Mirrodin|L|214682|237| -|Plains|Scars of Mirrodin|L|214683|233| -|Swamp|Scars of Mirrodin|L|214684|238| -|Myr Propagator|Scars of Mirrodin|R|215069|182| -|Cerebral Eruption|Scars of Mirrodin|R|215073|86| -|Hoard-Smelter Dragon|Scars of Mirrodin|R|215074|93| -|Geth, Lord of the Vault|Scars of Mirrodin|M|215076|64| -|Venser's Journal|Scars of Mirrodin|R|215079|220| -|Engulfing Slagwurm|Scars of Mirrodin|R|215080|118| -|Asceticism|Scars of Mirrodin|R|215082|110| -|Argent Sphinx|Scars of Mirrodin|R|215085|28| -|Hand of the Praetors|Scars of Mirrodin|R|215086|66| -|Molten-Tail Masticore|Scars of Mirrodin|M|215089|177| -|Kemba, Kha Regent|Scars of Mirrodin|R|215091|12| -|Platinum Emperion|Scars of Mirrodin|M|215092|193| -|Kuldotha Forgemaster|Scars of Mirrodin|R|215098|169| -|Etched Champion|Scars of Mirrodin|R|215099|154| -|Ogre Geargrabber|Scars of Mirrodin|U|215101|99| -|Memoricide|Scars of Mirrodin|R|215103|69| -|Sunblast Angel|Scars of Mirrodin|R|215111|22| -|Myr Reservoir|Scars of Mirrodin|R|215114|183| -|Elspeth, Knight-Errant|Duel Decks: Elspeth vs. Tezzeret|M|217825|1| -|Tezzeret the Seeker|Duel Decks: Elspeth vs. Tezzeret|M|217826|39| -|Argentum Armor|Scars of Mirrodin|R|217967|137| -|Jackal Pup|Premium Deck Series: Fire and Lightning|U|217974|2| -|Chain Lightning|Premium Deck Series: Fire and Lightning|C|217977|16| -|Furnace Scamp|New Phyrexia|C|217979|84| -|Shrine of Limitless Power|New Phyrexia|U|217980|154| -|Suture Priest|New Phyrexia|C|217981|25| -|Shrine of Boundless Growth|New Phyrexia|U|217982|152| -|Vault Skirge|New Phyrexia|C|217984|76| -|Defensive Stance|New Phyrexia|C|217987|34| -|Impaler Shrike|New Phyrexia|C|217988|36| -|Spined Thopter|New Phyrexia|C|217990|45| -|Spellskite|New Phyrexia|R|217992|159| -|Shriek Raptor|New Phyrexia|C|217994|24| -|Mycosynth Fiend|New Phyrexia|U|217995|117| -|Etched Monstrosity|New Phyrexia|M|217996|135| -|Brutalizer Exarch|New Phyrexia|U|217998|105| -|Blind Zealot|New Phyrexia|C|217999|52| -|Argent Mutation|New Phyrexia|U|218001|27| -|Vorinclex, Voice of Hunger|New Phyrexia|M|218002|127| -|Geosurge|New Phyrexia|U|218004|85| -|Birthing Pod|New Phyrexia|R|218006|104| -|Hex Parasite|New Phyrexia|R|218008|137| -|Slag Fiend|New Phyrexia|R|218010|95| -|Loxodon Convert|New Phyrexia|C|218013|14| -|Phyrexia's Core|New Phyrexia|U|218015|165| -|Psychic Barrier|New Phyrexia|C|218016|43| -|Vapor Snag|New Phyrexia|C|218017|48| -|Shrine of Burning Rage|New Phyrexia|U|218018|153| -|Scrapyard Salvo|New Phyrexia|C|218019|94| -|Chancellor of the Dross|New Phyrexia|R|218020|54| -|Chancellor of the Forge|New Phyrexia|R|218021|81| -|Razor Swine|New Phyrexia|C|218022|92| -|Entomber Exarch|New Phyrexia|U|218023|59| -|Cathedral Membrane|New Phyrexia|U|218024|5| -|Leeching Bite|New Phyrexia|C|218028|113| -|Priest of Urabrask|New Phyrexia|U|218037|90| -|Vulshok Refugee|New Phyrexia|U|218038|101| -|Mycosynth Wellspring|New Phyrexia|C|218039|145| -|Numbing Dose|New Phyrexia|C|218040|40| -|Porcelain Legionnaire|New Phyrexia|C|218043|19| -|Triumph of the Hordes|New Phyrexia|U|218044|123| -|Whispering Specter|New Phyrexia|U|218045|77| -|Praetor's Grasp|New Phyrexia|R|218050|71| -|Fresh Meat|New Phyrexia|R|218051|109| -|Lost Leonin|New Phyrexia|C|218053|13| -|Bludgeon Brawl|New Phyrexia|R|218055|80| -|Isolation Cell|New Phyrexia|U|218057|141| -|Phyrexian Unlife|New Phyrexia|R|218058|18| -|Caress of Phyrexia|New Phyrexia|U|218061|53| -|Chancellor of the Tangle|New Phyrexia|R|218062|106| -|Ichor Explosion|New Phyrexia|U|218066|64| -|Darksteel Relic|New Phyrexia|U|218067|134| -|Gremlin Mine|New Phyrexia|C|218068|136| -|Inquisitor Exarch|New Phyrexia|U|218070|12| -|Dispatch|New Phyrexia|U|218072|7| -|Evil Presence|New Phyrexia|C|218073|60| -|Chained Throatseeker|New Phyrexia|C|218075|30| -|Thundering Tanadon|New Phyrexia|C|218077|122| -|Remember the Fallen|New Phyrexia|C|218078|21| -|Unwinding Clock|New Phyrexia|R|218079|164| -|Artillerize|New Phyrexia|C|218081|79| -|Tormentor Exarch|New Phyrexia|U|218082|97| -|Chancellor of the Annex|New Phyrexia|R|218083|6| -|Mindculling|New Phyrexia|U|218085|39| -|Phyrexian Swarmlord|New Phyrexia|R|218086|119| -|Mishra's Factory|Duel Decks: Elspeth vs. Tezzeret|U|218340|73| -|Thirst for Knowledge|Duel Decks: Elspeth vs. Tezzeret|U|218580|68| -|Swords to Plowshares|Duel Decks: Elspeth vs. Tezzeret|U|218581|22| -|Crusade|Duel Decks: Elspeth vs. Tezzeret|R|218582|27| -|Phantasmal Dragon|Magic 2012|U|220068|71| -|Crimson Mage|Magic 2012|U|220069|129| -|Onyx Mage|Magic 2012|U|220072|103| -|Pride Guardian|Magic 2012|C|220073|31| -|Timely Reinforcements|Magic 2012|U|220074|40| -|Stingerfling Spider|Magic 2012|U|220075|197| -|Garruk's Horde|Magic 2012|R|220077|176| -|Arbalest Elite|Magic 2012|U|220078|5| -|Gladecover Scout|Magic 2012|C|220082|178| -|Aegis Angel|Magic 2012|R|220086|1| -|Drifting Shade|Magic 2012|C|220088|96| -|Sphinx of Uthuun|Magic 2012|R|220090|76| -|Guardians' Pledge|Magic 2012|C|220095|22| -|Druidic Satchel|Magic 2012|R|220098|207| -|Phantasmal Image|Magic 2012|R|220099|72| -|Garruk, Primal Hunter|Magic 2012|M|220100|174| -|Furyborn Hellkite|Magic 2012|M|220103|135| -|Merfolk Mesmerist|Magic 2012|C|220106|66| -|Crumbling Colossus|Magic 2012|U|220113|204| -|Mesa Enchantress|Magic 2012|R|220116|25| -|Tormented Soul|Magic 2012|C|220122|114| -|Bloodrage Vampire|Magic 2012|C|220125|83| -|Vampire Outcasts|Magic 2012|U|220127|115| -|Rune-Scarred Demon|Magic 2012|R|220130|106| -|Lord of the Unreal|Magic 2012|R|220131|62| -|Day of Judgment|Magic 2012|R|220139|12| -|Monomania|Magic 2012|R|220143|102| -|Aven Fleetwing|Magic 2012|C|220145|44| -|Chandra, the Firebrand|Magic 2012|M|220146|124| -|Adaptive Automaton|Magic 2012|R|220147|201| -|Skinshifter|Magic 2012|R|220151|195| -|Doubling Chant|Magic 2012|R|220152|170| -|Skywinder Drake|Magic 2012|C|220153|75| -|Spirit Mantle|Magic 2012|U|220154|35| -|Sutured Ghoul|Magic 2012|R|220157|112| -|Stonehorn Dignitary|Magic 2012|C|220160|37| -|Manalith|Magic 2012|C|220162|212| -|Vengeful Pharaoh|Magic 2012|R|220170|116| -|Primordial Hydra|Magic 2012|M|220172|189| -|Serra Angel|Magic 2012|U|220176|33| -|Merfolk Looter|Magic 2012|C|220179|65| -|Lifelink|Magic 2012|C|220182|24| -|Wall of Torches|Magic 2012|C|220189|159| -|Trollhide|Magic 2012|C|220190|199| -|Divination|Magic 2012|C|220194|50| -|Celestial Purge|Magic 2012|U|220195|11| -|Lurking Crocodile|Magic 2012|C|220199|184| -|Scepter of Empires|Magic 2012|U|220209|216| -|Dungrove Elder|Magic 2012|R|220210|171| -|Amphin Cutthroat|Magic 2012|C|220218|43| -|Divine Favor|Magic 2012|C|220219|14| -|Carnage Wurm|Magic 2012|U|220220|168| -|Chasm Drake|Magic 2012|C|220225|48| -|Visions of Beyond|Magic 2012|R|220226|80| -|Blood Ogre|Magic 2012|C|220227|122| -|Angelic Destiny|Magic 2012|M|220230|3| -|Throne of Empires|Magic 2012|R|220232|221| -|Personal Sanctuary|Magic 2012|R|220235|30| -|Gideon's Avenger|Magic 2012|R|220239|17| -|Lightning Elemental|Magic 2012|C|220240|149| -|Rusted Sentinel|Magic 2012|U|220241|215| -|Arachnus Spinner|Magic 2012|R|220242|162| -|Jace's Archivist|Magic 2012|R|220244|59| -|Flashfreeze|Magic 2012|U|220249|52| -|Phantasmal Bear|Magic 2012|C|220251|70| -|Duskhunter Bat|Magic 2012|C|220259|97| -|Swiftfoot Boots|Magic 2012|U|220261|219| -|Alabaster Mage|Magic 2012|U|220264|2| -|Turn to Frog|Magic 2012|U|220265|78| -|Azure Mage|Magic 2012|U|220268|45| -|Circle of Flame|Magic 2012|U|220273|127| -|Stormblood Berserker|Magic 2012|U|220277|156| -|Jade Mage|Magic 2012|U|220279|181| -|Griffin Rider|Magic 2012|C|220282|20| -|Arachnus Web|Magic 2012|C|220283|163| -|Frost Breath|Magic 2012|C|220284|54| -|Hunter's Insight|Magic 2012|U|220291|180| -|Dark Favor|Magic 2012|C|220293|89| -|Gorehorn Minotaurs|Magic 2012|C|220294|144| -|Stave Off|Magic 2012|C|220295|36| -|Greatsword|Magic 2012|U|220296|209| -|Crown of Empires|Magic 2012|U|220297|203| -|Chandra's Phoenix|Magic 2012|R|220298|126| -|Scrambleverse|Magic 2012|R|220300|153| -|Unsummon|Magic 2012|C|220301|79| -|Buried Ruin|Magic 2012|U|220302|224| -|Hideous Visage|Magic 2012|C|220304|100| -|Bloodlord of Vaasgoth|Magic 2012|M|220306|82| -|Myr Galvanizer|Scars of Mirrodin|U|220364|181| -|Island|Mirrodin Besieged|L|220365|149| -|Plains|Mirrodin Besieged|L|220366|147| -|Swamp|Mirrodin Besieged|L|220367|150| -|Swamp|Mirrodin Besieged|L|220368|151| -|Island|Mirrodin Besieged|L|220369|148| -|Goblin Grenade|Magic 2012|U|220435|140| -|Chameleon Colossus|Archenemy|R|220451|52| -|Fertilid|Archenemy|C|220452|54| -|Taurean Mauler|Archenemy|R|220453|49| -|Agony Warp|Archenemy|C|220454|76| -|Branching Bolt|Archenemy|C|220455|82| -|Dragon Fodder|Archenemy|C|220456|34| -|Dregscape Zombie|Archenemy|C|220457|14| -|Flameblast Dragon|Archenemy|R|220458|38| -|Infest|Archenemy|U|220459|19| -|Metallurgeon|Archenemy|U|220460|2| -|Obelisk of Esper|Archenemy|C|220461|113| -|Sanctum Gargoyle|Archenemy|C|220462|5| -|Imperial Hellkite|Archenemy|R|220464|42| -|Kilnmouth Dragon|Archenemy|R|220465|44| -|Skirk Marauder|Archenemy|C|220466|48| -|Graypelt Refuge|Archenemy|U|220467|125| -|Hellkite Charger|Archenemy|R|220468|41| -|Inferno Trap|Archenemy|U|220469|43| -|Kazandu Refuge|Archenemy|U|220470|126| -|Ryusei, the Falling Star|Archenemy|R|220471|45| -|Two-Headed Dragon|Archenemy|R|220472|50| -|Dragon Breath|Archenemy|C|220473|33| -|Dragonspeaker Shaman|Archenemy|U|220474|36| -|Fierce Empath|Archenemy|C|220475|55| -|Cemetery Reaper|Archenemy|R|220476|12| -|Dragon Whelp|Archenemy|U|220477|35| -|Fireball|Archenemy|U|220478|37| -|Fog|Archenemy|C|220479|56| -|Sign in Blood|Archenemy|C|220480|25| -|Terramorphic Expanse|Archenemy|C|220481|134| -|Beacon of Unrest|Archenemy|R|220482|10| -|Furnace Whelp|Archenemy|U|220483|39| -|Juggernaut|Archenemy|U|220484|109| -|Molimo, Maro-Sorcerer|Archenemy|R|220485|64| -|Barren Moor|Archenemy|C|220487|124| -|Battering Craghorn|Archenemy|C|220488|30| -|Festering Goblin|Archenemy|C|220489|16| -|Kamahl, Fist of Krosa|Archenemy|R|220490|61| -|Krosan Tusker|Archenemy|C|220491|62| -|Secluded Steppe|Archenemy|C|220492|133| -|Skirk Commando|Archenemy|C|220493|47| -|Tranquil Thicket|Archenemy|C|220494|135| -|Gathan Raiders|Archenemy|C|220495|40| -|Llanowar Reborn|Archenemy|U|220496|129| -|Spin into Myth|Archenemy|U|220497|8| -|Armadillo Cloak|Archenemy|C|220498|78| -|Breath of Darigaaz|Archenemy|U|220499|31| -|Fires of Yavimaya|Archenemy|U|220500|86| -|Heroes' Reunion|Archenemy|U|220501|87| -|Wane|Archenemy|U|220502|101| -|Gruul Signet|Archenemy|C|220504|108| -|Savage Twister|Archenemy|U|220505|93| -|Thran Dynamo|Archenemy|U|220506|121| -|Extractor Demon|Archenemy|R|220507|15| -|Infectious Horror|Archenemy|C|220508|18| -|Magister Sphinx|Archenemy|R|220509|89| -|Master Transmuter|Archenemy|R|220510|7| -|Path to Exile|Archenemy|U|220511|4| -|Volcanic Fallout|Archenemy|U|220512|51| -|Chandra's Outrage|Archenemy|C|220513|32| -|Plummet|Archenemy|C|220514|65| -|Reassembling Skeleton|Archenemy|U|220515|22| -|Architects of Will|Archenemy|C|220517|77| -|Bituminous Blast|Archenemy|U|220518|81| -|Colossal Might|Archenemy|C|220519|83| -|Ethersworn Shieldmage|Archenemy|C|220520|84| -|Fieldmist Borderpost|Archenemy|C|220521|85| -|Mistvein Borderpost|Archenemy|C|220522|90| -|Pale Recluse|Archenemy|C|220523|91| -|Terminate|Archenemy|C|220524|95| -|Ζther Spellbomb|Archenemy|C|220525|102| -|Duplicant|Archenemy|R|220526|106| -|Leonin Abunas|Archenemy|R|220527|1| -|Lightning Greaves|Archenemy|U|220528|110| -|March of the Machines|Archenemy|R|220529|6| -|Sun Droplet|Archenemy|U|220530|117| -|Synod Sanctum|Archenemy|U|220531|120| -|Memnarch|Archenemy|R|220532|112| -|Sundering Titan|Archenemy|R|220533|118| -|Everflowing Chalice|Archenemy|U|220534|107| -|Khalni Garden|Archenemy|C|220535|127| -|Lodestone Golem|Archenemy|R|220536|111| -|Skullcage|Archenemy|U|220537|115| -|Synod Centurion|Archenemy|U|220538|119| -|Avatar of Discord|Archenemy|R|220539|79| -|Azorius Signet|Archenemy|C|220540|103| -|Rakdos Carnarium|Archenemy|C|220541|132| -|Rakdos Guildmage|Archenemy|U|220542|92| -|Rakdos Signet|Archenemy|C|220543|114| -|Krosan Verge|Archenemy|U|220544|128| -|Nantuko Monastery|Archenemy|U|220545|131| -|Incremental Blight|Archenemy|U|220546|17| -|Torrent of Souls|Archenemy|U|220547|96| -|Dimir Signet|Archenemy|C|220548|104| -|Selesnya Guildmage|Archenemy|U|220549|94| -|Vitu-Ghazi, the City-Tree|Archenemy|U|220550|136| -|Watchwolf|Archenemy|U|220551|100| -|Unbender Tine|Archenemy|U|220552|97| -|Artisan of Kozilek|Archenemy|U|220553|123| -|Dreamstone Hedron|Archenemy|U|220554|105| -|Spider Umbra|Archenemy|C|220555|70| -|Bog Witch|Archenemy|C|220556|11| -|Kaervek the Merciless|Archenemy|R|220557|88| -|Thelonite Hermit|Archenemy|R|220558|71| -|Urborg Syphon-Mage|Archenemy|C|220559|27| -|Yavimaya Dryad|Archenemy|U|220560|75| -|Seething Song|Archenemy|C|220561|46| -|Avatar of Woe|Archenemy|R|220562|9| -|Hunting Moa|Archenemy|U|220563|60| -|Twisted Abomination|Archenemy|C|220564|26| -|Verdeloth the Ancient|Archenemy|R|220565|72| -|Wall of Roots|Archenemy|C|220566|73| -|Corpse Connoisseur|Archenemy|U|220567|13| -|Leaf Gilder|Archenemy|C|220568|63| -|Makeshift Mannequin|Archenemy|U|220569|20| -|Mosswort Bridge|Archenemy|R|220570|130| -|Primal Command|Archenemy|R|220571|66| -|Shriekmaw|Archenemy|U|220572|24| -|Batwing Brume|Archenemy|U|220573|80| -|Unmake|Archenemy|C|220574|98| -|Wickerbough Elder|Archenemy|C|220575|74| -|Reanimate|Archenemy|U|220576|21| -|Rancor|Archenemy|C|220577|67| -|Vampiric Dragon|Archenemy|R|220578|99| -|Zombie Infestation|Archenemy|U|220579|28| -|Zombify|Archenemy|U|220580|29| -|Thunderstaff|Archenemy|U|220581|122| -|Sakura-Tribe Elder|Archenemy|C|220582|68| -|Forgotten Ancient|Archenemy|R|220583|57| -|Harmonize|Archenemy|U|220584|59| -|Gleeful Sabotage|Archenemy|C|220585|58| -|Oblivion Ring|Archenemy|C|220586|3| -|Shinen of Life's Roar|Archenemy|C|220587|69| -|Scion of Darkness|Archenemy|R|220588|23| -|Phyrexian Revoker|Mirrodin Besieged|R|220589|122| -|Feral Hydra|Archenemy|R|220684|53| -|Martyrs of Korlis|Masters Edition IV|U|220946|20| -|Urza's Mine|Masters Edition IV|L|220947|257| -|Urza's Mine|Masters Edition IV|L|220948|257| -|Urza's Mine|Masters Edition IV|L|220949|257| -|Urza's Mine|Masters Edition IV|L|220950|257| -|Urza's Power Plant|Masters Edition IV|L|220951|258| -|Urza's Power Plant|Masters Edition IV|L|220952|258| -|Urza's Power Plant|Masters Edition IV|L|220953|258| -|Urza's Power Plant|Masters Edition IV|L|220954|258| -|Urza's Tower|Masters Edition IV|L|220955|259| -|Urza's Tower|Masters Edition IV|L|220956|259| -|Urza's Tower|Masters Edition IV|L|220957|259| -|Urza's Tower|Masters Edition IV|L|220958|259| -|Healing Salve|Masters Edition IV|C|220959|14| -|Sengir Vampire|Masters Edition IV|U|220960|96| -|City of Brass|Masters Edition IV|R|220963|243| -|Sandstorm|Masters Edition IV|C|220964|164| -|Ogre Taskmaster|Masters Edition IV|C|220965|128| -|Grapeshot Catapult|Masters Edition IV|U|221101|204| -|Tawnos's Wand|Masters Edition IV|C|221102|231| -|Dragon Engine|Masters Edition IV|C|221103|197| -|Onulet|Masters Edition IV|C|221104|219| -|Urza's Chalice|Masters Edition IV|C|221105|236| -|Flying Carpet|Masters Edition IV|C|221106|201| -|Tawnos's Weaponry|Masters Edition IV|U|221107|232| -|Icy Manipulator|Masters Edition IV|U|221108|207| -|Juggernaut|Masters Edition IV|U|221109|209| -|Orcish Mechanics|Masters Edition IV|U|221110|129| -|Prodigal Sorcerer|Masters Edition IV|U|221111|58| -|Argivian Blacksmith|Masters Edition IV|U|221112|4| -|Goblin Piker|Magic 2012|C|221199|141| -|Goblin Chieftain|Magic 2012|R|221201|138| -|Titanic Growth|Magic 2012|C|221203|198| -|Colossus of Sardia|Masters Edition IV|R|221291|193| -|Forest|Archenemy|L|221295|150| -|Forest|Archenemy|L|221296|149| -|Forest|Archenemy|L|221297|148| -|Island|Archenemy|L|221300|139| -|Island|Archenemy|L|221301|141| -|Island|Archenemy|L|221302|140| -|Mountain|Archenemy|L|221303|145| -|Mountain|Archenemy|L|221304|147| -|Mountain|Archenemy|L|221305|146| -|Plains|Archenemy|L|221309|137| -|Plains|Archenemy|L|221310|138| -|Swamp|Archenemy|L|221311|142| -|Swamp|Archenemy|L|221312|143| -|Swamp|Archenemy|L|221313|144| -|Redirect|Magic 2012|R|221484|74| -|Alaborn Musketeer|Masters Edition IV|C|221493|1| -|Alluring Scent|Masters Edition IV|C|221494|141| -|Foul Spirit|Masters Edition IV|C|221495|81| -|Sleight of Hand|Masters Edition IV|C|221496|62| -|Talas Researcher|Masters Edition IV|U|221498|66| -|Theft of Dreams|Masters Edition IV|U|221500|67| -|Goblin Bully|Masters Edition IV|C|221507|117| -|Dark Ritual|Masters Edition IV|C|221510|74| -|Fireball|Masters Edition IV|U|221511|115| -|Squall|Masters Edition IV|U|221513|168| -|Warp Artifact|Masters Edition IV|C|221514|100| -|Deathmark|Magic 2012|U|221516|90| -|Thing from the Deep|Masters Edition IV|R|221517|68| -|Deathcoil Wurm|Masters Edition IV|R|221518|149| -|Diabolic Tutor|Magic 2012|U|221519|92| -|Angel's Feather|Magic 2012|U|221520|202| -|Kraken's Eye|Magic 2012|U|221521|211| -|Demon's Horn|Magic 2012|U|221522|205| -|Dragon's Claw|Magic 2012|U|221523|206| -|Wurm's Tooth|Magic 2012|U|221524|223| -|Elixir of Immortality|Magic 2012|U|221525|208| -|Gravedigger|Magic 2012|C|221526|99| -|Beast Within|New Phyrexia|U|221533|103| -|Ebon Dragon|Masters Edition IV|R|221547|80| -|Sylvan Tutor|Masters Edition IV|U|221548|169| -|Fireball|Magic 2012|U|221550|131| -|Artifact Blast|Masters Edition IV|C|221551|108| -|Dakmor Plague|Masters Edition IV|U|221552|73| -|Phantasmal Terrain|Masters Edition IV|C|221553|56| -|Master's Call|Mirrodin Besieged|C|221554|13| -|White Sun's Zenith|Mirrodin Besieged|R|221555|19| -|Blue Sun's Zenith|Mirrodin Besieged|R|221556|20| -|Spread the Sickness|Mirrodin Besieged|C|221557|56| -|Red Sun's Zenith|Mirrodin Besieged|R|221558|74| -|Green Sun's Zenith|Mirrodin Besieged|R|221559|81| -|Flayer Husk|Mirrodin Besieged|C|221560|107| -|Pierce Strider|Mirrodin Besieged|U|221561|123| -|Skinwing|Mirrodin Besieged|U|221562|133| -|Blightsteel Colossus|Mirrodin Besieged|M|221563|99| -|Giant Tortoise|Masters Edition IV|C|221565|50| -|Sea Serpent|Masters Edition IV|C|221566|60| -|Steam Catapult|Masters Edition IV|R|221567|29| -|Black Knight|Masters Edition IV|U|221568|71| -|White Knight|Masters Edition IV|U|221569|33| -|Bee Sting|Masters Edition IV|U|221570|144| -|Ironhoof Ox|Masters Edition IV|C|221571|158| -|Tablet of Epityr|Masters Edition IV|C|221576|230| -|Savannah Lions|Masters Edition IV|U|221577|24| -|Wild Griffin|Masters Edition IV|C|221639|35| -|Lava Axe|Magic 2012|C|221891|148| -|Llanowar Elves|Magic 2012|C|221892|182| -|Runeclaw Bear|Magic 2012|C|221893|193| -|Naturalize|Magic 2012|C|221894|185| -|Cudgel Troll|Magic 2012|U|221895|169| -|Birds of Paradise|Magic 2012|R|221896|165| -|Grand Abolisher|Magic 2012|R|221898|19| -|Prowling Nightstalker|Masters Edition IV|C|221915|93| -|Elite Cat Warrior|Masters Edition IV|C|221917|151| -|Wild Ox|Masters Edition IV|U|221918|174| -|Glacial Fortress|Magic 2012|R|221919|227| -|Drowned Catacomb|Magic 2012|R|221920|226| -|Dragonskull Summit|Magic 2012|R|221921|225| -|Rootbound Crag|Magic 2012|R|221922|228| -|Sunpetal Grove|Magic 2012|R|221923|229| -|Air Elemental|Masters Edition IV|U|221985|37| -|Alaborn Trooper|Masters Edition IV|C|221987|2| -|Cloud Spirit|Masters Edition IV|C|221988|42| -|Stormfront Pegasus|Magic 2012|C|222633|38| -|Armored Warhorse|Magic 2012|C|222634|7| -|Siege Mastodon|Magic 2012|C|222635|34| -|Griffin Sentinel|Magic 2012|C|222650|21| -|Sorcerer's Strongbox|Archenemy|U|222702|116| -|Loyal Sentry|Duel Decks: Elspeth vs. Tezzeret|R|222706|5| -|Razormane Masticore|Duel Decks: Elspeth vs. Tezzeret|R|222707|56| -|Goldmeadow Harrier|Duel Decks: Elspeth vs. Tezzeret|C|222708|3| -|Moonglove Extract|Duel Decks: Elspeth vs. Tezzeret|C|222709|67| -|Elite Vanguard|Duel Decks: Elspeth vs. Tezzeret|U|222710|2| -|Elixir of Immortality|Duel Decks: Elspeth vs. Tezzeret|U|222711|62| -|Infantry Veteran|Duel Decks: Elspeth vs. Tezzeret|C|222712|4| -|Juggernaut|Duel Decks: Elspeth vs. Tezzeret|U|222713|52| -|Steel Overseer|Duel Decks: Elspeth vs. Tezzeret|R|222714|44| -|Triskelion|Duel Decks: Elspeth vs. Tezzeret|R|222715|57| -|Mosquito Guard|Duel Decks: Elspeth vs. Tezzeret|C|222716|6| -|Rustic Clachan|Duel Decks: Elspeth vs. Tezzeret|R|222717|34| -|Swell of Courage|Duel Decks: Elspeth vs. Tezzeret|U|222718|31| -|Ζther Spellbomb|Duel Decks: Elspeth vs. Tezzeret|C|222720|61| -|Blinding Beam|Duel Decks: Elspeth vs. Tezzeret|C|222721|28| -|Clockwork Condor|Duel Decks: Elspeth vs. Tezzeret|C|222723|50| -|Island|Duel Decks: Elspeth vs. Tezzeret|L|222724|79| -|Island|Duel Decks: Elspeth vs. Tezzeret|L|222725|76| -|Island|Duel Decks: Elspeth vs. Tezzeret|L|222726|78| -|Island|Duel Decks: Elspeth vs. Tezzeret|L|222727|77| -|Raise the Alarm|Duel Decks: Elspeth vs. Tezzeret|C|222728|25| -|Razor Barrier|Duel Decks: Elspeth vs. Tezzeret|C|222729|26| -|Stalking Stones|Duel Decks: Elspeth vs. Tezzeret|U|222730|75| -|Steel Wall|Duel Decks: Elspeth vs. Tezzeret|C|222731|41| -|Thoughtcast|Duel Decks: Elspeth vs. Tezzeret|C|222732|71| -|Arcbound Worker|Duel Decks: Elspeth vs. Tezzeret|C|222733|40| -|Darksteel Citadel|Duel Decks: Elspeth vs. Tezzeret|C|222734|72| -|Echoing Truth|Duel Decks: Elspeth vs. Tezzeret|C|222735|66| -|Glory Seeker|Duel Decks: Elspeth vs. Tezzeret|C|222736|7| -|Runed Servitor|Duel Decks: Elspeth vs. Tezzeret|U|222737|42| -|Qumulox|Duel Decks: Elspeth vs. Tezzeret|U|222739|59| -|Seat of the Synod|Duel Decks: Elspeth vs. Tezzeret|C|222740|74| -|Silver Myr|Duel Decks: Elspeth vs. Tezzeret|C|222741|43| -|Serrated Biskelion|Duel Decks: Elspeth vs. Tezzeret|U|222743|46| -|Master of Etherium|Duel Decks: Elspeth vs. Tezzeret|R|222744|48| -|Trinket Mage|Duel Decks: Elspeth vs. Tezzeret|C|222746|49| -|Faerie Mechanist|Duel Decks: Elspeth vs. Tezzeret|C|222747|54| -|Celestial Crusader|Duel Decks: Elspeth vs. Tezzeret|U|222748|14| -|Clockwork Hydra|Duel Decks: Elspeth vs. Tezzeret|U|222749|55| -|Everflowing Chalice|Duel Decks: Elspeth vs. Tezzeret|U|222750|60| -|Plains|Duel Decks: Elspeth vs. Tezzeret|L|222751|38| -|Plains|Duel Decks: Elspeth vs. Tezzeret|L|222752|36| -|Plains|Duel Decks: Elspeth vs. Tezzeret|L|222753|37| -|Plains|Duel Decks: Elspeth vs. Tezzeret|L|222754|35| -|Trip Noose|Duel Decks: Elspeth vs. Tezzeret|U|222759|65| -|Temple Acolyte|Duel Decks: Elspeth vs. Tezzeret|C|222760|9| -|Journey to Nowhere|Duel Decks: Elspeth vs. Tezzeret|C|222761|23| -|Kabira Crossroads|Duel Decks: Elspeth vs. Tezzeret|C|222762|33| -|Kor Hookmaster|Duel Decks: Elspeth vs. Tezzeret|C|222763|12| -|Kor Skyfisher|Duel Decks: Elspeth vs. Tezzeret|C|222764|8| -|Abolish|Duel Decks: Elspeth vs. Tezzeret|U|222765|29| -|Foil|Duel Decks: Elspeth vs. Tezzeret|U|222766|70| -|Conclave Equenaut|Duel Decks: Elspeth vs. Tezzeret|C|222767|19| -|Conclave Phalanx|Duel Decks: Elspeth vs. Tezzeret|U|222768|16| -|Burrenton Bombardier|Duel Decks: Elspeth vs. Tezzeret|C|222770|11| -|Seasoned Marshal|Duel Decks: Elspeth vs. Tezzeret|U|222771|15| -|Catapult Master|Duel Decks: Elspeth vs. Tezzeret|R|222772|18| -|Daru Encampment|Duel Decks: Elspeth vs. Tezzeret|U|222773|32| -|Angel of Salvation|Duel Decks: Elspeth vs. Tezzeret|R|222774|20| -|Saltblast|Duel Decks: Elspeth vs. Tezzeret|U|222775|30| -|Sunlance|Duel Decks: Elspeth vs. Tezzeret|C|222776|21| -|Frogmite|Duel Decks: Elspeth vs. Tezzeret|C|222856|51| -|Argivian Restoration|Duel Decks: Elspeth vs. Tezzeret|U|222857|69| -|Spiraling Duelist|Mirrodin Besieged|U|222859|76| -|Leonin Relic-Warder|Mirrodin Besieged|U|222860|10| -|Vedalken Anatomist|Mirrodin Besieged|U|222861|36| -|Tangle Mantis|Mirrodin Besieged|C|222862|91| -|Morbid Plunder|Mirrodin Besieged|C|222863|47| -|Zombie Goliath|Magic 2012|C|226558|119| -|Doom Blade|Magic 2012|C|226560|95| -|Taste of Blood|Magic 2012|C|226561|113| -|Devouring Swarm|Magic 2012|C|226563|91| -|Reassembling Skeleton|Magic 2012|U|226565|104| -|Bonebreaker Giant|Magic 2012|C|226582|123| -|Chandra's Outrage|Magic 2012|C|226585|125| -|Firebreathing|Magic 2012|C|226588|132| -|Act of Treason|Magic 2012|C|226589|121| -|Combust|Magic 2012|U|226591|128| -|Energy Chamber|Duel Decks: Elspeth vs. Tezzeret|U|226711|64| -|Synod Centurion|Duel Decks: Elspeth vs. Tezzeret|U|226712|53| -|Mighty Leap|Duel Decks: Elspeth vs. Tezzeret|C|226713|24| -|Kor Aeronaut|Duel Decks: Elspeth vs. Tezzeret|U|226714|10| -|Esperzoa|Duel Decks: Elspeth vs. Tezzeret|U|226715|47| -|Stormfront Riders|Duel Decks: Elspeth vs. Tezzeret|U|226716|17| -|Garruk's Companion|Magic 2012|C|226896|175| -|Fog|Magic 2012|C|226900|173| -|Bountiful Harvest|Magic 2012|C|226901|166| -|Reclaim|Magic 2012|C|226903|191| -|Lure|Magic 2012|U|226905|183| -|Acidic Slime|Magic 2012|U|226906|161| -|Assembly-Worker|Duel Decks: Elspeth vs. Tezzeret|U|226984|45| -|Contagion Clasp|Duel Decks: Elspeth vs. Tezzeret|U|227149|63| -|Kemba's Skyguard|Duel Decks: Elspeth vs. Tezzeret|C|227150|13| -|Pentavus|Duel Decks: Elspeth vs. Tezzeret|R|227151|58| -|Ζther Adept|Magic 2012|C|227222|41| -|Coral Merfolk|Magic 2012|C|227223|49| -|Cancel|Magic 2012|C|227225|47| -|Jace's Erasure|Magic 2012|C|227227|60| -|Worldslayer|Magic 2012|R|227302|222| -|Djinn of Wishes|Magic 2012|R|227305|51| -|Puresteel Paladin|New Phyrexia|R|227504|20| -|Island|New Phyrexia|L|227505|169| -|Mountain|New Phyrexia|L|227507|172| -|Jor Kadeen, the Prevailer|New Phyrexia|R|227508|128| -|Hovermyr|New Phyrexia|C|227513|138| -|Plains|New Phyrexia|L|227518|167| -|Swamp|New Phyrexia|L|227519|170| -|Swamp|New Phyrexia|L|227521|171| -|Ruthless Invasion|New Phyrexia|C|227528|93| -|Island|New Phyrexia|L|227530|168| -|Fallen Ferromancer|New Phyrexia|U|227537|82| -|Xenograft|New Phyrexia|R|227544|51| -|Tezzeret's Gambit|New Phyrexia|U|227547|47| -|Victorious Destruction|New Phyrexia|C|227549|99| -|Plains|New Phyrexia|L|227552|166| -|Benalish Veteran|Magic 2012|C|228117|10| -|Sundial of the Infinite|Magic 2012|R|228118|218| -|Master Thief|Magic 2012|U|228119|64| -|Gideon's Lawkeeper|Magic 2012|C|228122|18| -|Alliance of Arms|Magic: The Gathering-Commander|R|228218|4| -|Dread Cacodemon|Magic: The Gathering-Commander|R|228228|79| -|The Mimeoplasm|Magic: The Gathering-Commander|M|228232|210| -|Magmatic Force|Magic: The Gathering-Commander|R|228241|128| -|Trench Gorger|Magic: The Gathering-Commander|R|228242|65| -|Archangel of Strife|Magic: The Gathering-Commander|R|228246|7| -|Hydra Omnivore|Magic: The Gathering-Commander|R|228247|161| -|Crescendo of War|Magic: The Gathering-Commander|R|228253|12| -|Flusterstorm|Magic: The Gathering-Commander|R|228255|46| -|Celestial Force|Magic: The Gathering-Commander|R|228257|10| -|Shared Trauma|Magic: The Gathering-Commander|R|228259|99| -|Armageddon|Masters Edition IV|R|228262|5| -|Mahamoti Djinn|Masters Edition IV|R|228263|52| -|Shivan Dragon|Masters Edition IV|R|228264|136| -|Devastation|Masters Edition IV|R|228265|112| -|Dread Reaper|Masters Edition IV|R|228266|78| -|Harsh Justice|Masters Edition IV|R|228267|13| -|Urza's Miter|Masters Edition IV|R|228268|237| -|Al-abara's Carpet|Masters Edition IV|R|228269|177| -|Alchor's Tomb|Masters Edition IV|R|228270|178| -|Mana Matrix|Masters Edition IV|R|228271|213| -|Vibrating Sphere|Masters Edition IV|R|228272|238| -|Warstorm Surge|Magic 2012|R|228796|160| -|Pacifism|Magic 2012|C|228956|28| -|Goblin Fireslinger|Magic 2012|C|228959|139| -|Goblin Bangchuckers|Magic 2012|U|229952|137| -|Death by Dragons|Magic: The Gathering-Commander|U|229988|118| -|Edric, Spymaster of Trest|Magic: The Gathering-Commander|R|230000|196| -|Mountain|New Phyrexia|L|230064|173| -|Slash Panther|New Phyrexia|C|230065|96| -|Mental Misstep|New Phyrexia|U|230066|38| -|Noxious Revival|New Phyrexia|U|230067|118| -|Spinebiter|New Phyrexia|U|230068|121| -|Conversion Chamber|New Phyrexia|U|230070|133| -|Forest|New Phyrexia|L|230071|175| -|Marrow Shards|New Phyrexia|U|230072|15| -|Gut Shot|New Phyrexia|U|230074|86| -|Corrosive Gale|New Phyrexia|U|230075|107| -|Act of Aggression|New Phyrexia|U|230076|78| -|War Report|New Phyrexia|C|230078|26| -|Pith Driller|New Phyrexia|C|230079|69| -|Forest|New Phyrexia|L|230081|174| -|Dismember|New Phyrexia|U|230082|57| -|Forced Worship|New Phyrexia|C|230083|11| -|Harbor Serpent|Magic 2012|C|230756|56| -|Negate|Magic 2012|C|230757|69| -|Wring Flesh|Magic 2012|C|230758|118| -|Slaughter Cry|Magic 2012|C|230762|155| -|Manic Vandal|Magic 2012|C|230764|151| -|Wing Splicer|New Phyrexia|U|233037|50| -|Sensor Splicer|New Phyrexia|C|233038|22| -|Maul Splicer|New Phyrexia|C|233040|114| -|Surgical Extraction|New Phyrexia|R|233041|74| -|Omen Machine|New Phyrexia|R|233042|148| -|Despise|New Phyrexia|U|233043|56| -|Blinding Souleater|New Phyrexia|C|233045|131| -|Viral Drake|New Phyrexia|U|233047|49| -|Soul Conduit|New Phyrexia|R|233048|158| -|Norn's Annex|New Phyrexia|R|233050|17| -|Moltensteel Dragon|New Phyrexia|R|233051|88| -|Glistener Elf|New Phyrexia|C|233052|111| -|Spire Monitor|New Phyrexia|C|233053|46| -|Postmortem Lunge|New Phyrexia|U|233054|70| -|Batterskull|New Phyrexia|M|233055|130| -|Gitaxian Probe|New Phyrexia|C|233056|35| -|Immolating Souleater|New Phyrexia|C|233058|139| -|Shattered Angel|New Phyrexia|U|233059|23| -|Enslave|New Phyrexia|U|233060|58| -|Master Splicer|New Phyrexia|U|233062|16| -|Greenhilt Trainee|New Phyrexia|U|233063|112| -|Rotted Hystrix|New Phyrexia|C|233064|120| -|Death-Hood Cobra|New Phyrexia|C|233065|108| -|Insatiable Souleater|New Phyrexia|C|233066|140| -|Invader Parasite|New Phyrexia|R|233067|87| -|Blade Splicer|New Phyrexia|R|233068|4| -|Torpor Orb|New Phyrexia|R|233069|162| -|Mutagenic Growth|New Phyrexia|C|233070|116| -|Mortis Dogs|New Phyrexia|C|233072|66| -|Trespassing Souleater|New Phyrexia|C|233073|163| -|Pristine Talisman|New Phyrexia|C|233074|151| -|Due Respect|New Phyrexia|U|233077|8| -|Mindcrank|New Phyrexia|U|233078|144| -|Vital Splicer|New Phyrexia|U|233079|126| -|Corrupted Resolve|New Phyrexia|U|233080|32| -|Toxic Nim|New Phyrexia|C|233081|75| -|Ogre Menial|New Phyrexia|C|233082|89| -|Dementia Bat|New Phyrexia|C|233084|55| -|Pestilent Souleater|New Phyrexia|C|233085|149| -|Flameborn Viron|New Phyrexia|C|233086|83| -|Scavenging Ooze|Magic: The Gathering-Commander|R|233181|170| -|Stranglehold|Magic: The Gathering-Commander|R|233183|136| -|Acorn Catapult|Magic: The Gathering-Commander|R|233197|241| -|Champion's Helm|Magic: The Gathering-Commander|R|233200|244| -|Homeward Path|Magic: The Gathering-Commander|R|233201|277| -|Syphon Flesh|Magic: The Gathering-Commander|U|233218|103| -|Rampant Growth|Magic 2012|C|233231|190| -|Giant Spider|Magic 2012|C|233232|177| -|Greater Basilisk|Magic 2012|C|233233|179| -|Plummet|Magic 2012|C|233235|187| -|Honor of the Pure|Magic 2012|R|233237|23| -|Martyr's Cry|Masters Edition IV|R|233297|19| -|Leeches|Masters Edition IV|R|233298|18| -|Acid Rain|Masters Edition IV|R|233299|36| -|Cloud Dragon|Masters Edition IV|R|233300|41| -|Rain of Daggers|Masters Edition IV|R|233301|94| -|Minion of Tevesh Szat|Masters Edition IV|R|233302|91| -|Last Chance|Masters Edition IV|R|233303|125| -|Force of Nature|Masters Edition IV|R|233304|154| -|Living Lands|Masters Edition IV|R|233305|161| -|Smoke|Masters Edition IV|R|233306|137| -|Reverberate|Magic 2012|R|233722|152| -|Levitation|Magic 2012|U|233728|61| -|Cemetery Reaper|Magic 2012|R|234070|86| -|Thran Golem|Magic 2012|U|234072|220| -|Incinerate|Magic 2012|C|234075|146| -|Grim Lavamancer|Magic 2012|R|234428|145| -|Sorin's Vengeance|Magic 2012|R|234436|111| -|Child of Night|Magic 2012|C|234560|87| -|Mind Rot|Magic 2012|C|234561|101| -|Oblivion Ring|Magic 2012|U|234567|27| -|Tectonic Rift|Magic 2012|U|234568|157| -|Ghitu Encampment|Premium Deck Series: Fire and Lightning|U|234698|29| -|Mogg Fanatic|Premium Deck Series: Fire and Lightning|U|234699|3| -|Spark Elemental|Premium Deck Series: Fire and Lightning|U|234700|4| -|Sudden Impact|Premium Deck Series: Fire and Lightning|U|234701|25| -|Fire Servant|Premium Deck Series: Fire and Lightning|U|234702|15| -|Fireball|Premium Deck Series: Fire and Lightning|U|234703|27| -|Lightning Bolt|Premium Deck Series: Fire and Lightning|C|234704|17| -|Reverberate|Premium Deck Series: Fire and Lightning|R|234705|20| -|Grim Lavamancer|Premium Deck Series: Fire and Lightning|R|234706|1| -|Jaya Ballard, Task Mage|Premium Deck Series: Fire and Lightning|R|234707|10| -|Keldon Marauders|Premium Deck Series: Fire and Lightning|C|234709|7| -|Mogg Flunkies|Premium Deck Series: Fire and Lightning|C|234710|8| -|Hellspark Elemental|Premium Deck Series: Fire and Lightning|U|234711|6| -|Browbeat|Premium Deck Series: Fire and Lightning|U|234712|21| -|Keldon Champion|Premium Deck Series: Fire and Lightning|U|234713|14| -|Price of Progress|Premium Deck Series: Fire and Lightning|U|234714|18| -|Teetering Peaks|Premium Deck Series: Fire and Lightning|C|234715|30| -|Thunderbolt|Premium Deck Series: Fire and Lightning|C|234716|19| -|Cinder Pyromancer|Premium Deck Series: Fire and Lightning|C|234717|9| -|Flames of the Blood Hand|Premium Deck Series: Fire and Lightning|U|234718|22| -|Vulshok Sorcerer|Premium Deck Series: Fire and Lightning|C|234719|11| -|Pillage|Premium Deck Series: Fire and Lightning|U|234720|24| -|Hammer of Bogardan|Premium Deck Series: Fire and Lightning|R|234721|23| -|Ball Lightning|Premium Deck Series: Fire and Lightning|R|234722|12| -|Boggart Ram-Gang|Premium Deck Series: Fire and Lightning|U|234723|13| -|Fireblast|Premium Deck Series: Fire and Lightning|C|234736|26| -|Barbarian Ring|Premium Deck Series: Fire and Lightning|U|234737|28| -|Mountain|Premium Deck Series: Fire and Lightning|L|234738|31| -|Mountain|Premium Deck Series: Fire and Lightning|L|234739|32| -|Mountain|Premium Deck Series: Fire and Lightning|L|234740|33| -|Mountain|Premium Deck Series: Fire and Lightning|L|234741|34| -|Rites of Flourishing|Magic 2012|R|235188|192| -|Frost Titan|Magic 2012|M|235191|55| -|Inferno Titan|Magic 2012|M|235192|147| -|Manabarbs|Magic 2012|R|235193|150| -|Assault Griffin|Magic 2012|C|236449|8| -|Figure of Destiny|Premium Deck Series: Fire and Lightning|R|236456|5| -|Belltower Sphinx|Magic 2012|U|236457|46| -|Mind Unbound|Magic 2012|R|236459|68| -|Call to the Grave|Magic 2012|R|236460|85| -|Goblin War Paint|Magic 2012|C|236461|143| -|Royal Assassin|Magic 2012|R|236464|105| -|Mana-Charged Dragon|Magic: The Gathering-Commander|R|236465|129| -|Chaos Warp|Magic: The Gathering-Commander|R|236466|114| -|Karador, Ghost Chieftain|Magic: The Gathering-Commander|M|236468|207| -|Riku of Two Reflections|Magic: The Gathering-Commander|M|236469|220| -|Nin, the Pain Artist|Magic: The Gathering-Commander|R|236471|213| -|Kaalia of the Vast|Magic: The Gathering-Commander|M|236473|206| -|Ruhan of the Fomori|Magic: The Gathering-Commander|M|236477|221| -|Damia, Sage of Stone|Magic: The Gathering-Commander|M|236479|191| -|Martyr's Bond|Magic: The Gathering-Commander|R|236481|19| -|Sewer Nemesis|Magic: The Gathering-Commander|R|236482|98| -|Skullbriar, the Walking Grave|Magic: The Gathering-Commander|R|236485|227| -|Vish Kal, Blood Arbiter|Magic: The Gathering-Commander|R|236487|234| -|Basandra, Battle Seraph|Magic: The Gathering-Commander|R|236490|184| -|Avatar of Slaughter|Magic: The Gathering-Commander|R|236497|111| -|Zedruu the Greathearted|Magic: The Gathering-Commander|M|236499|240| -|Scythe Specter|Magic: The Gathering-Commander|R|236500|97| -|Ghave, Guru of Spores|Magic: The Gathering-Commander|M|236501|200| -|Animar, Soul of Elements|Magic: The Gathering-Commander|M|236504|181| -|Solemn Simulacrum|Magic 2012|R|236907|217| -|Distress|Magic 2012|C|236908|94| -|Vow of Duty|Magic: The Gathering-Commander|U|236986|36| -|Tariel, Reckoner of Souls|Magic: The Gathering-Commander|M|236995|229| -|Tribute to the Wild|Magic: The Gathering-Commander|U|236998|175| -|Vow of Lightning|Magic: The Gathering-Commander|U|236999|138| -|Command Tower|Magic: The Gathering-Commander|C|237004|269| -|Spell Crumple|Magic: The Gathering-Commander|U|237005|63| -|Quicksilver Amulet|Magic 2012|R|237006|214| -|Elvish Archdruid|Magic 2012|R|237007|172| -|Smallpox|Magic 2012|U|237010|108| -|Flight|Magic 2012|C|237366|53| -|Rakalite|Masters Edition IV|R|238128|223| -|Vow of Wildness|Magic: The Gathering-Commander|U|238135|178| -|Soul Snare|Magic: The Gathering-Commander|U|238136|32| -|Riddlekeeper|Magic: The Gathering-Commander|R|238138|59| -|Hornet Queen|Magic: The Gathering-Commander|R|238141|159| -|Vow of Flight|Magic: The Gathering-Commander|U|238144|68| -|Vow of Malice|Magic: The Gathering-Commander|U|238145|107| -|Jace, Memory Adept|Magic 2012|M|238263|58| -|Peregrine Griffin|Magic 2012|C|238327|29| -|Demystify|Magic 2012|C|238328|13| -|Gideon Jura|Magic 2012|M|238329|16| -|Sorin Markov|Magic 2012|M|238330|109| -|Fiery Hellhound|Magic 2012|C|238331|130| -|Angel's Mercy|Magic 2012|C|238569|4| -|Roc Egg|Magic 2012|U|238570|32| -|Mind Control|Magic 2012|U|238572|67| -|Overrun|Magic 2012|U|238574|186| -|Auramancer|Magic 2012|C|240308|9| -|Elite Vanguard|Magic 2012|U|240315|15| -|Grave Titan|Magic 2012|M|241830|98| -|Mana Leak|Magic 2012|C|241831|63| -|Primeval Titan|Magic 2012|M|241832|188| -|Sun Titan|Magic 2012|M|241833|39| -|Minds Aglow|Magic: The Gathering-Commander|R|241853|51| -|Collective Voyage|Magic: The Gathering-Commander|R|241854|147| -|Fling|Magic 2012|C|241858|134| -|Sacred Wolf|Magic 2012|C|241859|194| -|Zombie Infestation|Magic 2012|U|241860|120| -|Mighty Leap|Magic 2012|C|241989|26| -|Autumn's Veil|Magic 2012|U|241990|164| -|Sorin's Thirst|Magic 2012|C|241994|110| -|Warpath Ghoul|Magic 2012|C|241995|117| -|Goblin Arsonist|Magic 2012|C|242485|136| -|Knight of the Reliquary|Duel Decks: Knights vs. Dragons|M|243416|1| -|Caravan Escort|Duel Decks: Knights vs. Dragons|C|243418|2| -|Lionheart Maverick|Duel Decks: Knights vs. Dragons|C|243420|3| -|Knight of Cliffhaven|Duel Decks: Knights vs. Dragons|C|243421|4| -|Knight of Meadowgrain|Duel Decks: Knights vs. Dragons|U|243422|5| -|Knight of the White Orchid|Duel Decks: Knights vs. Dragons|R|243423|6| -|Leonin Skyhunter|Duel Decks: Knights vs. Dragons|U|243424|7| -|Silver Knight|Duel Decks: Knights vs. Dragons|U|243425|8| -|White Knight|Duel Decks: Knights vs. Dragons|U|243426|9| -|Knotvine Paladin|Duel Decks: Knights vs. Dragons|R|243427|10| -|Steward of Valeron|Duel Decks: Knights vs. Dragons|C|243428|11| -|Benalish Lancer|Duel Decks: Knights vs. Dragons|C|243429|12| -|Zhalfirin Commander|Duel Decks: Knights vs. Dragons|U|243430|13| -|Knight Exemplar|Duel Decks: Knights vs. Dragons|R|243431|14| -|Wilt-Leaf Cavaliers|Duel Decks: Knights vs. Dragons|U|243432|15| -|Kabira Vindicator|Duel Decks: Knights vs. Dragons|U|243433|16| -|Kinsbaile Cavalier|Duel Decks: Knights vs. Dragons|R|243434|17| -|Alaborn Cavalier|Duel Decks: Knights vs. Dragons|U|243435|18| -|Skyhunter Patrol|Duel Decks: Knights vs. Dragons|C|243436|19| -|Plover Knights|Duel Decks: Knights vs. Dragons|C|243437|20| -|Juniper Order Ranger|Duel Decks: Knights vs. Dragons|U|243438|21| -|Paladin of Prahv|Duel Decks: Knights vs. Dragons|U|243439|22| -|Harm's Way|Duel Decks: Knights vs. Dragons|U|243440|23| -|Reciprocate|Duel Decks: Knights vs. Dragons|U|243441|24| -|Edge of Autumn|Duel Decks: Knights vs. Dragons|C|243442|25| -|Mighty Leap|Duel Decks: Knights vs. Dragons|C|243443|26| -|Reprisal|Duel Decks: Knights vs. Dragons|U|243444|27| -|Test of Faith|Duel Decks: Knights vs. Dragons|U|243445|28| -|Heroes' Reunion|Duel Decks: Knights vs. Dragons|U|243446|29| -|Sigil Blessing|Duel Decks: Knights vs. Dragons|C|243447|30| -|Loxodon Warhammer|Duel Decks: Knights vs. Dragons|R|243448|31| -|Spidersilk Armor|Duel Decks: Knights vs. Dragons|C|243449|32| -|Griffin Guide|Duel Decks: Knights vs. Dragons|U|243450|33| -|Oblivion Ring|Duel Decks: Knights vs. Dragons|C|243451|34| -|Grasslands|Duel Decks: Knights vs. Dragons|U|243452|35| -|Sejiri Steppe|Duel Decks: Knights vs. Dragons|C|243453|36| -|Selesnya Sanctuary|Duel Decks: Knights vs. Dragons|C|243454|37| -|Treetop Village|Duel Decks: Knights vs. Dragons|U|243455|38| -|Plains|Duel Decks: Knights vs. Dragons|L|243456|39| -|Plains|Duel Decks: Knights vs. Dragons|L|243457|40| -|Plains|Duel Decks: Knights vs. Dragons|L|243458|41| -|Plains|Duel Decks: Knights vs. Dragons|L|243459|42| -|Forest|Duel Decks: Knights vs. Dragons|L|243460|43| -|Forest|Duel Decks: Knights vs. Dragons|L|243461|44| -|Forest|Duel Decks: Knights vs. Dragons|L|243462|45| -|Forest|Duel Decks: Knights vs. Dragons|L|243463|46| -|Bogardan Hellkite|Duel Decks: Knights vs. Dragons|M|243464|47| -|Skirk Prospector|Duel Decks: Knights vs. Dragons|C|243465|49| -|Cinder Wall|Duel Decks: Knights vs. Dragons|C|243466|48| -|Bloodmark Mentor|Duel Decks: Knights vs. Dragons|U|243467|50| -|Dragon Fodder|Duel Decks: Knights vs. Dragons|C|243468|65| -|Fire-Belly Changeling|Duel Decks: Knights vs. Dragons|C|243469|51| -|Mudbutton Torchrunner|Duel Decks: Knights vs. Dragons|C|243470|52| -|Dragonspeaker Shaman|Duel Decks: Knights vs. Dragons|U|243471|53| -|Dragon Whelp|Duel Decks: Knights vs. Dragons|U|243472|54| -|Henge Guardian|Duel Decks: Knights vs. Dragons|U|243473|55| -|Voracious Dragon|Duel Decks: Knights vs. Dragons|R|243474|56| -|Bogardan Rager|Duel Decks: Knights vs. Dragons|C|243475|57| -|Mordant Dragon|Duel Decks: Knights vs. Dragons|R|243476|58| -|Kilnmouth Dragon|Duel Decks: Knights vs. Dragons|R|243477|59| -|Shivan Hellkite|Duel Decks: Knights vs. Dragons|R|243478|60| -|Thunder Dragon|Duel Decks: Knights vs. Dragons|R|243479|61| -|Armillary Sphere|Duel Decks: Knights vs. Dragons|C|243480|62| -|Dragon's Claw|Duel Decks: Knights vs. Dragons|U|243481|63| -|Breath of Darigaaz|Duel Decks: Knights vs. Dragons|U|243482|64| -|Punishing Fire|Duel Decks: Knights vs. Dragons|U|243483|66| -|Spitting Earth|Duel Decks: Knights vs. Dragons|C|243484|67| -|Captive Flame|Duel Decks: Knights vs. Dragons|U|243485|68| -|Ghostfire|Duel Decks: Knights vs. Dragons|C|243486|69| -|Seething Song|Duel Decks: Knights vs. Dragons|C|243487|70| -|Seismic Strike|Duel Decks: Knights vs. Dragons|C|243488|71| -|Claws of Valakut|Duel Decks: Knights vs. Dragons|C|243489|72| -|Temporary Insanity|Duel Decks: Knights vs. Dragons|U|243490|73| -|Shiv's Embrace|Duel Decks: Knights vs. Dragons|U|243491|74| -|Cone of Flame|Duel Decks: Knights vs. Dragons|U|243492|75| -|Fiery Fall|Duel Decks: Knights vs. Dragons|C|243493|76| -|Jaws of Stone|Duel Decks: Knights vs. Dragons|U|243494|77| -|Mountain|Duel Decks: Knights vs. Dragons|L|243495|78| -|Mountain|Duel Decks: Knights vs. Dragons|L|243496|79| -|Mountain|Duel Decks: Knights vs. Dragons|L|243497|80| -|Mountain|Duel Decks: Knights vs. Dragons|L|243498|81| -|Disentomb|Magic 2012|C|244245|93| -|Brink of Disaster|Magic 2012|C|244246|84| -|Consume Spirit|Magic 2012|U|244249|88| -|Kite Shield|Magic 2012|U|244250|210| -|Pentavus|Magic 2012|R|244251|213| -|Blood Seeker|Magic 2012|C|244252|81| -|Sengir Vampire|Magic 2012|U|244253|107| -|Ponder|Magic 2012|C|244313|73| -|Forest|Magic 2012|L|244319|247| -|Forest|Magic 2012|L|244320|246| -|Forest|Magic 2012|L|244321|248| -|Forest|Magic 2012|L|244322|249| -|Island|Magic 2012|L|244323|235| -|Island|Magic 2012|L|244324|236| -|Island|Magic 2012|L|244325|234| -|Island|Magic 2012|L|244326|237| -|Mountain|Magic 2012|L|244327|245| -|Mountain|Magic 2012|L|244328|242| -|Mountain|Magic 2012|L|244329|244| -|Mountain|Magic 2012|L|244330|243| -|Plains|Magic 2012|L|244331|231| -|Plains|Magic 2012|L|244332|233| -|Plains|Magic 2012|L|244333|230| -|Plains|Magic 2012|L|244334|232| -|Swamp|Magic 2012|L|244335|240| -|Swamp|Magic 2012|L|244336|241| -|Swamp|Magic 2012|L|244337|239| -|Swamp|Magic 2012|L|244338|238| -|Volcanic Dragon|Magic 2012|U|244719|158| -|Flameblast Dragon|Magic 2012|R|244720|133| -|Brindle Boar|Magic 2012|C|244824|167| -|Stampeding Rhino|Magic 2012|C|244825|196| -|Vastwood Gorger|Magic 2012|C|244827|200| -|Archon of Justice|Magic 2012|R|244828|6| -|Shock|Magic 2012|C|245184|154| -|Goblin Tunneler|Magic 2012|C|245185|142| -|Time Reversal|Magic 2012|M|245187|77| -|Alluring Siren|Magic 2012|U|245188|42| -|Ice Cage|Magic 2012|C|245283|57| -|Dreamborn Muse|Magic: The Gathering-Commander|R|247140|44| -|Furnace Whelp|Magic: The Gathering-Commander|U|247141|124| -|Grave Pact|Magic: The Gathering-Commander|R|247142|85| -|Mortivore|Magic: The Gathering-Commander|R|247143|89| -|Nantuko Husk|Magic: The Gathering-Commander|U|247144|90| -|Troll Ascetic|Magic: The Gathering-Commander|R|247145|176| -|Voice of All|Magic: The Gathering-Commander|R|247146|35| -|Windborn Muse|Magic: The Gathering-Commander|R|247147|38| -|Eternal Witness|Magic: The Gathering-Commander|U|247148|152| -|Fallen Angel|Magic: The Gathering-Commander|R|247150|82| -|Lhurgoyf|Magic: The Gathering-Commander|R|247151|165| -|Fellwar Stone|Magic: The Gathering-Commander|U|247152|248| -|Fleshbag Marauder|Magic: The Gathering-Commander|U|247153|83| -|Memory Erosion|Magic: The Gathering-Commander|R|247154|50| -|Necrogenesis|Magic: The Gathering-Commander|U|247155|212| -|Oblivion Ring|Magic: The Gathering-Commander|C|247156|23| -|Death Mutation|Magic: The Gathering-Commander|U|247158|192| -|Ice|Magic: The Gathering-Commander|U|247159|198| -|Orim's Thunder|Magic: The Gathering-Commander|C|247161|24| -|Prophetic Bolt|Magic: The Gathering-Commander|R|247162|219| -|Colossal Might|Magic: The Gathering-Commander|C|247164|190| -|Sigil Captain|Magic: The Gathering-Commander|U|247165|225| -|Terminate|Magic: The Gathering-Commander|C|247166|231| -|Valley Rannet|Magic: The Gathering-Commander|C|247167|232| -|Vengeful Rebirth|Magic: The Gathering-Commander|U|247168|233| -|Wall of Denial|Magic: The Gathering-Commander|U|247169|237| -|Patron of the Nezumi|Magic: The Gathering-Commander|R|247171|93| -|Ghostly Prison|Magic: The Gathering-Commander|U|247173|14| -|Kodama's Reach|Magic: The Gathering-Commander|C|247174|163| -|Nighteyes the Desecrator|Magic: The Gathering-Commander|U|247175|92| -|Sakura-Tribe Elder|Magic: The Gathering-Commander|C|247176|169| -|Armillary Sphere|Magic: The Gathering-Commander|C|247177|242| -|Extractor Demon|Magic: The Gathering-Commander|R|247178|81| -|Malfegor|Magic: The Gathering-Commander|M|247179|208| -|Path to Exile|Magic: The Gathering-Commander|U|247180|25| -|Rupture Spire|Magic: The Gathering-Commander|C|247181|285| -|Jφtun Grunt|Magic: The Gathering-Commander|U|247182|16| -|Perilous Research|Magic: The Gathering-Commander|U|247183|54| -|Aura Shards|Magic: The Gathering-Commander|U|247184|182| -|Breath of Darigaaz|Magic: The Gathering-Commander|U|247185|112| -|Fact or Fiction|Magic: The Gathering-Commander|U|247186|45| -|Repulse|Magic: The Gathering-Commander|C|247187|58| -|Aquastrand Spider|Magic: The Gathering-Commander|C|247188|141| -|Azorius Chancery|Magic: The Gathering-Commander|C|247189|265| -|Azorius Guildmage|Magic: The Gathering-Commander|U|247190|183| -|Court Hussar|Magic: The Gathering-Commander|U|247191|43| -|Rakdos Carnarium|Magic: The Gathering-Commander|C|247192|284| -|Rakdos Signet|Magic: The Gathering-Commander|C|247193|257| -|Simic Growth Chamber|Magic: The Gathering-Commander|C|247194|288| -|Simic Signet|Magic: The Gathering-Commander|C|247195|259| -|Simic Sky Swallower|Magic: The Gathering-Commander|R|247196|226| -|Skyscribing|Magic: The Gathering-Commander|U|247197|61| -|Vision Skeins|Magic: The Gathering-Commander|C|247198|67| -|Wrecking Ball|Magic: The Gathering-Commander|C|247199|238| -|Darksteel Ingot|Magic: The Gathering-Commander|C|247200|245| -|Skullclamp|Magic: The Gathering-Commander|U|247201|260| -|Call the Skybreaker|Magic: The Gathering-Commander|R|247202|188| -|Desecrator Hag|Magic: The Gathering-Commander|C|247203|193| -|Dominus of Fealty|Magic: The Gathering-Commander|R|247204|194| -|Duergar Hedge-Mage|Magic: The Gathering-Commander|U|247205|195| -|Gwyllion Hedge-Mage|Magic: The Gathering-Commander|U|247206|202| -|Nucklavee|Magic: The Gathering-Commander|U|247207|214| -|Magus of the Vineyard|Magic: The Gathering-Commander|R|247273|166| -|Zoetic Cavern|Magic: The Gathering-Commander|U|247274|298| -|Angel of Despair|Magic: The Gathering-Commander|R|247275|180| -|Electrolyze|Magic: The Gathering-Commander|U|247276|197| -|Gruul Signet|Magic: The Gathering-Commander|C|247277|250| -|Gruul Turf|Magic: The Gathering-Commander|C|247278|276| -|Izzet Boilerworks|Magic: The Gathering-Commander|C|247279|278| -|Izzet Chronarch|Magic: The Gathering-Commander|C|247280|205| -|Izzet Signet|Magic: The Gathering-Commander|C|247281|252| -|Mortify|Magic: The Gathering-Commander|U|247282|211| -|Orzhov Basilica|Magic: The Gathering-Commander|C|247283|283| -|Orzhov Guildmage|Magic: The Gathering-Commander|U|247284|217| -|Orzhov Signet|Magic: The Gathering-Commander|C|247285|255| -|Savage Twister|Magic: The Gathering-Commander|U|247286|222| -|Storm Herd|Magic: The Gathering-Commander|R|247287|34| -|Vedalken Plotter|Magic: The Gathering-Commander|U|247288|66| -|Anger|Magic: The Gathering-Commander|U|247289|109| -|Brawn|Magic: The Gathering-Commander|U|247290|145| -|Spurnmage Advocate|Magic: The Gathering-Commander|U|247291|33| -|Stitch Together|Magic: The Gathering-Commander|U|247292|102| -|Wonder|Magic: The Gathering-Commander|U|247293|71| -|Chromeshell Crab|Magic: The Gathering-Commander|R|247294|41| -|Ζthersnipe|Magic: The Gathering-Commander|C|247295|39| -|Arbiter of Knollridge|Magic: The Gathering-Commander|R|247296|6| -|Austere Command|Magic: The Gathering-Commander|R|247297|8| -|Brion Stoutarm|Magic: The Gathering-Commander|R|247298|187| -|Faultgrinder|Magic: The Gathering-Commander|C|247299|122| -|Footbottom Feast|Magic: The Gathering-Commander|C|247300|84| -|Lash Out|Magic: The Gathering-Commander|C|247301|127| -|Mulldrifter|Magic: The Gathering-Commander|C|247302|52| -|Pollen Lullaby|Magic: The Gathering-Commander|U|247303|26| -|Scattering Stroke|Magic: The Gathering-Commander|U|247304|60| -|Shriekmaw|Magic: The Gathering-Commander|U|247305|100| -|Vivid Crag|Magic: The Gathering-Commander|U|247306|293| -|Vivid Creek|Magic: The Gathering-Commander|U|247307|294| -|Vivid Grove|Magic: The Gathering-Commander|U|247308|295| -|Vivid Marsh|Magic: The Gathering-Commander|U|247309|296| -|Vivid Meadow|Magic: The Gathering-Commander|U|247310|297| -|Whirlpool Whelm|Magic: The Gathering-Commander|C|247311|69| -|Wild Ricochet|Magic: The Gathering-Commander|R|247312|139| -|Deadly Recluse|Magic: The Gathering-Commander|C|247313|149| -|Dragon Whelp|Magic: The Gathering-Commander|U|247314|120| -|Earthquake|Magic: The Gathering-Commander|R|247315|121| -|Howling Mine|Magic: The Gathering-Commander|R|247316|251| -|Acidic Slime|Magic: The Gathering-Commander|U|247317|140| -|Angelic Arbiter|Magic: The Gathering-Commander|R|247318|5| -|Conundrum Sphinx|Magic: The Gathering-Commander|R|247319|42| -|Cultivate|Magic: The Gathering-Commander|C|247320|148| -|Diabolic Tutor|Magic: The Gathering-Commander|U|247321|77| -|Doom Blade|Magic: The Gathering-Commander|C|247322|78| -|Garruk Wildspeaker|Magic: The Gathering-Commander|M|247323|157| -|Gravedigger|Magic: The Gathering-Commander|C|247324|86| -|Rise from the Grave|Magic: The Gathering-Commander|U|247325|96| -|Serra Angel|Magic: The Gathering-Commander|U|247326|30| -|Sign in Blood|Magic: The Gathering-Commander|C|247327|101| -|Terramorphic Expanse|Magic: The Gathering-Commander|C|247328|291| -|Ray of Command|Magic: The Gathering-Commander|C|247329|56| -|Afterlife|Magic: The Gathering-Commander|U|247330|2| -|Brainstorm|Magic: The Gathering-Commander|C|247331|40| -|Invigorate|Magic: The Gathering-Commander|C|247332|162| -|Squallmonger|Magic: The Gathering-Commander|U|247333|173| -|Fertilid|Magic: The Gathering-Commander|C|247335|154| -|Spitebellows|Magic: The Gathering-Commander|U|247336|135| -|Lightning Greaves|Magic: The Gathering-Commander|U|247337|253| -|Oblivion Stone|Magic: The Gathering-Commander|R|247338|254| -|Reiver Demon|Magic: The Gathering-Commander|R|247339|95| -|Solemn Simulacrum|Magic: The Gathering-Commander|R|247340|262| -|Shattered Angel|Magic: The Gathering-Commander|U|247341|31| -|Buried Alive|Magic: The Gathering-Commander|U|247342|74| -|Akroma's Vengeance|Magic: The Gathering-Commander|R|247343|3| -|Barren Moor|Magic: The Gathering-Commander|C|247344|266| -|Explosive Vegetation|Magic: The Gathering-Commander|U|247345|153| -|Forgotten Cave|Magic: The Gathering-Commander|C|247346|273| -|Insurrection|Magic: The Gathering-Commander|R|247347|126| -|Krosan Tusker|Magic: The Gathering-Commander|C|247348|164| -|Lonely Sandbar|Magic: The Gathering-Commander|C|247349|281| -|Oblation|Magic: The Gathering-Commander|R|247350|22| -|Righteous Cause|Magic: The Gathering-Commander|U|247351|29| -|Secluded Steppe|Magic: The Gathering-Commander|C|247352|286| -|Slipstream Eel|Magic: The Gathering-Commander|C|247353|62| -|Symbiotic Wurm|Magic: The Gathering-Commander|R|247354|174| -|Syphon Mind|Magic: The Gathering-Commander|C|247355|104| -|Trade Secrets|Magic: The Gathering-Commander|R|247356|64| -|Tranquil Thicket|Magic: The Gathering-Commander|C|247357|292| -|Akroma, Angel of Fury|Magic: The Gathering-Commander|R|247358|108| -|Deadwood Treefolk|Magic: The Gathering-Commander|U|247359|150| -|Harmonize|Magic: The Gathering-Commander|U|247360|158| -|Intet, the Dreamer|Magic: The Gathering-Commander|R|247361|204| -|Numot, the Devastator|Magic: The Gathering-Commander|R|247362|215| -|Oros, the Avenger|Magic: The Gathering-Commander|R|247363|216| -|Pyrohemia|Magic: The Gathering-Commander|U|247364|132| -|Teneb, the Harvester|Magic: The Gathering-Commander|R|247365|230| -|Vorosh, the Hunter|Magic: The Gathering-Commander|R|247366|235| -|Avatar of Fury|Magic: The Gathering-Commander|R|247367|110| -|Flametongue Kavu|Magic: The Gathering-Commander|U|247368|123| -|Hull Breach|Magic: The Gathering-Commander|C|247369|203| -|Bathe in Light|Magic: The Gathering-Commander|U|247370|9| -|Boros Garrison|Magic: The Gathering-Commander|C|247371|268| -|Boros Guildmage|Magic: The Gathering-Commander|U|247372|186| -|Boros Signet|Magic: The Gathering-Commander|C|247373|243| -|Chorus of the Conclave|Magic: The Gathering-Commander|R|247374|189| -|Cleansing Beam|Magic: The Gathering-Commander|U|247375|116| -|Dimir Aqueduct|Magic: The Gathering-Commander|C|247376|270| -|Dimir Signet|Magic: The Gathering-Commander|C|247377|246| -|Fists of Ironwood|Magic: The Gathering-Commander|C|247378|156| -|Golgari Guildmage|Magic: The Gathering-Commander|U|247379|201| -|Golgari Rot Farm|Magic: The Gathering-Commander|C|247380|275| -|Golgari Signet|Magic: The Gathering-Commander|C|247381|249| -|Hex|Magic: The Gathering-Commander|R|247382|87| -|Hour of Reckoning|Magic: The Gathering-Commander|R|247383|15| -|Master Warcraft|Magic: The Gathering-Commander|R|247384|209| -|Selesnya Evangel|Magic: The Gathering-Commander|C|247385|223| -|Selesnya Guildmage|Magic: The Gathering-Commander|U|247386|224| -|Selesnya Sanctuary|Magic: The Gathering-Commander|C|247387|287| -|Selesnya Signet|Magic: The Gathering-Commander|C|247388|258| -|Svogthos, the Restless Tomb|Magic: The Gathering-Commander|U|247389|289| -|Szadek, Lord of Secrets|Magic: The Gathering-Commander|R|247390|228| -|Vulturous Zombie|Magic: The Gathering-Commander|R|247391|236| -|Artisan of Kozilek|Magic: The Gathering-Commander|U|247392|1| -|Awakening Zone|Magic: The Gathering-Commander|R|247393|142| -|Disaster Radius|Magic: The Gathering-Commander|R|247394|119| -|Dreamstone Hedron|Magic: The Gathering-Commander|U|247395|247| -|Evolving Wilds|Magic: The Gathering-Commander|C|247396|272| -|Guard Gomazoa|Magic: The Gathering-Commander|U|247397|49| -|Prophetic Prism|Magic: The Gathering-Commander|C|247398|256| -|Rapacious One|Magic: The Gathering-Commander|U|247399|133| -|Wall of Omens|Magic: The Gathering-Commander|U|247400|37| -|Bladewing the Risen|Magic: The Gathering-Commander|R|247401|185| -|Chartooth Cougar|Magic: The Gathering-Commander|C|247402|115| -|Elvish Aberration|Magic: The Gathering-Commander|U|247403|151| -|Fierce Empath|Magic: The Gathering-Commander|C|247404|155| -|Hunting Pack|Magic: The Gathering-Commander|U|247405|160| -|Temple of the False God|Magic: The Gathering-Commander|U|247406|290| -|Firespout|Magic: The Gathering-Commander|U|247407|199| -|Plumeveil|Magic: The Gathering-Commander|U|247408|218| -|Prison Term|Magic: The Gathering-Commander|U|247409|27| -|Murmurs from Beyond|Magic: The Gathering-Commander|C|247410|53| -|Oni of Wild Places|Magic: The Gathering-Commander|U|247411|130| -|Razorjaw Oni|Magic: The Gathering-Commander|U|247412|94| -|Reins of Power|Magic: The Gathering-Commander|R|247413|57| -|Ruination|Magic: The Gathering-Commander|R|247414|134| -|Evincar's Justice|Magic: The Gathering-Commander|C|247415|80| -|Living Death|Magic: The Gathering-Commander|R|247416|88| -|Propaganda|Magic: The Gathering-Commander|U|247417|55| -|Dreadship Reef|Magic: The Gathering-Commander|U|247513|271| -|Fungal Reaches|Magic: The Gathering-Commander|U|247514|274| -|Molten Slagheap|Magic: The Gathering-Commander|U|247515|282| -|Penumbra Spider|Magic: The Gathering-Commander|C|247516|167| -|Return to Dust|Magic: The Gathering-Commander|U|247517|28| -|Sulfurous Blast|Magic: The Gathering-Commander|U|247518|137| -|Triskelavus|Magic: The Gathering-Commander|R|247519|263| -|Avatar of Woe|Magic: The Gathering-Commander|R|247520|73| -|Spike Feeder|Magic: The Gathering-Commander|U|247521|172| -|Attrition|Magic: The Gathering-Commander|R|247522|72| -|False Prophet|Magic: The Gathering-Commander|R|247523|13| -|Yavimaya Elder|Magic: The Gathering-Commander|C|247524|179| -|Mother of Runes|Magic: The Gathering-Commander|U|247525|21| -|Congregate|Magic: The Gathering-Commander|C|247526|11| -|Dark Hatchling|Magic: The Gathering-Commander|R|247527|76| -|Fog Bank|Magic: The Gathering-Commander|U|247528|47| -|Goblin Cadets|Magic: The Gathering-Commander|U|247529|125| -|Monk Realist|Magic: The Gathering-Commander|C|247530|20| -|Unnerve|Magic: The Gathering-Commander|C|247531|105| -|Windfall|Magic: The Gathering-Commander|U|247532|70| -|Sol Ring|Magic: The Gathering-Commander|U|247533|261| -|Veteran Explorer|Magic: The Gathering-Commander|U|247534|177| -|Bestial Menace|Magic: The Gathering-Commander|U|247535|144| -|Bojuka Bog|Magic: The Gathering-Commander|C|247536|267| -|Butcher of Malakir|Magic: The Gathering-Commander|R|247537|75| -|Chain Reaction|Magic: The Gathering-Commander|R|247538|113| -|Comet Storm|Magic: The Gathering-Commander|M|247539|117| -|Lightkeeper of Emeria|Magic: The Gathering-Commander|U|247540|18| -|Nemesis Trap|Magic: The Gathering-Commander|U|247541|91| -|Wrexial, the Risen Deep|Magic: The Gathering-Commander|M|247542|239| -|Akoum Refuge|Magic: The Gathering-Commander|U|247543|264| -|Baloth Woodcrasher|Magic: The Gathering-Commander|U|247544|143| -|Cobra Trap|Magic: The Gathering-Commander|U|247545|146| -|Gomazoa|Magic: The Gathering-Commander|U|247546|48| -|Journey to Nowhere|Magic: The Gathering-Commander|C|247547|17| -|Jwar Isle Refuge|Magic: The Gathering-Commander|U|247548|279| -|Kazandu Refuge|Magic: The Gathering-Commander|U|247549|280| -|Punishing Fire|Magic: The Gathering-Commander|U|247550|131| -|Relic Crush|Magic: The Gathering-Commander|C|247551|168| -|Vampire Nighthawk|Magic: The Gathering-Commander|U|247552|106| -|Forest|Magic: The Gathering-Commander|L|249800|317| -|Forest|Magic: The Gathering-Commander|L|249801|316| -|Forest|Magic: The Gathering-Commander|L|249802|318| -|Forest|Magic: The Gathering-Commander|L|249803|315| -|Island|Magic: The Gathering-Commander|L|249804|303| -|Island|Magic: The Gathering-Commander|L|249805|306| -|Island|Magic: The Gathering-Commander|L|249806|305| -|Island|Magic: The Gathering-Commander|L|249807|304| -|Mountain|Magic: The Gathering-Commander|L|249808|313| -|Mountain|Magic: The Gathering-Commander|L|249809|312| -|Mountain|Magic: The Gathering-Commander|L|249810|311| -|Mountain|Magic: The Gathering-Commander|L|249811|314| -|Plains|Magic: The Gathering-Commander|L|249812|302| -|Plains|Magic: The Gathering-Commander|L|249813|300| -|Plains|Magic: The Gathering-Commander|L|249814|299| -|Plains|Magic: The Gathering-Commander|L|249815|301| -|Swamp|Magic: The Gathering-Commander|L|249816|307| -|Swamp|Magic: The Gathering-Commander|L|249817|310| -|Swamp|Magic: The Gathering-Commander|L|249818|309| -|Swamp|Magic: The Gathering-Commander|L|249819|308| -|Spawnwrithe|Magic: The Gathering-Commander|R|259016|171| +Ankh of Mishra|Limited Edition Alpha||R|{2}|Artifact||| +Basalt Monolith|Limited Edition Alpha||U|{3}|Artifact||| +Black Lotus|Limited Edition Alpha||R|{0}|Artifact||| +Black Vise|Limited Edition Alpha||U|{1}|Artifact||| +Celestial Prism|Limited Edition Alpha||U|{3}|Artifact||| +Chaos Orb|Limited Edition Alpha||R|{2}|Artifact||| +Clockwork Beast|Limited Edition Alpha||R|{6}|Artifact Creature — Beast|0|4| +Conservator|Limited Edition Alpha||U|{4}|Artifact||| +Copper Tablet|Limited Edition Alpha||U|{2}|Artifact||| +Crystal Rod|Limited Edition Alpha||U|{1}|Artifact||| +Cyclopean Tomb|Limited Edition Alpha||R|{4}|Artifact||| +Dingus Egg|Limited Edition Alpha||R|{4}|Artifact||| +Disrupting Scepter|Limited Edition Alpha||R|{3}|Artifact||| +Forcefield|Limited Edition Alpha||R|{3}|Artifact||| +Gauntlet of Might|Limited Edition Alpha||R|{4}|Artifact||| +Glasses of Urza|Limited Edition Alpha||U|{1}|Artifact||| +Helm of Chatzuk|Limited Edition Alpha||R|{1}|Artifact||| +Howling Mine|Limited Edition Alpha||R|{2}|Artifact||| +Icy Manipulator|Limited Edition Alpha||U|{4}|Artifact||| +Illusionary Mask|Limited Edition Alpha||R|{2}|Artifact||| +Iron Star|Limited Edition Alpha||U|{1}|Artifact||| +Ivory Cup|Limited Edition Alpha||U|{1}|Artifact||| +Jade Monolith|Limited Edition Alpha||R|{4}|Artifact||| +Jade Statue|Limited Edition Alpha||U|{4}|Artifact|3|6| +Jayemdae Tome|Limited Edition Alpha||R|{4}|Artifact||| +Juggernaut|Limited Edition Alpha||U|{4}|Artifact Creature — Juggernaut|5|3| +Kormus Bell|Limited Edition Alpha||R|{4}|Artifact||| +Library of Leng|Limited Edition Alpha||U|{1}|Artifact||| +Living Wall|Limited Edition Alpha||U|{4}|Artifact Creature — Wall|0|6| +Mana Vault|Limited Edition Alpha||R|{1}|Artifact||| +Meekstone|Limited Edition Alpha||R|{1}|Artifact||| +Mox Emerald|Limited Edition Alpha||R|{0}|Artifact||| +Mox Jet|Limited Edition Alpha||R|{0}|Artifact||| +Mox Pearl|Limited Edition Alpha||R|{0}|Artifact||| +Mox Ruby|Limited Edition Alpha||R|{0}|Artifact||| +Mox Sapphire|Limited Edition Alpha||R|{0}|Artifact||| +Nevinyrral's Disk|Limited Edition Alpha||R|{4}|Artifact||| +Obsianus Golem|Limited Edition Alpha||U|{6}|Artifact Creature — Golem|4|6| +Rod of Ruin|Limited Edition Alpha||U|{4}|Artifact||| +Sol Ring|Limited Edition Alpha||U|{1}|Artifact||| +Soul Net|Limited Edition Alpha||U|{1}|Artifact||| +Sunglasses of Urza|Limited Edition Alpha||R|{3}|Artifact||| +The Hive|Limited Edition Alpha||R|{5}|Artifact||| +Throne of Bone|Limited Edition Alpha||U|{1}|Artifact||| +Time Vault|Limited Edition Alpha||R|{2}|Artifact||| +Winter Orb|Limited Edition Alpha||R|{2}|Artifact||| +Wooden Sphere|Limited Edition Alpha||U|{1}|Artifact||| +Animate Dead|Limited Edition Alpha||U|{1}{B}|Enchantment — Aura||| +Bad Moon|Limited Edition Alpha||R|{1}{B}|Enchantment||| +Black Knight|Limited Edition Alpha||U|{B}{B}|Creature — Human Knight|2|2| +Bog Wraith|Limited Edition Alpha||U|{3}{B}|Creature — Wraith|3|3| +Contract from Below|Limited Edition Alpha||R|{B}|Sorcery||| +Cursed Land|Limited Edition Alpha||U|{2}{B}{B}|Enchantment — Aura||| +Dark Ritual|Limited Edition Alpha||C|{B}|Instant||| +Darkpact|Limited Edition Alpha||R|{B}{B}{B}|Sorcery||| +Deathgrip|Limited Edition Alpha||U|{B}{B}|Enchantment||| +Deathlace|Limited Edition Alpha||R|{B}|Instant||| +Demonic Attorney|Limited Edition Alpha||R|{1}{B}{B}|Sorcery||| +Demonic Hordes|Limited Edition Alpha||R|{3}{B}{B}{B}|Creature — Demon|5|5| +Demonic Tutor|Limited Edition Alpha||U|{1}{B}|Sorcery||| +Drain Life|Limited Edition Alpha||C|{X}{1}{B}|Sorcery||| +Drudge Skeletons|Limited Edition Alpha||C|{1}{B}|Creature — Skeleton|1|1| +Evil Presence|Limited Edition Alpha||U|{B}|Enchantment — Aura||| +Fear|Limited Edition Alpha||C|{B}{B}|Enchantment — Aura||| +Frozen Shade|Limited Edition Alpha||C|{2}{B}|Creature — Shade|0|1| +Gloom|Limited Edition Alpha||U|{2}{B}|Enchantment||| +Howl from Beyond|Limited Edition Alpha||C|{X}{B}|Instant||| +Hypnotic Specter|Limited Edition Alpha||U|{1}{B}{B}|Creature — Specter|2|2| +Lich|Limited Edition Alpha||R|{B}{B}{B}{B}|Enchantment||| +Lord of the Pit|Limited Edition Alpha||R|{4}{B}{B}{B}|Creature — Demon|7|7| +Mind Twist|Limited Edition Alpha||R|{X}{B}|Sorcery||| +Nether Shadow|Limited Edition Alpha||R|{B}{B}|Creature — Spirit|1|1| +Nettling Imp|Limited Edition Alpha||U|{2}{B}|Creature — Imp|1|1| +Nightmare|Limited Edition Alpha||R|{5}{B}|Creature — Nightmare Horse|*|*| +Paralyze|Limited Edition Alpha||C|{B}|Enchantment — Aura||| +Pestilence|Limited Edition Alpha||C|{2}{B}{B}|Enchantment||| +Plague Rats|Limited Edition Alpha||C|{2}{B}|Creature — Rat|*|*| +Raise Dead|Limited Edition Alpha||C|{B}|Sorcery||| +Royal Assassin|Limited Edition Alpha||R|{1}{B}{B}|Creature — Human Assassin|1|1| +Sacrifice|Limited Edition Alpha||U|{B}|Instant||| +Scathe Zombies|Limited Edition Alpha||C|{2}{B}|Creature — Zombie|2|2| +Scavenging Ghoul|Limited Edition Alpha||U|{3}{B}|Creature — Zombie|2|2| +Sengir Vampire|Limited Edition Alpha||U|{3}{B}{B}|Creature — Vampire|4|4| +Simulacrum|Limited Edition Alpha||U|{1}{B}|Instant||| +Sinkhole|Limited Edition Alpha||C|{B}{B}|Sorcery||| +Terror|Limited Edition Alpha||C|{1}{B}|Instant||| +Unholy Strength|Limited Edition Alpha||C|{B}|Enchantment — Aura||| +Wall of Bone|Limited Edition Alpha||U|{2}{B}|Creature — Skeleton Wall|1|4| +Warp Artifact|Limited Edition Alpha||R|{B}{B}|Enchantment — Aura||| +Weakness|Limited Edition Alpha||C|{B}|Enchantment — Aura||| +Will-o'-the-Wisp|Limited Edition Alpha||R|{B}|Creature — Spirit|0|1| +Word of Command|Limited Edition Alpha||R|{B}{B}|Instant||| +Zombie Master|Limited Edition Alpha||R|{1}{B}{B}|Creature — Zombie|2|3| +Air Elemental|Limited Edition Alpha||U|{3}{U}{U}|Creature — Elemental|4|4| +Ancestral Recall|Limited Edition Alpha||R|{U}|Instant||| +Animate Artifact|Limited Edition Alpha||U|{3}{U}|Enchantment — Aura||| +Blue Elemental Blast|Limited Edition Alpha||C|{U}|Instant||| +Braingeyser|Limited Edition Alpha||R|{X}{U}{U}|Sorcery||| +Clone|Limited Edition Alpha||U|{3}{U}|Creature — Shapeshifter|0|0| +Control Magic|Limited Edition Alpha||U|{2}{U}{U}|Enchantment — Aura||| +Copy Artifact|Limited Edition Alpha||R|{1}{U}|Enchantment||| +Counterspell|Limited Edition Alpha||U|{U}{U}|Instant||| +Creature Bond|Limited Edition Alpha||C|{1}{U}|Enchantment — Aura||| +Drain Power|Limited Edition Alpha||R|{U}{U}|Sorcery||| +Feedback|Limited Edition Alpha||U|{2}{U}|Enchantment — Aura||| +Flight|Limited Edition Alpha||C|{U}|Enchantment — Aura||| +Invisibility|Limited Edition Alpha||C|{U}{U}|Enchantment — Aura||| +Jump|Limited Edition Alpha||C|{U}|Instant||| +Lifetap|Limited Edition Alpha||U|{U}{U}|Enchantment||| +Lord of Atlantis|Limited Edition Alpha||R|{U}{U}|Creature — Merfolk|2|2| +Magical Hack|Limited Edition Alpha||R|{U}|Instant||| +Mahamoti Djinn|Limited Edition Alpha||R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Short|Limited Edition Alpha||R|{2}{U}|Instant||| +Merfolk of the Pearl Trident|Limited Edition Alpha||C|{U}|Creature — Merfolk|1|1| +Phantasmal Forces|Limited Edition Alpha||U|{3}{U}|Creature — Illusion|4|1| +Phantasmal Terrain|Limited Edition Alpha||C|{U}{U}|Enchantment — Aura||| +Phantom Monster|Limited Edition Alpha||U|{3}{U}|Creature — Illusion|3|3| +Pirate Ship|Limited Edition Alpha||R|{4}{U}|Creature — Human Pirate|4|3| +Power Leak|Limited Edition Alpha||C|{1}{U}|Enchantment — Aura||| +Power Sink|Limited Edition Alpha||C|{X}{U}|Instant||| +Prodigal Sorcerer|Limited Edition Alpha||C|{2}{U}|Creature — Human Wizard|1|1| +Psionic Blast|Limited Edition Alpha||U|{2}{U}|Instant||| +Psychic Venom|Limited Edition Alpha||C|{1}{U}|Enchantment — Aura||| +Sea Serpent|Limited Edition Alpha||C|{5}{U}|Creature — Serpent|5|5| +Siren's Call|Limited Edition Alpha||U|{U}|Instant||| +Sleight of Mind|Limited Edition Alpha||R|{U}|Instant||| +Spell Blast|Limited Edition Alpha||C|{X}{U}|Instant||| +Stasis|Limited Edition Alpha||R|{1}{U}|Enchantment||| +Steal Artifact|Limited Edition Alpha||U|{2}{U}{U}|Enchantment — Aura||| +Thoughtlace|Limited Edition Alpha||R|{U}|Instant||| +Time Walk|Limited Edition Alpha||R|{1}{U}|Sorcery||| +Timetwister|Limited Edition Alpha||R|{2}{U}|Sorcery||| +Twiddle|Limited Edition Alpha||C|{U}|Instant||| +Unsummon|Limited Edition Alpha||C|{U}|Instant||| +Vesuvan Doppelganger|Limited Edition Alpha||R|{3}{U}{U}|Creature — Shapeshifter|0|0| +Volcanic Eruption|Limited Edition Alpha||R|{X}{U}{U}{U}|Sorcery||| +Wall of Air|Limited Edition Alpha||U|{1}{U}{U}|Creature — Wall|1|5| +Wall of Water|Limited Edition Alpha||U|{1}{U}{U}|Creature — Wall|0|5| +Water Elemental|Limited Edition Alpha||U|{3}{U}{U}|Creature — Elemental|5|4| +Aspect of Wolf|Limited Edition Alpha||R|{1}{G}|Enchantment — Aura||| +Berserk|Limited Edition Alpha||U|{G}|Instant||| +Birds of Paradise|Limited Edition Alpha||R|{G}|Creature — Bird|0|1| +Camouflage|Limited Edition Alpha||U|{G}|Instant||| +Channel|Limited Edition Alpha||U|{G}{G}|Sorcery||| +Cockatrice|Limited Edition Alpha||R|{3}{G}{G}|Creature — Cockatrice|2|4| +Craw Wurm|Limited Edition Alpha||C|{4}{G}{G}|Creature — Wurm|6|4| +Elvish Archers|Limited Edition Alpha||R|{1}{G}|Creature — Elf Archer|2|1| +Fastbond|Limited Edition Alpha||R|{G}|Enchantment||| +Fog|Limited Edition Alpha||C|{G}|Instant||| +Force of Nature|Limited Edition Alpha||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Fungusaur|Limited Edition Alpha||R|{3}{G}|Creature — Fungus Lizard|2|2| +Gaea's Liege|Limited Edition Alpha||R|{3}{G}{G}{G}|Creature — Avatar|*|*| +Giant Growth|Limited Edition Alpha||C|{G}|Instant||| +Giant Spider|Limited Edition Alpha||C|{3}{G}|Creature — Spider|2|4| +Grizzly Bears|Limited Edition Alpha||C|{1}{G}|Creature — Bear|2|2| +Hurricane|Limited Edition Alpha||U|{X}{G}|Sorcery||| +Ice Storm|Limited Edition Alpha||U|{2}{G}|Sorcery||| +Instill Energy|Limited Edition Alpha||U|{G}|Enchantment — Aura||| +Ironroot Treefolk|Limited Edition Alpha||C|{4}{G}|Creature — Treefolk|3|5| +Kudzu|Limited Edition Alpha||R|{1}{G}{G}|Enchantment — Aura||| +Ley Druid|Limited Edition Alpha||U|{2}{G}|Creature — Human Druid|1|1| +Lifeforce|Limited Edition Alpha||U|{G}{G}|Enchantment||| +Lifelace|Limited Edition Alpha||R|{G}|Instant||| +Living Artifact|Limited Edition Alpha||R|{G}|Enchantment — Aura||| +Living Lands|Limited Edition Alpha||R|{3}{G}|Enchantment||| +Llanowar Elves|Limited Edition Alpha||C|{G}|Creature — Elf Druid|1|1| +Lure|Limited Edition Alpha||U|{1}{G}{G}|Enchantment — Aura||| +Natural Selection|Limited Edition Alpha||R|{G}|Instant||| +Regeneration|Limited Edition Alpha||C|{1}{G}|Enchantment — Aura||| +Regrowth|Limited Edition Alpha||U|{1}{G}|Sorcery||| +Scryb Sprites|Limited Edition Alpha||C|{G}|Creature — Faerie|1|1| +Shanodin Dryads|Limited Edition Alpha||C|{G}|Creature — Dryad|1|1| +Stream of Life|Limited Edition Alpha||C|{X}{G}|Sorcery||| +Thicket Basilisk|Limited Edition Alpha||U|{3}{G}{G}|Creature — Basilisk|2|4| +Timber Wolves|Limited Edition Alpha||R|{G}|Creature — Wolf|1|1| +Tranquility|Limited Edition Alpha||C|{2}{G}|Sorcery||| +Tsunami|Limited Edition Alpha||U|{3}{G}|Sorcery||| +Verduran Enchantress|Limited Edition Alpha||R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Brambles|Limited Edition Alpha||U|{2}{G}|Creature — Plant Wall|2|3| +Wall of Ice|Limited Edition Alpha||U|{2}{G}|Creature — Wall|0|7| +Wall of Wood|Limited Edition Alpha||C|{G}|Creature — Wall|0|3| +Wanderlust|Limited Edition Alpha||U|{2}{G}|Enchantment — Aura||| +War Mammoth|Limited Edition Alpha||C|{3}{G}|Creature — Elephant|3|3| +Web|Limited Edition Alpha||R|{G}|Enchantment — Aura||| +Wild Growth|Limited Edition Alpha||C|{G}|Enchantment — Aura||| +Burrowing|Limited Edition Alpha||U|{R}|Enchantment — Aura||| +Chaoslace|Limited Edition Alpha||R|{R}|Instant||| +Disintegrate|Limited Edition Alpha||C|{X}{R}|Sorcery||| +Dragon Whelp|Limited Edition Alpha||U|{2}{R}{R}|Creature — Dragon|2|3| +Dwarven Demolition Team|Limited Edition Alpha||U|{2}{R}|Creature — Dwarf|1|1| +Dwarven Warriors|Limited Edition Alpha||C|{2}{R}|Creature — Dwarf Warrior|1|1| +Earth Elemental|Limited Edition Alpha||U|{3}{R}{R}|Creature — Elemental|4|5| +Earthbind|Limited Edition Alpha||C|{R}|Enchantment — Aura||| +Earthquake|Limited Edition Alpha||R|{X}{R}|Sorcery||| +False Orders|Limited Edition Alpha||C|{R}|Instant||| +Fire Elemental|Limited Edition Alpha||U|{3}{R}{R}|Creature — Elemental|5|4| +Fireball|Limited Edition Alpha||C|{X}{R}|Sorcery||| +Firebreathing|Limited Edition Alpha||C|{R}|Enchantment — Aura||| +Flashfires|Limited Edition Alpha||U|{3}{R}|Sorcery||| +Fork|Limited Edition Alpha||R|{R}{R}|Instant||| +Goblin Balloon Brigade|Limited Edition Alpha||U|{R}|Creature — Goblin Warrior|1|1| +Goblin King|Limited Edition Alpha||R|{1}{R}{R}|Creature — Goblin|2|2| +Granite Gargoyle|Limited Edition Alpha||R|{2}{R}|Creature — Gargoyle|2|2| +Gray Ogre|Limited Edition Alpha||C|{2}{R}|Creature — Ogre|2|2| +Hill Giant|Limited Edition Alpha||C|{3}{R}|Creature — Giant|3|3| +Hurloon Minotaur|Limited Edition Alpha||C|{1}{R}{R}|Creature — Minotaur|2|3| +Ironclaw Orcs|Limited Edition Alpha||C|{1}{R}|Creature — Orc|2|2| +Keldon Warlord|Limited Edition Alpha||U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Lightning Bolt|Limited Edition Alpha||C|{R}|Instant||| +Mana Flare|Limited Edition Alpha||R|{2}{R}|Enchantment||| +Manabarbs|Limited Edition Alpha||R|{3}{R}|Enchantment||| +Mons's Goblin Raiders|Limited Edition Alpha||C|{R}|Creature — Goblin|1|1| +Orcish Artillery|Limited Edition Alpha||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Oriflamme|Limited Edition Alpha||U|{3}{R}|Enchantment||| +Power Surge|Limited Edition Alpha||R|{R}{R}|Enchantment||| +Raging River|Limited Edition Alpha||R|{R}{R}|Enchantment||| +Red Elemental Blast|Limited Edition Alpha||C|{R}|Instant||| +Roc of Kher Ridges|Limited Edition Alpha||R|{3}{R}|Creature — Bird|3|3| +Rock Hydra|Limited Edition Alpha||R|{X}{R}{R}|Creature — Hydra|0|0| +Sedge Troll|Limited Edition Alpha||R|{2}{R}|Creature — Troll|2|2| +Shatter|Limited Edition Alpha||C|{1}{R}|Instant||| +Shivan Dragon|Limited Edition Alpha||R|{4}{R}{R}|Creature — Dragon|5|5| +Smoke|Limited Edition Alpha||R|{R}{R}|Enchantment||| +Stone Giant|Limited Edition Alpha||U|{2}{R}{R}|Creature — Giant|3|4| +Stone Rain|Limited Edition Alpha||C|{2}{R}|Sorcery||| +Tunnel|Limited Edition Alpha||U|{R}|Instant||| +Two-Headed Giant of Foriys|Limited Edition Alpha||R|{4}{R}|Creature — Giant|4|4| +Uthden Troll|Limited Edition Alpha||U|{2}{R}|Creature — Troll|2|2| +Wall of Fire|Limited Edition Alpha||U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Stone|Limited Edition Alpha||U|{1}{R}{R}|Creature — Wall|0|8| +Wheel of Fortune|Limited Edition Alpha||R|{2}{R}|Sorcery||| +Animate Wall|Limited Edition Alpha||R|{W}|Enchantment — Aura||| +Armageddon|Limited Edition Alpha||R|{3}{W}|Sorcery||| +Balance|Limited Edition Alpha||R|{1}{W}|Sorcery||| +Benalish Hero|Limited Edition Alpha||C|{W}|Creature — Human Soldier|1|1| +Black Ward|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Blaze of Glory|Limited Edition Alpha||R|{W}|Instant||| +Blessing|Limited Edition Alpha||R|{W}{W}|Enchantment — Aura||| +Blue Ward|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Castle|Limited Edition Alpha||U|{3}{W}|Enchantment||| +Circle of Protection: Blue|Limited Edition Alpha||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Limited Edition Alpha||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Limited Edition Alpha||C|{1}{W}|Enchantment||| +Circle of Protection: White|Limited Edition Alpha||C|{1}{W}|Enchantment||| +Consecrate Land|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Conversion|Limited Edition Alpha||U|{2}{W}{W}|Enchantment||| +Crusade|Limited Edition Alpha||R|{W}{W}|Enchantment||| +Death Ward|Limited Edition Alpha||C|{W}|Instant||| +Disenchant|Limited Edition Alpha||C|{1}{W}|Instant||| +Farmstead|Limited Edition Alpha||R|{W}{W}{W}|Enchantment — Aura||| +Green Ward|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Guardian Angel|Limited Edition Alpha||C|{X}{W}|Instant||| +Healing Salve|Limited Edition Alpha||C|{W}|Instant||| +Holy Armor|Limited Edition Alpha||C|{W}|Enchantment — Aura||| +Holy Strength|Limited Edition Alpha||C|{W}|Enchantment — Aura||| +Island Sanctuary|Limited Edition Alpha||R|{1}{W}|Enchantment||| +Karma|Limited Edition Alpha||U|{2}{W}{W}|Enchantment||| +Lance|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Mesa Pegasus|Limited Edition Alpha||C|{1}{W}|Creature — Pegasus|1|1| +Northern Paladin|Limited Edition Alpha||R|{2}{W}{W}|Creature — Human Knight|3|3| +Pearled Unicorn|Limited Edition Alpha||C|{2}{W}|Creature — Unicorn|2|2| +Personal Incarnation|Limited Edition Alpha||R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Purelace|Limited Edition Alpha||R|{W}|Instant||| +Red Ward|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Resurrection|Limited Edition Alpha||U|{2}{W}{W}|Sorcery||| +Reverse Damage|Limited Edition Alpha||R|{1}{W}{W}|Instant||| +Righteousness|Limited Edition Alpha||R|{W}|Instant||| +Samite Healer|Limited Edition Alpha||C|{1}{W}|Creature — Human Cleric|1|1| +Savannah Lions|Limited Edition Alpha||R|{W}|Creature — Cat|2|1| +Serra Angel|Limited Edition Alpha||U|{3}{W}{W}|Creature — Angel|4|4| +Swords to Plowshares|Limited Edition Alpha||U|{W}|Instant||| +Veteran Bodyguard|Limited Edition Alpha||R|{3}{W}{W}|Creature — Human|2|5| +Wall of Swords|Limited Edition Alpha||U|{3}{W}|Creature — Wall|3|5| +White Knight|Limited Edition Alpha||U|{W}{W}|Creature — Human Knight|2|2| +White Ward|Limited Edition Alpha||U|{W}|Enchantment — Aura||| +Wrath of God|Limited Edition Alpha||R|{2}{W}{W}|Sorcery||| +Swamp|Limited Edition Alpha||L||Basic Land — Swamp||| +Swamp|Limited Edition Alpha||L||Basic Land — Swamp||| +Badlands|Limited Edition Alpha||R||Land — Swamp Mountain||| +Bayou|Limited Edition Alpha||R||Land — Swamp Forest||| +Plateau|Limited Edition Alpha||R||Land — Mountain Plains||| +Savannah|Limited Edition Alpha||R||Land — Forest Plains||| +Scrubland|Limited Edition Alpha||R||Land — Plains Swamp||| +Taiga|Limited Edition Alpha||R||Land — Mountain Forest||| +Tropical Island|Limited Edition Alpha||R||Land — Forest Island||| +Tundra|Limited Edition Alpha||R||Land — Plains Island||| +Underground Sea|Limited Edition Alpha||R||Land — Island Swamp||| +Forest|Limited Edition Alpha||L||Basic Land — Forest||| +Forest|Limited Edition Alpha||L||Basic Land — Forest||| +Mountain|Limited Edition Alpha||L||Basic Land — Mountain||| +Mountain|Limited Edition Alpha||L||Basic Land — Mountain||| +Island|Limited Edition Alpha||L||Basic Land — Island||| +Island|Limited Edition Alpha||L||Basic Land — Island||| +Plains|Limited Edition Alpha||L||Basic Land — Plains||| +Plains|Limited Edition Alpha||L||Basic Land — Plains||| +Ankh of Mishra|Limited Edition Beta||R|{2}|Artifact||| +Basalt Monolith|Limited Edition Beta||U|{3}|Artifact||| +Black Lotus|Limited Edition Beta||R|{0}|Artifact||| +Black Vise|Limited Edition Beta||U|{1}|Artifact||| +Celestial Prism|Limited Edition Beta||U|{3}|Artifact||| +Chaos Orb|Limited Edition Beta||R|{2}|Artifact||| +Clockwork Beast|Limited Edition Beta||R|{6}|Artifact Creature — Beast|0|4| +Conservator|Limited Edition Beta||U|{4}|Artifact||| +Copper Tablet|Limited Edition Beta||U|{2}|Artifact||| +Crystal Rod|Limited Edition Beta||U|{1}|Artifact||| +Cyclopean Tomb|Limited Edition Beta||R|{4}|Artifact||| +Dingus Egg|Limited Edition Beta||R|{4}|Artifact||| +Disrupting Scepter|Limited Edition Beta||R|{3}|Artifact||| +Forcefield|Limited Edition Beta||R|{3}|Artifact||| +Gauntlet of Might|Limited Edition Beta||R|{4}|Artifact||| +Glasses of Urza|Limited Edition Beta||U|{1}|Artifact||| +Helm of Chatzuk|Limited Edition Beta||R|{1}|Artifact||| +Howling Mine|Limited Edition Beta||R|{2}|Artifact||| +Icy Manipulator|Limited Edition Beta||U|{4}|Artifact||| +Illusionary Mask|Limited Edition Beta||R|{2}|Artifact||| +Iron Star|Limited Edition Beta||U|{1}|Artifact||| +Ivory Cup|Limited Edition Beta||U|{1}|Artifact||| +Jade Monolith|Limited Edition Beta||R|{4}|Artifact||| +Jade Statue|Limited Edition Beta||U|{4}|Artifact|3|6| +Jayemdae Tome|Limited Edition Beta||R|{4}|Artifact||| +Juggernaut|Limited Edition Beta||U|{4}|Artifact Creature — Juggernaut|5|3| +Kormus Bell|Limited Edition Beta||R|{4}|Artifact||| +Library of Leng|Limited Edition Beta||U|{1}|Artifact||| +Living Wall|Limited Edition Beta||U|{4}|Artifact Creature — Wall|0|6| +Mana Vault|Limited Edition Beta||R|{1}|Artifact||| +Meekstone|Limited Edition Beta||R|{1}|Artifact||| +Mox Emerald|Limited Edition Beta||R|{0}|Artifact||| +Mox Jet|Limited Edition Beta||R|{0}|Artifact||| +Mox Pearl|Limited Edition Beta||R|{0}|Artifact||| +Mox Ruby|Limited Edition Beta||R|{0}|Artifact||| +Mox Sapphire|Limited Edition Beta||R|{0}|Artifact||| +Nevinyrral's Disk|Limited Edition Beta||R|{4}|Artifact||| +Obsianus Golem|Limited Edition Beta||U|{6}|Artifact Creature — Golem|4|6| +Rod of Ruin|Limited Edition Beta||U|{4}|Artifact||| +Sol Ring|Limited Edition Beta||U|{1}|Artifact||| +Soul Net|Limited Edition Beta||U|{1}|Artifact||| +Sunglasses of Urza|Limited Edition Beta||R|{3}|Artifact||| +The Hive|Limited Edition Beta||R|{5}|Artifact||| +Throne of Bone|Limited Edition Beta||U|{1}|Artifact||| +Time Vault|Limited Edition Beta||R|{2}|Artifact||| +Winter Orb|Limited Edition Beta||R|{2}|Artifact||| +Wooden Sphere|Limited Edition Beta||U|{1}|Artifact||| +Animate Dead|Limited Edition Beta||U|{1}{B}|Enchantment — Aura||| +Bad Moon|Limited Edition Beta||R|{1}{B}|Enchantment||| +Black Knight|Limited Edition Beta||U|{B}{B}|Creature — Human Knight|2|2| +Bog Wraith|Limited Edition Beta||U|{3}{B}|Creature — Wraith|3|3| +Contract from Below|Limited Edition Beta||R|{B}|Sorcery||| +Cursed Land|Limited Edition Beta||U|{2}{B}{B}|Enchantment — Aura||| +Dark Ritual|Limited Edition Beta||C|{B}|Instant||| +Darkpact|Limited Edition Beta||R|{B}{B}{B}|Sorcery||| +Deathgrip|Limited Edition Beta||U|{B}{B}|Enchantment||| +Deathlace|Limited Edition Beta||R|{B}|Instant||| +Demonic Attorney|Limited Edition Beta||R|{1}{B}{B}|Sorcery||| +Demonic Hordes|Limited Edition Beta||R|{3}{B}{B}{B}|Creature — Demon|5|5| +Demonic Tutor|Limited Edition Beta||U|{1}{B}|Sorcery||| +Drain Life|Limited Edition Beta||C|{X}{1}{B}|Sorcery||| +Drudge Skeletons|Limited Edition Beta||C|{1}{B}|Creature — Skeleton|1|1| +Evil Presence|Limited Edition Beta||U|{B}|Enchantment — Aura||| +Fear|Limited Edition Beta||C|{B}{B}|Enchantment — Aura||| +Frozen Shade|Limited Edition Beta||C|{2}{B}|Creature — Shade|0|1| +Gloom|Limited Edition Beta||U|{2}{B}|Enchantment||| +Howl from Beyond|Limited Edition Beta||C|{X}{B}|Instant||| +Hypnotic Specter|Limited Edition Beta||U|{1}{B}{B}|Creature — Specter|2|2| +Lich|Limited Edition Beta||R|{B}{B}{B}{B}|Enchantment||| +Lord of the Pit|Limited Edition Beta||R|{4}{B}{B}{B}|Creature — Demon|7|7| +Mind Twist|Limited Edition Beta||R|{X}{B}|Sorcery||| +Nether Shadow|Limited Edition Beta||R|{B}{B}|Creature — Spirit|1|1| +Nettling Imp|Limited Edition Beta||U|{2}{B}|Creature — Imp|1|1| +Nightmare|Limited Edition Beta||R|{5}{B}|Creature — Nightmare Horse|*|*| +Paralyze|Limited Edition Beta||C|{B}|Enchantment — Aura||| +Pestilence|Limited Edition Beta||C|{2}{B}{B}|Enchantment||| +Plague Rats|Limited Edition Beta||C|{2}{B}|Creature — Rat|*|*| +Raise Dead|Limited Edition Beta||C|{B}|Sorcery||| +Royal Assassin|Limited Edition Beta||R|{1}{B}{B}|Creature — Human Assassin|1|1| +Sacrifice|Limited Edition Beta||U|{B}|Instant||| +Scathe Zombies|Limited Edition Beta||C|{2}{B}|Creature — Zombie|2|2| +Scavenging Ghoul|Limited Edition Beta||U|{3}{B}|Creature — Zombie|2|2| +Sengir Vampire|Limited Edition Beta||U|{3}{B}{B}|Creature — Vampire|4|4| +Simulacrum|Limited Edition Beta||U|{1}{B}|Instant||| +Sinkhole|Limited Edition Beta||C|{B}{B}|Sorcery||| +Terror|Limited Edition Beta||C|{1}{B}|Instant||| +Unholy Strength|Limited Edition Beta||C|{B}|Enchantment — Aura||| +Wall of Bone|Limited Edition Beta||U|{2}{B}|Creature — Skeleton Wall|1|4| +Warp Artifact|Limited Edition Beta||R|{B}{B}|Enchantment — Aura||| +Weakness|Limited Edition Beta||C|{B}|Enchantment — Aura||| +Will-o'-the-Wisp|Limited Edition Beta||R|{B}|Creature — Spirit|0|1| +Word of Command|Limited Edition Beta||R|{B}{B}|Instant||| +Zombie Master|Limited Edition Beta||R|{1}{B}{B}|Creature — Zombie|2|3| +Air Elemental|Limited Edition Beta||U|{3}{U}{U}|Creature — Elemental|4|4| +Ancestral Recall|Limited Edition Beta||R|{U}|Instant||| +Animate Artifact|Limited Edition Beta||U|{3}{U}|Enchantment — Aura||| +Blue Elemental Blast|Limited Edition Beta||C|{U}|Instant||| +Braingeyser|Limited Edition Beta||R|{X}{U}{U}|Sorcery||| +Clone|Limited Edition Beta||U|{3}{U}|Creature — Shapeshifter|0|0| +Control Magic|Limited Edition Beta||U|{2}{U}{U}|Enchantment — Aura||| +Copy Artifact|Limited Edition Beta||R|{1}{U}|Enchantment||| +Counterspell|Limited Edition Beta||U|{U}{U}|Instant||| +Creature Bond|Limited Edition Beta||C|{1}{U}|Enchantment — Aura||| +Drain Power|Limited Edition Beta||R|{U}{U}|Sorcery||| +Feedback|Limited Edition Beta||U|{2}{U}|Enchantment — Aura||| +Flight|Limited Edition Beta||C|{U}|Enchantment — Aura||| +Invisibility|Limited Edition Beta||C|{U}{U}|Enchantment — Aura||| +Jump|Limited Edition Beta||C|{U}|Instant||| +Lifetap|Limited Edition Beta||U|{U}{U}|Enchantment||| +Lord of Atlantis|Limited Edition Beta||R|{U}{U}|Creature — Merfolk|2|2| +Magical Hack|Limited Edition Beta||R|{U}|Instant||| +Mahamoti Djinn|Limited Edition Beta||R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Short|Limited Edition Beta||R|{2}{U}|Instant||| +Merfolk of the Pearl Trident|Limited Edition Beta||C|{U}|Creature — Merfolk|1|1| +Phantasmal Forces|Limited Edition Beta||U|{3}{U}|Creature — Illusion|4|1| +Phantasmal Terrain|Limited Edition Beta||C|{U}{U}|Enchantment — Aura||| +Phantom Monster|Limited Edition Beta||U|{3}{U}|Creature — Illusion|3|3| +Pirate Ship|Limited Edition Beta||R|{4}{U}|Creature — Human Pirate|4|3| +Power Leak|Limited Edition Beta||C|{1}{U}|Enchantment — Aura||| +Power Sink|Limited Edition Beta||C|{X}{U}|Instant||| +Prodigal Sorcerer|Limited Edition Beta||C|{2}{U}|Creature — Human Wizard|1|1| +Psionic Blast|Limited Edition Beta||U|{2}{U}|Instant||| +Psychic Venom|Limited Edition Beta||C|{1}{U}|Enchantment — Aura||| +Sea Serpent|Limited Edition Beta||C|{5}{U}|Creature — Serpent|5|5| +Siren's Call|Limited Edition Beta||U|{U}|Instant||| +Sleight of Mind|Limited Edition Beta||R|{U}|Instant||| +Spell Blast|Limited Edition Beta||C|{X}{U}|Instant||| +Stasis|Limited Edition Beta||R|{1}{U}|Enchantment||| +Steal Artifact|Limited Edition Beta||U|{2}{U}{U}|Enchantment — Aura||| +Thoughtlace|Limited Edition Beta||R|{U}|Instant||| +Time Walk|Limited Edition Beta||R|{1}{U}|Sorcery||| +Timetwister|Limited Edition Beta||R|{2}{U}|Sorcery||| +Twiddle|Limited Edition Beta||C|{U}|Instant||| +Unsummon|Limited Edition Beta||C|{U}|Instant||| +Vesuvan Doppelganger|Limited Edition Beta||R|{3}{U}{U}|Creature — Shapeshifter|0|0| +Volcanic Eruption|Limited Edition Beta||R|{X}{U}{U}{U}|Sorcery||| +Wall of Air|Limited Edition Beta||U|{1}{U}{U}|Creature — Wall|1|5| +Wall of Water|Limited Edition Beta||U|{1}{U}{U}|Creature — Wall|0|5| +Water Elemental|Limited Edition Beta||U|{3}{U}{U}|Creature — Elemental|5|4| +Aspect of Wolf|Limited Edition Beta||R|{1}{G}|Enchantment — Aura||| +Berserk|Limited Edition Beta||U|{G}|Instant||| +Birds of Paradise|Limited Edition Beta||R|{G}|Creature — Bird|0|1| +Camouflage|Limited Edition Beta||U|{G}|Instant||| +Channel|Limited Edition Beta||U|{G}{G}|Sorcery||| +Cockatrice|Limited Edition Beta||R|{3}{G}{G}|Creature — Cockatrice|2|4| +Craw Wurm|Limited Edition Beta||C|{4}{G}{G}|Creature — Wurm|6|4| +Elvish Archers|Limited Edition Beta||R|{1}{G}|Creature — Elf Archer|2|1| +Fastbond|Limited Edition Beta||R|{G}|Enchantment||| +Fog|Limited Edition Beta||C|{G}|Instant||| +Force of Nature|Limited Edition Beta||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Fungusaur|Limited Edition Beta||R|{3}{G}|Creature — Fungus Lizard|2|2| +Gaea's Liege|Limited Edition Beta||R|{3}{G}{G}{G}|Creature — Avatar|*|*| +Giant Growth|Limited Edition Beta||C|{G}|Instant||| +Giant Spider|Limited Edition Beta||C|{3}{G}|Creature — Spider|2|4| +Grizzly Bears|Limited Edition Beta||C|{1}{G}|Creature — Bear|2|2| +Hurricane|Limited Edition Beta||U|{X}{G}|Sorcery||| +Ice Storm|Limited Edition Beta||U|{2}{G}|Sorcery||| +Instill Energy|Limited Edition Beta||U|{G}|Enchantment — Aura||| +Ironroot Treefolk|Limited Edition Beta||C|{4}{G}|Creature — Treefolk|3|5| +Kudzu|Limited Edition Beta||R|{1}{G}{G}|Enchantment — Aura||| +Ley Druid|Limited Edition Beta||U|{2}{G}|Creature — Human Druid|1|1| +Lifeforce|Limited Edition Beta||U|{G}{G}|Enchantment||| +Lifelace|Limited Edition Beta||R|{G}|Instant||| +Living Artifact|Limited Edition Beta||R|{G}|Enchantment — Aura||| +Living Lands|Limited Edition Beta||R|{3}{G}|Enchantment||| +Llanowar Elves|Limited Edition Beta||C|{G}|Creature — Elf Druid|1|1| +Lure|Limited Edition Beta||U|{1}{G}{G}|Enchantment — Aura||| +Natural Selection|Limited Edition Beta||R|{G}|Instant||| +Regeneration|Limited Edition Beta||C|{1}{G}|Enchantment — Aura||| +Regrowth|Limited Edition Beta||U|{1}{G}|Sorcery||| +Scryb Sprites|Limited Edition Beta||C|{G}|Creature — Faerie|1|1| +Shanodin Dryads|Limited Edition Beta||C|{G}|Creature — Dryad|1|1| +Stream of Life|Limited Edition Beta||C|{X}{G}|Sorcery||| +Thicket Basilisk|Limited Edition Beta||U|{3}{G}{G}|Creature — Basilisk|2|4| +Timber Wolves|Limited Edition Beta||R|{G}|Creature — Wolf|1|1| +Tranquility|Limited Edition Beta||C|{2}{G}|Sorcery||| +Tsunami|Limited Edition Beta||U|{3}{G}|Sorcery||| +Verduran Enchantress|Limited Edition Beta||R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Brambles|Limited Edition Beta||U|{2}{G}|Creature — Plant Wall|2|3| +Wall of Ice|Limited Edition Beta||U|{2}{G}|Creature — Wall|0|7| +Wall of Wood|Limited Edition Beta||C|{G}|Creature — Wall|0|3| +Wanderlust|Limited Edition Beta||U|{2}{G}|Enchantment — Aura||| +War Mammoth|Limited Edition Beta||C|{3}{G}|Creature — Elephant|3|3| +Web|Limited Edition Beta||R|{G}|Enchantment — Aura||| +Wild Growth|Limited Edition Beta||C|{G}|Enchantment — Aura||| +Burrowing|Limited Edition Beta||U|{R}|Enchantment — Aura||| +Chaoslace|Limited Edition Beta||R|{R}|Instant||| +Disintegrate|Limited Edition Beta||C|{X}{R}|Sorcery||| +Dragon Whelp|Limited Edition Beta||U|{2}{R}{R}|Creature — Dragon|2|3| +Dwarven Demolition Team|Limited Edition Beta||U|{2}{R}|Creature — Dwarf|1|1| +Dwarven Warriors|Limited Edition Beta||C|{2}{R}|Creature — Dwarf Warrior|1|1| +Earth Elemental|Limited Edition Beta||U|{3}{R}{R}|Creature — Elemental|4|5| +Earthbind|Limited Edition Beta||C|{R}|Enchantment — Aura||| +Earthquake|Limited Edition Beta||R|{X}{R}|Sorcery||| +False Orders|Limited Edition Beta||C|{R}|Instant||| +Fire Elemental|Limited Edition Beta||U|{3}{R}{R}|Creature — Elemental|5|4| +Fireball|Limited Edition Beta||C|{X}{R}|Sorcery||| +Firebreathing|Limited Edition Beta||C|{R}|Enchantment — Aura||| +Flashfires|Limited Edition Beta||U|{3}{R}|Sorcery||| +Fork|Limited Edition Beta||R|{R}{R}|Instant||| +Goblin Balloon Brigade|Limited Edition Beta||U|{R}|Creature — Goblin Warrior|1|1| +Goblin King|Limited Edition Beta||R|{1}{R}{R}|Creature — Goblin|2|2| +Granite Gargoyle|Limited Edition Beta||R|{2}{R}|Creature — Gargoyle|2|2| +Gray Ogre|Limited Edition Beta||C|{2}{R}|Creature — Ogre|2|2| +Hill Giant|Limited Edition Beta||C|{3}{R}|Creature — Giant|3|3| +Hurloon Minotaur|Limited Edition Beta||C|{1}{R}{R}|Creature — Minotaur|2|3| +Ironclaw Orcs|Limited Edition Beta||C|{1}{R}|Creature — Orc|2|2| +Keldon Warlord|Limited Edition Beta||U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Lightning Bolt|Limited Edition Beta||C|{R}|Instant||| +Mana Flare|Limited Edition Beta||R|{2}{R}|Enchantment||| +Manabarbs|Limited Edition Beta||R|{3}{R}|Enchantment||| +Mons's Goblin Raiders|Limited Edition Beta||C|{R}|Creature — Goblin|1|1| +Orcish Artillery|Limited Edition Beta||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Oriflamme|Limited Edition Beta||U|{3}{R}|Enchantment||| +Power Surge|Limited Edition Beta||R|{R}{R}|Enchantment||| +Raging River|Limited Edition Beta||R|{R}{R}|Enchantment||| +Red Elemental Blast|Limited Edition Beta||C|{R}|Instant||| +Roc of Kher Ridges|Limited Edition Beta||R|{3}{R}|Creature — Bird|3|3| +Rock Hydra|Limited Edition Beta||R|{X}{R}{R}|Creature — Hydra|0|0| +Sedge Troll|Limited Edition Beta||R|{2}{R}|Creature — Troll|2|2| +Shatter|Limited Edition Beta||C|{1}{R}|Instant||| +Shivan Dragon|Limited Edition Beta||R|{4}{R}{R}|Creature — Dragon|5|5| +Smoke|Limited Edition Beta||R|{R}{R}|Enchantment||| +Stone Giant|Limited Edition Beta||U|{2}{R}{R}|Creature — Giant|3|4| +Stone Rain|Limited Edition Beta||C|{2}{R}|Sorcery||| +Tunnel|Limited Edition Beta||U|{R}|Instant||| +Two-Headed Giant of Foriys|Limited Edition Beta||R|{4}{R}|Creature — Giant|4|4| +Uthden Troll|Limited Edition Beta||U|{2}{R}|Creature — Troll|2|2| +Wall of Fire|Limited Edition Beta||U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Stone|Limited Edition Beta||U|{1}{R}{R}|Creature — Wall|0|8| +Wheel of Fortune|Limited Edition Beta||R|{2}{R}|Sorcery||| +Animate Wall|Limited Edition Beta||R|{W}|Enchantment — Aura||| +Armageddon|Limited Edition Beta||R|{3}{W}|Sorcery||| +Balance|Limited Edition Beta||R|{1}{W}|Sorcery||| +Benalish Hero|Limited Edition Beta||C|{W}|Creature — Human Soldier|1|1| +Black Ward|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Blaze of Glory|Limited Edition Beta||R|{W}|Instant||| +Blessing|Limited Edition Beta||R|{W}{W}|Enchantment — Aura||| +Blue Ward|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Castle|Limited Edition Beta||U|{3}{W}|Enchantment||| +Circle of Protection: Black|Limited Edition Beta||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Limited Edition Beta||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Limited Edition Beta||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Limited Edition Beta||C|{1}{W}|Enchantment||| +Circle of Protection: White|Limited Edition Beta||C|{1}{W}|Enchantment||| +Consecrate Land|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Conversion|Limited Edition Beta||U|{2}{W}{W}|Enchantment||| +Crusade|Limited Edition Beta||R|{W}{W}|Enchantment||| +Death Ward|Limited Edition Beta||C|{W}|Instant||| +Disenchant|Limited Edition Beta||C|{1}{W}|Instant||| +Farmstead|Limited Edition Beta||R|{W}{W}{W}|Enchantment — Aura||| +Green Ward|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Guardian Angel|Limited Edition Beta||C|{X}{W}|Instant||| +Healing Salve|Limited Edition Beta||C|{W}|Instant||| +Holy Armor|Limited Edition Beta||C|{W}|Enchantment — Aura||| +Holy Strength|Limited Edition Beta||C|{W}|Enchantment — Aura||| +Island Sanctuary|Limited Edition Beta||R|{1}{W}|Enchantment||| +Karma|Limited Edition Beta||U|{2}{W}{W}|Enchantment||| +Lance|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Mesa Pegasus|Limited Edition Beta||C|{1}{W}|Creature — Pegasus|1|1| +Northern Paladin|Limited Edition Beta||R|{2}{W}{W}|Creature — Human Knight|3|3| +Pearled Unicorn|Limited Edition Beta||C|{2}{W}|Creature — Unicorn|2|2| +Personal Incarnation|Limited Edition Beta||R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Purelace|Limited Edition Beta||R|{W}|Instant||| +Red Ward|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Resurrection|Limited Edition Beta||U|{2}{W}{W}|Sorcery||| +Reverse Damage|Limited Edition Beta||R|{1}{W}{W}|Instant||| +Righteousness|Limited Edition Beta||R|{W}|Instant||| +Samite Healer|Limited Edition Beta||C|{1}{W}|Creature — Human Cleric|1|1| +Savannah Lions|Limited Edition Beta||R|{W}|Creature — Cat|2|1| +Serra Angel|Limited Edition Beta||U|{3}{W}{W}|Creature — Angel|4|4| +Swords to Plowshares|Limited Edition Beta||U|{W}|Instant||| +Veteran Bodyguard|Limited Edition Beta||R|{3}{W}{W}|Creature — Human|2|5| +Wall of Swords|Limited Edition Beta||U|{3}{W}|Creature — Wall|3|5| +White Knight|Limited Edition Beta||U|{W}{W}|Creature — Human Knight|2|2| +White Ward|Limited Edition Beta||U|{W}|Enchantment — Aura||| +Wrath of God|Limited Edition Beta||R|{2}{W}{W}|Sorcery||| +Swamp|Limited Edition Beta||L||Basic Land — Swamp||| +Swamp|Limited Edition Beta||L||Basic Land — Swamp||| +Swamp|Limited Edition Beta||L||Basic Land — Swamp||| +Badlands|Limited Edition Beta||R||Land — Swamp Mountain||| +Bayou|Limited Edition Beta||R||Land — Swamp Forest||| +Plateau|Limited Edition Beta||R||Land — Mountain Plains||| +Savannah|Limited Edition Beta||R||Land — Forest Plains||| +Scrubland|Limited Edition Beta||R||Land — Plains Swamp||| +Taiga|Limited Edition Beta||R||Land — Mountain Forest||| +Tropical Island|Limited Edition Beta||R||Land — Forest Island||| +Tundra|Limited Edition Beta||R||Land — Plains Island||| +Underground Sea|Limited Edition Beta||R||Land — Island Swamp||| +Volcanic Island|Limited Edition Beta||R||Land — Island Mountain||| +Forest|Limited Edition Beta||L||Basic Land — Forest||| +Forest|Limited Edition Beta||L||Basic Land — Forest||| +Forest|Limited Edition Beta||L||Basic Land — Forest||| +Mountain|Limited Edition Beta||L||Basic Land — Mountain||| +Mountain|Limited Edition Beta||L||Basic Land — Mountain||| +Mountain|Limited Edition Beta||L||Basic Land — Mountain||| +Island|Limited Edition Beta||L||Basic Land — Island||| +Island|Limited Edition Beta||L||Basic Land — Island||| +Island|Limited Edition Beta||L||Basic Land — Island||| +Plains|Limited Edition Beta||L||Basic Land — Plains||| +Plains|Limited Edition Beta||L||Basic Land — Plains||| +Plains|Limited Edition Beta||L||Basic Land — Plains||| +Ankh of Mishra|Unlimited Edition||R|{2}|Artifact||| +Basalt Monolith|Unlimited Edition||U|{3}|Artifact||| +Black Lotus|Unlimited Edition||R|{0}|Artifact||| +Black Vise|Unlimited Edition||U|{1}|Artifact||| +Celestial Prism|Unlimited Edition||U|{3}|Artifact||| +Chaos Orb|Unlimited Edition||R|{2}|Artifact||| +Clockwork Beast|Unlimited Edition||R|{6}|Artifact Creature — Beast|0|4| +Conservator|Unlimited Edition||U|{4}|Artifact||| +Copper Tablet|Unlimited Edition||U|{2}|Artifact||| +Crystal Rod|Unlimited Edition||U|{1}|Artifact||| +Cyclopean Tomb|Unlimited Edition||R|{4}|Artifact||| +Dingus Egg|Unlimited Edition||R|{4}|Artifact||| +Disrupting Scepter|Unlimited Edition||R|{3}|Artifact||| +Forcefield|Unlimited Edition||R|{3}|Artifact||| +Gauntlet of Might|Unlimited Edition||R|{4}|Artifact||| +Glasses of Urza|Unlimited Edition||U|{1}|Artifact||| +Helm of Chatzuk|Unlimited Edition||R|{1}|Artifact||| +Howling Mine|Unlimited Edition||R|{2}|Artifact||| +Icy Manipulator|Unlimited Edition||U|{4}|Artifact||| +Illusionary Mask|Unlimited Edition||R|{2}|Artifact||| +Iron Star|Unlimited Edition||U|{1}|Artifact||| +Ivory Cup|Unlimited Edition||U|{1}|Artifact||| +Jade Monolith|Unlimited Edition||R|{4}|Artifact||| +Jade Statue|Unlimited Edition||U|{4}|Artifact|3|6| +Jayemdae Tome|Unlimited Edition||R|{4}|Artifact||| +Juggernaut|Unlimited Edition||U|{4}|Artifact Creature — Juggernaut|5|3| +Kormus Bell|Unlimited Edition||R|{4}|Artifact||| +Library of Leng|Unlimited Edition||U|{1}|Artifact||| +Living Wall|Unlimited Edition||U|{4}|Artifact Creature — Wall|0|6| +Mana Vault|Unlimited Edition||R|{1}|Artifact||| +Meekstone|Unlimited Edition||R|{1}|Artifact||| +Mox Emerald|Unlimited Edition||R|{0}|Artifact||| +Mox Jet|Unlimited Edition||R|{0}|Artifact||| +Mox Pearl|Unlimited Edition||R|{0}|Artifact||| +Mox Ruby|Unlimited Edition||R|{0}|Artifact||| +Mox Sapphire|Unlimited Edition||R|{0}|Artifact||| +Nevinyrral's Disk|Unlimited Edition||R|{4}|Artifact||| +Obsianus Golem|Unlimited Edition||U|{6}|Artifact Creature — Golem|4|6| +Rod of Ruin|Unlimited Edition||U|{4}|Artifact||| +Sol Ring|Unlimited Edition||U|{1}|Artifact||| +Soul Net|Unlimited Edition||U|{1}|Artifact||| +Sunglasses of Urza|Unlimited Edition||R|{3}|Artifact||| +The Hive|Unlimited Edition||R|{5}|Artifact||| +Throne of Bone|Unlimited Edition||U|{1}|Artifact||| +Time Vault|Unlimited Edition||R|{2}|Artifact||| +Winter Orb|Unlimited Edition||R|{2}|Artifact||| +Wooden Sphere|Unlimited Edition||U|{1}|Artifact||| +Animate Dead|Unlimited Edition||U|{1}{B}|Enchantment — Aura||| +Bad Moon|Unlimited Edition||R|{1}{B}|Enchantment||| +Black Knight|Unlimited Edition||U|{B}{B}|Creature — Human Knight|2|2| +Bog Wraith|Unlimited Edition||U|{3}{B}|Creature — Wraith|3|3| +Contract from Below|Unlimited Edition||R|{B}|Sorcery||| +Cursed Land|Unlimited Edition||U|{2}{B}{B}|Enchantment — Aura||| +Dark Ritual|Unlimited Edition||C|{B}|Instant||| +Darkpact|Unlimited Edition||R|{B}{B}{B}|Sorcery||| +Deathgrip|Unlimited Edition||U|{B}{B}|Enchantment||| +Deathlace|Unlimited Edition||R|{B}|Instant||| +Demonic Attorney|Unlimited Edition||R|{1}{B}{B}|Sorcery||| +Demonic Hordes|Unlimited Edition||R|{3}{B}{B}{B}|Creature — Demon|5|5| +Demonic Tutor|Unlimited Edition||U|{1}{B}|Sorcery||| +Drain Life|Unlimited Edition||C|{X}{1}{B}|Sorcery||| +Drudge Skeletons|Unlimited Edition||C|{1}{B}|Creature — Skeleton|1|1| +Evil Presence|Unlimited Edition||U|{B}|Enchantment — Aura||| +Fear|Unlimited Edition||C|{B}{B}|Enchantment — Aura||| +Frozen Shade|Unlimited Edition||C|{2}{B}|Creature — Shade|0|1| +Gloom|Unlimited Edition||U|{2}{B}|Enchantment||| +Howl from Beyond|Unlimited Edition||C|{X}{B}|Instant||| +Hypnotic Specter|Unlimited Edition||U|{1}{B}{B}|Creature — Specter|2|2| +Lich|Unlimited Edition||R|{B}{B}{B}{B}|Enchantment||| +Lord of the Pit|Unlimited Edition||R|{4}{B}{B}{B}|Creature — Demon|7|7| +Mind Twist|Unlimited Edition||R|{X}{B}|Sorcery||| +Nether Shadow|Unlimited Edition||R|{B}{B}|Creature — Spirit|1|1| +Nettling Imp|Unlimited Edition||U|{2}{B}|Creature — Imp|1|1| +Nightmare|Unlimited Edition||R|{5}{B}|Creature — Nightmare Horse|*|*| +Paralyze|Unlimited Edition||C|{B}|Enchantment — Aura||| +Pestilence|Unlimited Edition||C|{2}{B}{B}|Enchantment||| +Plague Rats|Unlimited Edition||C|{2}{B}|Creature — Rat|*|*| +Raise Dead|Unlimited Edition||C|{B}|Sorcery||| +Royal Assassin|Unlimited Edition||R|{1}{B}{B}|Creature — Human Assassin|1|1| +Sacrifice|Unlimited Edition||U|{B}|Instant||| +Scathe Zombies|Unlimited Edition||C|{2}{B}|Creature — Zombie|2|2| +Scavenging Ghoul|Unlimited Edition||U|{3}{B}|Creature — Zombie|2|2| +Sengir Vampire|Unlimited Edition||U|{3}{B}{B}|Creature — Vampire|4|4| +Simulacrum|Unlimited Edition||U|{1}{B}|Instant||| +Sinkhole|Unlimited Edition||C|{B}{B}|Sorcery||| +Terror|Unlimited Edition||C|{1}{B}|Instant||| +Unholy Strength|Unlimited Edition||C|{B}|Enchantment — Aura||| +Wall of Bone|Unlimited Edition||U|{2}{B}|Creature — Skeleton Wall|1|4| +Warp Artifact|Unlimited Edition||R|{B}{B}|Enchantment — Aura||| +Weakness|Unlimited Edition||C|{B}|Enchantment — Aura||| +Will-o'-the-Wisp|Unlimited Edition||R|{B}|Creature — Spirit|0|1| +Word of Command|Unlimited Edition||R|{B}{B}|Instant||| +Zombie Master|Unlimited Edition||R|{1}{B}{B}|Creature — Zombie|2|3| +Air Elemental|Unlimited Edition||U|{3}{U}{U}|Creature — Elemental|4|4| +Ancestral Recall|Unlimited Edition||R|{U}|Instant||| +Animate Artifact|Unlimited Edition||U|{3}{U}|Enchantment — Aura||| +Blue Elemental Blast|Unlimited Edition||C|{U}|Instant||| +Braingeyser|Unlimited Edition||R|{X}{U}{U}|Sorcery||| +Clone|Unlimited Edition||U|{3}{U}|Creature — Shapeshifter|0|0| +Control Magic|Unlimited Edition||U|{2}{U}{U}|Enchantment — Aura||| +Copy Artifact|Unlimited Edition||R|{1}{U}|Enchantment||| +Counterspell|Unlimited Edition||U|{U}{U}|Instant||| +Creature Bond|Unlimited Edition||C|{1}{U}|Enchantment — Aura||| +Drain Power|Unlimited Edition||R|{U}{U}|Sorcery||| +Feedback|Unlimited Edition||U|{2}{U}|Enchantment — Aura||| +Flight|Unlimited Edition||C|{U}|Enchantment — Aura||| +Invisibility|Unlimited Edition||C|{U}{U}|Enchantment — Aura||| +Jump|Unlimited Edition||C|{U}|Instant||| +Lifetap|Unlimited Edition||U|{U}{U}|Enchantment||| +Lord of Atlantis|Unlimited Edition||R|{U}{U}|Creature — Merfolk|2|2| +Magical Hack|Unlimited Edition||R|{U}|Instant||| +Mahamoti Djinn|Unlimited Edition||R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Short|Unlimited Edition||R|{2}{U}|Instant||| +Merfolk of the Pearl Trident|Unlimited Edition||C|{U}|Creature — Merfolk|1|1| +Phantasmal Forces|Unlimited Edition||U|{3}{U}|Creature — Illusion|4|1| +Phantasmal Terrain|Unlimited Edition||C|{U}{U}|Enchantment — Aura||| +Phantom Monster|Unlimited Edition||U|{3}{U}|Creature — Illusion|3|3| +Pirate Ship|Unlimited Edition||R|{4}{U}|Creature — Human Pirate|4|3| +Power Leak|Unlimited Edition||C|{1}{U}|Enchantment — Aura||| +Power Sink|Unlimited Edition||C|{X}{U}|Instant||| +Prodigal Sorcerer|Unlimited Edition||C|{2}{U}|Creature — Human Wizard|1|1| +Psionic Blast|Unlimited Edition||U|{2}{U}|Instant||| +Psychic Venom|Unlimited Edition||C|{1}{U}|Enchantment — Aura||| +Sea Serpent|Unlimited Edition||C|{5}{U}|Creature — Serpent|5|5| +Siren's Call|Unlimited Edition||U|{U}|Instant||| +Sleight of Mind|Unlimited Edition||R|{U}|Instant||| +Spell Blast|Unlimited Edition||C|{X}{U}|Instant||| +Stasis|Unlimited Edition||R|{1}{U}|Enchantment||| +Steal Artifact|Unlimited Edition||U|{2}{U}{U}|Enchantment — Aura||| +Thoughtlace|Unlimited Edition||R|{U}|Instant||| +Time Walk|Unlimited Edition||R|{1}{U}|Sorcery||| +Timetwister|Unlimited Edition||R|{2}{U}|Sorcery||| +Twiddle|Unlimited Edition||C|{U}|Instant||| +Unsummon|Unlimited Edition||C|{U}|Instant||| +Vesuvan Doppelganger|Unlimited Edition||R|{3}{U}{U}|Creature — Shapeshifter|0|0| +Volcanic Eruption|Unlimited Edition||R|{X}{U}{U}{U}|Sorcery||| +Wall of Air|Unlimited Edition||U|{1}{U}{U}|Creature — Wall|1|5| +Wall of Water|Unlimited Edition||U|{1}{U}{U}|Creature — Wall|0|5| +Water Elemental|Unlimited Edition||U|{3}{U}{U}|Creature — Elemental|5|4| +Aspect of Wolf|Unlimited Edition||R|{1}{G}|Enchantment — Aura||| +Berserk|Unlimited Edition||U|{G}|Instant||| +Birds of Paradise|Unlimited Edition||R|{G}|Creature — Bird|0|1| +Camouflage|Unlimited Edition||U|{G}|Instant||| +Channel|Unlimited Edition||U|{G}{G}|Sorcery||| +Cockatrice|Unlimited Edition||R|{3}{G}{G}|Creature — Cockatrice|2|4| +Craw Wurm|Unlimited Edition||C|{4}{G}{G}|Creature — Wurm|6|4| +Elvish Archers|Unlimited Edition||R|{1}{G}|Creature — Elf Archer|2|1| +Fastbond|Unlimited Edition||R|{G}|Enchantment||| +Fog|Unlimited Edition||C|{G}|Instant||| +Force of Nature|Unlimited Edition||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Fungusaur|Unlimited Edition||R|{3}{G}|Creature — Fungus Lizard|2|2| +Gaea's Liege|Unlimited Edition||R|{3}{G}{G}{G}|Creature — Avatar|*|*| +Giant Growth|Unlimited Edition||C|{G}|Instant||| +Giant Spider|Unlimited Edition||C|{3}{G}|Creature — Spider|2|4| +Grizzly Bears|Unlimited Edition||C|{1}{G}|Creature — Bear|2|2| +Hurricane|Unlimited Edition||U|{X}{G}|Sorcery||| +Ice Storm|Unlimited Edition||U|{2}{G}|Sorcery||| +Instill Energy|Unlimited Edition||U|{G}|Enchantment — Aura||| +Ironroot Treefolk|Unlimited Edition||C|{4}{G}|Creature — Treefolk|3|5| +Kudzu|Unlimited Edition||R|{1}{G}{G}|Enchantment — Aura||| +Ley Druid|Unlimited Edition||U|{2}{G}|Creature — Human Druid|1|1| +Lifeforce|Unlimited Edition||U|{G}{G}|Enchantment||| +Lifelace|Unlimited Edition||R|{G}|Instant||| +Living Artifact|Unlimited Edition||R|{G}|Enchantment — Aura||| +Living Lands|Unlimited Edition||R|{3}{G}|Enchantment||| +Llanowar Elves|Unlimited Edition||C|{G}|Creature — Elf Druid|1|1| +Lure|Unlimited Edition||U|{1}{G}{G}|Enchantment — Aura||| +Natural Selection|Unlimited Edition||R|{G}|Instant||| +Regeneration|Unlimited Edition||C|{1}{G}|Enchantment — Aura||| +Regrowth|Unlimited Edition||U|{1}{G}|Sorcery||| +Scryb Sprites|Unlimited Edition||C|{G}|Creature — Faerie|1|1| +Shanodin Dryads|Unlimited Edition||C|{G}|Creature — Dryad|1|1| +Stream of Life|Unlimited Edition||C|{X}{G}|Sorcery||| +Thicket Basilisk|Unlimited Edition||U|{3}{G}{G}|Creature — Basilisk|2|4| +Timber Wolves|Unlimited Edition||R|{G}|Creature — Wolf|1|1| +Tranquility|Unlimited Edition||C|{2}{G}|Sorcery||| +Tsunami|Unlimited Edition||U|{3}{G}|Sorcery||| +Verduran Enchantress|Unlimited Edition||R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Brambles|Unlimited Edition||U|{2}{G}|Creature — Plant Wall|2|3| +Wall of Ice|Unlimited Edition||U|{2}{G}|Creature — Wall|0|7| +Wall of Wood|Unlimited Edition||C|{G}|Creature — Wall|0|3| +Wanderlust|Unlimited Edition||U|{2}{G}|Enchantment — Aura||| +War Mammoth|Unlimited Edition||C|{3}{G}|Creature — Elephant|3|3| +Web|Unlimited Edition||R|{G}|Enchantment — Aura||| +Wild Growth|Unlimited Edition||C|{G}|Enchantment — Aura||| +Burrowing|Unlimited Edition||U|{R}|Enchantment — Aura||| +Chaoslace|Unlimited Edition||R|{R}|Instant||| +Disintegrate|Unlimited Edition||C|{X}{R}|Sorcery||| +Dragon Whelp|Unlimited Edition||U|{2}{R}{R}|Creature — Dragon|2|3| +Dwarven Demolition Team|Unlimited Edition||U|{2}{R}|Creature — Dwarf|1|1| +Dwarven Warriors|Unlimited Edition||C|{2}{R}|Creature — Dwarf Warrior|1|1| +Earth Elemental|Unlimited Edition||U|{3}{R}{R}|Creature — Elemental|4|5| +Earthbind|Unlimited Edition||C|{R}|Enchantment — Aura||| +Earthquake|Unlimited Edition||R|{X}{R}|Sorcery||| +False Orders|Unlimited Edition||C|{R}|Instant||| +Fire Elemental|Unlimited Edition||U|{3}{R}{R}|Creature — Elemental|5|4| +Fireball|Unlimited Edition||C|{X}{R}|Sorcery||| +Firebreathing|Unlimited Edition||C|{R}|Enchantment — Aura||| +Flashfires|Unlimited Edition||U|{3}{R}|Sorcery||| +Fork|Unlimited Edition||R|{R}{R}|Instant||| +Goblin Balloon Brigade|Unlimited Edition||U|{R}|Creature — Goblin Warrior|1|1| +Goblin King|Unlimited Edition||R|{1}{R}{R}|Creature — Goblin|2|2| +Granite Gargoyle|Unlimited Edition||R|{2}{R}|Creature — Gargoyle|2|2| +Gray Ogre|Unlimited Edition||C|{2}{R}|Creature — Ogre|2|2| +Hill Giant|Unlimited Edition||C|{3}{R}|Creature — Giant|3|3| +Hurloon Minotaur|Unlimited Edition||C|{1}{R}{R}|Creature — Minotaur|2|3| +Ironclaw Orcs|Unlimited Edition||C|{1}{R}|Creature — Orc|2|2| +Keldon Warlord|Unlimited Edition||U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Lightning Bolt|Unlimited Edition||C|{R}|Instant||| +Mana Flare|Unlimited Edition||R|{2}{R}|Enchantment||| +Manabarbs|Unlimited Edition||R|{3}{R}|Enchantment||| +Mons's Goblin Raiders|Unlimited Edition||C|{R}|Creature — Goblin|1|1| +Orcish Artillery|Unlimited Edition||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Oriflamme|Unlimited Edition||U|{3}{R}|Enchantment||| +Power Surge|Unlimited Edition||R|{R}{R}|Enchantment||| +Raging River|Unlimited Edition||R|{R}{R}|Enchantment||| +Red Elemental Blast|Unlimited Edition||C|{R}|Instant||| +Roc of Kher Ridges|Unlimited Edition||R|{3}{R}|Creature — Bird|3|3| +Rock Hydra|Unlimited Edition||R|{X}{R}{R}|Creature — Hydra|0|0| +Sedge Troll|Unlimited Edition||R|{2}{R}|Creature — Troll|2|2| +Shatter|Unlimited Edition||C|{1}{R}|Instant||| +Shivan Dragon|Unlimited Edition||R|{4}{R}{R}|Creature — Dragon|5|5| +Smoke|Unlimited Edition||R|{R}{R}|Enchantment||| +Stone Giant|Unlimited Edition||U|{2}{R}{R}|Creature — Giant|3|4| +Stone Rain|Unlimited Edition||C|{2}{R}|Sorcery||| +Tunnel|Unlimited Edition||U|{R}|Instant||| +Two-Headed Giant of Foriys|Unlimited Edition||R|{4}{R}|Creature — Giant|4|4| +Uthden Troll|Unlimited Edition||U|{2}{R}|Creature — Troll|2|2| +Wall of Fire|Unlimited Edition||U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Stone|Unlimited Edition||U|{1}{R}{R}|Creature — Wall|0|8| +Wheel of Fortune|Unlimited Edition||R|{2}{R}|Sorcery||| +Animate Wall|Unlimited Edition||R|{W}|Enchantment — Aura||| +Armageddon|Unlimited Edition||R|{3}{W}|Sorcery||| +Balance|Unlimited Edition||R|{1}{W}|Sorcery||| +Benalish Hero|Unlimited Edition||C|{W}|Creature — Human Soldier|1|1| +Black Ward|Unlimited Edition||U|{W}|Enchantment — Aura||| +Blaze of Glory|Unlimited Edition||R|{W}|Instant||| +Blessing|Unlimited Edition||R|{W}{W}|Enchantment — Aura||| +Blue Ward|Unlimited Edition||U|{W}|Enchantment — Aura||| +Castle|Unlimited Edition||U|{3}{W}|Enchantment||| +Circle of Protection: Black|Unlimited Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Unlimited Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Unlimited Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Unlimited Edition||C|{1}{W}|Enchantment||| +Circle of Protection: White|Unlimited Edition||C|{1}{W}|Enchantment||| +Consecrate Land|Unlimited Edition||U|{W}|Enchantment — Aura||| +Conversion|Unlimited Edition||U|{2}{W}{W}|Enchantment||| +Crusade|Unlimited Edition||R|{W}{W}|Enchantment||| +Death Ward|Unlimited Edition||C|{W}|Instant||| +Disenchant|Unlimited Edition||C|{1}{W}|Instant||| +Farmstead|Unlimited Edition||R|{W}{W}{W}|Enchantment — Aura||| +Green Ward|Unlimited Edition||U|{W}|Enchantment — Aura||| +Guardian Angel|Unlimited Edition||C|{X}{W}|Instant||| +Healing Salve|Unlimited Edition||C|{W}|Instant||| +Holy Armor|Unlimited Edition||C|{W}|Enchantment — Aura||| +Holy Strength|Unlimited Edition||C|{W}|Enchantment — Aura||| +Island Sanctuary|Unlimited Edition||R|{1}{W}|Enchantment||| +Karma|Unlimited Edition||U|{2}{W}{W}|Enchantment||| +Lance|Unlimited Edition||U|{W}|Enchantment — Aura||| +Mesa Pegasus|Unlimited Edition||C|{1}{W}|Creature — Pegasus|1|1| +Northern Paladin|Unlimited Edition||R|{2}{W}{W}|Creature — Human Knight|3|3| +Pearled Unicorn|Unlimited Edition||C|{2}{W}|Creature — Unicorn|2|2| +Personal Incarnation|Unlimited Edition||R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Purelace|Unlimited Edition||R|{W}|Instant||| +Red Ward|Unlimited Edition||U|{W}|Enchantment — Aura||| +Resurrection|Unlimited Edition||U|{2}{W}{W}|Sorcery||| +Reverse Damage|Unlimited Edition||R|{1}{W}{W}|Instant||| +Righteousness|Unlimited Edition||R|{W}|Instant||| +Samite Healer|Unlimited Edition||C|{1}{W}|Creature — Human Cleric|1|1| +Savannah Lions|Unlimited Edition||R|{W}|Creature — Cat|2|1| +Serra Angel|Unlimited Edition||U|{3}{W}{W}|Creature — Angel|4|4| +Swords to Plowshares|Unlimited Edition||U|{W}|Instant||| +Veteran Bodyguard|Unlimited Edition||R|{3}{W}{W}|Creature — Human|2|5| +Wall of Swords|Unlimited Edition||U|{3}{W}|Creature — Wall|3|5| +White Knight|Unlimited Edition||U|{W}{W}|Creature — Human Knight|2|2| +White Ward|Unlimited Edition||U|{W}|Enchantment — Aura||| +Wrath of God|Unlimited Edition||R|{2}{W}{W}|Sorcery||| +Swamp|Unlimited Edition||L||Basic Land — Swamp||| +Swamp|Unlimited Edition||L||Basic Land — Swamp||| +Swamp|Unlimited Edition||L||Basic Land — Swamp||| +Badlands|Unlimited Edition||R||Land — Swamp Mountain||| +Bayou|Unlimited Edition||R||Land — Swamp Forest||| +Plateau|Unlimited Edition||R||Land — Mountain Plains||| +Savannah|Unlimited Edition||R||Land — Forest Plains||| +Scrubland|Unlimited Edition||R||Land — Plains Swamp||| +Taiga|Unlimited Edition||R||Land — Mountain Forest||| +Tropical Island|Unlimited Edition||R||Land — Forest Island||| +Tundra|Unlimited Edition||R||Land — Plains Island||| +Underground Sea|Unlimited Edition||R||Land — Island Swamp||| +Volcanic Island|Unlimited Edition||R||Land — Island Mountain||| +Forest|Unlimited Edition||L||Basic Land — Forest||| +Forest|Unlimited Edition||L||Basic Land — Forest||| +Forest|Unlimited Edition||L||Basic Land — Forest||| +Mountain|Unlimited Edition||L||Basic Land — Mountain||| +Mountain|Unlimited Edition||L||Basic Land — Mountain||| +Mountain|Unlimited Edition||L||Basic Land — Mountain||| +Island|Unlimited Edition||L||Basic Land — Island||| +Island|Unlimited Edition||L||Basic Land — Island||| +Island|Unlimited Edition||L||Basic Land — Island||| +Plains|Unlimited Edition||L||Basic Land — Plains||| +Plains|Unlimited Edition||L||Basic Land — Plains||| +Plains|Unlimited Edition||L||Basic Land — Plains||| +Aladdin's Lamp|Arabian Nights||R|{10}|Artifact||| +Aladdin's Ring|Arabian Nights||R|{8}|Artifact||| +Bottle of Suleiman|Arabian Nights||R|{4}|Artifact||| +Brass Man|Arabian Nights||U|{1}|Artifact Creature — Construct|1|3| +City in a Bottle|Arabian Nights||R|{2}|Artifact||| +Dancing Scimitar|Arabian Nights||R|{4}|Artifact Creature — Spirit|1|5| +Ebony Horse|Arabian Nights||R|{3}|Artifact||| +Flying Carpet|Arabian Nights||U|{4}|Artifact||| +Jandor's Ring|Arabian Nights||R|{6}|Artifact||| +Jandor's Saddlebags|Arabian Nights||R|{2}|Artifact||| +Jeweled Bird|Arabian Nights||U|{1}|Artifact||| +Pyramids|Arabian Nights||R|{6}|Artifact||| +Ring of Ma'rϋf|Arabian Nights||R|{5}|Artifact||| +Sandals of Abdallah|Arabian Nights||U|{4}|Artifact||| +Cuombajj Witches|Arabian Nights||C|{B}{B}|Creature — Human Wizard|1|3| +El-Hajjβj|Arabian Nights||R|{1}{B}{B}|Creature — Human Wizard|1|1| +Erg Raiders|Arabian Nights||C|{1}{B}|Creature — Human Warrior|2|3| +Erg Raiders|Arabian Nights||C|{1}{B}|Creature — Human Warrior|2|3| +Guardian Beast|Arabian Nights||R|{3}{B}|Creature — Beast|2|4| +Hasran Ogress|Arabian Nights||C|{B}{B}|Creature — Ogre|3|2| +Hasran Ogress|Arabian Nights||C|{B}{B}|Creature — Ogre|3|2| +Junϊn Efreet|Arabian Nights||R|{1}{B}{B}|Creature — Efreet|3|3| +Juzαm Djinn|Arabian Nights||R|{2}{B}{B}|Creature — Djinn|5|5| +Khabαl Ghoul|Arabian Nights||U|{2}{B}|Creature — Zombie|1|1| +Oubliette|Arabian Nights||C|{1}{B}{B}|Enchantment||| +Oubliette|Arabian Nights||C|{1}{B}{B}|Enchantment||| +Sorceress Queen|Arabian Nights||U|{1}{B}{B}|Creature — Human Wizard|1|1| +Stone-Throwing Devils|Arabian Nights||C|{B}|Creature — Devil|1|1| +Stone-Throwing Devils|Arabian Nights||C|{B}|Creature — Devil|1|1| +Dandβn|Arabian Nights||C|{U}{U}|Creature — Fish|4|1| +Fishliver Oil|Arabian Nights||C|{1}{U}|Enchantment — Aura||| +Fishliver Oil|Arabian Nights||C|{1}{U}|Enchantment — Aura||| +Flying Men|Arabian Nights||C|{U}|Creature — Human|1|1| +Giant Tortoise|Arabian Nights||C|{1}{U}|Creature — Turtle|1|1| +Giant Tortoise|Arabian Nights||C|{1}{U}|Creature — Turtle|1|1| +Island Fish Jasconius|Arabian Nights||R|{4}{U}{U}{U}|Creature — Fish|6|8| +Merchant Ship|Arabian Nights||U|{U}|Creature — Human|0|2| +Old Man of the Sea|Arabian Nights||R|{1}{U}{U}|Creature — Djinn|2|3| +Serendib Djinn|Arabian Nights||R|{2}{U}{U}|Creature — Djinn|5|6| +Serendib Efreet|Arabian Nights||R|{2}{U}|Creature — Efreet|3|4| +Sindbad|Arabian Nights||U|{1}{U}|Creature — Human|1|1| +Unstable Mutation|Arabian Nights||C|{U}|Enchantment — Aura||| +Cyclone|Arabian Nights||U|{2}{G}{G}|Enchantment||| +Desert Twister|Arabian Nights||U|{4}{G}{G}|Sorcery||| +Drop of Honey|Arabian Nights||R|{G}|Enchantment||| +Erhnam Djinn|Arabian Nights||R|{3}{G}|Creature — Djinn|4|5| +Ghazbαn Ogre|Arabian Nights||C|{G}|Creature — Ogre|2|2| +Ifh-Bνff Efreet|Arabian Nights||R|{2}{G}{G}|Creature — Efreet|3|3| +Metamorphosis|Arabian Nights||C|{G}|Sorcery||| +Nafs Asp|Arabian Nights||C|{G}|Creature — Snake|1|1| +Nafs Asp|Arabian Nights||C|{G}|Creature — Snake|1|1| +Sandstorm|Arabian Nights||C|{G}|Instant||| +Singing Tree|Arabian Nights||R|{3}{G}|Creature — Plant|0|3| +Wyluli Wolf|Arabian Nights||C|{1}{G}|Creature — Wolf|1|1| +Wyluli Wolf|Arabian Nights||C|{1}{G}|Creature — Wolf|1|1| +Aladdin|Arabian Nights||R|{2}{R}{R}|Creature — Human Rogue|1|1| +Ali Baba|Arabian Nights||U|{R}|Creature — Human Rogue|1|1| +Ali from Cairo|Arabian Nights||R|{2}{R}{R}|Creature — Human|0|1| +Bird Maiden|Arabian Nights||C|{2}{R}|Creature — Human Bird|1|2| +Bird Maiden|Arabian Nights||C|{2}{R}|Creature — Human Bird|1|2| +Desert Nomads|Arabian Nights||C|{2}{R}|Creature — Human Nomad|2|2| +Hurr Jackal|Arabian Nights||C|{R}|Creature — Hound|1|1| +Kird Ape|Arabian Nights||C|{R}|Creature — Ape|1|1| +Magnetic Mountain|Arabian Nights||U|{1}{R}{R}|Enchantment||| +Mijae Djinn|Arabian Nights||R|{R}{R}{R}|Creature — Djinn|6|3| +Rukh Egg|Arabian Nights||C|{3}{R}|Creature — Bird|0|3| +Rukh Egg|Arabian Nights||C|{3}{R}|Creature — Bird|0|3| +Ydwen Efreet|Arabian Nights||R|{R}{R}{R}|Creature — Efreet|3|6| +Abu Ja'far|Arabian Nights||U|{W}|Creature — Human|0|1| +Army of Allah|Arabian Nights||C|{1}{W}{W}|Instant||| +Army of Allah|Arabian Nights||C|{1}{W}{W}|Instant||| +Camel|Arabian Nights||C|{W}|Creature — Camel|0|1| +Eye for an Eye|Arabian Nights||U|{W}{W}|Instant||| +Jihad|Arabian Nights||R|{W}{W}{W}|Enchantment||| +King Suleiman|Arabian Nights||R|{1}{W}|Creature — Human|1|1| +Moorish Cavalry|Arabian Nights||C|{2}{W}{W}|Creature — Human Knight|3|3| +Moorish Cavalry|Arabian Nights||C|{2}{W}{W}|Creature — Human Knight|3|3| +Piety|Arabian Nights||C|{2}{W}|Instant||| +Piety|Arabian Nights||C|{2}{W}|Instant||| +Repentant Blacksmith|Arabian Nights||R|{1}{W}|Creature — Human|1|2| +Shahrazad|Arabian Nights||R|{W}{W}|Sorcery||| +War Elephant|Arabian Nights||C|{3}{W}|Creature — Elephant|2|2| +War Elephant|Arabian Nights||C|{3}{W}|Creature — Elephant|2|2| +Mountain|Arabian Nights||C||Basic Land — Mountain||| +Bazaar of Baghdad|Arabian Nights||U||Land||| +City of Brass|Arabian Nights||U||Land||| +Desert|Arabian Nights||C||Land — Desert||| +Diamond Valley|Arabian Nights||U||Land||| +Elephant Graveyard|Arabian Nights||R||Land||| +Island of Wak-Wak|Arabian Nights||R||Land||| +Library of Alexandria|Arabian Nights||U||Land||| +Oasis|Arabian Nights||U||Land||| +Amulet of Kroog|Antiquities||C|{2}|Artifact||| +Armageddon Clock|Antiquities||U|{6}|Artifact||| +Ashnod's Altar|Antiquities||U|{3}|Artifact||| +Ashnod's Battle Gear|Antiquities||U|{2}|Artifact||| +Ashnod's Transmogrant|Antiquities||U|{1}|Artifact||| +Battering Ram|Antiquities||C|{2}|Artifact Creature — Construct|1|1| +Bronze Tablet|Antiquities||R|{6}|Artifact||| +Candelabra of Tawnos|Antiquities||R|{1}|Artifact||| +Clay Statue|Antiquities||C|{4}|Artifact Creature — Golem|3|1| +Clockwork Avian|Antiquities||R|{5}|Artifact Creature — Bird|0|4| +Colossus of Sardia|Antiquities||R|{9}|Artifact Creature — Golem|9|9| +Coral Helm|Antiquities||R|{3}|Artifact||| +Cursed Rack|Antiquities||U|{4}|Artifact||| +Dragon Engine|Antiquities||C|{3}|Artifact Creature — Construct|1|3| +Feldon's Cane|Antiquities||U|{1}|Artifact||| +Golgothian Sylex|Antiquities||R|{4}|Artifact||| +Grapeshot Catapult|Antiquities||C|{4}|Artifact Creature — Construct|2|3| +Ivory Tower|Antiquities||U|{1}|Artifact||| +Jalum Tome|Antiquities||U|{3}|Artifact||| +Mightstone|Antiquities||U|{4}|Artifact||| +Millstone|Antiquities||U|{2}|Artifact||| +Mishra's War Machine|Antiquities||R|{7}|Artifact Creature — Juggernaut|5|5| +Obelisk of Undoing|Antiquities||R|{1}|Artifact||| +Onulet|Antiquities||U|{3}|Artifact Creature — Construct|2|2| +Ornithopter|Antiquities||C|{0}|Artifact Creature — Thopter|0|2| +Primal Clay|Antiquities||U|{4}|Artifact Creature — Shapeshifter|*|*| +Rakalite|Antiquities||U|{6}|Artifact||| +Rocket Launcher|Antiquities||U|{4}|Artifact||| +Shapeshifter|Antiquities||R|{6}|Artifact Creature — Shapeshifter|*|7-*| +Staff of Zegon|Antiquities||C|{4}|Artifact||| +Su-Chi|Antiquities||U|{4}|Artifact Creature — Construct|4|4| +Tablet of Epityr|Antiquities||C|{1}|Artifact||| +Tawnos's Coffin|Antiquities||R|{4}|Artifact||| +Tawnos's Wand|Antiquities||U|{4}|Artifact||| +Tawnos's Weaponry|Antiquities||U|{2}|Artifact||| +Tetravus|Antiquities||R|{6}|Artifact Creature — Construct|1|1| +The Rack|Antiquities||U|{1}|Artifact||| +Triskelion|Antiquities||R|{6}|Artifact Creature — Construct|1|1| +Urza's Avenger|Antiquities||R|{6}|Artifact Creature — Shapeshifter|4|4| +Urza's Chalice|Antiquities||C|{1}|Artifact||| +Urza's Miter|Antiquities||R|{3}|Artifact||| +Wall of Spears|Antiquities||U|{3}|Artifact Creature — Wall|2|3| +Weakstone|Antiquities||U|{4}|Artifact||| +Yotian Soldier|Antiquities||C|{3}|Artifact Creature — Soldier|1|4| +Artifact Possession|Antiquities||C|{2}{B}|Enchantment — Aura||| +Drafna's Restoration|Antiquities||C|{U}|Sorcery||| +Energy Flux|Antiquities||U|{2}{U}|Enchantment||| +Gate to Phyrexia|Antiquities||U|{B}{B}|Enchantment||| +Haunting Wind|Antiquities||U|{3}{B}|Enchantment||| +Hurkyl's Recall|Antiquities||R|{1}{U}|Instant||| +Phyrexian Gremlins|Antiquities||C|{2}{B}|Creature — Gremlin|1|1| +Power Artifact|Antiquities||U|{U}{U}|Enchantment — Aura||| +Priest of Yawgmoth|Antiquities||C|{1}{B}|Creature — Human Cleric|1|2| +Reconstruction|Antiquities||C|{U}|Sorcery||| +Sage of Lat-Nam|Antiquities||C|{1}{U}|Creature — Human Artificer|1|2| +Transmute Artifact|Antiquities||U|{U}{U}|Sorcery||| +Xenic Poltergeist|Antiquities||U|{1}{B}{B}|Creature — Spirit|1|1| +Yawgmoth Demon|Antiquities||R|{4}{B}{B}|Creature — Demon|6|6| +Argothian Pixies|Antiquities||C|{1}{G}|Creature — Faerie|2|1| +Argothian Treefolk|Antiquities||C|{3}{G}{G}|Creature — Treefolk|3|5| +Citanul Druid|Antiquities||U|{1}{G}|Creature — Human Druid|1|1| +Crumble|Antiquities||C|{G}|Instant||| +Gaea's Avenger|Antiquities||R|{1}{G}{G}|Creature — Treefolk|1+*|1+*| +Powerleech|Antiquities||U|{G}{G}|Enchantment||| +Titania's Song|Antiquities||U|{3}{G}|Enchantment||| +Artifact Blast|Antiquities||C|{R}|Instant||| +Atog|Antiquities||C|{1}{R}|Creature — Atog|1|2| +Detonate|Antiquities||U|{X}{R}|Sorcery||| +Dwarven Weaponsmith|Antiquities||U|{1}{R}|Creature — Dwarf Artificer|1|1| +Goblin Artisans|Antiquities||U|{R}|Creature — Goblin Artificer|1|1| +Orcish Mechanics|Antiquities||C|{2}{R}|Creature — Orc|1|1| +Shatterstorm|Antiquities||R|{2}{R}{R}|Sorcery||| +Argivian Archaeologist|Antiquities||R|{1}{W}{W}|Creature — Human Artificer|1|1| +Argivian Blacksmith|Antiquities||C|{1}{W}{W}|Creature — Human Artificer|2|2| +Artifact Ward|Antiquities||C|{W}|Enchantment — Aura||| +Circle of Protection: Artifacts|Antiquities||U|{1}{W}|Enchantment||| +Damping Field|Antiquities||U|{2}{W}|Enchantment||| +Martyrs of Korlis|Antiquities||U|{3}{W}{W}|Creature — Human|1|6| +Reverse Polarity|Antiquities||C|{W}{W}|Instant||| +Mishra's Factory|Antiquities||R||Land||| +Mishra's Factory|Antiquities||R||Land||| +Mishra's Factory|Antiquities||R||Land||| +Mishra's Factory|Antiquities||U||Land||| +Mishra's Workshop|Antiquities||R||Land||| +Strip Mine|Antiquities||R||Land||| +Strip Mine|Antiquities||R||Land||| +Strip Mine|Antiquities||R||Land||| +Strip Mine|Antiquities||U||Land||| +Urza's Mine|Antiquities||C||Land — Urza’s Mine||| +Urza's Mine|Antiquities||U||Land — Urza’s Mine||| +Urza's Mine|Antiquities||C||Land — Urza’s Mine||| +Urza's Mine|Antiquities||U||Land — Urza’s Mine||| +Urza's Power Plant|Antiquities||U||Land — Urza’s Power-Plant||| +Urza's Power Plant|Antiquities||C||Land — Urza’s Power-Plant||| +Urza's Power Plant|Antiquities||C||Land — Urza’s Power-Plant||| +Urza's Power Plant|Antiquities||U||Land — Urza’s Power-Plant||| +Urza's Tower|Antiquities||U||Land — Urza’s Tower||| +Urza's Tower|Antiquities||U||Land — Urza’s Tower||| +Urza's Tower|Antiquities||C||Land — Urza’s Tower||| +Urza's Tower|Antiquities||U||Land — Urza’s Tower||| +Aladdin's Lamp|Revised Edition||R|{10}|Artifact||| +Aladdin's Ring|Revised Edition||R|{8}|Artifact||| +Ankh of Mishra|Revised Edition||R|{2}|Artifact||| +Armageddon Clock|Revised Edition||R|{6}|Artifact||| +Basalt Monolith|Revised Edition||U|{3}|Artifact||| +Black Vise|Revised Edition||U|{1}|Artifact||| +Bottle of Suleiman|Revised Edition||R|{4}|Artifact||| +Brass Man|Revised Edition||U|{1}|Artifact Creature — Construct|1|3| +Celestial Prism|Revised Edition||U|{3}|Artifact||| +Clockwork Beast|Revised Edition||R|{6}|Artifact Creature — Beast|0|4| +Conservator|Revised Edition||U|{4}|Artifact||| +Crystal Rod|Revised Edition||U|{1}|Artifact||| +Dancing Scimitar|Revised Edition||R|{4}|Artifact Creature — Spirit|1|5| +Dingus Egg|Revised Edition||R|{4}|Artifact||| +Disrupting Scepter|Revised Edition||R|{3}|Artifact||| +Dragon Engine|Revised Edition||R|{3}|Artifact Creature — Construct|1|3| +Ebony Horse|Revised Edition||R|{3}|Artifact||| +Flying Carpet|Revised Edition||R|{4}|Artifact||| +Glasses of Urza|Revised Edition||U|{1}|Artifact||| +Helm of Chatzuk|Revised Edition||R|{1}|Artifact||| +Howling Mine|Revised Edition||R|{2}|Artifact||| +Iron Star|Revised Edition||U|{1}|Artifact||| +Ivory Cup|Revised Edition||U|{1}|Artifact||| +Ivory Tower|Revised Edition||R|{1}|Artifact||| +Jade Monolith|Revised Edition||R|{4}|Artifact||| +Jandor's Ring|Revised Edition||R|{6}|Artifact||| +Jandor's Saddlebags|Revised Edition||R|{2}|Artifact||| +Jayemdae Tome|Revised Edition||R|{4}|Artifact||| +Juggernaut|Revised Edition||U|{4}|Artifact Creature — Juggernaut|5|3| +Kormus Bell|Revised Edition||R|{4}|Artifact||| +Library of Leng|Revised Edition||U|{1}|Artifact||| +Living Wall|Revised Edition||U|{4}|Artifact Creature — Wall|0|6| +Mana Vault|Revised Edition||R|{1}|Artifact||| +Meekstone|Revised Edition||R|{1}|Artifact||| +Millstone|Revised Edition||R|{2}|Artifact||| +Mishra's War Machine|Revised Edition||R|{7}|Artifact Creature — Juggernaut|5|5| +Nevinyrral's Disk|Revised Edition||R|{4}|Artifact||| +Obsianus Golem|Revised Edition||U|{6}|Artifact Creature — Golem|4|6| +Onulet|Revised Edition||R|{3}|Artifact Creature — Construct|2|2| +Ornithopter|Revised Edition||U|{0}|Artifact Creature — Thopter|0|2| +Primal Clay|Revised Edition||R|{4}|Artifact Creature — Shapeshifter|*|*| +Rocket Launcher|Revised Edition||R|{4}|Artifact||| +Rod of Ruin|Revised Edition||U|{4}|Artifact||| +Sol Ring|Revised Edition||U|{1}|Artifact||| +Soul Net|Revised Edition||U|{1}|Artifact||| +Sunglasses of Urza|Revised Edition||R|{3}|Artifact||| +The Hive|Revised Edition||R|{5}|Artifact||| +The Rack|Revised Edition||U|{1}|Artifact||| +Throne of Bone|Revised Edition||U|{1}|Artifact||| +Winter Orb|Revised Edition||R|{2}|Artifact||| +Wooden Sphere|Revised Edition||U|{1}|Artifact||| +Animate Dead|Revised Edition||U|{1}{B}|Enchantment — Aura||| +Bad Moon|Revised Edition||R|{1}{B}|Enchantment||| +Black Knight|Revised Edition||U|{B}{B}|Creature — Human Knight|2|2| +Bog Wraith|Revised Edition||U|{3}{B}|Creature — Wraith|3|3| +Contract from Below|Revised Edition||R|{B}|Sorcery||| +Cursed Land|Revised Edition||U|{2}{B}{B}|Enchantment — Aura||| +Dark Ritual|Revised Edition||C|{B}|Instant||| +Darkpact|Revised Edition||R|{B}{B}{B}|Sorcery||| +Deathgrip|Revised Edition||U|{B}{B}|Enchantment||| +Deathlace|Revised Edition||R|{B}|Instant||| +Demonic Attorney|Revised Edition||R|{1}{B}{B}|Sorcery||| +Demonic Hordes|Revised Edition||R|{3}{B}{B}{B}|Creature — Demon|5|5| +Demonic Tutor|Revised Edition||U|{1}{B}|Sorcery||| +Drain Life|Revised Edition||C|{X}{1}{B}|Sorcery||| +Drudge Skeletons|Revised Edition||C|{1}{B}|Creature — Skeleton|1|1| +El-Hajjβj|Revised Edition||R|{1}{B}{B}|Creature — Human Wizard|1|1| +Erg Raiders|Revised Edition||C|{1}{B}|Creature — Human Warrior|2|3| +Evil Presence|Revised Edition||U|{B}|Enchantment — Aura||| +Fear|Revised Edition||C|{B}{B}|Enchantment — Aura||| +Frozen Shade|Revised Edition||C|{2}{B}|Creature — Shade|0|1| +Gloom|Revised Edition||U|{2}{B}|Enchantment||| +Howl from Beyond|Revised Edition||C|{X}{B}|Instant||| +Hypnotic Specter|Revised Edition||U|{1}{B}{B}|Creature — Specter|2|2| +Lord of the Pit|Revised Edition||R|{4}{B}{B}{B}|Creature — Demon|7|7| +Mind Twist|Revised Edition||R|{X}{B}|Sorcery||| +Nether Shadow|Revised Edition||R|{B}{B}|Creature — Spirit|1|1| +Nettling Imp|Revised Edition||U|{2}{B}|Creature — Imp|1|1| +Nightmare|Revised Edition||R|{5}{B}|Creature — Nightmare Horse|*|*| +Paralyze|Revised Edition||C|{B}|Enchantment — Aura||| +Pestilence|Revised Edition||C|{2}{B}{B}|Enchantment||| +Plague Rats|Revised Edition||C|{2}{B}|Creature — Rat|*|*| +Raise Dead|Revised Edition||C|{B}|Sorcery||| +Royal Assassin|Revised Edition||R|{1}{B}{B}|Creature — Human Assassin|1|1| +Sacrifice|Revised Edition||U|{B}|Instant||| +Scathe Zombies|Revised Edition||C|{2}{B}|Creature — Zombie|2|2| +Scavenging Ghoul|Revised Edition||U|{3}{B}|Creature — Zombie|2|2| +Sengir Vampire|Revised Edition||U|{3}{B}{B}|Creature — Vampire|4|4| +Simulacrum|Revised Edition||U|{1}{B}|Instant||| +Sorceress Queen|Revised Edition||R|{1}{B}{B}|Creature — Human Wizard|1|1| +Terror|Revised Edition||C|{1}{B}|Instant||| +Unholy Strength|Revised Edition||C|{B}|Enchantment — Aura||| +Wall of Bone|Revised Edition||U|{2}{B}|Creature — Skeleton Wall|1|4| +Warp Artifact|Revised Edition||R|{B}{B}|Enchantment — Aura||| +Weakness|Revised Edition||C|{B}|Enchantment — Aura||| +Will-o'-the-Wisp|Revised Edition||R|{B}|Creature — Spirit|0|1| +Zombie Master|Revised Edition||R|{1}{B}{B}|Creature — Zombie|2|3| +Air Elemental|Revised Edition||U|{3}{U}{U}|Creature — Elemental|4|4| +Animate Artifact|Revised Edition||U|{3}{U}|Enchantment — Aura||| +Blue Elemental Blast|Revised Edition||C|{U}|Instant||| +Braingeyser|Revised Edition||R|{X}{U}{U}|Sorcery||| +Clone|Revised Edition||U|{3}{U}|Creature — Shapeshifter|0|0| +Control Magic|Revised Edition||U|{2}{U}{U}|Enchantment — Aura||| +Copy Artifact|Revised Edition||R|{1}{U}|Enchantment||| +Counterspell|Revised Edition||U|{U}{U}|Instant||| +Creature Bond|Revised Edition||C|{1}{U}|Enchantment — Aura||| +Drain Power|Revised Edition||R|{U}{U}|Sorcery||| +Energy Flux|Revised Edition||U|{2}{U}|Enchantment||| +Feedback|Revised Edition||U|{2}{U}|Enchantment — Aura||| +Flight|Revised Edition||C|{U}|Enchantment — Aura||| +Hurkyl's Recall|Revised Edition||R|{1}{U}|Instant||| +Island Fish Jasconius|Revised Edition||R|{4}{U}{U}{U}|Creature — Fish|6|8| +Jump|Revised Edition||C|{U}|Instant||| +Lifetap|Revised Edition||U|{U}{U}|Enchantment||| +Lord of Atlantis|Revised Edition||R|{U}{U}|Creature — Merfolk|2|2| +Magical Hack|Revised Edition||R|{U}|Instant||| +Mahamoti Djinn|Revised Edition||R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Short|Revised Edition||R|{2}{U}|Instant||| +Merfolk of the Pearl Trident|Revised Edition||C|{U}|Creature — Merfolk|1|1| +Phantasmal Forces|Revised Edition||U|{3}{U}|Creature — Illusion|4|1| +Phantasmal Terrain|Revised Edition||C|{U}{U}|Enchantment — Aura||| +Phantom Monster|Revised Edition||U|{3}{U}|Creature — Illusion|3|3| +Pirate Ship|Revised Edition||R|{4}{U}|Creature — Human Pirate|4|3| +Power Leak|Revised Edition||C|{1}{U}|Enchantment — Aura||| +Power Sink|Revised Edition||C|{X}{U}|Instant||| +Prodigal Sorcerer|Revised Edition||C|{2}{U}|Creature — Human Wizard|1|1| +Psychic Venom|Revised Edition||C|{1}{U}|Enchantment — Aura||| +Reconstruction|Revised Edition||C|{U}|Sorcery||| +Sea Serpent|Revised Edition||C|{5}{U}|Creature — Serpent|5|5| +Serendib Efreet|Revised Edition||R|{2}{U}|Creature — Efreet|3|4| +Siren's Call|Revised Edition||U|{U}|Instant||| +Sleight of Mind|Revised Edition||R|{U}|Instant||| +Spell Blast|Revised Edition||C|{X}{U}|Instant||| +Stasis|Revised Edition||R|{1}{U}|Enchantment||| +Steal Artifact|Revised Edition||U|{2}{U}{U}|Enchantment — Aura||| +Thoughtlace|Revised Edition||R|{U}|Instant||| +Unstable Mutation|Revised Edition||C|{U}|Enchantment — Aura||| +Unsummon|Revised Edition||C|{U}|Instant||| +Vesuvan Doppelganger|Revised Edition||R|{3}{U}{U}|Creature — Shapeshifter|0|0| +Volcanic Eruption|Revised Edition||R|{X}{U}{U}{U}|Sorcery||| +Wall of Air|Revised Edition||U|{1}{U}{U}|Creature — Wall|1|5| +Wall of Water|Revised Edition||U|{1}{U}{U}|Creature — Wall|0|5| +Water Elemental|Revised Edition||U|{3}{U}{U}|Creature — Elemental|5|4| +Aspect of Wolf|Revised Edition||R|{1}{G}|Enchantment — Aura||| +Birds of Paradise|Revised Edition||R|{G}|Creature — Bird|0|1| +Channel|Revised Edition||U|{G}{G}|Sorcery||| +Cockatrice|Revised Edition||R|{3}{G}{G}|Creature — Cockatrice|2|4| +Craw Wurm|Revised Edition||C|{4}{G}{G}|Creature — Wurm|6|4| +Crumble|Revised Edition||U|{G}|Instant||| +Desert Twister|Revised Edition||U|{4}{G}{G}|Sorcery||| +Elvish Archers|Revised Edition||R|{1}{G}|Creature — Elf Archer|2|1| +Fastbond|Revised Edition||R|{G}|Enchantment||| +Fog|Revised Edition||C|{G}|Instant||| +Force of Nature|Revised Edition||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Fungusaur|Revised Edition||R|{3}{G}|Creature — Fungus Lizard|2|2| +Gaea's Liege|Revised Edition||R|{3}{G}{G}{G}|Creature — Avatar|*|*| +Giant Growth|Revised Edition||C|{G}|Instant||| +Giant Spider|Revised Edition||C|{3}{G}|Creature — Spider|2|4| +Grizzly Bears|Revised Edition||C|{1}{G}|Creature — Bear|2|2| +Hurricane|Revised Edition||U|{X}{G}|Sorcery||| +Instill Energy|Revised Edition||U|{G}|Enchantment — Aura||| +Ironroot Treefolk|Revised Edition||C|{4}{G}|Creature — Treefolk|3|5| +Kudzu|Revised Edition||R|{1}{G}{G}|Enchantment — Aura||| +Ley Druid|Revised Edition||U|{2}{G}|Creature — Human Druid|1|1| +Lifeforce|Revised Edition||U|{G}{G}|Enchantment||| +Lifelace|Revised Edition||R|{G}|Instant||| +Living Artifact|Revised Edition||R|{G}|Enchantment — Aura||| +Living Lands|Revised Edition||R|{3}{G}|Enchantment||| +Llanowar Elves|Revised Edition||C|{G}|Creature — Elf Druid|1|1| +Lure|Revised Edition||U|{1}{G}{G}|Enchantment — Aura||| +Regeneration|Revised Edition||C|{1}{G}|Enchantment — Aura||| +Regrowth|Revised Edition||U|{1}{G}|Sorcery||| +Scryb Sprites|Revised Edition||C|{G}|Creature — Faerie|1|1| +Shanodin Dryads|Revised Edition||C|{G}|Creature — Dryad|1|1| +Stream of Life|Revised Edition||C|{X}{G}|Sorcery||| +Thicket Basilisk|Revised Edition||U|{3}{G}{G}|Creature — Basilisk|2|4| +Timber Wolves|Revised Edition||R|{G}|Creature — Wolf|1|1| +Titania's Song|Revised Edition||R|{3}{G}|Enchantment||| +Tranquility|Revised Edition||C|{2}{G}|Sorcery||| +Tsunami|Revised Edition||U|{3}{G}|Sorcery||| +Verduran Enchantress|Revised Edition||R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Brambles|Revised Edition||U|{2}{G}|Creature — Plant Wall|2|3| +Wall of Ice|Revised Edition||U|{2}{G}|Creature — Wall|0|7| +Wall of Wood|Revised Edition||C|{G}|Creature — Wall|0|3| +Wanderlust|Revised Edition||U|{2}{G}|Enchantment — Aura||| +War Mammoth|Revised Edition||C|{3}{G}|Creature — Elephant|3|3| +Web|Revised Edition||R|{G}|Enchantment — Aura||| +Wild Growth|Revised Edition||C|{G}|Enchantment — Aura||| +Atog|Revised Edition||C|{1}{R}|Creature — Atog|1|2| +Burrowing|Revised Edition||U|{R}|Enchantment — Aura||| +Chaoslace|Revised Edition||R|{R}|Instant||| +Disintegrate|Revised Edition||C|{X}{R}|Sorcery||| +Dragon Whelp|Revised Edition||U|{2}{R}{R}|Creature — Dragon|2|3| +Dwarven Warriors|Revised Edition||C|{2}{R}|Creature — Dwarf Warrior|1|1| +Dwarven Weaponsmith|Revised Edition||U|{1}{R}|Creature — Dwarf Artificer|1|1| +Earth Elemental|Revised Edition||U|{3}{R}{R}|Creature — Elemental|4|5| +Earthbind|Revised Edition||C|{R}|Enchantment — Aura||| +Earthquake|Revised Edition||R|{X}{R}|Sorcery||| +Fire Elemental|Revised Edition||U|{3}{R}{R}|Creature — Elemental|5|4| +Fireball|Revised Edition||C|{X}{R}|Sorcery||| +Firebreathing|Revised Edition||C|{R}|Enchantment — Aura||| +Flashfires|Revised Edition||U|{3}{R}|Sorcery||| +Fork|Revised Edition||R|{R}{R}|Instant||| +Goblin Balloon Brigade|Revised Edition||U|{R}|Creature — Goblin Warrior|1|1| +Goblin King|Revised Edition||R|{1}{R}{R}|Creature — Goblin|2|2| +Granite Gargoyle|Revised Edition||R|{2}{R}|Creature — Gargoyle|2|2| +Gray Ogre|Revised Edition||C|{2}{R}|Creature — Ogre|2|2| +Hill Giant|Revised Edition||C|{3}{R}|Creature — Giant|3|3| +Hurloon Minotaur|Revised Edition||C|{1}{R}{R}|Creature — Minotaur|2|3| +Keldon Warlord|Revised Edition||U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Kird Ape|Revised Edition||C|{R}|Creature — Ape|1|1| +Lightning Bolt|Revised Edition||C|{R}|Instant||| +Magnetic Mountain|Revised Edition||R|{1}{R}{R}|Enchantment||| +Mana Flare|Revised Edition||R|{2}{R}|Enchantment||| +Manabarbs|Revised Edition||R|{3}{R}|Enchantment||| +Mijae Djinn|Revised Edition||R|{R}{R}{R}|Creature — Djinn|6|3| +Mons's Goblin Raiders|Revised Edition||C|{R}|Creature — Goblin|1|1| +Orcish Artillery|Revised Edition||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Oriflamme|Revised Edition||U|{3}{R}|Enchantment||| +Power Surge|Revised Edition||R|{R}{R}|Enchantment||| +Red Elemental Blast|Revised Edition||C|{R}|Instant||| +Roc of Kher Ridges|Revised Edition||R|{3}{R}|Creature — Bird|3|3| +Rock Hydra|Revised Edition||R|{X}{R}{R}|Creature — Hydra|0|0| +Sedge Troll|Revised Edition||R|{2}{R}|Creature — Troll|2|2| +Shatter|Revised Edition||C|{1}{R}|Instant||| +Shatterstorm|Revised Edition||U|{2}{R}{R}|Sorcery||| +Shivan Dragon|Revised Edition||R|{4}{R}{R}|Creature — Dragon|5|5| +Smoke|Revised Edition||R|{R}{R}|Enchantment||| +Stone Giant|Revised Edition||U|{2}{R}{R}|Creature — Giant|3|4| +Stone Rain|Revised Edition||C|{2}{R}|Sorcery||| +Tunnel|Revised Edition||U|{R}|Instant||| +Uthden Troll|Revised Edition||U|{2}{R}|Creature — Troll|2|2| +Wall of Fire|Revised Edition||U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Stone|Revised Edition||U|{1}{R}{R}|Creature — Wall|0|8| +Wheel of Fortune|Revised Edition||R|{2}{R}|Sorcery||| +Animate Wall|Revised Edition||R|{W}|Enchantment — Aura||| +Armageddon|Revised Edition||R|{3}{W}|Sorcery||| +Balance|Revised Edition||R|{1}{W}|Sorcery||| +Benalish Hero|Revised Edition||C|{W}|Creature — Human Soldier|1|1| +Black Ward|Revised Edition||U|{W}|Enchantment — Aura||| +Blessing|Revised Edition||R|{W}{W}|Enchantment — Aura||| +Blue Ward|Revised Edition||U|{W}|Enchantment — Aura||| +Castle|Revised Edition||U|{3}{W}|Enchantment||| +Circle of Protection: Black|Revised Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Revised Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Revised Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Revised Edition||C|{1}{W}|Enchantment||| +Circle of Protection: White|Revised Edition||C|{1}{W}|Enchantment||| +Conversion|Revised Edition||U|{2}{W}{W}|Enchantment||| +Crusade|Revised Edition||R|{W}{W}|Enchantment||| +Death Ward|Revised Edition||C|{W}|Instant||| +Disenchant|Revised Edition||C|{1}{W}|Instant||| +Eye for an Eye|Revised Edition||R|{W}{W}|Instant||| +Farmstead|Revised Edition||R|{W}{W}{W}|Enchantment — Aura||| +Green Ward|Revised Edition||U|{W}|Enchantment — Aura||| +Guardian Angel|Revised Edition||C|{X}{W}|Instant||| +Healing Salve|Revised Edition||C|{W}|Instant||| +Holy Armor|Revised Edition||C|{W}|Enchantment — Aura||| +Holy Strength|Revised Edition||C|{W}|Enchantment — Aura||| +Island Sanctuary|Revised Edition||R|{1}{W}|Enchantment||| +Karma|Revised Edition||U|{2}{W}{W}|Enchantment||| +Lance|Revised Edition||U|{W}|Enchantment — Aura||| +Mesa Pegasus|Revised Edition||C|{1}{W}|Creature — Pegasus|1|1| +Northern Paladin|Revised Edition||R|{2}{W}{W}|Creature — Human Knight|3|3| +Pearled Unicorn|Revised Edition||C|{2}{W}|Creature — Unicorn|2|2| +Personal Incarnation|Revised Edition||R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Purelace|Revised Edition||R|{W}|Instant||| +Red Ward|Revised Edition||U|{W}|Enchantment — Aura||| +Resurrection|Revised Edition||U|{2}{W}{W}|Sorcery||| +Reverse Damage|Revised Edition||R|{1}{W}{W}|Instant||| +Reverse Polarity|Revised Edition||U|{W}{W}|Instant||| +Righteousness|Revised Edition||R|{W}|Instant||| +Samite Healer|Revised Edition||C|{1}{W}|Creature — Human Cleric|1|1| +Savannah Lions|Revised Edition||R|{W}|Creature — Cat|2|1| +Serra Angel|Revised Edition||U|{3}{W}{W}|Creature — Angel|4|4| +Swords to Plowshares|Revised Edition||U|{W}|Instant||| +Veteran Bodyguard|Revised Edition||R|{3}{W}{W}|Creature — Human|2|5| +Wall of Swords|Revised Edition||U|{3}{W}|Creature — Wall|3|5| +White Knight|Revised Edition||U|{W}{W}|Creature — Human Knight|2|2| +White Ward|Revised Edition||U|{W}|Enchantment — Aura||| +Wrath of God|Revised Edition||R|{2}{W}{W}|Sorcery||| +Swamp|Revised Edition||L||Basic Land — Swamp||| +Swamp|Revised Edition||L||Basic Land — Swamp||| +Swamp|Revised Edition||L||Basic Land — Swamp||| +Badlands|Revised Edition||R||Land — Swamp Mountain||| +Bayou|Revised Edition||R||Land — Swamp Forest||| +Plateau|Revised Edition||R||Land — Mountain Plains||| +Savannah|Revised Edition||R||Land — Forest Plains||| +Scrubland|Revised Edition||R||Land — Plains Swamp||| +Taiga|Revised Edition||R||Land — Mountain Forest||| +Tropical Island|Revised Edition||R||Land — Forest Island||| +Tundra|Revised Edition||R||Land — Plains Island||| +Underground Sea|Revised Edition||R||Land — Island Swamp||| +Volcanic Island|Revised Edition||R||Land — Island Mountain||| +Forest|Revised Edition||L||Basic Land — Forest||| +Forest|Revised Edition||L||Basic Land — Forest||| +Forest|Revised Edition||L||Basic Land — Forest||| +Mountain|Revised Edition||L||Basic Land — Mountain||| +Mountain|Revised Edition||L||Basic Land — Mountain||| +Mountain|Revised Edition||L||Basic Land — Mountain||| +Island|Revised Edition||L||Basic Land — Island||| +Island|Revised Edition||L||Basic Land — Island||| +Island|Revised Edition||L||Basic Land — Island||| +Plains|Revised Edition||L||Basic Land — Plains||| +Plains|Revised Edition||L||Basic Land — Plains||| +Plains|Revised Edition||L||Basic Land — Plains||| +Al-abara's Carpet|Legends||R|{5}|Artifact||| +Alchor's Tomb|Legends||R|{4}|Artifact||| +Arena of the Ancients|Legends||R|{3}|Artifact||| +Black Mana Battery|Legends||U|{4}|Artifact||| +Blue Mana Battery|Legends||U|{4}|Artifact||| +Bronze Horse|Legends||R|{7}|Artifact Creature — Horse|4|4| +Forethought Amulet|Legends||R|{5}|Artifact||| +Gauntlets of Chaos|Legends||R|{5}|Artifact||| +Green Mana Battery|Legends||U|{4}|Artifact||| +Horn of Deafening|Legends||R|{4}|Artifact||| +Knowledge Vault|Legends||R|{4}|Artifact||| +Kry Shield|Legends||U|{2}|Artifact||| +Life Chisel|Legends||U|{4}|Artifact||| +Life Matrix|Legends||R|{4}|Artifact||| +Mana Matrix|Legends||R|{6}|Artifact||| +Marble Priest|Legends||U|{5}|Artifact Creature — Cleric|3|3| +Mirror Universe|Legends||R|{6}|Artifact||| +North Star|Legends||R|{4}|Artifact||| +Nova Pentacle|Legends||R|{4}|Artifact||| +Planar Gate|Legends||R|{6}|Artifact||| +Red Mana Battery|Legends||U|{4}|Artifact||| +Relic Barrier|Legends||U|{2}|Artifact||| +Ring of Immortals|Legends||R|{5}|Artifact||| +Sentinel|Legends||R|{4}|Artifact Creature — Shapeshifter|1|1| +Serpent Generator|Legends||R|{6}|Artifact||| +Sword of the Ages|Legends||R|{6}|Artifact||| +Triassic Egg|Legends||R|{4}|Artifact||| +Voodoo Doll|Legends||R|{6}|Artifact||| +White Mana Battery|Legends||U|{4}|Artifact||| +Abomination|Legends||U|{3}{B}{B}|Creature — Horror|2|6| +All Hallow's Eve|Legends||R|{2}{B}{B}|Sorcery||| +Blight|Legends||U|{B}{B}|Enchantment — Aura||| +Carrion Ants|Legends||R|{2}{B}{B}|Creature — Insect|0|1| +Chains of Mephistopheles|Legends||R|{1}{B}|Enchantment||| +Cosmic Horror|Legends||R|{3}{B}{B}{B}|Creature — Horror|7|7| +Cyclopean Mummy|Legends||C|{1}{B}|Creature — Zombie|2|1| +Darkness|Legends||C|{B}|Instant||| +Demonic Torment|Legends||U|{2}{B}|Enchantment — Aura||| +Evil Eye of Orms-by-Gore|Legends||U|{4}{B}|Creature — Eye|3|6| +Fallen Angel|Legends||U|{3}{B}{B}|Creature — Angel|3|3| +Ghosts of the Damned|Legends||C|{1}{B}{B}|Creature — Spirit|0|2| +Giant Slug|Legends||C|{1}{B}|Creature — Slug|1|1| +Glyph of Doom|Legends||C|{B}|Instant||| +Greed|Legends||R|{3}{B}|Enchantment||| +Headless Horseman|Legends||C|{2}{B}|Creature — Zombie Knight|2|2| +Hell Swarm|Legends||C|{B}|Instant||| +Hell's Caretaker|Legends||R|{3}{B}|Creature — Horror|1|1| +Hellfire|Legends||R|{2}{B}{B}{B}|Sorcery||| +Horror of Horrors|Legends||U|{3}{B}{B}|Enchantment||| +Imprison|Legends||R|{B}|Enchantment — Aura||| +Infernal Medusa|Legends||U|{3}{B}{B}|Creature — Gorgon|2|4| +Jovial Evil|Legends||R|{2}{B}|Sorcery||| +Lesser Werewolf|Legends||U|{3}{B}|Creature — Human Wolf|2|4| +Lost Soul|Legends||C|{1}{B}{B}|Creature — Spirit Minion|2|1| +Mold Demon|Legends||R|{5}{B}{B}|Creature — Fungus Demon|6|6| +Nether Void|Legends||R|{3}{B}|World Enchantment||| +Pit Scorpion|Legends||C|{2}{B}|Creature — Scorpion|1|1| +Quagmire|Legends||U|{2}{B}|Enchantment||| +Shimian Night Stalker|Legends||U|{3}{B}{B}|Creature — Nightstalker|4|4| +Spirit Shackle|Legends||C|{B}{B}|Enchantment — Aura||| +Syphon Soul|Legends||C|{2}{B}|Sorcery||| +Takklemaggot|Legends||U|{2}{B}{B}|Enchantment — Aura||| +The Abyss|Legends||R|{3}{B}|World Enchantment||| +The Wretched|Legends||R|{3}{B}{B}|Creature — Demon|2|5| +Touch of Darkness|Legends||U|{B}|Instant||| +Transmutation|Legends||C|{1}{B}|Instant||| +Underworld Dreams|Legends||U|{B}{B}{B}|Enchantment||| +Vampire Bats|Legends||C|{B}|Creature — Bat|0|1| +Walking Dead|Legends||C|{1}{B}|Creature — Zombie|1|1| +Wall of Putrid Flesh|Legends||U|{2}{B}|Creature — Wall|2|4| +Wall of Shadows|Legends||C|{1}{B}{B}|Creature — Wall|0|1| +Wall of Tombstones|Legends||U|{1}{B}|Creature — Wall|0|1| +Acid Rain|Legends||R|{3}{U}|Sorcery||| +Anti-Magic Aura|Legends||C|{2}{U}|Enchantment — Aura||| +Azure Drake|Legends||U|{3}{U}|Creature — Drake|2|4| +Backfire|Legends||U|{U}|Enchantment — Aura||| +Boomerang|Legends||C|{U}{U}|Instant||| +Brine Hag|Legends||U|{2}{U}{U}|Creature — Hag|2|2| +Devouring Deep|Legends||C|{2}{U}|Creature — Fish|1|2| +Dream Coat|Legends||U|{U}|Enchantment — Aura||| +Elder Spawn|Legends||R|{4}{U}{U}{U}|Creature — Elemental|6|6| +Enchantment Alteration|Legends||C|{U}|Instant||| +Energy Tap|Legends||C|{U}|Sorcery||| +Field of Dreams|Legends||R|{U}|World Enchantment||| +Flash Counter|Legends||C|{1}{U}|Instant||| +Flash Flood|Legends||C|{U}|Instant||| +Force Spike|Legends||C|{U}|Instant||| +Gaseous Form|Legends||C|{2}{U}|Enchantment — Aura||| +Glyph of Delusion|Legends||C|{U}|Instant||| +In the Eye of Chaos|Legends||R|{2}{U}|World Enchantment||| +Invoke Prejudice|Legends||R|{U}{U}{U}{U}|Enchantment||| +Juxtapose|Legends||R|{3}{U}|Sorcery||| +Land Equilibrium|Legends||R|{2}{U}{U}|Enchantment||| +Mana Drain|Legends||U|{U}{U}|Instant||| +Part Water|Legends||U|{X}{X}{U}|Sorcery||| +Psionic Entity|Legends||R|{4}{U}|Creature — Illusion|2|2| +Psychic Purge|Legends||C|{U}|Sorcery||| +Puppet Master|Legends||U|{U}{U}{U}|Enchantment — Aura||| +Recall|Legends||R|{X}{X}{U}|Sorcery||| +Relic Bind|Legends||U|{2}{U}|Enchantment — Aura||| +Remove Soul|Legends||C|{1}{U}|Instant||| +Reset|Legends||U|{U}{U}|Instant||| +Reverberation|Legends||R|{2}{U}{U}|Instant||| +Sea Kings' Blessing|Legends||U|{U}|Instant||| +Segovian Leviathan|Legends||U|{4}{U}|Creature — Leviathan|3|3| +Silhouette|Legends||U|{1}{U}|Instant||| +Spectral Cloak|Legends||U|{U}{U}|Enchantment — Aura||| +Telekinesis|Legends||R|{U}{U}|Instant||| +Teleport|Legends||R|{U}{U}{U}|Instant||| +Time Elemental|Legends||R|{2}{U}|Creature — Elemental|0|2| +Undertow|Legends||U|{2}{U}|Enchantment||| +Venarian Gold|Legends||C|{X}{U}{U}|Enchantment — Aura||| +Wall of Vapor|Legends||C|{3}{U}|Creature — Wall|0|1| +Wall of Wonder|Legends||U|{2}{U}{U}|Creature — Wall|1|5| +Zephyr Falcon|Legends||C|{1}{U}|Creature — Bird|1|1| +Aisling Leprechaun|Legends||C|{G}|Creature — Faerie|1|1| +Arboria|Legends||U|{2}{G}{G}|World Enchantment||| +Avoid Fate|Legends||C|{G}|Instant||| +Barbary Apes|Legends||C|{1}{G}|Creature — Ape|2|2| +Cat Warriors|Legends||C|{1}{G}{G}|Creature — Cat Warrior|2|2| +Cocoon|Legends||U|{G}|Enchantment — Aura||| +Concordant Crossroads|Legends||R|{G}|World Enchantment||| +Craw Giant|Legends||U|{3}{G}{G}{G}{G}|Creature — Giant|6|4| +Deadfall|Legends||U|{2}{G}|Enchantment||| +Durkwood Boars|Legends||C|{4}{G}|Creature — Boar|4|4| +Elven Riders|Legends||R|{3}{G}{G}|Creature — Elf|3|3| +Emerald Dragonfly|Legends||C|{1}{G}|Creature — Insect|1|1| +Eureka|Legends||R|{2}{G}{G}|Sorcery||| +Fire Sprites|Legends||C|{1}{G}|Creature — Faerie|1|1| +Floral Spuzzem|Legends||U|{3}{G}|Creature — Elemental|2|2| +Giant Turtle|Legends||C|{1}{G}{G}|Creature — Turtle|2|4| +Glyph of Reincarnation|Legends||C|{G}|Instant||| +Hornet Cobra|Legends||C|{1}{G}{G}|Creature — Snake|2|1| +Ichneumon Druid|Legends||U|{1}{G}{G}|Creature — Human Druid|1|1| +Killer Bees|Legends||R|{1}{G}{G}|Creature — Insect|0|1| +Living Plane|Legends||R|{2}{G}{G}|World Enchantment||| +Master of the Hunt|Legends||R|{2}{G}{G}|Creature — Human|2|2| +Moss Monster|Legends||C|{3}{G}{G}|Creature — Elemental|3|6| +Pixie Queen|Legends||R|{2}{G}{G}|Creature — Faerie|1|1| +Pradesh Gypsies|Legends||U|{2}{G}|Creature — Human Nomad|1|1| +Rabid Wombat|Legends||U|{2}{G}{G}|Creature — Wombat|0|1| +Radjan Spirit|Legends||U|{3}{G}|Creature — Spirit|3|2| +Rebirth|Legends||R|{3}{G}{G}{G}|Sorcery||| +Reincarnation|Legends||U|{1}{G}{G}|Instant||| +Revelation|Legends||R|{G}|World Enchantment||| +Rust|Legends||C|{G}|Instant||| +Shelkin Brownie|Legends||C|{1}{G}|Creature — Ouphe|1|1| +Storm Seeker|Legends||U|{3}{G}|Instant||| +Subdue|Legends||C|{G}|Instant||| +Sylvan Library|Legends||U|{1}{G}|Enchantment||| +Sylvan Paradise|Legends||U|{G}|Instant||| +Typhoon|Legends||R|{2}{G}|Sorcery||| +Untamed Wilds|Legends||U|{2}{G}|Sorcery||| +Whirling Dervish|Legends||U|{G}{G}|Creature — Human Monk|1|1| +Willow Satyr|Legends||R|{2}{G}{G}|Creature — Satyr|1|1| +Winter Blast|Legends||R|{X}{G}|Sorcery||| +Wolverine Pack|Legends||C|{2}{G}{G}|Creature — Wolverine|2|4| +Wood Elemental|Legends||R|{3}{G}|Creature — Elemental|*|*| +Active Volcano|Legends||C|{R}|Instant||| +Ζrathi Berserker|Legends||U|{2}{R}{R}{R}|Creature — Human Berserker|2|4| +Backdraft|Legends||U|{1}{R}|Instant||| +Beasts of Bogardan|Legends||U|{4}{R}|Creature — Beast|3|3| +Blazing Effigy|Legends||C|{1}{R}|Creature — Elemental|0|3| +Blood Lust|Legends||U|{1}{R}|Instant||| +Caverns of Despair|Legends||R|{2}{R}{R}|World Enchantment||| +Chain Lightning|Legends||C|{R}|Sorcery||| +Crevasse|Legends||U|{2}{R}|Enchantment||| +Crimson Kobolds|Legends||C|{0}|Creature — Kobold|0|1| +Crimson Manticore|Legends||R|{2}{R}{R}|Creature — Manticore|2|2| +Crookshank Kobolds|Legends||C|{0}|Creature — Kobold|0|1| +Disharmony|Legends||R|{2}{R}|Instant||| +Dwarven Song|Legends||U|{R}|Instant||| +Eternal Warrior|Legends||U|{R}|Enchantment — Aura||| +Falling Star|Legends||R|{2}{R}|Sorcery||| +Feint|Legends||C|{R}|Instant||| +Firestorm Phoenix|Legends||R|{4}{R}{R}|Creature — Phoenix|3|2| +Frost Giant|Legends||U|{3}{R}{R}{R}|Creature — Giant|4|4| +Giant Strength|Legends||C|{R}{R}|Enchantment — Aura||| +Glyph of Destruction|Legends||C|{R}|Instant||| +Gravity Sphere|Legends||R|{2}{R}|World Enchantment||| +Hyperion Blacksmith|Legends||U|{1}{R}{R}|Creature — Human Artificer|2|2| +Immolation|Legends||C|{R}|Enchantment — Aura||| +Kobold Drill Sergeant|Legends||U|{1}{R}|Creature — Kobold Soldier|1|2| +Kobold Overlord|Legends||R|{1}{R}|Creature — Kobold|1|2| +Kobold Taskmaster|Legends||U|{1}{R}|Creature — Kobold|1|2| +Kobolds of Kher Keep|Legends||C|{0}|Creature — Kobold|0|1| +Land's Edge|Legends||R|{1}{R}{R}|World Enchantment||| +Mountain Yeti|Legends||U|{2}{R}{R}|Creature — Yeti|3|3| +Primordial Ooze|Legends||U|{R}|Creature — Ooze|1|1| +Pyrotechnics|Legends||C|{4}{R}|Sorcery||| +Quarum Trench Gnomes|Legends||R|{3}{R}|Creature — Gnome|1|1| +Raging Bull|Legends||C|{2}{R}|Creature — Ox|2|2| +Spinal Villain|Legends||R|{2}{R}|Creature — Beast|1|2| +Storm World|Legends||R|{R}|World Enchantment||| +Tempest Efreet|Legends||R|{1}{R}{R}{R}|Creature — Efreet|3|3| +The Brute|Legends||C|{1}{R}|Enchantment — Aura||| +Wall of Dust|Legends||U|{2}{R}|Creature — Wall|1|4| +Wall of Earth|Legends||C|{1}{R}|Creature — Wall|0|6| +Wall of Heat|Legends||C|{2}{R}|Creature — Wall|2|6| +Wall of Opposition|Legends||R|{3}{R}{R}|Creature — Wall|0|6| +Winds of Change|Legends||U|{R}|Sorcery||| +Akron Legionnaire|Legends||R|{6}{W}{W}|Creature — Giant Soldier|8|4| +Alabaster Potion|Legends||C|{X}{W}{W}|Instant||| +Amrou Kithkin|Legends||C|{W}{W}|Creature — Kithkin|1|1| +Angelic Voices|Legends||R|{2}{W}{W}|Enchantment||| +Cleanse|Legends||R|{2}{W}{W}|Sorcery||| +Clergy of the Holy Nimbus|Legends||C|{W}|Creature — Human Cleric|1|1| +D'Avenant Archer|Legends||C|{2}{W}|Creature — Human Soldier Archer|1|2| +Divine Intervention|Legends||R|{6}{W}{W}|Enchantment||| +Divine Offering|Legends||C|{1}{W}|Instant||| +Divine Transformation|Legends||R|{2}{W}{W}|Enchantment — Aura||| +Elder Land Wurm|Legends||R|{4}{W}{W}{W}|Creature — Dragon Wurm|5|5| +Enchanted Being|Legends||C|{1}{W}{W}|Creature — Human|2|2| +Equinox|Legends||C|{W}|Enchantment — Aura||| +Fortified Area|Legends||U|{1}{W}{W}|Enchantment||| +Glyph of Life|Legends||C|{W}|Instant||| +Great Defender|Legends||U|{W}|Instant||| +Great Wall|Legends||U|{2}{W}|Enchantment||| +Greater Realm of Preservation|Legends||U|{1}{W}|Enchantment||| +Heaven's Gate|Legends||U|{W}|Instant||| +Holy Day|Legends||C|{W}|Instant||| +Indestructible Aura|Legends||C|{W}|Instant||| +Infinite Authority|Legends||R|{W}{W}{W}|Enchantment — Aura||| +Ivory Guardians|Legends||U|{4}{W}{W}|Creature — Giant Cleric|3|3| +Keepers of the Faith|Legends||C|{1}{W}{W}|Creature — Human Cleric|2|3| +Kismet|Legends||U|{3}{W}|Enchantment||| +Land Tax|Legends||U|{W}|Enchantment||| +Lifeblood|Legends||R|{2}{W}{W}|Enchantment||| +Moat|Legends||R|{2}{W}{W}|Enchantment||| +Osai Vultures|Legends||C|{1}{W}|Creature — Bird|1|1| +Petra Sphinx|Legends||R|{2}{W}{W}{W}|Creature — Sphinx|3|4| +Presence of the Master|Legends||U|{3}{W}|Enchantment||| +Rapid Fire|Legends||R|{3}{W}|Instant||| +Remove Enchantments|Legends||C|{W}|Instant||| +Righteous Avengers|Legends||U|{4}{W}|Creature — Human Soldier|3|1| +Seeker|Legends||U|{2}{W}{W}|Enchantment — Aura||| +Shield Wall|Legends||U|{1}{W}|Instant||| +Spirit Link|Legends||U|{W}|Enchantment — Aura||| +Spiritual Sanctuary|Legends||R|{2}{W}{W}|Enchantment||| +Thunder Spirit|Legends||R|{1}{W}{W}|Creature — Elemental Spirit|2|2| +Tundra Wolves|Legends||C|{W}|Creature — Wolf|1|1| +Visions|Legends||U|{W}|Sorcery||| +Wall of Caltrops|Legends||C|{1}{W}|Creature — Wall|2|1| +Wall of Light|Legends||U|{2}{W}|Creature — Wall|1|5| +Adun Oakenshield|Legends||R|{B}{R}{G}|Legendary Creature — Human Knight|1|2| +Angus Mackenzie|Legends||R|{G}{W}{U}|Legendary Creature — Human Cleric|2|2| +Arcades Sabboth|Legends||R|{2}{G}{G}{W}{W}{U}{U}|Legendary Creature — Elder Dragon|7|7| +Axelrod Gunnarson|Legends||R|{4}{B}{B}{R}{R}|Legendary Creature — Giant|5|5| +Ayesha Tanaka|Legends||R|{W}{W}{U}{U}|Legendary Creature — Human Artificer|2|2| +Barktooth Warbeard|Legends||U|{4}{B}{R}{R}|Legendary Creature — Human Warrior|6|5| +Bartel Runeaxe|Legends||R|{3}{B}{R}{G}|Legendary Creature — Giant Warrior|6|5| +Boris Devilboon|Legends||R|{3}{B}{R}|Legendary Creature — Zombie Wizard|2|2| +Chromium|Legends||R|{2}{W}{W}{U}{U}{B}{B}|Legendary Creature — Elder Dragon|7|7| +Dakkon Blackblade|Legends||R|{2}{W}{U}{U}{B}|Legendary Creature — Human Warrior|*|*| +Gabriel Angelfire|Legends||R|{3}{G}{G}{W}{W}|Legendary Creature — Angel|4|4| +Gosta Dirk|Legends||R|{3}{W}{W}{U}{U}|Legendary Creature — Human Warrior|4|4| +Gwendlyn Di Corci|Legends||R|{U}{B}{B}{R}|Legendary Creature — Human Rogue|3|5| +Halfdane|Legends||R|{1}{W}{U}{B}|Legendary Creature — Shapeshifter|3|3| +Hazezon Tamar|Legends||R|{4}{R}{G}{W}|Legendary Creature — Human Warrior|2|4| +Hunding Gjornersen|Legends||U|{3}{W}{U}{U}|Legendary Creature — Human Warrior|5|4| +Jacques le Vert|Legends||R|{1}{R}{G}{W}|Legendary Creature — Human Warrior|3|2| +Jasmine Boreal|Legends||U|{3}{G}{W}|Legendary Creature — Human|4|5| +Jedit Ojanen|Legends||U|{4}{W}{W}{U}|Legendary Creature — Cat Warrior|5|5| +Jerrard of the Closed Fist|Legends||U|{3}{R}{G}{G}|Legendary Creature — Human Knight|6|5| +Johan|Legends||R|{3}{R}{G}{W}|Legendary Creature — Human Wizard|5|4| +Kasimir the Lone Wolf|Legends||U|{4}{W}{U}|Legendary Creature — Human Warrior|5|3| +Kei Takahashi|Legends||R|{2}{G}{W}|Legendary Creature — Human Cleric|2|2| +Lady Caleria|Legends||R|{3}{G}{G}{W}{W}|Legendary Creature — Human Archer|3|6| +Lady Evangela|Legends||R|{W}{U}{B}|Legendary Creature — Human Cleric|1|2| +Lady Orca|Legends||U|{5}{B}{R}|Legendary Creature — Demon|7|4| +Livonya Silone|Legends||R|{2}{R}{R}{G}{G}|Legendary Creature — Human Warrior|4|4| +Lord Magnus|Legends||U|{3}{G}{W}{W}|Legendary Creature — Human Druid|4|3| +Marhault Elsdragon|Legends||U|{3}{R}{R}{G}|Legendary Creature — Elf Warrior|4|6| +Nebuchadnezzar|Legends||R|{3}{U}{B}|Legendary Creature — Human Wizard|3|3| +Nicol Bolas|Legends||R|{2}{U}{U}{B}{B}{R}{R}|Legendary Creature — Elder Dragon|7|7| +Palladia-Mors|Legends||R|{2}{R}{R}{G}{G}{W}{W}|Legendary Creature — Elder Dragon|7|7| +Pavel Maliki|Legends||U|{4}{B}{R}|Legendary Creature — Human|5|3| +Princess Lucrezia|Legends||U|{3}{U}{U}{B}|Legendary Creature — Human Wizard|5|4| +Ragnar|Legends||R|{G}{W}{U}|Legendary Creature — Human Cleric|2|2| +Ramirez DePietro|Legends||U|{3}{U}{B}{B}|Legendary Creature — Human Pirate|4|3| +Ramses Overdark|Legends||R|{2}{U}{U}{B}{B}|Legendary Creature — Human Assassin|4|3| +Rasputin Dreamweaver|Legends||R|{4}{W}{U}|Legendary Creature — Human Wizard|4|1| +Riven Turnbull|Legends||U|{5}{U}{B}|Legendary Creature — Human Advisor|5|7| +Rohgahh of Kher Keep|Legends||R|{2}{B}{B}{R}{R}|Legendary Creature — Kobold|5|5| +Rubinia Soulsinger|Legends||R|{2}{G}{W}{U}|Legendary Creature — Faerie|2|3| +Sir Shandlar of Eberyn|Legends||U|{4}{G}{W}|Legendary Creature — Human Knight|4|7| +Sivitri Scarzam|Legends||U|{5}{U}{B}|Legendary Creature — Human|6|4| +Sol'kanar the Swamp King|Legends||R|{2}{U}{B}{R}|Legendary Creature — Demon|5|5| +Stangg|Legends||R|{4}{R}{G}|Legendary Creature — Human Warrior|3|4| +Sunastian Falconer|Legends||U|{3}{R}{G}|Legendary Creature — Human Shaman|4|4| +Tetsuo Umezawa|Legends||R|{U}{B}{R}|Legendary Creature — Human Archer|3|3| +The Lady of the Mountain|Legends||U|{4}{R}{G}|Legendary Creature — Giant|5|5| +The Tabernacle at Pendrell Vale|Legends||R||Legendary Land||| +Tobias Andrion|Legends||U|{3}{W}{U}|Legendary Creature — Human Advisor|4|4| +Tor Wauki|Legends||U|{2}{B}{B}{R}|Legendary Creature — Human Archer|3|3| +Torsten Von Ursus|Legends||U|{3}{G}{G}{W}|Legendary Creature — Human Soldier|5|5| +Tuknir Deathlock|Legends||R|{R}{R}{G}{G}|Legendary Creature — Human Wizard|2|2| +Ur-Drago|Legends||R|{3}{U}{U}{B}{B}|Legendary Creature — Elemental|4|4| +Vaevictis Asmadi|Legends||R|{2}{B}{B}{R}{R}{G}{G}|Legendary Creature — Elder Dragon|7|7| +Xira Arien|Legends||R|{B}{R}{G}|Legendary Creature — Insect Wizard|1|2| +Adventurers' Guildhouse|Legends||U||Land||| +Cathedral of Serra|Legends||U||Land||| +Hammerheim|Legends||U||Legendary Land||| +Karakas|Legends||U||Legendary Land||| +Mountain Stronghold|Legends||U||Land||| +Pendelhaven|Legends||U||Legendary Land||| +Seafarer's Quay|Legends||U||Land||| +Tolaria|Legends||U||Legendary Land||| +Unholy Citadel|Legends||U||Land||| +Urborg|Legends||U||Legendary Land||| +Barl's Cage|The Dark||R|{4}|Artifact||| +Bone Flute|The Dark||U|{3}|Artifact||| +Book of Rass|The Dark||U|{6}|Artifact||| +Coal Golem|The Dark||U|{5}|Artifact Creature — Golem|3|3| +Dark Sphere|The Dark||U|{0}|Artifact||| +Diabolic Machine|The Dark||U|{7}|Artifact Creature — Construct|4|4| +Fellwar Stone|The Dark||U|{2}|Artifact||| +Fountain of Youth|The Dark||U|{0}|Artifact||| +Living Armor|The Dark||U|{4}|Artifact||| +Necropolis|The Dark||U|{5}|Artifact Creature — Wall|0|1| +Reflecting Mirror|The Dark||U|{4}|Artifact||| +Runesword|The Dark||U|{6}|Artifact||| +Scarecrow|The Dark||U|{5}|Artifact Creature — Scarecrow|2|2| +Skull of Orm|The Dark||U|{3}|Artifact||| +Standing Stones|The Dark||U|{3}|Artifact||| +Stone Calendar|The Dark||R|{5}|Artifact||| +Tormod's Crypt|The Dark||U|{0}|Artifact||| +Tower of Coireall|The Dark||U|{2}|Artifact||| +Wand of Ith|The Dark||U|{4}|Artifact||| +War Barge|The Dark||U|{4}|Artifact||| +Ashes to Ashes|The Dark||C|{1}{B}{B}|Sorcery||| +Banshee|The Dark||U|{2}{B}{B}|Creature — Spirit|0|1| +Bog Imp|The Dark||C|{1}{B}|Creature — Imp|1|1| +Bog Rats|The Dark||C|{B}|Creature — Rat|1|1| +Curse Artifact|The Dark||U|{2}{B}{B}|Enchantment — Aura||| +Eater of the Dead|The Dark||U|{4}{B}|Creature — Horror|3|4| +Frankenstein's Monster|The Dark||R|{X}{B}{B}|Creature — Zombie|0|1| +Grave Robbers|The Dark||R|{1}{B}{B}|Creature — Human Rogue|1|1| +Inquisition|The Dark||C|{2}{B}|Sorcery||| +Marsh Gas|The Dark||C|{B}|Instant||| +Murk Dwellers|The Dark||C|{3}{B}|Creature — Zombie|2|2| +Nameless Race|The Dark||R|{3}{B}|Creature|*|*| +Rag Man|The Dark||R|{2}{B}{B}|Creature — Human Minion|2|1| +Season of the Witch|The Dark||R|{B}{B}{B}|Enchantment||| +The Fallen|The Dark||U|{1}{B}{B}{B}|Creature — Zombie|2|3| +Uncle Istvan|The Dark||U|{1}{B}{B}{B}|Creature — Human|1|3| +Word of Binding|The Dark||C|{X}{B}{B}|Sorcery||| +Worms of the Earth|The Dark||R|{2}{B}{B}{B}|Enchantment||| +Amnesia|The Dark||U|{3}{U}{U}{U}|Sorcery||| +Apprentice Wizard|The Dark||R|{1}{U}{U}|Creature — Human Wizard|0|1| +Dance of Many|The Dark||R|{U}{U}|Enchantment||| +Deep Water|The Dark||C|{U}{U}|Enchantment||| +Drowned|The Dark||C|{1}{U}|Creature — Zombie|1|1| +Electric Eel|The Dark||U|{U}|Creature — Fish|1|1| +Erosion|The Dark||C|{U}{U}{U}|Enchantment — Aura||| +Flood|The Dark||U|{U}|Enchantment||| +Ghost Ship|The Dark||C|{2}{U}{U}|Creature — Spirit|2|4| +Giant Shark|The Dark||C|{5}{U}|Creature — Fish|4|4| +Leviathan|The Dark||R|{5}{U}{U}{U}{U}|Creature — Leviathan|10|10| +Mana Vortex|The Dark||R|{1}{U}{U}|Enchantment||| +Merfolk Assassin|The Dark||U|{U}{U}|Creature — Merfolk Assassin|1|2| +Mind Bomb|The Dark||R|{U}|Sorcery||| +Psychic Allergy|The Dark||R|{3}{U}{U}|Enchantment||| +Riptide|The Dark||C|{U}|Instant||| +Sunken City|The Dark||C|{U}{U}|Enchantment||| +Tangle Kelp|The Dark||U|{U}|Enchantment — Aura||| +Water Wurm|The Dark||C|{U}|Creature — Wurm|1|1| +Carnivorous Plant|The Dark||C|{3}{G}|Creature — Plant Wall|4|5| +Elves of Deep Shadow|The Dark||U|{G}|Creature — Elf Druid|1|1| +Gaea's Touch|The Dark||C|{G}{G}|Enchantment||| +Hidden Path|The Dark||R|{2}{G}{G}{G}{G}|Enchantment||| +Land Leeches|The Dark||C|{1}{G}{G}|Creature — Leech|2|2| +Lurker|The Dark||R|{2}{G}|Creature — Beast|2|3| +Marsh Viper|The Dark||C|{3}{G}|Creature — Snake|1|2| +Niall Silvain|The Dark||R|{G}{G}{G}|Creature — Ouphe|2|2| +People of the Woods|The Dark||U|{G}{G}|Creature — Human|1|*| +Savaen Elves|The Dark||C|{G}|Creature — Elf|1|1| +Scarwood Bandits|The Dark||R|{2}{G}{G}|Creature — Human Rogue|2|2| +Scarwood Hag|The Dark||U|{1}{G}|Creature — Hag|1|1| +Scavenger Folk|The Dark||C|{G}|Creature — Human|1|1| +Spitting Slug|The Dark||U|{1}{G}{G}|Creature — Slug|2|4| +Tracker|The Dark||R|{2}{G}|Creature — Human|2|2| +Venom|The Dark||C|{1}{G}{G}|Enchantment — Aura||| +Whippoorwill|The Dark||U|{G}|Creature — Bird|1|1| +Wormwood Treefolk|The Dark||R|{3}{G}{G}|Creature — Treefolk|4|4| +Ball Lightning|The Dark||R|{R}{R}{R}|Creature — Elemental|6|1| +Blood Moon|The Dark||R|{2}{R}|Enchantment||| +Brothers of Fire|The Dark||U|{1}{R}{R}|Creature — Human Shaman|2|2| +Cave People|The Dark||U|{1}{R}{R}|Creature — Human|1|4| +Eternal Flame|The Dark||R|{2}{R}{R}|Sorcery||| +Fire Drake|The Dark||U|{1}{R}{R}|Creature — Drake|1|2| +Fissure|The Dark||C|{3}{R}{R}|Instant||| +Goblin Caves|The Dark||C|{1}{R}{R}|Enchantment — Aura||| +Goblin Digging Team|The Dark||C|{R}|Creature — Goblin|1|1| +Goblin Hero|The Dark||C|{2}{R}|Creature — Goblin|2|2| +Goblin Rock Sled|The Dark||C|{1}{R}|Creature — Goblin|3|1| +Goblin Shrine|The Dark||C|{1}{R}{R}|Enchantment — Aura||| +Goblin Wizard|The Dark||R|{2}{R}{R}|Creature — Goblin Wizard|1|1| +Goblins of the Flarg|The Dark||C|{R}|Creature — Goblin Warrior|1|1| +Inferno|The Dark||R|{5}{R}{R}|Instant||| +Mana Clash|The Dark||R|{R}|Sorcery||| +Orc General|The Dark||U|{2}{R}|Creature — Orc Warrior|2|2| +Sisters of the Flame|The Dark||U|{1}{R}{R}|Creature — Human Shaman|2|2| +Angry Mob|The Dark||U|{2}{W}{W}|Creature — Human|2+*|2+*| +Blood of the Martyr|The Dark||U|{W}{W}{W}|Instant||| +Brainwash|The Dark||C|{W}|Enchantment — Aura||| +Cleansing|The Dark||R|{W}{W}{W}|Sorcery||| +Dust to Dust|The Dark||C|{1}{W}{W}|Sorcery||| +Exorcist|The Dark||R|{W}{W}|Creature — Human Cleric|1|1| +Fasting|The Dark||U|{W}|Enchantment||| +Festival|The Dark||C|{W}|Instant||| +Fire and Brimstone|The Dark||U|{3}{W}{W}|Instant||| +Holy Light|The Dark||C|{2}{W}|Instant||| +Knights of Thorn|The Dark||R|{3}{W}|Creature — Human Knight|2|2| +Martyr's Cry|The Dark||R|{W}{W}|Sorcery||| +Miracle Worker|The Dark||C|{W}|Creature — Human Cleric|1|1| +Morale|The Dark||C|{1}{W}{W}|Instant||| +Pikemen|The Dark||C|{1}{W}|Creature — Human Soldier|1|1| +Preacher|The Dark||R|{1}{W}{W}|Creature — Human Cleric|1|1| +Squire|The Dark||C|{1}{W}|Creature — Human Soldier|1|2| +Tivadar's Crusade|The Dark||U|{1}{W}{W}|Sorcery||| +Witch Hunter|The Dark||R|{2}{W}{W}|Creature — Human Cleric|1|1| +Dark Heart of the Wood|The Dark||C|{B}{G}|Enchantment||| +Marsh Goblins|The Dark||C|{B}{R}|Creature — Goblin|1|1| +Scarwood Goblins|The Dark||C|{R}{G}|Creature — Goblin|2|2| +City of Shadows|The Dark||R||Land||| +Maze of Ith|The Dark||U||Land||| +Safe Haven|The Dark||R||Land||| +Sorrow's Path|The Dark||R||Land||| +Aeolipile|Fallen Empires||R|{2}|Artifact||| +Balm of Restoration|Fallen Empires||R|{2}|Artifact||| +Conch Horn|Fallen Empires||R|{2}|Artifact||| +Delif's Cone|Fallen Empires||C|{0}|Artifact||| +Delif's Cube|Fallen Empires||R|{1}|Artifact||| +Draconian Cylix|Fallen Empires||R|{3}|Artifact||| +Elven Lyre|Fallen Empires||R|{2}|Artifact||| +Implements of Sacrifice|Fallen Empires||R|{2}|Artifact||| +Ring of Renewal|Fallen Empires||R|{5}|Artifact||| +Spirit Shield|Fallen Empires||R|{3}|Artifact||| +Zelyon Sword|Fallen Empires||R|{3}|Artifact||| +Armor Thrull|Fallen Empires||C|{2}{B}|Creature — Thrull|1|3| +Armor Thrull|Fallen Empires||C|{2}{B}|Creature — Thrull|1|3| +Armor Thrull|Fallen Empires||C|{2}{B}|Creature — Thrull|1|3| +Armor Thrull|Fallen Empires||C|{2}{B}|Creature — Thrull|1|3| +Basal Thrull|Fallen Empires||C|{B}{B}|Creature — Thrull|1|2| +Basal Thrull|Fallen Empires||C|{B}{B}|Creature — Thrull|1|2| +Basal Thrull|Fallen Empires||C|{B}{B}|Creature — Thrull|1|2| +Basal Thrull|Fallen Empires||C|{B}{B}|Creature — Thrull|1|2| +Breeding Pit|Fallen Empires||U|{3}{B}|Enchantment||| +Derelor|Fallen Empires||R|{3}{B}|Creature — Thrull|4|4| +Ebon Praetor|Fallen Empires||R|{4}{B}{B}|Creature — Praetor|5|5| +Hymn to Tourach|Fallen Empires||C|{B}{B}|Sorcery||| +Hymn to Tourach|Fallen Empires||C|{B}{B}|Sorcery||| +Hymn to Tourach|Fallen Empires||C|{B}{B}|Sorcery||| +Hymn to Tourach|Fallen Empires||C|{B}{B}|Sorcery||| +Initiates of the Ebon Hand|Fallen Empires||C|{B}|Creature — Cleric|1|1| +Initiates of the Ebon Hand|Fallen Empires||C|{B}|Creature — Cleric|1|1| +Initiates of the Ebon Hand|Fallen Empires||C|{B}|Creature — Cleric|1|1| +Mindstab Thrull|Fallen Empires||C|{1}{B}{B}|Creature — Thrull|2|2| +Mindstab Thrull|Fallen Empires||C|{1}{B}{B}|Creature — Thrull|2|2| +Mindstab Thrull|Fallen Empires||C|{1}{B}{B}|Creature — Thrull|2|2| +Necrite|Fallen Empires||C|{1}{B}{B}|Creature — Thrull|2|2| +Necrite|Fallen Empires||C|{1}{B}{B}|Creature — Thrull|2|2| +Necrite|Fallen Empires||C|{1}{B}{B}|Creature — Thrull|2|2| +Order of the Ebon Hand|Fallen Empires||C|{B}{B}|Creature — Cleric Knight|2|1| +Order of the Ebon Hand|Fallen Empires||C|{B}{B}|Creature — Cleric Knight|2|1| +Order of the Ebon Hand|Fallen Empires||C|{B}{B}|Creature — Cleric Knight|2|1| +Soul Exchange|Fallen Empires||U|{B}{B}|Sorcery||| +Thrull Champion|Fallen Empires||R|{4}{B}|Creature — Thrull|2|2| +Thrull Retainer|Fallen Empires||U|{B}|Enchantment — Aura||| +Thrull Wizard|Fallen Empires||U|{2}{B}|Creature — Thrull Wizard|1|1| +Tourach's Chant|Fallen Empires||U|{1}{B}{B}|Enchantment||| +Tourach's Gate|Fallen Empires||R|{1}{B}{B}|Enchantment — Aura||| +Deep Spawn|Fallen Empires||U|{5}{U}{U}{U}|Creature — Homarid|6|6| +High Tide|Fallen Empires||C|{U}|Instant||| +High Tide|Fallen Empires||C|{U}|Instant||| +High Tide|Fallen Empires||C|{U}|Instant||| +Homarid|Fallen Empires||C|{2}{U}|Creature — Homarid|2|2| +Homarid|Fallen Empires||C|{2}{U}|Creature — Homarid|2|2| +Homarid|Fallen Empires||C|{2}{U}|Creature — Homarid|2|2| +Homarid|Fallen Empires||C|{2}{U}|Creature — Homarid|2|2| +Homarid Shaman|Fallen Empires||R|{2}{U}{U}|Creature — Homarid Shaman|2|1| +Homarid Spawning Bed|Fallen Empires||U|{U}{U}|Enchantment||| +Homarid Warrior|Fallen Empires||C|{4}{U}|Creature — Homarid Warrior|3|3| +Homarid Warrior|Fallen Empires||C|{4}{U}|Creature — Homarid Warrior|3|3| +Homarid Warrior|Fallen Empires||C|{4}{U}|Creature — Homarid Warrior|3|3| +Merseine|Fallen Empires||C|{2}{U}{U}|Enchantment — Aura||| +Merseine|Fallen Empires||C|{2}{U}{U}|Enchantment — Aura||| +Merseine|Fallen Empires||C|{2}{U}{U}|Enchantment — Aura||| +Merseine|Fallen Empires||C|{2}{U}{U}|Enchantment — Aura||| +River Merfolk|Fallen Empires||R|{U}{U}|Creature — Merfolk|2|1| +Seasinger|Fallen Empires||U|{1}{U}{U}|Creature — Merfolk|0|1| +Svyelunite Priest|Fallen Empires||U|{1}{U}|Creature — Merfolk Cleric|1|1| +Tidal Flats|Fallen Empires||C|{U}|Enchantment||| +Tidal Flats|Fallen Empires||C|{U}|Enchantment||| +Tidal Flats|Fallen Empires||C|{U}|Enchantment||| +Tidal Influence|Fallen Empires||U|{2}{U}|Enchantment||| +Vodalian Knights|Fallen Empires||R|{1}{U}{U}|Creature — Merfolk Knight|2|2| +Vodalian Mage|Fallen Empires||C|{2}{U}|Creature — Merfolk Wizard|1|1| +Vodalian Mage|Fallen Empires||C|{2}{U}|Creature — Merfolk Wizard|1|1| +Vodalian Mage|Fallen Empires||C|{2}{U}|Creature — Merfolk Wizard|1|1| +Vodalian Soldiers|Fallen Empires||C|{1}{U}|Creature — Merfolk Soldier|1|2| +Vodalian Soldiers|Fallen Empires||C|{1}{U}|Creature — Merfolk Soldier|1|2| +Vodalian Soldiers|Fallen Empires||C|{1}{U}|Creature — Merfolk Soldier|1|2| +Vodalian Soldiers|Fallen Empires||C|{1}{U}|Creature — Merfolk Soldier|1|2| +Vodalian War Machine|Fallen Empires||R|{1}{U}{U}|Creature — Wall|0|4| +Elven Fortress|Fallen Empires||C|{G}|Enchantment||| +Elven Fortress|Fallen Empires||C|{G}|Enchantment||| +Elven Fortress|Fallen Empires||C|{G}|Enchantment||| +Elven Fortress|Fallen Empires||C|{G}|Enchantment||| +Elvish Farmer|Fallen Empires||R|{1}{G}|Creature — Elf|0|2| +Elvish Hunter|Fallen Empires||C|{1}{G}|Creature — Elf Archer|1|1| +Elvish Hunter|Fallen Empires||C|{1}{G}|Creature — Elf Archer|1|1| +Elvish Hunter|Fallen Empires||C|{1}{G}|Creature — Elf Archer|1|1| +Elvish Scout|Fallen Empires||C|{G}|Creature — Elf Scout|1|1| +Elvish Scout|Fallen Empires||C|{G}|Creature — Elf Scout|1|1| +Elvish Scout|Fallen Empires||C|{G}|Creature — Elf Scout|1|1| +Feral Thallid|Fallen Empires||U|{3}{G}{G}{G}|Creature — Fungus|6|3| +Fungal Bloom|Fallen Empires||R|{G}{G}|Enchantment||| +Night Soil|Fallen Empires||C|{G}{G}|Enchantment||| +Night Soil|Fallen Empires||C|{G}{G}|Enchantment||| +Night Soil|Fallen Empires||C|{G}{G}|Enchantment||| +Spore Cloud|Fallen Empires||C|{1}{G}{G}|Instant||| +Spore Cloud|Fallen Empires||C|{1}{G}{G}|Instant||| +Spore Cloud|Fallen Empires||C|{1}{G}{G}|Instant||| +Spore Flower|Fallen Empires||U|{G}{G}|Creature — Fungus|0|1| +Thallid|Fallen Empires||C|{G}|Creature — Fungus|1|1| +Thallid|Fallen Empires||C|{G}|Creature — Fungus|1|1| +Thallid|Fallen Empires||C|{G}|Creature — Fungus|1|1| +Thallid|Fallen Empires||C|{G}|Creature — Fungus|1|1| +Thallid Devourer|Fallen Empires||U|{1}{G}{G}|Creature — Fungus|2|2| +Thelon's Chant|Fallen Empires||U|{1}{G}{G}|Enchantment||| +Thelon's Curse|Fallen Empires||R|{G}{G}|Enchantment||| +Thelonite Druid|Fallen Empires||U|{2}{G}|Creature — Human Cleric Druid|1|1| +Thelonite Monk|Fallen Empires||R|{2}{G}{G}|Creature — Insect Monk Cleric|1|2| +Thorn Thallid|Fallen Empires||C|{1}{G}{G}|Creature — Fungus|2|2| +Thorn Thallid|Fallen Empires||C|{1}{G}{G}|Creature — Fungus|2|2| +Thorn Thallid|Fallen Empires||C|{1}{G}{G}|Creature — Fungus|2|2| +Thorn Thallid|Fallen Empires||C|{1}{G}{G}|Creature — Fungus|2|2| +Brassclaw Orcs|Fallen Empires||C|{2}{R}|Creature — Orc|3|2| +Brassclaw Orcs|Fallen Empires||C|{2}{R}|Creature — Orc|3|2| +Orcish Veteran|Fallen Empires||C|{2}{R}|Creature — Orc|2|2| +Brassclaw Orcs|Fallen Empires||C|{2}{R}|Creature — Orc|3|2| +Dwarven Armorer|Fallen Empires||R|{R}|Creature — Dwarf|0|2| +Dwarven Catapult|Fallen Empires||U|{X}{R}|Instant||| +Dwarven Lieutenant|Fallen Empires||U|{R}{R}|Creature — Dwarf Soldier|1|2| +Dwarven Soldier|Fallen Empires||C|{1}{R}|Creature — Dwarf Soldier|2|1| +Dwarven Soldier|Fallen Empires||C|{1}{R}|Creature — Dwarf Soldier|2|1| +Dwarven Soldier|Fallen Empires||C|{1}{R}|Creature — Dwarf Soldier|2|1| +Goblin Chirurgeon|Fallen Empires||C|{R}|Creature — Goblin Shaman|0|2| +Goblin Chirurgeon|Fallen Empires||C|{R}|Creature — Goblin Shaman|0|2| +Goblin Chirurgeon|Fallen Empires||C|{R}|Creature — Goblin Shaman|0|2| +Goblin Flotilla|Fallen Empires||R|{2}{R}|Creature — Goblin|2|2| +Goblin Grenade|Fallen Empires||C|{R}|Sorcery||| +Goblin Grenade|Fallen Empires||C|{R}|Sorcery||| +Goblin Grenade|Fallen Empires||C|{R}|Sorcery||| +Goblin Kites|Fallen Empires||U|{1}{R}|Enchantment||| +Goblin War Drums|Fallen Empires||C|{2}{R}|Enchantment||| +Goblin War Drums|Fallen Empires||C|{2}{R}|Enchantment||| +Goblin War Drums|Fallen Empires||C|{2}{R}|Enchantment||| +Goblin War Drums|Fallen Empires||C|{2}{R}|Enchantment||| +Goblin Warrens|Fallen Empires||R|{2}{R}|Enchantment||| +Orcish Captain|Fallen Empires||U|{R}|Creature — Orc Warrior|1|1| +Orcish Spy|Fallen Empires||C|{R}|Creature — Orc Rogue|1|1| +Orcish Spy|Fallen Empires||C|{R}|Creature — Orc Rogue|1|1| +Orcish Spy|Fallen Empires||C|{R}|Creature — Orc Rogue|1|1| +Orcish Veteran|Fallen Empires||C|{2}{R}|Creature — Orc|2|2| +Orcish Veteran|Fallen Empires||C|{2}{R}|Creature — Orc|2|2| +Brassclaw Orcs|Fallen Empires||C|{2}{R}|Creature — Orc|3|2| +Orcish Veteran|Fallen Empires||C|{2}{R}|Creature — Orc|2|2| +Orgg|Fallen Empires||R|{3}{R}{R}|Creature — Orgg|6|6| +Raiding Party|Fallen Empires||U|{2}{R}|Enchantment||| +Combat Medic|Fallen Empires||C|{2}{W}|Creature — Human Cleric Soldier|0|2| +Combat Medic|Fallen Empires||C|{2}{W}|Creature — Human Cleric Soldier|0|2| +Combat Medic|Fallen Empires||C|{2}{W}|Creature — Human Cleric Soldier|0|2| +Combat Medic|Fallen Empires||C|{2}{W}|Creature — Human Cleric Soldier|0|2| +Farrel's Mantle|Fallen Empires||U|{2}{W}|Enchantment — Aura||| +Farrel's Zealot|Fallen Empires||C|{1}{W}{W}|Creature — Human|2|2| +Farrel's Zealot|Fallen Empires||C|{1}{W}{W}|Creature — Human|2|2| +Farrel's Zealot|Fallen Empires||C|{1}{W}{W}|Creature — Human|2|2| +Farrelite Priest|Fallen Empires||U|{1}{W}{W}|Creature — Human Cleric|1|3| +Hand of Justice|Fallen Empires||R|{5}{W}|Creature — Avatar|2|6| +Heroism|Fallen Empires||U|{2}{W}|Enchantment||| +Icatian Infantry|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Infantry|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Infantry|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Infantry|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Javelineers|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Javelineers|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Javelineers|Fallen Empires||C|{W}|Creature — Human Soldier|1|1| +Icatian Lieutenant|Fallen Empires||R|{W}{W}|Creature — Human Soldier|1|2| +Icatian Moneychanger|Fallen Empires||C|{W}|Creature — Human|0|2| +Icatian Moneychanger|Fallen Empires||C|{W}|Creature — Human|0|2| +Icatian Moneychanger|Fallen Empires||C|{W}|Creature — Human|0|2| +Icatian Phalanx|Fallen Empires||U|{4}{W}|Creature — Human Soldier|2|4| +Icatian Priest|Fallen Empires||U|{W}|Creature — Human Cleric|1|1| +Icatian Scout|Fallen Empires||C|{W}|Creature — Human Soldier Scout|1|1| +Icatian Scout|Fallen Empires||C|{W}|Creature — Human Soldier Scout|1|1| +Icatian Scout|Fallen Empires||C|{W}|Creature — Human Soldier Scout|1|1| +Icatian Scout|Fallen Empires||C|{W}|Creature — Human Soldier Scout|1|1| +Icatian Skirmishers|Fallen Empires||R|{3}{W}|Creature — Human Soldier|1|1| +Icatian Town|Fallen Empires||R|{5}{W}|Sorcery||| +Order of Leitbur|Fallen Empires||C|{W}{W}|Creature — Human Cleric Knight|2|1| +Order of Leitbur|Fallen Empires||C|{W}{W}|Creature — Human Cleric Knight|2|1| +Order of Leitbur|Fallen Empires||C|{W}{W}|Creature — Human Cleric Knight|2|1| +Bottomless Vault|Fallen Empires||R||Land||| +Dwarven Hold|Fallen Empires||R||Land||| +Dwarven Ruins|Fallen Empires||U||Land||| +Ebon Stronghold|Fallen Empires||U||Land||| +Havenwood Battleground|Fallen Empires||U||Land||| +Hollow Trees|Fallen Empires||R||Land||| +Icatian Store|Fallen Empires||R||Land||| +Rainbow Vale|Fallen Empires||R||Land||| +Ruins of Trokair|Fallen Empires||U||Land||| +Sand Silos|Fallen Empires||R||Land||| +Svyelunite Temple|Fallen Empires||U||Land||| +Aladdin's Lamp|Fourth Edition||R|{10}|Artifact||| +Aladdin's Ring|Fourth Edition||R|{8}|Artifact||| +Amulet of Kroog|Fourth Edition||C|{2}|Artifact||| +Ankh of Mishra|Fourth Edition||R|{2}|Artifact||| +Armageddon Clock|Fourth Edition||R|{6}|Artifact||| +Ashnod's Battle Gear|Fourth Edition||U|{2}|Artifact||| +Battering Ram|Fourth Edition||C|{2}|Artifact Creature — Construct|1|1| +Black Mana Battery|Fourth Edition||R|{4}|Artifact||| +Black Vise|Fourth Edition||U|{1}|Artifact||| +Blue Mana Battery|Fourth Edition||R|{4}|Artifact||| +Bottle of Suleiman|Fourth Edition||R|{4}|Artifact||| +Brass Man|Fourth Edition||U|{1}|Artifact Creature — Construct|1|3| +Bronze Tablet|Fourth Edition||R|{6}|Artifact||| +Celestial Prism|Fourth Edition||U|{3}|Artifact||| +Clay Statue|Fourth Edition||C|{4}|Artifact Creature — Golem|3|1| +Clockwork Avian|Fourth Edition||R|{5}|Artifact Creature — Bird|0|4| +Clockwork Beast|Fourth Edition||R|{6}|Artifact Creature — Beast|0|4| +Colossus of Sardia|Fourth Edition||R|{9}|Artifact Creature — Golem|9|9| +Conservator|Fourth Edition||U|{4}|Artifact||| +Coral Helm|Fourth Edition||R|{3}|Artifact||| +Crystal Rod|Fourth Edition||U|{1}|Artifact||| +Cursed Rack|Fourth Edition||U|{4}|Artifact||| +Dancing Scimitar|Fourth Edition||R|{4}|Artifact Creature — Spirit|1|5| +Diabolic Machine|Fourth Edition||U|{7}|Artifact Creature — Construct|4|4| +Dingus Egg|Fourth Edition||R|{4}|Artifact||| +Disrupting Scepter|Fourth Edition||R|{3}|Artifact||| +Dragon Engine|Fourth Edition||R|{3}|Artifact Creature — Construct|1|3| +Ebony Horse|Fourth Edition||R|{3}|Artifact||| +Fellwar Stone|Fourth Edition||U|{2}|Artifact||| +Flying Carpet|Fourth Edition||R|{4}|Artifact||| +Glasses of Urza|Fourth Edition||U|{1}|Artifact||| +Grapeshot Catapult|Fourth Edition||C|{4}|Artifact Creature — Construct|2|3| +Green Mana Battery|Fourth Edition||R|{4}|Artifact||| +Helm of Chatzuk|Fourth Edition||R|{1}|Artifact||| +Howling Mine|Fourth Edition||R|{2}|Artifact||| +Iron Star|Fourth Edition||U|{1}|Artifact||| +Ivory Cup|Fourth Edition||U|{1}|Artifact||| +Ivory Tower|Fourth Edition||R|{1}|Artifact||| +Jade Monolith|Fourth Edition||R|{4}|Artifact||| +Jandor's Saddlebags|Fourth Edition||R|{2}|Artifact||| +Jayemdae Tome|Fourth Edition||R|{4}|Artifact||| +Kormus Bell|Fourth Edition||R|{4}|Artifact||| +Library of Leng|Fourth Edition||U|{1}|Artifact||| +Mana Vault|Fourth Edition||R|{1}|Artifact||| +Meekstone|Fourth Edition||R|{1}|Artifact||| +Millstone|Fourth Edition||R|{2}|Artifact||| +Mishra's War Machine|Fourth Edition||R|{7}|Artifact Creature — Juggernaut|5|5| +Nevinyrral's Disk|Fourth Edition||R|{4}|Artifact||| +Obsianus Golem|Fourth Edition||U|{6}|Artifact Creature — Golem|4|6| +Onulet|Fourth Edition||R|{3}|Artifact Creature — Construct|2|2| +Ornithopter|Fourth Edition||U|{0}|Artifact Creature — Thopter|0|2| +Primal Clay|Fourth Edition||R|{4}|Artifact Creature — Shapeshifter|*|*| +Red Mana Battery|Fourth Edition||R|{4}|Artifact||| +Rod of Ruin|Fourth Edition||U|{4}|Artifact||| +Shapeshifter|Fourth Edition||U|{6}|Artifact Creature — Shapeshifter|*|7-*| +Soul Net|Fourth Edition||U|{1}|Artifact||| +Sunglasses of Urza|Fourth Edition||R|{3}|Artifact||| +Tawnos's Wand|Fourth Edition||U|{4}|Artifact||| +Tawnos's Weaponry|Fourth Edition||U|{2}|Artifact||| +Tetravus|Fourth Edition||R|{6}|Artifact Creature — Construct|1|1| +The Hive|Fourth Edition||R|{5}|Artifact||| +The Rack|Fourth Edition||U|{1}|Artifact||| +Throne of Bone|Fourth Edition||U|{1}|Artifact||| +Triskelion|Fourth Edition||R|{6}|Artifact Creature — Construct|1|1| +Urza's Avenger|Fourth Edition||R|{6}|Artifact Creature — Shapeshifter|4|4| +Wall of Spears|Fourth Edition||C|{3}|Artifact Creature — Wall|2|3| +White Mana Battery|Fourth Edition||R|{4}|Artifact||| +Winter Orb|Fourth Edition||R|{2}|Artifact||| +Wooden Sphere|Fourth Edition||U|{1}|Artifact||| +Yotian Soldier|Fourth Edition||C|{3}|Artifact Creature — Soldier|1|4| +Abomination|Fourth Edition||U|{3}{B}{B}|Creature — Horror|2|6| +Animate Dead|Fourth Edition||U|{1}{B}|Enchantment — Aura||| +Ashes to Ashes|Fourth Edition||U|{1}{B}{B}|Sorcery||| +Bad Moon|Fourth Edition||R|{1}{B}|Enchantment||| +Black Knight|Fourth Edition||U|{B}{B}|Creature — Human Knight|2|2| +Blight|Fourth Edition||U|{B}{B}|Enchantment — Aura||| +Bog Imp|Fourth Edition||C|{1}{B}|Creature — Imp|1|1| +Bog Wraith|Fourth Edition||U|{3}{B}|Creature — Wraith|3|3| +Carrion Ants|Fourth Edition||U|{2}{B}{B}|Creature — Insect|0|1| +Cosmic Horror|Fourth Edition||R|{3}{B}{B}{B}|Creature — Horror|7|7| +Cursed Land|Fourth Edition||U|{2}{B}{B}|Enchantment — Aura||| +Cyclopean Mummy|Fourth Edition||C|{1}{B}|Creature — Zombie|2|1| +Dark Ritual|Fourth Edition||C|{B}|Instant||| +Deathgrip|Fourth Edition||U|{B}{B}|Enchantment||| +Deathlace|Fourth Edition||R|{B}|Instant||| +Drain Life|Fourth Edition||C|{X}{1}{B}|Sorcery||| +Drudge Skeletons|Fourth Edition||C|{1}{B}|Creature — Skeleton|1|1| +El-Hajjβj|Fourth Edition||R|{1}{B}{B}|Creature — Human Wizard|1|1| +Erg Raiders|Fourth Edition||C|{1}{B}|Creature — Human Warrior|2|3| +Evil Presence|Fourth Edition||U|{B}|Enchantment — Aura||| +Fear|Fourth Edition||C|{B}{B}|Enchantment — Aura||| +Frozen Shade|Fourth Edition||C|{2}{B}|Creature — Shade|0|1| +Gloom|Fourth Edition||U|{2}{B}|Enchantment||| +Greed|Fourth Edition||R|{3}{B}|Enchantment||| +Howl from Beyond|Fourth Edition||C|{X}{B}|Instant||| +Hypnotic Specter|Fourth Edition||U|{1}{B}{B}|Creature — Specter|2|2| +Junϊn Efreet|Fourth Edition||U|{1}{B}{B}|Creature — Efreet|3|3| +Lord of the Pit|Fourth Edition||R|{4}{B}{B}{B}|Creature — Demon|7|7| +Lost Soul|Fourth Edition||C|{1}{B}{B}|Creature — Spirit Minion|2|1| +Marsh Gas|Fourth Edition||C|{B}|Instant||| +Mind Twist|Fourth Edition||R|{X}{B}|Sorcery||| +Murk Dwellers|Fourth Edition||C|{3}{B}|Creature — Zombie|2|2| +Nether Shadow|Fourth Edition||R|{B}{B}|Creature — Spirit|1|1| +Nightmare|Fourth Edition||R|{5}{B}|Creature — Nightmare Horse|*|*| +Paralyze|Fourth Edition||C|{B}|Enchantment — Aura||| +Pestilence|Fourth Edition||C|{2}{B}{B}|Enchantment||| +Pit Scorpion|Fourth Edition||C|{2}{B}|Creature — Scorpion|1|1| +Plague Rats|Fourth Edition||C|{2}{B}|Creature — Rat|*|*| +Rag Man|Fourth Edition||R|{2}{B}{B}|Creature — Human Minion|2|1| +Raise Dead|Fourth Edition||C|{B}|Sorcery||| +Royal Assassin|Fourth Edition||R|{1}{B}{B}|Creature — Human Assassin|1|1| +Scathe Zombies|Fourth Edition||C|{2}{B}|Creature — Zombie|2|2| +Scavenging Ghoul|Fourth Edition||U|{3}{B}|Creature — Zombie|2|2| +Sengir Vampire|Fourth Edition||U|{3}{B}{B}|Creature — Vampire|4|4| +Simulacrum|Fourth Edition||U|{1}{B}|Instant||| +Sorceress Queen|Fourth Edition||R|{1}{B}{B}|Creature — Human Wizard|1|1| +Spirit Shackle|Fourth Edition||U|{B}{B}|Enchantment — Aura||| +Terror|Fourth Edition||C|{1}{B}|Instant||| +Uncle Istvan|Fourth Edition||U|{1}{B}{B}{B}|Creature — Human|1|3| +Unholy Strength|Fourth Edition||C|{B}|Enchantment — Aura||| +Vampire Bats|Fourth Edition||C|{B}|Creature — Bat|0|1| +Wall of Bone|Fourth Edition||U|{2}{B}|Creature — Skeleton Wall|1|4| +Warp Artifact|Fourth Edition||R|{B}{B}|Enchantment — Aura||| +Weakness|Fourth Edition||C|{B}|Enchantment — Aura||| +Will-o'-the-Wisp|Fourth Edition||R|{B}|Creature — Spirit|0|1| +Word of Binding|Fourth Edition||C|{X}{B}{B}|Sorcery||| +Xenic Poltergeist|Fourth Edition||R|{1}{B}{B}|Creature — Spirit|1|1| +Zombie Master|Fourth Edition||R|{1}{B}{B}|Creature — Zombie|2|3| +Air Elemental|Fourth Edition||U|{3}{U}{U}|Creature — Elemental|4|4| +Animate Artifact|Fourth Edition||U|{3}{U}|Enchantment — Aura||| +Apprentice Wizard|Fourth Edition||C|{1}{U}{U}|Creature — Human Wizard|0|1| +Backfire|Fourth Edition||U|{U}|Enchantment — Aura||| +Blue Elemental Blast|Fourth Edition||C|{U}|Instant||| +Control Magic|Fourth Edition||U|{2}{U}{U}|Enchantment — Aura||| +Counterspell|Fourth Edition||U|{U}{U}|Instant||| +Creature Bond|Fourth Edition||C|{1}{U}|Enchantment — Aura||| +Drain Power|Fourth Edition||R|{U}{U}|Sorcery||| +Energy Flux|Fourth Edition||U|{2}{U}|Enchantment||| +Energy Tap|Fourth Edition||C|{U}|Sorcery||| +Erosion|Fourth Edition||C|{U}{U}{U}|Enchantment — Aura||| +Feedback|Fourth Edition||U|{2}{U}|Enchantment — Aura||| +Flight|Fourth Edition||C|{U}|Enchantment — Aura||| +Flood|Fourth Edition||C|{U}|Enchantment||| +Gaseous Form|Fourth Edition||C|{2}{U}|Enchantment — Aura||| +Ghost Ship|Fourth Edition||U|{2}{U}{U}|Creature — Spirit|2|4| +Giant Tortoise|Fourth Edition||C|{1}{U}|Creature — Turtle|1|1| +Hurkyl's Recall|Fourth Edition||R|{1}{U}|Instant||| +Island Fish Jasconius|Fourth Edition||R|{4}{U}{U}{U}|Creature — Fish|6|8| +Jump|Fourth Edition||C|{U}|Instant||| +Leviathan|Fourth Edition||R|{5}{U}{U}{U}{U}|Creature — Leviathan|10|10| +Lifetap|Fourth Edition||U|{U}{U}|Enchantment||| +Lord of Atlantis|Fourth Edition||R|{U}{U}|Creature — Merfolk|2|2| +Magical Hack|Fourth Edition||R|{U}|Instant||| +Mahamoti Djinn|Fourth Edition||R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Short|Fourth Edition||R|{2}{U}|Instant||| +Merfolk of the Pearl Trident|Fourth Edition||C|{U}|Creature — Merfolk|1|1| +Mind Bomb|Fourth Edition||U|{U}|Sorcery||| +Phantasmal Forces|Fourth Edition||U|{3}{U}|Creature — Illusion|4|1| +Phantasmal Terrain|Fourth Edition||C|{U}{U}|Enchantment — Aura||| +Phantom Monster|Fourth Edition||U|{3}{U}|Creature — Illusion|3|3| +Pirate Ship|Fourth Edition||R|{4}{U}|Creature — Human Pirate|4|3| +Power Leak|Fourth Edition||C|{1}{U}|Enchantment — Aura||| +Power Sink|Fourth Edition||C|{X}{U}|Instant||| +Prodigal Sorcerer|Fourth Edition||C|{2}{U}|Creature — Human Wizard|1|1| +Psionic Entity|Fourth Edition||R|{4}{U}|Creature — Illusion|2|2| +Psychic Venom|Fourth Edition||C|{1}{U}|Enchantment — Aura||| +Relic Bind|Fourth Edition||R|{2}{U}|Enchantment — Aura||| +Sea Serpent|Fourth Edition||C|{5}{U}|Creature — Serpent|5|5| +Segovian Leviathan|Fourth Edition||U|{4}{U}|Creature — Leviathan|3|3| +Sindbad|Fourth Edition||U|{1}{U}|Creature — Human|1|1| +Siren's Call|Fourth Edition||U|{U}|Instant||| +Sleight of Mind|Fourth Edition||R|{U}|Instant||| +Spell Blast|Fourth Edition||C|{X}{U}|Instant||| +Stasis|Fourth Edition||R|{1}{U}|Enchantment||| +Steal Artifact|Fourth Edition||U|{2}{U}{U}|Enchantment — Aura||| +Sunken City|Fourth Edition||C|{U}{U}|Enchantment||| +Thoughtlace|Fourth Edition||R|{U}|Instant||| +Time Elemental|Fourth Edition||R|{2}{U}|Creature — Elemental|0|2| +Twiddle|Fourth Edition||C|{U}|Instant||| +Unstable Mutation|Fourth Edition||C|{U}|Enchantment — Aura||| +Unsummon|Fourth Edition||C|{U}|Instant||| +Volcanic Eruption|Fourth Edition||R|{X}{U}{U}{U}|Sorcery||| +Wall of Air|Fourth Edition||U|{1}{U}{U}|Creature — Wall|1|5| +Wall of Water|Fourth Edition||U|{1}{U}{U}|Creature — Wall|0|5| +Water Elemental|Fourth Edition||U|{3}{U}{U}|Creature — Elemental|5|4| +Zephyr Falcon|Fourth Edition||C|{1}{U}|Creature — Bird|1|1| +Aspect of Wolf|Fourth Edition||R|{1}{G}|Enchantment — Aura||| +Birds of Paradise|Fourth Edition||R|{G}|Creature — Bird|0|1| +Carnivorous Plant|Fourth Edition||C|{3}{G}|Creature — Plant Wall|4|5| +Channel|Fourth Edition||U|{G}{G}|Sorcery||| +Cockatrice|Fourth Edition||R|{3}{G}{G}|Creature — Cockatrice|2|4| +Craw Wurm|Fourth Edition||C|{4}{G}{G}|Creature — Wurm|6|4| +Crumble|Fourth Edition||U|{G}|Instant||| +Desert Twister|Fourth Edition||U|{4}{G}{G}|Sorcery||| +Durkwood Boars|Fourth Edition||C|{4}{G}|Creature — Boar|4|4| +Elven Riders|Fourth Edition||U|{3}{G}{G}|Creature — Elf|3|3| +Elvish Archers|Fourth Edition||R|{1}{G}|Creature — Elf Archer|2|1| +Fog|Fourth Edition||C|{G}|Instant||| +Force of Nature|Fourth Edition||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Fungusaur|Fourth Edition||R|{3}{G}|Creature — Fungus Lizard|2|2| +Gaea's Liege|Fourth Edition||R|{3}{G}{G}{G}|Creature — Avatar|*|*| +Giant Growth|Fourth Edition||C|{G}|Instant||| +Giant Spider|Fourth Edition||C|{3}{G}|Creature — Spider|2|4| +Grizzly Bears|Fourth Edition||C|{1}{G}|Creature — Bear|2|2| +Hurricane|Fourth Edition||U|{X}{G}|Sorcery||| +Instill Energy|Fourth Edition||U|{G}|Enchantment — Aura||| +Ironroot Treefolk|Fourth Edition||C|{4}{G}|Creature — Treefolk|3|5| +Killer Bees|Fourth Edition||U|{1}{G}{G}|Creature — Insect|0|1| +Land Leeches|Fourth Edition||C|{1}{G}{G}|Creature — Leech|2|2| +Ley Druid|Fourth Edition||U|{2}{G}|Creature — Human Druid|1|1| +Lifeforce|Fourth Edition||U|{G}{G}|Enchantment||| +Lifelace|Fourth Edition||R|{G}|Instant||| +Living Artifact|Fourth Edition||R|{G}|Enchantment — Aura||| +Living Lands|Fourth Edition||R|{3}{G}|Enchantment||| +Llanowar Elves|Fourth Edition||C|{G}|Creature — Elf Druid|1|1| +Lure|Fourth Edition||U|{1}{G}{G}|Enchantment — Aura||| +Marsh Viper|Fourth Edition||C|{3}{G}|Creature — Snake|1|2| +Nafs Asp|Fourth Edition||C|{G}|Creature — Snake|1|1| +Pradesh Gypsies|Fourth Edition||C|{2}{G}|Creature — Human Nomad|1|1| +Radjan Spirit|Fourth Edition||U|{3}{G}|Creature — Spirit|3|2| +Rebirth|Fourth Edition||R|{3}{G}{G}{G}|Sorcery||| +Regeneration|Fourth Edition||C|{1}{G}|Enchantment — Aura||| +Sandstorm|Fourth Edition||C|{G}|Instant||| +Scryb Sprites|Fourth Edition||C|{G}|Creature — Faerie|1|1| +Shanodin Dryads|Fourth Edition||C|{G}|Creature — Dryad|1|1| +Stream of Life|Fourth Edition||C|{X}{G}|Sorcery||| +Sylvan Library|Fourth Edition||R|{1}{G}|Enchantment||| +Thicket Basilisk|Fourth Edition||U|{3}{G}{G}|Creature — Basilisk|2|4| +Timber Wolves|Fourth Edition||R|{G}|Creature — Wolf|1|1| +Titania's Song|Fourth Edition||R|{3}{G}|Enchantment||| +Tranquility|Fourth Edition||C|{2}{G}|Sorcery||| +Tsunami|Fourth Edition||U|{3}{G}|Sorcery||| +Untamed Wilds|Fourth Edition||U|{2}{G}|Sorcery||| +Venom|Fourth Edition||C|{1}{G}{G}|Enchantment — Aura||| +Verduran Enchantress|Fourth Edition||R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Brambles|Fourth Edition||U|{2}{G}|Creature — Plant Wall|2|3| +Wall of Ice|Fourth Edition||U|{2}{G}|Creature — Wall|0|7| +Wall of Wood|Fourth Edition||C|{G}|Creature — Wall|0|3| +Wanderlust|Fourth Edition||U|{2}{G}|Enchantment — Aura||| +War Mammoth|Fourth Edition||C|{3}{G}|Creature — Elephant|3|3| +Web|Fourth Edition||R|{G}|Enchantment — Aura||| +Whirling Dervish|Fourth Edition||U|{G}{G}|Creature — Human Monk|1|1| +Wild Growth|Fourth Edition||C|{G}|Enchantment — Aura||| +Winter Blast|Fourth Edition||U|{X}{G}|Sorcery||| +Ali Baba|Fourth Edition||U|{R}|Creature — Human Rogue|1|1| +Ball Lightning|Fourth Edition||R|{R}{R}{R}|Creature — Elemental|6|1| +Bird Maiden|Fourth Edition||C|{2}{R}|Creature — Human Bird|1|2| +Blood Lust|Fourth Edition||C|{1}{R}|Instant||| +Brothers of Fire|Fourth Edition||C|{1}{R}{R}|Creature — Human Shaman|2|2| +Burrowing|Fourth Edition||U|{R}|Enchantment — Aura||| +Cave People|Fourth Edition||U|{1}{R}{R}|Creature — Human|1|4| +Chaoslace|Fourth Edition||R|{R}|Instant||| +Crimson Manticore|Fourth Edition||R|{2}{R}{R}|Creature — Manticore|2|2| +Detonate|Fourth Edition||U|{X}{R}|Sorcery||| +Disintegrate|Fourth Edition||C|{X}{R}|Sorcery||| +Dragon Whelp|Fourth Edition||U|{2}{R}{R}|Creature — Dragon|2|3| +Dwarven Warriors|Fourth Edition||C|{2}{R}|Creature — Dwarf Warrior|1|1| +Earth Elemental|Fourth Edition||U|{3}{R}{R}|Creature — Elemental|4|5| +Earthquake|Fourth Edition||R|{X}{R}|Sorcery||| +Eternal Warrior|Fourth Edition||C|{R}|Enchantment — Aura||| +Fire Elemental|Fourth Edition||U|{3}{R}{R}|Creature — Elemental|5|4| +Fireball|Fourth Edition||C|{X}{R}|Sorcery||| +Firebreathing|Fourth Edition||C|{R}|Enchantment — Aura||| +Fissure|Fourth Edition||C|{3}{R}{R}|Instant||| +Flashfires|Fourth Edition||U|{3}{R}|Sorcery||| +Giant Strength|Fourth Edition||C|{R}{R}|Enchantment — Aura||| +Goblin Balloon Brigade|Fourth Edition||U|{R}|Creature — Goblin Warrior|1|1| +Goblin King|Fourth Edition||R|{1}{R}{R}|Creature — Goblin|2|2| +Goblin Rock Sled|Fourth Edition||C|{1}{R}|Creature — Goblin|3|1| +Gray Ogre|Fourth Edition||C|{2}{R}|Creature — Ogre|2|2| +Hill Giant|Fourth Edition||C|{3}{R}|Creature — Giant|3|3| +Hurloon Minotaur|Fourth Edition||C|{1}{R}{R}|Creature — Minotaur|2|3| +Hurr Jackal|Fourth Edition||R|{R}|Creature — Hound|1|1| +Immolation|Fourth Edition||C|{R}|Enchantment — Aura||| +Inferno|Fourth Edition||R|{5}{R}{R}|Instant||| +Ironclaw Orcs|Fourth Edition||C|{1}{R}|Creature — Orc|2|2| +Keldon Warlord|Fourth Edition||U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Lightning Bolt|Fourth Edition||C|{R}|Instant||| +Magnetic Mountain|Fourth Edition||R|{1}{R}{R}|Enchantment||| +Mana Clash|Fourth Edition||R|{R}|Sorcery||| +Mana Flare|Fourth Edition||R|{2}{R}|Enchantment||| +Manabarbs|Fourth Edition||R|{3}{R}|Enchantment||| +Mons's Goblin Raiders|Fourth Edition||C|{R}|Creature — Goblin|1|1| +Orcish Artillery|Fourth Edition||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Oriflamme|Fourth Edition||U|{3}{R}|Enchantment||| +Power Surge|Fourth Edition||R|{R}{R}|Enchantment||| +Pyrotechnics|Fourth Edition||U|{4}{R}|Sorcery||| +Red Elemental Blast|Fourth Edition||C|{R}|Instant||| +Shatter|Fourth Edition||C|{1}{R}|Instant||| +Shivan Dragon|Fourth Edition||R|{4}{R}{R}|Creature — Dragon|5|5| +Sisters of the Flame|Fourth Edition||C|{1}{R}{R}|Creature — Human Shaman|2|2| +Smoke|Fourth Edition||R|{R}{R}|Enchantment||| +Stone Giant|Fourth Edition||U|{2}{R}{R}|Creature — Giant|3|4| +Stone Rain|Fourth Edition||C|{2}{R}|Sorcery||| +Tempest Efreet|Fourth Edition||R|{1}{R}{R}{R}|Creature — Efreet|3|3| +The Brute|Fourth Edition||C|{1}{R}|Enchantment — Aura||| +Tunnel|Fourth Edition||U|{R}|Instant||| +Uthden Troll|Fourth Edition||U|{2}{R}|Creature — Troll|2|2| +Wall of Dust|Fourth Edition||U|{2}{R}|Creature — Wall|1|4| +Wall of Fire|Fourth Edition||U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Stone|Fourth Edition||U|{1}{R}{R}|Creature — Wall|0|8| +Winds of Change|Fourth Edition||R|{R}|Sorcery||| +Alabaster Potion|Fourth Edition||C|{X}{W}{W}|Instant||| +Amrou Kithkin|Fourth Edition||C|{W}{W}|Creature — Kithkin|1|1| +Angry Mob|Fourth Edition||U|{2}{W}{W}|Creature — Human|2+*|2+*| +Animate Wall|Fourth Edition||R|{W}|Enchantment — Aura||| +Armageddon|Fourth Edition||R|{3}{W}|Sorcery||| +Balance|Fourth Edition||R|{1}{W}|Sorcery||| +Benalish Hero|Fourth Edition||C|{W}|Creature — Human Soldier|1|1| +Black Ward|Fourth Edition||U|{W}|Enchantment — Aura||| +Blessing|Fourth Edition||R|{W}{W}|Enchantment — Aura||| +Blue Ward|Fourth Edition||U|{W}|Enchantment — Aura||| +Brainwash|Fourth Edition||C|{W}|Enchantment — Aura||| +Castle|Fourth Edition||U|{3}{W}|Enchantment||| +Circle of Protection: Artifacts|Fourth Edition||U|{1}{W}|Enchantment||| +Circle of Protection: Black|Fourth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Fourth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Fourth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Fourth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: White|Fourth Edition||C|{1}{W}|Enchantment||| +Conversion|Fourth Edition||U|{2}{W}{W}|Enchantment||| +Crusade|Fourth Edition||R|{W}{W}|Enchantment||| +Death Ward|Fourth Edition||C|{W}|Instant||| +Disenchant|Fourth Edition||C|{1}{W}|Instant||| +Divine Transformation|Fourth Edition||U|{2}{W}{W}|Enchantment — Aura||| +Elder Land Wurm|Fourth Edition||R|{4}{W}{W}{W}|Creature — Dragon Wurm|5|5| +Eye for an Eye|Fourth Edition||R|{W}{W}|Instant||| +Fortified Area|Fourth Edition||C|{1}{W}{W}|Enchantment||| +Green Ward|Fourth Edition||U|{W}|Enchantment — Aura||| +Healing Salve|Fourth Edition||C|{W}|Instant||| +Holy Armor|Fourth Edition||C|{W}|Enchantment — Aura||| +Holy Strength|Fourth Edition||C|{W}|Enchantment — Aura||| +Island Sanctuary|Fourth Edition||R|{1}{W}|Enchantment||| +Karma|Fourth Edition||U|{2}{W}{W}|Enchantment||| +Kismet|Fourth Edition||U|{3}{W}|Enchantment||| +Land Tax|Fourth Edition||R|{W}|Enchantment||| +Mesa Pegasus|Fourth Edition||C|{1}{W}|Creature — Pegasus|1|1| +Morale|Fourth Edition||C|{1}{W}{W}|Instant||| +Northern Paladin|Fourth Edition||R|{2}{W}{W}|Creature — Human Knight|3|3| +Osai Vultures|Fourth Edition||U|{1}{W}|Creature — Bird|1|1| +Pearled Unicorn|Fourth Edition||C|{2}{W}|Creature — Unicorn|2|2| +Personal Incarnation|Fourth Edition||R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Piety|Fourth Edition||C|{2}{W}|Instant||| +Pikemen|Fourth Edition||C|{1}{W}|Creature — Human Soldier|1|1| +Purelace|Fourth Edition||R|{W}|Instant||| +Red Ward|Fourth Edition||U|{W}|Enchantment — Aura||| +Reverse Damage|Fourth Edition||R|{1}{W}{W}|Instant||| +Righteousness|Fourth Edition||R|{W}|Instant||| +Samite Healer|Fourth Edition||C|{1}{W}|Creature — Human Cleric|1|1| +Savannah Lions|Fourth Edition||R|{W}|Creature — Cat|2|1| +Seeker|Fourth Edition||C|{2}{W}{W}|Enchantment — Aura||| +Serra Angel|Fourth Edition||U|{3}{W}{W}|Creature — Angel|4|4| +Spirit Link|Fourth Edition||U|{W}|Enchantment — Aura||| +Swords to Plowshares|Fourth Edition||U|{W}|Instant||| +Tundra Wolves|Fourth Edition||C|{W}|Creature — Wolf|1|1| +Visions|Fourth Edition||U|{W}|Sorcery||| +Wall of Swords|Fourth Edition||U|{3}{W}|Creature — Wall|3|5| +White Knight|Fourth Edition||U|{W}{W}|Creature — Human Knight|2|2| +White Ward|Fourth Edition||U|{W}|Enchantment — Aura||| +Wrath of God|Fourth Edition||R|{2}{W}{W}|Sorcery||| +Swamp|Fourth Edition||L||Basic Land — Swamp||| +Swamp|Fourth Edition||L||Basic Land — Swamp||| +Swamp|Fourth Edition||L||Basic Land — Swamp||| +Forest|Fourth Edition||L||Basic Land — Forest||| +Forest|Fourth Edition||L||Basic Land — Forest||| +Forest|Fourth Edition||L||Basic Land — Forest||| +Strip Mine|Fourth Edition||U||Land||| +Mountain|Fourth Edition||L||Basic Land — Mountain||| +Mountain|Fourth Edition||L||Basic Land — Mountain||| +Mountain|Fourth Edition||L||Basic Land — Mountain||| +Plains|Fourth Edition||L||Basic Land — Plains||| +Plains|Fourth Edition||L||Basic Land — Plains||| +Plains|Fourth Edition||L||Basic Land — Plains||| +Mishra's Factory|Fourth Edition||U||Land||| +Oasis|Fourth Edition||U||Land||| +Island|Fourth Edition||L||Basic Land — Island||| +Island|Fourth Edition||L||Basic Land — Island||| +Island|Fourth Edition||L||Basic Land — Island||| +Adarkar Sentinel|Ice Age||U|{5}|Artifact Creature — Soldier|3|3| +Aegis of the Meek|Ice Age||R|{3}|Artifact||| +Amulet of Quoz|Ice Age||R|{6}|Artifact||| +Arcum's Sleigh|Ice Age||U|{1}|Artifact||| +Arcum's Weathervane|Ice Age||U|{2}|Artifact||| +Arcum's Whistle|Ice Age||U|{3}|Artifact||| +Barbed Sextant|Ice Age||C|{1}|Artifact||| +Baton of Morale|Ice Age||U|{2}|Artifact||| +Celestial Sword|Ice Age||R|{6}|Artifact||| +Crown of the Ages|Ice Age||R|{2}|Artifact||| +Despotic Scepter|Ice Age||R|{1}|Artifact||| +Elkin Bottle|Ice Age||R|{3}|Artifact||| +Fyndhorn Bow|Ice Age||U|{2}|Artifact||| +Goblin Lyre|Ice Age||R|{3}|Artifact||| +Hematite Talisman|Ice Age||U|{2}|Artifact||| +Ice Cauldron|Ice Age||R|{4}|Artifact||| +Icy Manipulator|Ice Age||U|{4}|Artifact||| +Infinite Hourglass|Ice Age||R|{4}|Artifact||| +Jester's Cap|Ice Age||R|{4}|Artifact||| +Jester's Mask|Ice Age||R|{5}|Artifact||| +Jeweled Amulet|Ice Age||U|{0}|Artifact||| +Lapis Lazuli Talisman|Ice Age||U|{2}|Artifact||| +Malachite Talisman|Ice Age||U|{2}|Artifact||| +Nacre Talisman|Ice Age||U|{2}|Artifact||| +Naked Singularity|Ice Age||R|{5}|Artifact||| +Onyx Talisman|Ice Age||U|{2}|Artifact||| +Pentagram of the Ages|Ice Age||R|{4}|Artifact||| +Pit Trap|Ice Age||U|{2}|Artifact||| +Runed Arch|Ice Age||R|{3}|Artifact||| +Shield of the Ages|Ice Age||U|{2}|Artifact||| +Skull Catapult|Ice Age||U|{4}|Artifact||| +Snow Fortress|Ice Age||R|{5}|Artifact Creature — Wall|0|4| +Soldevi Golem|Ice Age||R|{4}|Artifact Creature — Golem|5|3| +Soldevi Simulacrum|Ice Age||U|{4}|Artifact Creature — Soldier|2|4| +Staff of the Ages|Ice Age||R|{3}|Artifact||| +Sunstone|Ice Age||U|{3}|Artifact||| +Time Bomb|Ice Age||R|{4}|Artifact||| +Urza's Bauble|Ice Age||U|{0}|Artifact||| +Vexing Arcanix|Ice Age||R|{4}|Artifact||| +Vibrating Sphere|Ice Age||R|{4}|Artifact||| +Walking Wall|Ice Age||U|{4}|Artifact Creature — Wall|0|6| +Wall of Shields|Ice Age||U|{3}|Artifact Creature — Wall|0|4| +War Chariot|Ice Age||U|{3}|Artifact||| +Whalebone Glider|Ice Age||U|{2}|Artifact||| +Zuran Orb|Ice Age||U|{0}|Artifact||| +Abyssal Specter|Ice Age||U|{2}{B}{B}|Creature — Specter|2|3| +Ashen Ghoul|Ice Age||U|{3}{B}|Creature — Zombie|3|1| +Brine Shaman|Ice Age||C|{1}{B}|Creature — Human Cleric Shaman|1|1| +Burnt Offering|Ice Age||C|{B}|Instant||| +Cloak of Confusion|Ice Age||C|{1}{B}|Enchantment — Aura||| +Dance of the Dead|Ice Age||U|{1}{B}|Enchantment — Aura||| +Dark Banishing|Ice Age||C|{2}{B}|Instant||| +Dark Ritual|Ice Age||C|{B}|Instant||| +Demonic Consultation|Ice Age||U|{B}|Instant||| +Dread Wight|Ice Age||R|{3}{B}{B}|Creature — Zombie|3|4| +Drift of the Dead|Ice Age||U|{3}{B}|Creature — Wall|*|*| +Fear|Ice Age||C|{B}{B}|Enchantment — Aura||| +Flow of Maggots|Ice Age||R|{2}{B}|Creature — Insect|2|2| +Foul Familiar|Ice Age||C|{2}{B}|Creature — Spirit|3|1| +Gangrenous Zombies|Ice Age||C|{1}{B}{B}|Creature — Zombie|2|2| +Gaze of Pain|Ice Age||C|{1}{B}|Sorcery||| +Gravebind|Ice Age||R|{B}|Instant||| +Hecatomb|Ice Age||R|{1}{B}{B}|Enchantment||| +Hoar Shade|Ice Age||C|{3}{B}|Creature — Shade|1|2| +Howl from Beyond|Ice Age||C|{X}{B}|Instant||| +Hyalopterous Lemure|Ice Age||U|{4}{B}|Creature — Spirit|4|3| +Icequake|Ice Age||U|{1}{B}{B}|Sorcery||| +Infernal Darkness|Ice Age||R|{2}{B}{B}|Enchantment||| +Infernal Denizen|Ice Age||R|{7}{B}|Creature — Demon|5|7| +Kjeldoran Dead|Ice Age||C|{B}|Creature — Skeleton|3|1| +Knight of Stromgald|Ice Age||U|{B}{B}|Creature — Human Knight|2|1| +Krovikan Elementalist|Ice Age||U|{B}{B}|Creature — Human Wizard|1|1| +Krovikan Fetish|Ice Age||C|{2}{B}|Enchantment — Aura||| +Krovikan Vampire|Ice Age||U|{3}{B}{B}|Creature — Vampire|3|3| +Legions of Lim-Dϋl|Ice Age||C|{1}{B}{B}|Creature — Zombie|2|3| +Leshrac's Rite|Ice Age||U|{B}|Enchantment — Aura||| +Leshrac's Sigil|Ice Age||U|{B}{B}|Enchantment||| +Lim-Dϋl's Cohort|Ice Age||C|{1}{B}{B}|Creature — Zombie|2|3| +Lim-Dϋl's Hex|Ice Age||U|{1}{B}|Enchantment||| +Mind Ravel|Ice Age||C|{2}{B}|Sorcery||| +Mind Warp|Ice Age||U|{X}{3}{B}|Sorcery||| +Mind Whip|Ice Age||R|{2}{B}{B}|Enchantment — Aura||| +Minion of Leshrac|Ice Age||R|{4}{B}{B}{B}|Creature — Demon Minion|5|5| +Minion of Tevesh Szat|Ice Age||R|{4}{B}{B}{B}|Creature — Demon Minion|4|4| +Mole Worms|Ice Age||U|{2}{B}|Creature — Worm|1|1| +Moor Fiend|Ice Age||C|{3}{B}|Creature — Horror|3|3| +Necropotence|Ice Age||R|{B}{B}{B}|Enchantment||| +Norritt|Ice Age||C|{3}{B}|Creature — Imp|1|1| +Oath of Lim-Dϋl|Ice Age||R|{3}{B}|Enchantment||| +Pestilence Rats|Ice Age||C|{2}{B}|Creature — Rat|*|3| +Pox|Ice Age||R|{B}{B}{B}|Sorcery||| +Seizures|Ice Age||C|{1}{B}|Enchantment — Aura||| +Songs of the Damned|Ice Age||C|{B}|Instant||| +Soul Burn|Ice Age||C|{X}{2}{B}|Sorcery||| +Soul Kiss|Ice Age||C|{2}{B}|Enchantment — Aura||| +Spoils of Evil|Ice Age||R|{2}{B}|Instant||| +Spoils of War|Ice Age||R|{X}{B}|Sorcery||| +Stench of Evil|Ice Age||U|{2}{B}{B}|Sorcery||| +Stromgald Cabal|Ice Age||R|{1}{B}{B}|Creature — Human Knight|2|2| +Touch of Death|Ice Age||C|{2}{B}|Sorcery||| +Withering Wisps|Ice Age||U|{1}{B}{B}|Enchantment||| +Arnjlot's Ascent|Ice Age||C|{1}{U}{U}|Enchantment||| +Balduvian Conjurer|Ice Age||U|{1}{U}|Creature — Human Wizard|0|2| +Balduvian Shaman|Ice Age||C|{U}|Creature — Human Cleric Shaman|1|1| +Binding Grasp|Ice Age||U|{3}{U}|Enchantment — Aura||| +Brainstorm|Ice Age||C|{U}|Instant||| +Breath of Dreams|Ice Age||U|{2}{U}{U}|Enchantment||| +Clairvoyance|Ice Age||C|{U}|Instant||| +Counterspell|Ice Age||C|{U}{U}|Instant||| +Deflection|Ice Age||R|{3}{U}|Instant||| +Dreams of the Dead|Ice Age||U|{3}{U}|Enchantment||| +Enervate|Ice Age||C|{1}{U}|Instant||| +Errant Minion|Ice Age||C|{2}{U}|Enchantment — Aura||| +Essence Flare|Ice Age||C|{U}|Enchantment — Aura||| +Force Void|Ice Age||U|{2}{U}|Instant||| +Glacial Wall|Ice Age||U|{2}{U}|Creature — Wall|0|7| +Hydroblast|Ice Age||C|{U}|Instant||| +Iceberg|Ice Age||U|{X}{U}{U}|Enchantment||| +Icy Prison|Ice Age||R|{U}{U}|Enchantment||| +Illusionary Forces|Ice Age||C|{3}{U}|Creature — Illusion|4|4| +Illusionary Presence|Ice Age||R|{1}{U}{U}|Creature — Illusion|2|2| +Illusionary Terrain|Ice Age||U|{U}{U}|Enchantment||| +Illusionary Wall|Ice Age||C|{4}{U}|Creature — Illusion Wall|7|4| +Illusions of Grandeur|Ice Age||R|{3}{U}|Enchantment||| +Infuse|Ice Age||C|{2}{U}|Instant||| +Krovikan Sorcerer|Ice Age||C|{2}{U}|Creature — Human Wizard|1|1| +Magus of the Unseen|Ice Age||R|{1}{U}|Creature — Human Wizard|1|1| +Mesmeric Trance|Ice Age||R|{1}{U}{U}|Enchantment||| +Mistfolk|Ice Age||C|{U}{U}|Creature — Illusion|1|2| +Musician|Ice Age||R|{2}{U}|Creature — Human Wizard|1|3| +Mystic Might|Ice Age||R|{U}|Enchantment — Aura||| +Mystic Remora|Ice Age||C|{U}|Enchantment||| +Phantasmal Mount|Ice Age||U|{1}{U}|Creature — Illusion Horse|1|1| +Polar Kraken|Ice Age||R|{8}{U}{U}{U}|Creature — Kraken|11|11| +Portent|Ice Age||C|{U}|Sorcery||| +Power Sink|Ice Age||C|{X}{U}|Instant||| +Ray of Command|Ice Age||C|{3}{U}|Instant||| +Ray of Erasure|Ice Age||C|{U}|Instant||| +Reality Twist|Ice Age||R|{U}{U}{U}|Enchantment||| +Sea Spirit|Ice Age||U|{4}{U}|Creature — Elemental Spirit|2|3| +Shyft|Ice Age||R|{4}{U}|Creature — Shapeshifter|4|2| +Sibilant Spirit|Ice Age||R|{5}{U}|Creature — Spirit|5|6| +Silver Erne|Ice Age||U|{3}{U}|Creature — Bird|2|2| +Sleight of Mind|Ice Age||U|{U}|Instant||| +Snow Devil|Ice Age||C|{1}{U}|Enchantment — Aura||| +Snowfall|Ice Age||C|{2}{U}|Enchantment||| +Soldevi Machinist|Ice Age||U|{1}{U}|Creature — Human Wizard Artificer|1|1| +Soul Barrier|Ice Age||U|{2}{U}|Enchantment||| +Thunder Wall|Ice Age||U|{1}{U}{U}|Creature — Wall|0|2| +Updraft|Ice Age||U|{1}{U}|Instant||| +Wind Spirit|Ice Age||U|{4}{U}|Creature — Elemental Spirit|3|2| +Winter's Chill|Ice Age||R|{X}{U}|Instant||| +Word of Undoing|Ice Age||C|{U}|Instant||| +Wrath of Marit Lage|Ice Age||R|{3}{U}{U}|Enchantment||| +Zur's Weirding|Ice Age||R|{3}{U}|Enchantment||| +Zuran Enchanter|Ice Age||C|{1}{U}|Creature — Human Wizard|1|1| +Zuran Spellcaster|Ice Age||C|{2}{U}|Creature — Human Wizard|1|1| +Aurochs|Ice Age||C|{3}{G}|Creature — Aurochs|2|3| +Balduvian Bears|Ice Age||C|{1}{G}|Creature — Bear|2|2| +Blizzard|Ice Age||R|{G}{G}|Enchantment||| +Brown Ouphe|Ice Age||C|{G}|Creature — Ouphe|1|1| +Chub Toad|Ice Age||C|{2}{G}|Creature — Frog|1|1| +Dire Wolves|Ice Age||C|{2}{G}|Creature — Wolf|2|2| +Earthlore|Ice Age||C|{G}|Enchantment — Aura||| +Elder Druid|Ice Age||R|{3}{G}|Creature — Elf Cleric Druid|2|2| +Essence Filter|Ice Age||C|{1}{G}{G}|Sorcery||| +Fanatical Fever|Ice Age||U|{2}{G}{G}|Instant||| +Folk of the Pines|Ice Age||C|{4}{G}|Creature — Dryad|2|5| +Forbidden Lore|Ice Age||R|{2}{G}|Enchantment — Aura||| +Forgotten Lore|Ice Age||U|{G}|Sorcery||| +Foxfire|Ice Age||C|{2}{G}|Instant||| +Freyalise Supplicant|Ice Age||U|{1}{G}|Creature — Human Cleric|1|1| +Freyalise's Charm|Ice Age||U|{G}{G}|Enchantment||| +Freyalise's Winds|Ice Age||R|{2}{G}{G}|Enchantment||| +Fyndhorn Brownie|Ice Age||C|{2}{G}|Creature — Ouphe|1|1| +Fyndhorn Elder|Ice Age||U|{2}{G}|Creature — Elf Druid|1|1| +Fyndhorn Elves|Ice Age||C|{G}|Creature — Elf Druid|1|1| +Fyndhorn Pollen|Ice Age||R|{2}{G}|Enchantment||| +Giant Growth|Ice Age||C|{G}|Instant||| +Gorilla Pack|Ice Age||C|{2}{G}|Creature — Ape|3|3| +Hot Springs|Ice Age||R|{1}{G}|Enchantment — Aura||| +Hurricane|Ice Age||U|{X}{G}|Sorcery||| +Johtull Wurm|Ice Age||U|{5}{G}|Creature — Wurm|6|6| +Juniper Order Druid|Ice Age||C|{2}{G}|Creature — Human Cleric Druid|1|1| +Lhurgoyf|Ice Age||R|{2}{G}{G}|Creature — Lhurgoyf|*|1+*| +Lure|Ice Age||U|{1}{G}{G}|Enchantment — Aura||| +Maddening Wind|Ice Age||U|{2}{G}|Enchantment — Aura||| +Nature's Lore|Ice Age||U|{1}{G}|Sorcery||| +Pale Bears|Ice Age||R|{2}{G}|Creature — Bear|2|2| +Pygmy Allosaurus|Ice Age||R|{2}{G}|Creature — Lizard|2|2| +Pyknite|Ice Age||C|{2}{G}|Creature — Ouphe|1|1| +Regeneration|Ice Age||C|{1}{G}|Enchantment — Aura||| +Rime Dryad|Ice Age||C|{G}|Creature — Dryad|1|2| +Ritual of Subdual|Ice Age||R|{4}{G}{G}|Enchantment||| +Scaled Wurm|Ice Age||C|{7}{G}|Creature — Wurm|7|6| +Shambling Strider|Ice Age||C|{4}{G}{G}|Creature — Yeti|5|5| +Snowblind|Ice Age||R|{3}{G}|Enchantment — Aura||| +Stampede|Ice Age||R|{1}{G}{G}|Instant||| +Stunted Growth|Ice Age||R|{3}{G}{G}|Sorcery||| +Tarpan|Ice Age||C|{G}|Creature — Horse|1|1| +Thermokarst|Ice Age||U|{1}{G}{G}|Sorcery||| +Thoughtleech|Ice Age||U|{G}{G}|Enchantment||| +Tinder Wall|Ice Age||C|{G}|Creature — Plant Wall|0|3| +Touch of Vitae|Ice Age||U|{2}{G}|Instant||| +Trailblazer|Ice Age||R|{2}{G}{G}|Instant||| +Venomous Breath|Ice Age||U|{3}{G}|Instant||| +Wall of Pine Needles|Ice Age||U|{3}{G}|Creature — Plant Wall|3|3| +Whiteout|Ice Age||U|{1}{G}|Instant||| +Wiitigo|Ice Age||R|{3}{G}{G}{G}|Creature — Yeti|0|0| +Wild Growth|Ice Age||C|{G}|Enchantment — Aura||| +Woolly Mammoths|Ice Age||C|{1}{G}{G}|Creature — Elephant|3|2| +Woolly Spider|Ice Age||C|{1}{G}{G}|Creature — Spider|2|3| +Yavimaya Gnats|Ice Age||U|{2}{G}|Creature — Insect|0|1| +Aggression|Ice Age||U|{2}{R}|Enchantment — Aura||| +Anarchy|Ice Age||U|{2}{R}{R}|Sorcery||| +Avalanche|Ice Age||U|{X}{2}{R}{R}|Sorcery||| +Balduvian Barbarians|Ice Age||C|{1}{R}{R}|Creature — Human Barbarian|3|2| +Balduvian Hydra|Ice Age||R|{X}{R}{R}|Creature — Hydra|0|1| +Barbarian Guides|Ice Age||C|{2}{R}|Creature — Human Barbarian|1|2| +Battle Frenzy|Ice Age||C|{2}{R}|Instant||| +Bone Shaman|Ice Age||C|{2}{R}{R}|Creature — Giant Shaman|3|3| +Brand of Ill Omen|Ice Age||R|{3}{R}|Enchantment — Aura||| +Chaos Lord|Ice Age||R|{4}{R}{R}{R}|Creature — Human|7|7| +Chaos Moon|Ice Age||R|{3}{R}|Enchantment||| +Conquer|Ice Age||U|{3}{R}{R}|Enchantment — Aura||| +Curse of Marit Lage|Ice Age||R|{3}{R}{R}|Enchantment||| +Dwarven Armory|Ice Age||R|{2}{R}{R}|Enchantment||| +Errantry|Ice Age||C|{1}{R}|Enchantment — Aura||| +Flame Spirit|Ice Age||U|{4}{R}|Creature — Elemental Spirit|2|3| +Flare|Ice Age||C|{2}{R}|Instant||| +Game of Chaos|Ice Age||R|{R}{R}{R}|Sorcery||| +Glacial Crevasses|Ice Age||R|{2}{R}|Enchantment||| +Goblin Mutant|Ice Age||U|{2}{R}{R}|Creature — Goblin Mutant|5|3| +Goblin Sappers|Ice Age||C|{1}{R}|Creature — Goblin|1|1| +Goblin Ski Patrol|Ice Age||C|{1}{R}|Creature — Goblin|1|1| +Goblin Snowman|Ice Age||U|{3}{R}|Creature — Goblin|1|1| +Grizzled Wolverine|Ice Age||C|{1}{R}{R}|Creature — Wolverine|2|2| +Imposing Visage|Ice Age||C|{R}|Enchantment — Aura||| +Incinerate|Ice Age||C|{1}{R}|Instant||| +Jokulhaups|Ice Age||R|{4}{R}{R}|Sorcery||| +Karplusan Giant|Ice Age||U|{6}{R}|Creature — Giant|3|3| +Karplusan Yeti|Ice Age||R|{3}{R}{R}|Creature — Yeti|3|3| +Lava Burst|Ice Age||C|{X}{R}|Sorcery||| +Mαrton Stromgald|Ice Age||R|{2}{R}{R}|Legendary Creature — Human Knight|1|1| +Melee|Ice Age||U|{4}{R}|Instant||| +Melting|Ice Age||U|{3}{R}|Enchantment||| +Meteor Shower|Ice Age||C|{X}{X}{R}|Sorcery||| +Mountain Goat|Ice Age||C|{R}|Creature — Goat|1|1| +Mudslide|Ice Age||R|{2}{R}|Enchantment||| +Orcish Cannoneers|Ice Age||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Conscripts|Ice Age||C|{R}|Creature — Orc|2|2| +Orcish Farmer|Ice Age||C|{1}{R}{R}|Creature — Orc|2|2| +Orcish Healer|Ice Age||U|{R}{R}|Creature — Orc Cleric|1|1| +Orcish Librarian|Ice Age||R|{1}{R}|Creature — Orc|1|1| +Orcish Lumberjack|Ice Age||C|{R}|Creature — Orc|1|1| +Orcish Squatters|Ice Age||R|{4}{R}|Creature — Orc|2|3| +Panic|Ice Age||C|{R}|Instant||| +Pyroblast|Ice Age||C|{R}|Instant||| +Pyroclasm|Ice Age||U|{1}{R}|Sorcery||| +Sabretooth Tiger|Ice Age||C|{2}{R}|Creature — Cat|2|1| +Shatter|Ice Age||C|{1}{R}|Instant||| +Stone Rain|Ice Age||C|{2}{R}|Sorcery||| +Stone Spirit|Ice Age||U|{4}{R}|Creature — Elemental Spirit|4|3| +Stonehands|Ice Age||C|{2}{R}|Enchantment — Aura||| +Tor Giant|Ice Age||C|{3}{R}|Creature — Giant|3|3| +Total War|Ice Age||R|{3}{R}|Enchantment||| +Vertigo|Ice Age||U|{R}|Instant||| +Wall of Lava|Ice Age||U|{1}{R}{R}|Creature — Wall|1|3| +Word of Blasting|Ice Age||U|{1}{R}|Instant||| +Adarkar Unicorn|Ice Age||C|{1}{W}{W}|Creature — Unicorn|2|2| +Arctic Foxes|Ice Age||C|{1}{W}|Creature — Fox|1|1| +Arenson's Aura|Ice Age||C|{2}{W}|Enchantment||| +Armor of Faith|Ice Age||C|{W}|Enchantment — Aura||| +Battle Cry|Ice Age||U|{2}{W}|Instant||| +Black Scarab|Ice Age||U|{W}|Enchantment — Aura||| +Blessed Wine|Ice Age||C|{1}{W}|Instant||| +Blinking Spirit|Ice Age||R|{3}{W}|Creature — Spirit|2|2| +Blue Scarab|Ice Age||U|{W}|Enchantment — Aura||| +Call to Arms|Ice Age||R|{1}{W}|Enchantment||| +Caribou Range|Ice Age||R|{2}{W}{W}|Enchantment — Aura||| +Circle of Protection: Black|Ice Age||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Ice Age||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Ice Age||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Ice Age||C|{1}{W}|Enchantment||| +Circle of Protection: White|Ice Age||C|{1}{W}|Enchantment||| +Cold Snap|Ice Age||U|{2}{W}|Enchantment||| +Cooperation|Ice Age||C|{2}{W}|Enchantment — Aura||| +Death Ward|Ice Age||C|{W}|Instant||| +Disenchant|Ice Age||C|{1}{W}|Instant||| +Drought|Ice Age||U|{2}{W}{W}|Enchantment||| +Elvish Healer|Ice Age||C|{2}{W}|Creature — Elf Cleric|1|2| +Enduring Renewal|Ice Age||R|{2}{W}{W}|Enchantment||| +Energy Storm|Ice Age||R|{1}{W}|Enchantment||| +Formation|Ice Age||R|{1}{W}|Instant||| +Fylgja|Ice Age||C|{W}|Enchantment — Aura||| +General Jarkeld|Ice Age||R|{3}{W}|Legendary Creature — Human Soldier|1|2| +Green Scarab|Ice Age||U|{W}|Enchantment — Aura||| +Hallowed Ground|Ice Age||U|{1}{W}|Enchantment||| +Heal|Ice Age||C|{W}|Instant||| +Hipparion|Ice Age||U|{1}{W}|Creature — Horse|1|3| +Justice|Ice Age||U|{2}{W}{W}|Enchantment||| +Kelsinko Ranger|Ice Age||C|{W}|Creature — Human|1|1| +Kjeldoran Elite Guard|Ice Age||U|{3}{W}|Creature — Human Soldier|2|2| +Kjeldoran Guard|Ice Age||C|{1}{W}|Creature — Human Soldier|1|1| +Kjeldoran Knight|Ice Age||R|{W}{W}|Creature — Human Knight|1|1| +Kjeldoran Phalanx|Ice Age||R|{5}{W}|Creature — Human Soldier|2|5| +Kjeldoran Royal Guard|Ice Age||R|{3}{W}{W}|Creature — Human Soldier|2|5| +Kjeldoran Skycaptain|Ice Age||U|{4}{W}|Creature — Human Soldier|2|2| +Kjeldoran Skyknight|Ice Age||C|{2}{W}|Creature — Human Knight|1|1| +Kjeldoran Warrior|Ice Age||C|{W}|Creature — Human Warrior|1|1| +Lightning Blow|Ice Age||R|{1}{W}|Instant||| +Lost Order of Jarkeld|Ice Age||R|{2}{W}{W}|Creature — Human Knight|1+*|1+*| +Mercenaries|Ice Age||R|{3}{W}|Creature — Human Mercenary|3|3| +Order of the Sacred Torch|Ice Age||R|{1}{W}{W}|Creature — Human Knight|2|2| +Order of the White Shield|Ice Age||U|{W}{W}|Creature — Human Knight|2|1| +Prismatic Ward|Ice Age||C|{1}{W}|Enchantment — Aura||| +Rally|Ice Age||C|{W}{W}|Instant||| +Red Scarab|Ice Age||U|{W}|Enchantment — Aura||| +Sacred Boon|Ice Age||U|{1}{W}|Instant||| +Seraph|Ice Age||R|{6}{W}|Creature — Angel|4|4| +Shield Bearer|Ice Age||C|{1}{W}|Creature — Human Soldier|0|3| +Snow Hound|Ice Age||U|{2}{W}|Creature — Hound|1|1| +Swords to Plowshares|Ice Age||U|{W}|Instant||| +Warning|Ice Age||C|{W}|Instant||| +White Scarab|Ice Age||U|{W}|Enchantment — Aura||| +Altar of Bone|Ice Age||R|{G}{W}|Sorcery||| +Centaur Archer|Ice Age||U|{1}{R}{G}|Creature — Centaur Archer|3|2| +Chromatic Armor|Ice Age||R|{1}{W}{U}|Enchantment — Aura||| +Diabolic Vision|Ice Age||U|{U}{B}|Sorcery||| +Earthlink|Ice Age||R|{3}{B}{R}{G}|Enchantment||| +Elemental Augury|Ice Age||R|{U}{B}{R}|Enchantment||| +Essence Vortex|Ice Age||U|{1}{U}{B}|Instant||| +Fiery Justice|Ice Age||R|{R}{G}{W}|Sorcery||| +Fire Covenant|Ice Age||U|{1}{B}{R}|Instant||| +Flooded Woodlands|Ice Age||R|{2}{U}{B}|Enchantment||| +Fumarole|Ice Age||U|{3}{B}{R}|Sorcery||| +Ghostly Flame|Ice Age||R|{B}{R}|Enchantment||| +Giant Trap Door Spider|Ice Age||U|{1}{R}{G}|Creature — Spider|2|3| +Glaciers|Ice Age||R|{2}{W}{U}|Enchantment||| +Hymn of Rebirth|Ice Age||U|{3}{G}{W}|Sorcery||| +Kjeldoran Frostbeast|Ice Age||U|{3}{G}{W}|Creature — Elemental Beast|2|4| +Merieke Ri Berit|Ice Age||R|{W}{U}{B}|Legendary Creature — Human|1|1| +Monsoon|Ice Age||R|{2}{R}{G}|Enchantment||| +Mountain Titan|Ice Age||R|{2}{B}{R}|Creature — Giant|2|2| +Reclamation|Ice Age||R|{2}{G}{W}|Enchantment||| +Skeleton Ship|Ice Age||R|{3}{U}{B}|Legendary Creature — Skeleton|0|3| +Spectral Shield|Ice Age||U|{1}{W}{U}|Enchantment — Aura||| +Storm Spirit|Ice Age||R|{3}{G}{W}{U}|Creature — Elemental Spirit|3|3| +Stormbind|Ice Age||R|{1}{R}{G}|Enchantment||| +Wings of Aesthir|Ice Age||U|{W}{U}|Enchantment — Aura||| +Snow-Covered Swamp|Ice Age||L||Basic Snow Land — Swamp||| +Swamp|Ice Age||L||Basic Land — Swamp||| +Swamp|Ice Age||L||Basic Land — Swamp||| +Swamp|Ice Age||L||Basic Land — Swamp||| +Forest|Ice Age||L||Basic Land — Forest||| +Forest|Ice Age||L||Basic Land — Forest||| +Forest|Ice Age||L||Basic Land — Forest||| +Snow-Covered Forest|Ice Age||L||Basic Snow Land — Forest||| +Adarkar Wastes|Ice Age||R||Land||| +Brushland|Ice Age||R||Land||| +Glacial Chasm|Ice Age||U||Land||| +Halls of Mist|Ice Age||R||Land||| +Ice Floe|Ice Age||U||Land||| +Karplusan Forest|Ice Age||R||Land||| +Land Cap|Ice Age||R||Land||| +Lava Tubes|Ice Age||R||Land||| +River Delta|Ice Age||R||Land||| +Sulfurous Springs|Ice Age||R||Land||| +Timberline Ridge|Ice Age||R||Land||| +Underground River|Ice Age||R||Land||| +Veldt|Ice Age||R||Land||| +Mountain|Ice Age||L||Basic Land — Mountain||| +Mountain|Ice Age||L||Basic Land — Mountain||| +Mountain|Ice Age||L||Basic Land — Mountain||| +Snow-Covered Mountain|Ice Age||L||Basic Snow Land — Mountain||| +Island|Ice Age||L||Basic Land — Island||| +Island|Ice Age||L||Basic Land — Island||| +Island|Ice Age||L||Basic Land — Island||| +Snow-Covered Island|Ice Age||L||Basic Snow Land — Island||| +Plains|Ice Age||L||Basic Land — Plains||| +Plains|Ice Age||L||Basic Land — Plains||| +Plains|Ice Age||L||Basic Land — Plains||| +Snow-Covered Plains|Ice Age||L||Basic Snow Land — Plains||| +Arena of the Ancients|Chronicles||R|{3}|Artifact||| +Ashnod's Altar|Chronicles||C|{3}|Artifact||| +Ashnod's Transmogrant|Chronicles||C|{1}|Artifact||| +Barl's Cage|Chronicles||R|{4}|Artifact||| +Book of Rass|Chronicles||R|{6}|Artifact||| +Bronze Horse|Chronicles||R|{7}|Artifact Creature — Horse|4|4| +Feldon's Cane|Chronicles||C|{1}|Artifact||| +Fountain of Youth|Chronicles||C|{0}|Artifact||| +Gauntlets of Chaos|Chronicles||R|{5}|Artifact||| +Horn of Deafening|Chronicles||R|{4}|Artifact||| +Jalum Tome|Chronicles||R|{3}|Artifact||| +Jeweled Bird|Chronicles||R|{1}|Artifact||| +Living Armor|Chronicles||C|{4}|Artifact||| +Obelisk of Undoing|Chronicles||R|{1}|Artifact||| +Rakalite|Chronicles||R|{6}|Artifact||| +Runesword|Chronicles||C|{6}|Artifact||| +Sentinel|Chronicles||R|{4}|Artifact Creature — Shapeshifter|1|1| +Serpent Generator|Chronicles||R|{6}|Artifact||| +Tormod's Crypt|Chronicles||C|{0}|Artifact||| +Triassic Egg|Chronicles||R|{4}|Artifact||| +Voodoo Doll|Chronicles||R|{6}|Artifact||| +Azure Drake|Chronicles||U|{3}{U}|Creature — Drake|2|4| +Banshee|Chronicles||U|{2}{B}{B}|Creature — Spirit|0|1| +Bog Rats|Chronicles||C|{B}|Creature — Rat|1|1| +Boomerang|Chronicles||C|{U}{U}|Instant||| +Cuombajj Witches|Chronicles||C|{B}{B}|Creature — Human Wizard|1|3| +Dance of Many|Chronicles||R|{U}{U}|Enchantment||| +Dandβn|Chronicles||C|{U}{U}|Creature — Fish|4|1| +Enchantment Alteration|Chronicles||U|{U}|Instant||| +Fallen Angel|Chronicles||U|{3}{B}{B}|Creature — Angel|3|3| +Fishliver Oil|Chronicles||C|{1}{U}|Enchantment — Aura||| +Flash Flood|Chronicles||C|{U}|Instant||| +Giant Slug|Chronicles||C|{1}{B}|Creature — Slug|1|1| +Hasran Ogress|Chronicles||C|{B}{B}|Creature — Ogre|3|2| +Hell's Caretaker|Chronicles||R|{3}{B}|Creature — Horror|1|1| +Juxtapose|Chronicles||R|{3}{U}|Sorcery||| +Puppet Master|Chronicles||U|{U}{U}{U}|Enchantment — Aura||| +Recall|Chronicles||U|{X}{X}{U}|Sorcery||| +Remove Soul|Chronicles||C|{1}{U}|Instant||| +Shimian Night Stalker|Chronicles||U|{3}{B}{B}|Creature — Nightstalker|4|4| +Takklemaggot|Chronicles||U|{2}{B}{B}|Enchantment — Aura||| +Teleport|Chronicles||R|{U}{U}{U}|Instant||| +The Fallen|Chronicles||U|{1}{B}{B}{B}|Creature — Zombie|2|3| +The Wretched|Chronicles||R|{3}{B}{B}|Creature — Demon|2|5| +Transmutation|Chronicles||C|{1}{B}|Instant||| +Wall of Shadows|Chronicles||C|{1}{B}{B}|Creature — Wall|0|1| +Wall of Vapor|Chronicles||C|{3}{U}|Creature — Wall|0|1| +Wall of Wonder|Chronicles||U|{2}{U}{U}|Creature — Wall|1|5| +Yawgmoth Demon|Chronicles||R|{4}{B}{B}|Creature — Demon|6|6| +Argothian Pixies|Chronicles||C|{1}{G}|Creature — Faerie|2|1| +Cat Warriors|Chronicles||C|{1}{G}{G}|Creature — Cat Warrior|2|2| +Cocoon|Chronicles||U|{G}|Enchantment — Aura||| +Concordant Crossroads|Chronicles||R|{G}|World Enchantment||| +Craw Giant|Chronicles||U|{3}{G}{G}{G}{G}|Creature — Giant|6|4| +Cyclone|Chronicles||R|{2}{G}{G}|Enchantment||| +Emerald Dragonfly|Chronicles||C|{1}{G}|Creature — Insect|1|1| +Erhnam Djinn|Chronicles||U|{3}{G}|Creature — Djinn|4|5| +Ghazbαn Ogre|Chronicles||C|{G}|Creature — Ogre|2|2| +Metamorphosis|Chronicles||C|{G}|Sorcery||| +Rabid Wombat|Chronicles||U|{2}{G}{G}|Creature — Wombat|0|1| +Revelation|Chronicles||R|{G}|World Enchantment||| +Scavenger Folk|Chronicles||C|{G}|Creature — Human|1|1| +Storm Seeker|Chronicles||U|{3}{G}|Instant||| +Abu Ja'far|Chronicles||U|{W}|Creature — Human|0|1| +Active Volcano|Chronicles||C|{R}|Instant||| +Aladdin|Chronicles||U|{2}{R}{R}|Creature — Human Rogue|1|1| +Beasts of Bogardan|Chronicles||U|{4}{R}|Creature — Beast|3|3| +Blood Moon|Chronicles||R|{2}{R}|Enchantment||| +Fire Drake|Chronicles||U|{1}{R}{R}|Creature — Drake|1|2| +Goblin Artisans|Chronicles||U|{R}|Creature — Goblin Artificer|1|1| +Goblin Digging Team|Chronicles||C|{R}|Creature — Goblin|1|1| +Goblin Shrine|Chronicles||C|{1}{R}{R}|Enchantment — Aura||| +Goblins of the Flarg|Chronicles||C|{R}|Creature — Goblin Warrior|1|1| +Land's Edge|Chronicles||R|{1}{R}{R}|World Enchantment||| +Mountain Yeti|Chronicles||C|{2}{R}{R}|Creature — Yeti|3|3| +Primordial Ooze|Chronicles||U|{R}|Creature — Ooze|1|1| +Wall of Heat|Chronicles||C|{2}{R}|Creature — Wall|2|6| +Wall of Opposition|Chronicles||U|{3}{R}{R}|Creature — Wall|0|6| +Akron Legionnaire|Chronicles||R|{6}{W}{W}|Creature — Giant Soldier|8|4| +Angelic Voices|Chronicles||R|{2}{W}{W}|Enchantment||| +Blood of the Martyr|Chronicles||U|{W}{W}{W}|Instant||| +D'Avenant Archer|Chronicles||C|{2}{W}|Creature — Human Soldier Archer|1|2| +Divine Offering|Chronicles||C|{1}{W}|Instant||| +Indestructible Aura|Chronicles||C|{W}|Instant||| +Ivory Guardians|Chronicles||U|{4}{W}{W}|Creature — Giant Cleric|3|3| +Keepers of the Faith|Chronicles||C|{1}{W}{W}|Creature — Human Cleric|2|3| +Petra Sphinx|Chronicles||R|{2}{W}{W}{W}|Creature — Sphinx|3|4| +Repentant Blacksmith|Chronicles||C|{1}{W}|Creature — Human|1|2| +Shield Wall|Chronicles||U|{1}{W}|Instant||| +War Elephant|Chronicles||C|{3}{W}|Creature — Elephant|2|2| +Witch Hunter|Chronicles||U|{2}{W}{W}|Creature — Human Cleric|1|1| +Arcades Sabboth|Chronicles||R|{2}{G}{G}{W}{W}{U}{U}|Legendary Creature — Elder Dragon|7|7| +Axelrod Gunnarson|Chronicles||R|{4}{B}{B}{R}{R}|Legendary Creature — Giant|5|5| +Ayesha Tanaka|Chronicles||R|{W}{W}{U}{U}|Legendary Creature — Human Artificer|2|2| +Chromium|Chronicles||R|{2}{W}{W}{U}{U}{B}{B}|Legendary Creature — Elder Dragon|7|7| +Dakkon Blackblade|Chronicles||R|{2}{W}{U}{U}{B}|Legendary Creature — Human Warrior|*|*| +Gabriel Angelfire|Chronicles||R|{3}{G}{G}{W}{W}|Legendary Creature — Angel|4|4| +Johan|Chronicles||R|{3}{R}{G}{W}|Legendary Creature — Human Wizard|5|4| +Kei Takahashi|Chronicles||U|{2}{G}{W}|Legendary Creature — Human Cleric|2|2| +Marhault Elsdragon|Chronicles||U|{3}{R}{R}{G}|Legendary Creature — Elf Warrior|4|6| +Nebuchadnezzar|Chronicles||R|{3}{U}{B}|Legendary Creature — Human Wizard|3|3| +Nicol Bolas|Chronicles||R|{2}{U}{U}{B}{B}{R}{R}|Legendary Creature — Elder Dragon|7|7| +Palladia-Mors|Chronicles||R|{2}{R}{R}{G}{G}{W}{W}|Legendary Creature — Elder Dragon|7|7| +Rubinia Soulsinger|Chronicles||R|{2}{G}{W}{U}|Legendary Creature — Faerie|2|3| +Sivitri Scarzam|Chronicles||U|{5}{U}{B}|Legendary Creature — Human|6|4| +Sol'kanar the Swamp King|Chronicles||R|{2}{U}{B}{R}|Legendary Creature — Demon|5|5| +Stangg|Chronicles||R|{4}{R}{G}|Legendary Creature — Human Warrior|3|4| +Tobias Andrion|Chronicles||U|{3}{W}{U}|Legendary Creature — Human Advisor|4|4| +Tor Wauki|Chronicles||U|{2}{B}{B}{R}|Legendary Creature — Human Archer|3|3| +Vaevictis Asmadi|Chronicles||R|{2}{B}{B}{R}{R}{G}{G}|Legendary Creature — Elder Dragon|7|7| +Xira Arien|Chronicles||R|{B}{R}{G}|Legendary Creature — Insect Wizard|1|2| +City of Brass|Chronicles||R||Land||| +Safe Haven|Chronicles||R||Land||| +Urza's Mine|Chronicles||U||Land — Urza’s Mine||| +Urza's Mine|Chronicles||U||Land — Urza’s Mine||| +Urza's Mine|Chronicles||U||Land — Urza’s Mine||| +Urza's Mine|Chronicles||U||Land — Urza’s Mine||| +Urza's Power Plant|Chronicles||U||Land — Urza’s Power-Plant||| +Urza's Power Plant|Chronicles||U||Land — Urza’s Power-Plant||| +Urza's Power Plant|Chronicles||U||Land — Urza’s Power-Plant||| +Urza's Power Plant|Chronicles||U||Land — Urza’s Power-Plant||| +Urza's Tower|Chronicles||U||Land — Urza’s Tower||| +Urza's Tower|Chronicles||U||Land — Urza’s Tower||| +Urza's Tower|Chronicles||U||Land — Urza’s Tower||| +Urza's Tower|Chronicles||U||Land — Urza’s Tower||| +Apocalypse Chime|Homelands||R|{2}|Artifact||| +Clockwork Gnomes|Homelands||C|{4}|Artifact Creature — Gnome|2|2| +Clockwork Steed|Homelands||C|{4}|Artifact Creature — Horse|0|3| +Clockwork Swarm|Homelands||C|{4}|Artifact Creature — Insect|0|3| +Didgeridoo|Homelands||R|{1}|Artifact||| +Ebony Rhino|Homelands||C|{7}|Artifact Creature — Rhino|4|5| +Feroz's Ban|Homelands||R|{6}|Artifact||| +Joven's Tools|Homelands||U|{6}|Artifact||| +Roterothopter|Homelands||C|{1}|Artifact Creature — Thopter|0|2| +Serrated Arrows|Homelands||C|{4}|Artifact||| +Baron Sengir|Homelands||R|{5}{B}{B}{B}|Legendary Creature — Vampire|5|5| +Black Carriage|Homelands||R|{3}{B}{B}|Creature — Horse|4|4| +Broken Visage|Homelands||R|{4}{B}|Instant||| +Cemetery Gate|Homelands||C|{2}{B}|Creature — Wall|0|5| +Cemetery Gate|Homelands||C|{2}{B}|Creature — Wall|0|5| +Drudge Spell|Homelands||U|{B}{B}|Enchantment||| +Dry Spell|Homelands||C|{1}{B}|Sorcery||| +Dry Spell|Homelands||C|{1}{B}|Sorcery||| +Feast of the Unicorn|Homelands||C|{3}{B}|Enchantment — Aura||| +Feast of the Unicorn|Homelands||C|{3}{B}|Enchantment — Aura||| +Funeral March|Homelands||C|{1}{B}{B}|Enchantment — Aura||| +Ghost Hounds|Homelands||U|{1}{B}|Creature — Hound Spirit|1|1| +Grandmother Sengir|Homelands||R|{4}{B}|Legendary Creature — Human Wizard|3|3| +Greater Werewolf|Homelands||C|{4}{B}|Creature — Human Wolf|2|4| +Headstone|Homelands||C|{1}{B}|Instant||| +Ihsan's Shade|Homelands||U|{3}{B}{B}{B}|Legendary Creature — Shade Knight|5|5| +Irini Sengir|Homelands||U|{2}{B}{B}|Legendary Creature — Vampire Dwarf|2|2| +Koskun Falls|Homelands||R|{2}{B}{B}|World Enchantment||| +Sengir Autocrat|Homelands||U|{3}{B}|Creature — Human|2|2| +Sengir Bats|Homelands||C|{1}{B}{B}|Creature — Bat|1|2| +Sengir Bats|Homelands||C|{1}{B}{B}|Creature — Bat|1|2| +Timmerian Fiends|Homelands||R|{1}{B}{B}|Creature — Horror|1|1| +Torture|Homelands||C|{B}|Enchantment — Aura||| +Torture|Homelands||C|{B}|Enchantment — Aura||| +Veldrane of Sengir|Homelands||R|{5}{B}{B}|Legendary Creature — Human Rogue|5|5| +Ζther Storm|Homelands||U|{3}{U}|Enchantment||| +Baki's Curse|Homelands||R|{2}{U}{U}|Sorcery||| +Chain Stasis|Homelands||R|{U}|Instant||| +Coral Reef|Homelands||C|{U}{U}|Enchantment||| +Dark Maze|Homelands||C|{4}{U}|Creature — Wall|4|5| +Dark Maze|Homelands||C|{4}{U}|Creature — Wall|4|5| +Forget|Homelands||R|{U}{U}|Sorcery||| +Giant Albatross|Homelands||C|{1}{U}|Creature — Bird|1|1| +Giant Albatross|Homelands||C|{1}{U}|Creature — Bird|1|1| +Giant Oyster|Homelands||U|{2}{U}{U}|Creature — Oyster|0|3| +Jinx|Homelands||C|{1}{U}|Instant||| +Labyrinth Minotaur|Homelands||C|{3}{U}|Creature — Minotaur|1|4| +Labyrinth Minotaur|Homelands||C|{3}{U}|Creature — Minotaur|1|4| +Marjhan|Homelands||R|{5}{U}{U}|Creature — Leviathan|8|8| +Memory Lapse|Homelands||C|{1}{U}|Instant||| +Memory Lapse|Homelands||C|{1}{U}|Instant||| +Merchant Scroll|Homelands||C|{1}{U}|Sorcery||| +Mystic Decree|Homelands||R|{2}{U}{U}|World Enchantment||| +Narwhal|Homelands||R|{2}{U}{U}|Creature — Whale|2|2| +Reef Pirates|Homelands||C|{1}{U}{U}|Creature — Zombie Pirate|2|2| +Reef Pirates|Homelands||C|{1}{U}{U}|Creature — Zombie Pirate|2|2| +Reveka, Wizard Savant|Homelands||R|{2}{U}{U}|Legendary Creature — Dwarf Wizard|0|1| +Sea Sprite|Homelands||U|{1}{U}|Creature — Faerie|1|1| +Sea Troll|Homelands||U|{2}{U}|Creature — Troll|2|1| +Wall of Kelp|Homelands||R|{U}{U}|Creature — Plant Wall|0|3| +An-Havva Constable|Homelands||R|{1}{G}{G}|Creature — Human|2|1+*| +An-Havva Inn|Homelands||U|{1}{G}{G}|Sorcery||| +Autumn Willow|Homelands||R|{4}{G}{G}|Legendary Creature — Avatar|4|4| +Carapace|Homelands||C|{G}|Enchantment — Aura||| +Carapace|Homelands||C|{G}|Enchantment — Aura||| +Daughter of Autumn|Homelands||R|{2}{G}{G}|Legendary Creature — Avatar|2|4| +Faerie Noble|Homelands||R|{2}{G}|Creature — Faerie|1|2| +Folk of An-Havva|Homelands||C|{G}|Creature — Human|1|1| +Folk of An-Havva|Homelands||C|{G}|Creature — Human|1|1| +Hungry Mist|Homelands||C|{2}{G}{G}|Creature — Elemental|6|2| +Hungry Mist|Homelands||C|{2}{G}{G}|Creature — Elemental|6|2| +Joven's Ferrets|Homelands||C|{G}|Creature — Ferret|1|1| +Leaping Lizard|Homelands||C|{1}{G}{G}|Creature — Lizard|2|3| +Mammoth Harness|Homelands||R|{3}{G}|Enchantment — Aura||| +Primal Order|Homelands||R|{2}{G}{G}|Enchantment||| +Renewal|Homelands||C|{2}{G}|Sorcery||| +Root Spider|Homelands||U|{3}{G}|Creature — Spider|2|2| +Roots|Homelands||U|{3}{G}|Enchantment — Aura||| +Rysorian Badger|Homelands||R|{2}{G}|Creature — Badger|2|2| +Shrink|Homelands||C|{G}|Instant||| +Shrink|Homelands||C|{G}|Instant||| +Spectral Bears|Homelands||U|{1}{G}|Creature — Bear Spirit|3|3| +Willow Faerie|Homelands||C|{1}{G}|Creature — Faerie|1|2| +Willow Faerie|Homelands||C|{1}{G}|Creature — Faerie|1|2| +Willow Priestess|Homelands||R|{2}{G}{G}|Creature — Faerie Druid|2|2| +Aliban's Tower|Homelands||C|{1}{R}|Instant||| +Aliban's Tower|Homelands||C|{1}{R}|Instant||| +Ambush|Homelands||C|{3}{R}|Instant||| +Ambush Party|Homelands||C|{4}{R}|Creature — Human Rogue|3|1| +Ambush Party|Homelands||C|{4}{R}|Creature — Human Rogue|3|1| +An-Zerrin Ruins|Homelands||R|{2}{R}{R}|Enchantment||| +Anaba Ancestor|Homelands||R|{1}{R}|Creature — Minotaur Spirit|1|1| +Anaba Bodyguard|Homelands||C|{3}{R}|Creature — Minotaur|2|3| +Anaba Bodyguard|Homelands||C|{3}{R}|Creature — Minotaur|2|3| +Anaba Shaman|Homelands||C|{3}{R}|Creature — Minotaur Shaman|2|2| +Anaba Shaman|Homelands||C|{3}{R}|Creature — Minotaur Shaman|2|2| +Anaba Spirit Crafter|Homelands||R|{2}{R}{R}|Creature — Minotaur Shaman|1|3| +Chandler|Homelands||C|{4}{R}|Legendary Creature — Human Rogue|3|3| +Dwarven Pony|Homelands||R|{R}|Creature — Horse|1|1| +Dwarven Sea Clan|Homelands||R|{2}{R}|Creature — Dwarf|1|1| +Dwarven Trader|Homelands||C|{R}|Creature — Dwarf|1|1| +Dwarven Trader|Homelands||C|{R}|Creature — Dwarf|1|1| +Eron the Relentless|Homelands||U|{3}{R}{R}|Legendary Creature — Human Rogue|5|2| +Evaporate|Homelands||U|{2}{R}|Sorcery||| +Heart Wolf|Homelands||R|{3}{R}|Creature — Wolf|2|2| +Ironclaw Curse|Homelands||R|{R}|Enchantment — Aura||| +Joven|Homelands||C|{3}{R}{R}|Legendary Creature — Human Rogue|3|3| +Orcish Mine|Homelands||U|{1}{R}{R}|Enchantment — Aura||| +Retribution|Homelands||U|{2}{R}{R}|Sorcery||| +Winter Sky|Homelands||R|{R}|Sorcery||| +Abbey Gargoyles|Homelands||U|{2}{W}{W}{W}|Creature — Gargoyle|3|4| +Abbey Matron|Homelands||C|{2}{W}|Creature — Human Cleric|1|3| +Abbey Matron|Homelands||C|{2}{W}|Creature — Human Cleric|1|3| +Aysen Bureaucrats|Homelands||C|{1}{W}|Creature — Human Advisor|1|1| +Aysen Bureaucrats|Homelands||C|{1}{W}|Creature — Human Advisor|1|1| +Aysen Crusader|Homelands||R|{2}{W}{W}|Creature — Human Knight|2+*|2+*| +Aysen Highway|Homelands||R|{3}{W}{W}{W}|Enchantment||| +Beast Walkers|Homelands||R|{1}{W}{W}|Creature — Human Beast Soldier|2|2| +Death Speakers|Homelands||U|{W}|Creature — Human Cleric|1|1| +Hazduhr the Abbot|Homelands||R|{3}{W}{W}|Legendary Creature — Human Cleric|2|5| +Leeches|Homelands||R|{1}{W}{W}|Sorcery||| +Mesa Falcon|Homelands||C|{1}{W}|Creature — Bird|1|1| +Mesa Falcon|Homelands||C|{1}{W}|Creature — Bird|1|1| +Prophecy|Homelands||C|{W}|Sorcery||| +Rashka the Slayer|Homelands||U|{3}{W}{W}|Legendary Creature — Human Archer|3|3| +Samite Alchemist|Homelands||C|{3}{W}|Creature — Human Cleric|0|2| +Samite Alchemist|Homelands||C|{3}{W}|Creature — Human Cleric|0|2| +Serra Aviary|Homelands||R|{3}{W}|World Enchantment||| +Serra Bestiary|Homelands||C|{W}{W}|Enchantment — Aura||| +Serra Inquisitors|Homelands||U|{4}{W}|Creature — Human Cleric|3|3| +Serra Paladin|Homelands||C|{2}{W}{W}|Creature — Human Knight|2|2| +Soraya the Falconer|Homelands||R|{1}{W}{W}|Legendary Creature — Human|2|2| +Trade Caravan|Homelands||C|{W}|Creature — Human Nomad|1|1| +Trade Caravan|Homelands||C|{W}|Creature — Human Nomad|1|1| +Truce|Homelands||R|{2}{W}|Instant||| +An-Havva Township|Homelands||U||Land||| +Aysen Abbey|Homelands||U||Land||| +Castle Sengir|Homelands||U||Land||| +Koskun Keep|Homelands||U||Land||| +Wizards' School|Homelands||U||Land||| +Aesthir Glider|Alliances||C|{3}|Artifact Creature — Bird|2|1| +Aesthir Glider|Alliances||C|{3}|Artifact Creature — Bird|2|1| +Ashnod's Cylix|Alliances||R|{2}|Artifact||| +Astrolabe|Alliances||C|{3}|Artifact||| +Astrolabe|Alliances||C|{3}|Artifact||| +Floodwater Dam|Alliances||R|{3}|Artifact||| +Gustha's Scepter|Alliances||R|{0}|Artifact||| +Helm of Obedience|Alliances||R|{4}|Artifact||| +Lodestone Bauble|Alliances||R|{0}|Artifact||| +Mishra's Groundbreaker|Alliances||U|{4}|Artifact||| +Mystic Compass|Alliances||U|{2}|Artifact||| +Phyrexian Devourer|Alliances||R|{6}|Artifact Creature — Construct|1|1| +Phyrexian Portal|Alliances||R|{3}|Artifact||| +Phyrexian War Beast|Alliances||C|{3}|Artifact Creature — Beast|3|4| +Phyrexian War Beast|Alliances||C|{3}|Artifact Creature — Beast|3|4| +Scarab of the Unseen|Alliances||U|{2}|Artifact||| +Shield Sphere|Alliances||U|{0}|Artifact Creature — Wall|0|6| +Sol Grail|Alliances||U|{3}|Artifact||| +Soldevi Digger|Alliances||R|{2}|Artifact||| +Soldevi Sentry|Alliances||C|{1}|Artifact Creature — Soldier|1|1| +Soldevi Sentry|Alliances||C|{1}|Artifact Creature — Soldier|1|1| +Soldevi Steam Beast|Alliances||C|{5}|Artifact Creature — Beast|4|2| +Soldevi Steam Beast|Alliances||C|{5}|Artifact Creature — Beast|4|2| +Storm Cauldron|Alliances||R|{5}|Artifact||| +Urza's Engine|Alliances||U|{5}|Artifact Creature — Juggernaut|1|5| +Whirling Catapult|Alliances||U|{4}|Artifact||| +Balduvian Dead|Alliances||U|{3}{B}|Creature — Zombie|2|3| +Casting of Bones|Alliances||C|{2}{B}|Enchantment — Aura||| +Casting of Bones|Alliances||C|{2}{B}|Enchantment — Aura||| +Contagion|Alliances||U|{3}{B}{B}|Instant||| +Diseased Vermin|Alliances||U|{2}{B}|Creature — Rat|1|1| +Dystopia|Alliances||R|{1}{B}{B}|Enchantment||| +Fatal Lore|Alliances||R|{2}{B}{B}|Sorcery||| +Feast or Famine|Alliances||C|{3}{B}|Instant||| +Feast or Famine|Alliances||C|{3}{B}|Instant||| +Fevered Strength|Alliances||C|{2}{B}|Instant||| +Fevered Strength|Alliances||C|{2}{B}|Instant||| +Insidious Bookworms|Alliances||C|{B}|Creature — Worm|1|1| +Insidious Bookworms|Alliances||C|{B}|Creature — Worm|1|1| +Keeper of Tresserhorn|Alliances||R|{5}{B}|Creature — Avatar|6|6| +Krovikan Horror|Alliances||R|{3}{B}|Creature — Horror Spirit|2|2| +Krovikan Plague|Alliances||U|{2}{B}|Enchantment — Aura||| +Lim-Dϋl's High Guard|Alliances||C|{1}{B}{B}|Creature — Skeleton|2|1| +Lim-Dϋl's High Guard|Alliances||C|{1}{B}{B}|Creature — Skeleton|2|1| +Misinformation|Alliances||U|{B}|Instant||| +Phantasmal Fiend|Alliances||C|{3}{B}|Creature — Illusion|1|5| +Phantasmal Fiend|Alliances||C|{3}{B}|Creature — Illusion|1|5| +Phyrexian Boon|Alliances||C|{2}{B}|Enchantment — Aura||| +Phyrexian Boon|Alliances||C|{2}{B}|Enchantment — Aura||| +Ritual of the Machine|Alliances||R|{2}{B}{B}|Sorcery||| +Soldevi Adnate|Alliances||C|{1}{B}|Creature — Human Cleric|1|2| +Soldevi Adnate|Alliances||C|{1}{B}|Creature — Human Cleric|1|2| +Stench of Decay|Alliances||C|{1}{B}{B}|Instant||| +Stench of Decay|Alliances||C|{1}{B}{B}|Instant||| +Stromgald Spy|Alliances||U|{3}{B}|Creature — Human Rogue|2|4| +Swamp Mosquito|Alliances||C|{1}{B}|Creature — Insect|0|1| +Swamp Mosquito|Alliances||C|{1}{B}|Creature — Insect|0|1| +Arcane Denial|Alliances||C|{1}{U}|Instant||| +Arcane Denial|Alliances||C|{1}{U}|Instant||| +Awesome Presence|Alliances||C|{U}|Enchantment — Aura||| +Awesome Presence|Alliances||C|{U}|Enchantment — Aura||| +Benthic Explorers|Alliances||C|{3}{U}|Creature — Merfolk Scout|2|4| +Benthic Explorers|Alliances||C|{3}{U}|Creature — Merfolk Scout|2|4| +Browse|Alliances||U|{2}{U}{U}|Enchantment||| +Diminishing Returns|Alliances||R|{2}{U}{U}|Sorcery||| +False Demise|Alliances||C|{2}{U}|Enchantment — Aura||| +False Demise|Alliances||C|{2}{U}|Enchantment — Aura||| +Force of Will|Alliances||U|{3}{U}{U}|Instant||| +Foresight|Alliances||C|{1}{U}|Sorcery||| +Foresight|Alliances||C|{1}{U}|Sorcery||| +Lat-Nam's Legacy|Alliances||C|{1}{U}|Instant||| +Lat-Nam's Legacy|Alliances||C|{1}{U}|Instant||| +Library of Lat-Nam|Alliances||R|{4}{U}|Sorcery||| +Phantasmal Sphere|Alliances||R|{1}{U}|Creature — Illusion|0|1| +Soldevi Heretic|Alliances||C|{2}{U}|Creature — Human Cleric|2|2| +Soldevi Heretic|Alliances||C|{2}{U}|Creature — Human Cleric|2|2| +Soldevi Sage|Alliances||C|{1}{U}|Creature — Human Wizard|1|1| +Soldevi Sage|Alliances||C|{1}{U}|Creature — Human Wizard|1|1| +Spiny Starfish|Alliances||U|{2}{U}|Creature — Starfish|0|1| +Storm Crow|Alliances||C|{1}{U}|Creature — Bird|1|2| +Storm Crow|Alliances||C|{1}{U}|Creature — Bird|1|2| +Storm Elemental|Alliances||U|{5}{U}|Creature — Elemental|3|4| +Suffocation|Alliances||U|{1}{U}|Instant||| +Thought Lash|Alliances||R|{2}{U}{U}|Enchantment||| +Tidal Control|Alliances||R|{1}{U}{U}|Enchantment||| +Viscerid Armor|Alliances||C|{1}{U}|Enchantment — Aura||| +Viscerid Armor|Alliances||C|{1}{U}|Enchantment — Aura||| +Viscerid Drone|Alliances||U|{1}{U}|Creature — Homarid Drone|1|2| +Bounty of the Hunt|Alliances||U|{3}{G}{G}|Instant||| +Deadly Insect|Alliances||C|{4}{G}|Creature — Insect|6|1| +Deadly Insect|Alliances||C|{4}{G}|Creature — Insect|6|1| +Elvish Bard|Alliances||U|{3}{G}{G}|Creature — Elf Shaman|2|4| +Elvish Ranger|Alliances||C|{2}{G}|Creature — Elf|4|1| +Elvish Ranger|Alliances||C|{2}{G}|Creature — Elf|4|1| +Elvish Spirit Guide|Alliances||U|{2}{G}|Creature — Elf Spirit|2|2| +Fyndhorn Druid|Alliances||C|{2}{G}|Creature — Elf Druid|2|2| +Fyndhorn Druid|Alliances||C|{2}{G}|Creature — Elf Druid|2|2| +Gargantuan Gorilla|Alliances||R|{4}{G}{G}{G}|Creature — Ape|7|7| +Gift of the Woods|Alliances||C|{G}|Enchantment — Aura||| +Gift of the Woods|Alliances||C|{G}|Enchantment — Aura||| +Gorilla Berserkers|Alliances||C|{3}{G}{G}|Creature — Ape Berserker|2|3| +Gorilla Berserkers|Alliances||C|{3}{G}{G}|Creature — Ape Berserker|2|3| +Gorilla Chieftain|Alliances||C|{2}{G}{G}|Creature — Ape|3|3| +Gorilla Chieftain|Alliances||C|{2}{G}{G}|Creature — Ape|3|3| +Hail Storm|Alliances||U|{1}{G}{G}|Instant||| +Kaysa|Alliances||R|{3}{G}{G}|Legendary Creature — Elf Druid|2|3| +Nature's Chosen|Alliances||U|{G}|Enchantment — Aura||| +Nature's Wrath|Alliances||R|{4}{G}{G}|Enchantment||| +Splintering Wind|Alliances||R|{2}{G}{G}|Enchantment||| +Taste of Paradise|Alliances||C|{3}{G}|Sorcery||| +Taste of Paradise|Alliances||C|{3}{G}|Sorcery||| +Tornado|Alliances||R|{4}{G}|Enchantment||| +Undergrowth|Alliances||C|{G}|Instant||| +Undergrowth|Alliances||C|{G}|Instant||| +Whip Vine|Alliances||C|{2}{G}|Creature — Plant Wall|1|4| +Whip Vine|Alliances||C|{2}{G}|Creature — Plant Wall|1|4| +Yavimaya Ancients|Alliances||C|{3}{G}{G}|Creature — Treefolk|2|7| +Yavimaya Ancients|Alliances||C|{3}{G}{G}|Creature — Treefolk|2|7| +Yavimaya Ants|Alliances||U|{2}{G}{G}|Creature — Insect|5|1| +Agent of Stromgald|Alliances||C|{R}|Creature — Human Knight|1|1| +Agent of Stromgald|Alliances||C|{R}|Creature — Human Knight|1|1| +Balduvian Horde|Alliances||R|{2}{R}{R}|Creature — Human Barbarian|5|5| +Balduvian War-Makers|Alliances||C|{4}{R}|Creature — Human Barbarian|3|3| +Balduvian War-Makers|Alliances||C|{4}{R}|Creature — Human Barbarian|3|3| +Bestial Fury|Alliances||C|{2}{R}|Enchantment — Aura||| +Bestial Fury|Alliances||C|{2}{R}|Enchantment — Aura||| +Burnout|Alliances||U|{1}{R}|Instant||| +Chaos Harlequin|Alliances||R|{2}{R}{R}|Creature — Human|2|4| +Death Spark|Alliances||U|{R}|Instant||| +Enslaved Scout|Alliances||C|{2}{R}|Creature — Goblin Scout|2|2| +Enslaved Scout|Alliances||C|{2}{R}|Creature — Goblin Scout|2|2| +Gorilla Shaman|Alliances||C|{R}|Creature — Ape Shaman|1|1| +Gorilla Shaman|Alliances||C|{R}|Creature — Ape Shaman|1|1| +Gorilla War Cry|Alliances||C|{1}{R}|Instant||| +Gorilla War Cry|Alliances||C|{1}{R}|Instant||| +Guerrilla Tactics|Alliances||C|{1}{R}|Instant||| +Guerrilla Tactics|Alliances||C|{1}{R}|Instant||| +Omen of Fire|Alliances||R|{3}{R}{R}|Instant||| +Pillage|Alliances||U|{1}{R}{R}|Sorcery||| +Primitive Justice|Alliances||U|{1}{R}|Sorcery||| +Pyrokinesis|Alliances||U|{4}{R}{R}|Instant||| +Rogue Skycaptain|Alliances||R|{2}{R}|Creature — Human Rogue Mercenary|3|4| +Soldier of Fortune|Alliances||U|{R}|Creature — Human Mercenary|1|1| +Storm Shaman|Alliances||C|{2}{R}|Creature — Human Cleric Shaman|0|4| +Storm Shaman|Alliances||C|{2}{R}|Creature — Human Cleric Shaman|0|4| +Varchild's Crusader|Alliances||C|{3}{R}|Creature — Human Knight|3|2| +Varchild's Crusader|Alliances||C|{3}{R}|Creature — Human Knight|3|2| +Varchild's War-Riders|Alliances||R|{1}{R}|Creature — Human Warrior|3|4| +Veteran's Voice|Alliances||C|{R}|Enchantment — Aura||| +Veteran's Voice|Alliances||C|{R}|Enchantment — Aura||| +Carrier Pigeons|Alliances||C|{3}{W}|Creature — Bird|1|1| +Carrier Pigeons|Alliances||C|{3}{W}|Creature — Bird|1|1| +Errand of Duty|Alliances||C|{1}{W}|Instant||| +Errand of Duty|Alliances||C|{1}{W}|Instant||| +Exile|Alliances||R|{2}{W}|Instant||| +Inheritance|Alliances||U|{W}|Enchantment||| +Ivory Gargoyle|Alliances||R|{4}{W}|Creature — Gargoyle|2|2| +Juniper Order Advocate|Alliances||U|{2}{W}|Creature — Human Knight|1|2| +Kjeldoran Escort|Alliances||C|{2}{W}{W}|Creature — Human Soldier|2|3| +Kjeldoran Escort|Alliances||C|{2}{W}{W}|Creature — Human Soldier|2|3| +Kjeldoran Home Guard|Alliances||U|{3}{W}|Creature — Human Soldier|1|6| +Kjeldoran Pride|Alliances||C|{1}{W}|Enchantment — Aura||| +Kjeldoran Pride|Alliances||C|{1}{W}|Enchantment — Aura||| +Martyrdom|Alliances||C|{1}{W}{W}|Instant||| +Martyrdom|Alliances||C|{1}{W}{W}|Instant||| +Noble Steeds|Alliances||C|{2}{W}|Enchantment||| +Noble Steeds|Alliances||C|{2}{W}|Enchantment||| +Reinforcements|Alliances||C|{W}|Instant||| +Reinforcements|Alliances||C|{W}|Instant||| +Reprisal|Alliances||C|{1}{W}|Instant||| +Reprisal|Alliances||C|{1}{W}|Instant||| +Royal Decree|Alliances||R|{2}{W}{W}|Enchantment||| +Royal Herbalist|Alliances||C|{W}|Creature — Human Cleric|1|1| +Royal Herbalist|Alliances||C|{W}|Creature — Human Cleric|1|1| +Scars of the Veteran|Alliances||U|{4}{W}|Instant||| +Seasoned Tactician|Alliances||U|{2}{W}|Creature — Human Advisor|1|3| +Sustaining Spirit|Alliances||R|{1}{W}|Creature — Angel Spirit|0|3| +Sworn Defender|Alliances||R|{2}{W}{W}|Creature — Human Knight|1|3| +Unlikely Alliance|Alliances||U|{1}{W}|Enchantment||| +Wild Aesthir|Alliances||C|{2}{W}|Creature — Bird|1|1| +Wild Aesthir|Alliances||C|{2}{W}|Creature — Bird|1|1| +Energy Arc|Alliances||U|{W}{U}|Instant||| +Lim-Dϋl's Paladin|Alliances||U|{2}{B}{R}|Creature — Human Knight|0|3| +Lim-Dϋl's Vault|Alliances||U|{U}{B}|Instant||| +Lord of Tresserhorn|Alliances||R|{1}{U}{B}{R}|Legendary Creature — Zombie|10|4| +Misfortune|Alliances||R|{1}{B}{R}{G}|Sorcery||| +Nature's Blessing|Alliances||U|{2}{G}{W}|Enchantment||| +Phelddagrif|Alliances||R|{1}{G}{W}{U}|Legendary Creature — Phelddagrif|4|4| +Surge of Strength|Alliances||U|{R}{G}|Instant||| +Wandering Mage|Alliances||R|{W}{U}{B}|Creature — Human Cleric Wizard|0|3| +Winter's Night|Alliances||R|{R}{G}{W}|World Enchantment||| +Balduvian Trading Post|Alliances||R||Land||| +Heart of Yavimaya|Alliances||R||Land||| +Kjeldoran Outpost|Alliances||R||Land||| +Lake of the Dead|Alliances||R||Land||| +School of the Unseen|Alliances||U||Land||| +Sheltered Valley|Alliances||R||Land||| +Soldevi Excavations|Alliances||R||Land||| +Thawing Glaciers|Alliances||R||Land||| +Acidic Dagger|Mirage||R|{4}|Artifact||| +Amber Prison|Mirage||R|{4}|Artifact||| +Amulet of Unmaking|Mirage||R|{5}|Artifact||| +Basalt Golem|Mirage||U|{5}|Artifact Creature — Golem|2|4| +Bone Mask|Mirage||R|{4}|Artifact||| +Charcoal Diamond|Mirage||U|{2}|Artifact||| +Chariot of the Sun|Mirage||U|{3}|Artifact||| +Crystal Golem|Mirage||U|{4}|Artifact Creature — Golem|3|3| +Cursed Totem|Mirage||R|{2}|Artifact||| +Elixir of Vitality|Mirage||U|{4}|Artifact||| +Ersatz Gnomes|Mirage||U|{3}|Artifact Creature — Gnome|1|1| +Fire Diamond|Mirage||U|{2}|Artifact||| +Grinning Totem|Mirage||R|{4}|Artifact||| +Horrible Hordes|Mirage||U|{3}|Artifact Creature — Spirit|2|2| +Igneous Golem|Mirage||U|{5}|Artifact Creature — Golem|3|4| +Lead Golem|Mirage||U|{5}|Artifact Creature — Golem|3|5| +Lion's Eye Diamond|Mirage||R|{0}|Artifact||| +Mana Prism|Mirage||U|{3}|Artifact||| +Mangara's Tome|Mirage||R|{5}|Artifact||| +Marble Diamond|Mirage||U|{2}|Artifact||| +Misers' Cage|Mirage||R|{3}|Artifact||| +Moss Diamond|Mirage||U|{2}|Artifact||| +Patagia Golem|Mirage||U|{4}|Artifact Creature — Golem|2|3| +Paupers' Cage|Mirage||R|{3}|Artifact||| +Phyrexian Dreadnought|Mirage||R|{1}|Artifact Creature — Dreadnought|12|12| +Phyrexian Vault|Mirage||U|{3}|Artifact||| +Razor Pendulum|Mirage||R|{4}|Artifact||| +Sand Golem|Mirage||U|{5}|Artifact Creature — Golem|3|3| +Sky Diamond|Mirage||U|{2}|Artifact||| +Teeka's Dragon|Mirage||R|{9}|Artifact Creature — Dragon|5|5| +Telim'Tor's Darts|Mirage||U|{2}|Artifact||| +Unerring Sling|Mirage||U|{3}|Artifact||| +Ventifact Bottle|Mirage||R|{3}|Artifact||| +Abyssal Hunter|Mirage||R|{3}{B}|Creature — Human Assassin|1|1| +Ashen Powder|Mirage||R|{2}{B}{B}|Sorcery||| +Barbed-Back Wurm|Mirage||U|{4}{B}|Creature — Wurm|4|3| +Binding Agony|Mirage||C|{1}{B}|Enchantment — Aura||| +Blighted Shaman|Mirage||U|{1}{B}|Creature — Human Cleric Shaman|1|1| +Bone Harvest|Mirage||C|{2}{B}|Instant||| +Breathstealer|Mirage||C|{2}{B}|Creature — Nightstalker|2|2| +Cadaverous Knight|Mirage||C|{2}{B}|Creature — Zombie Knight|2|2| +Carrion|Mirage||R|{1}{B}{B}|Instant||| +Catacomb Dragon|Mirage||R|{4}{B}{B}|Creature — Dragon|4|4| +Choking Sands|Mirage||C|{1}{B}{B}|Sorcery||| +Crypt Cobra|Mirage||U|{3}{B}|Creature — Snake|3|3| +Dark Banishing|Mirage||C|{2}{B}|Instant||| +Dark Ritual|Mirage||C|{B}|Instant||| +Dirtwater Wraith|Mirage||C|{3}{B}|Creature — Wraith|1|3| +Drain Life|Mirage||C|{X}{1}{B}|Sorcery||| +Dread Specter|Mirage||U|{3}{B}|Creature — Specter|2|2| +Ebony Charm|Mirage||C|{B}|Instant||| +Enfeeblement|Mirage||C|{B}{B}|Enchantment — Aura||| +Feral Shadow|Mirage||C|{2}{B}|Creature — Nightstalker|2|1| +Fetid Horror|Mirage||C|{3}{B}|Creature — Shade Horror|1|2| +Forbidden Crypt|Mirage||R|{3}{B}{B}|Enchantment||| +Forsaken Wastes|Mirage||R|{2}{B}|World Enchantment||| +Grave Servitude|Mirage||C|{1}{B}|Enchantment — Aura||| +Gravebane Zombie|Mirage||C|{3}{B}|Creature — Zombie|3|2| +Harbinger of Night|Mirage||R|{2}{B}{B}|Creature — Spirit|2|3| +Infernal Contract|Mirage||R|{B}{B}{B}|Sorcery||| +Kaervek's Hex|Mirage||U|{3}{B}|Sorcery||| +Mire Shade|Mirage||U|{1}{B}|Creature — Shade|1|1| +Nocturnal Raid|Mirage||U|{2}{B}{B}|Instant||| +Painful Memories|Mirage||U|{1}{B}|Sorcery||| +Phyrexian Tribute|Mirage||R|{2}{B}|Sorcery||| +Purraj of Urborg|Mirage||R|{3}{B}{B}|Legendary Creature — Cat Warrior|2|3| +Ravenous Vampire|Mirage||U|{3}{B}{B}|Creature — Vampire|3|3| +Reign of Terror|Mirage||U|{3}{B}{B}|Sorcery||| +Restless Dead|Mirage||C|{1}{B}|Creature — Skeleton|1|1| +Sewer Rats|Mirage||C|{B}|Creature — Rat|1|1| +Shadow Guildmage|Mirage||C|{B}|Creature — Human Wizard|1|1| +Shallow Grave|Mirage||R|{1}{B}|Instant||| +Shauku, Endbringer|Mirage||R|{5}{B}{B}|Legendary Creature — Vampire|5|5| +Skulking Ghost|Mirage||C|{1}{B}|Creature — Spirit|2|1| +Soul Rend|Mirage||U|{1}{B}|Instant||| +Soulshriek|Mirage||C|{B}|Instant||| +Spirit of the Night|Mirage||R|{6}{B}{B}{B}|Legendary Creature — Demon Spirit|6|5| +Stupor|Mirage||U|{2}{B}|Sorcery||| +Tainted Specter|Mirage||R|{3}{B}|Creature — Specter|2|2| +Tombstone Stairwell|Mirage||R|{2}{B}{B}|World Enchantment||| +Urborg Panther|Mirage||C|{2}{B}|Creature — Nightstalker Cat|2|2| +Wall of Corpses|Mirage||C|{1}{B}|Creature — Wall|0|2| +Withering Boon|Mirage||U|{1}{B}|Instant||| +Zombie Mob|Mirage||U|{2}{B}{B}|Creature — Zombie|2|0| +Ancestral Memories|Mirage||R|{2}{U}{U}{U}|Sorcery||| +Azimaet Drake|Mirage||C|{2}{U}|Creature — Drake|1|3| +Bay Falcon|Mirage||C|{1}{U}|Creature — Bird|1|1| +Bazaar of Wonders|Mirage||R|{3}{U}{U}|World Enchantment||| +Boomerang|Mirage||C|{U}{U}|Instant||| +Cerulean Wyvern|Mirage||U|{4}{U}|Creature — Drake|3|3| +Cloak of Invisibility|Mirage||C|{U}|Enchantment — Aura||| +Coral Fighters|Mirage||U|{1}{U}|Creature — Merfolk Soldier|1|1| +Daring Apprentice|Mirage||R|{1}{U}{U}|Creature — Human Wizard|1|1| +Dissipate|Mirage||U|{1}{U}{U}|Instant||| +Dream Cache|Mirage||C|{2}{U}|Sorcery||| +Dream Fighter|Mirage||C|{2}{U}|Creature — Human Soldier|1|1| +Energy Vortex|Mirage||R|{3}{U}{U}|Enchantment||| +Ether Well|Mirage||U|{3}{U}|Instant||| +Flash|Mirage||R|{1}{U}|Instant||| +Floodgate|Mirage||U|{3}{U}|Creature — Wall|0|5| +Hakim, Loreweaver|Mirage||R|{3}{U}{U}|Legendary Creature — Human Wizard|2|4| +Harmattan Efreet|Mirage||U|{2}{U}{U}|Creature — Efreet|2|2| +Jolt|Mirage||C|{2}{U}|Instant||| +Kukemssa Pirates|Mirage||R|{3}{U}|Creature — Human Pirate|2|2| +Kukemssa Serpent|Mirage||C|{3}{U}|Creature — Serpent|4|3| +Meddle|Mirage||U|{1}{U}|Instant||| +Memory Lapse|Mirage||C|{1}{U}|Instant||| +Merfolk Raiders|Mirage||C|{1}{U}|Creature — Merfolk Soldier|2|3| +Merfolk Seer|Mirage||C|{2}{U}|Creature — Merfolk Wizard|2|2| +Mind Bend|Mirage||U|{U}|Instant||| +Mind Harness|Mirage||U|{U}|Enchantment — Aura||| +Mist Dragon|Mirage||R|{4}{U}{U}|Creature — Dragon|4|4| +Mystical Tutor|Mirage||U|{U}|Instant||| +Political Trickery|Mirage||R|{2}{U}|Sorcery||| +Polymorph|Mirage||R|{3}{U}|Sorcery||| +Power Sink|Mirage||C|{X}{U}|Instant||| +Prismatic Lace|Mirage||R|{U}|Instant||| +Psychic Transfer|Mirage||R|{4}{U}|Sorcery||| +Ray of Command|Mirage||C|{3}{U}|Instant||| +Reality Ripple|Mirage||C|{1}{U}|Instant||| +Sandbar Crocodile|Mirage||C|{4}{U}|Creature — Crocodile|6|5| +Sapphire Charm|Mirage||C|{U}|Instant||| +Sea Scryer|Mirage||C|{1}{U}|Creature — Merfolk Wizard|1|1| +Shaper Guildmage|Mirage||C|{U}|Creature — Human Wizard|1|1| +Shimmer|Mirage||R|{2}{U}{U}|Enchantment||| +Soar|Mirage||C|{1}{U}|Enchantment — Aura||| +Suq'Ata Firewalker|Mirage||U|{1}{U}{U}|Creature — Human Wizard|0|1| +Taniwha|Mirage||R|{3}{U}{U}|Legendary Creature — Serpent|7|7| +Teferi's Curse|Mirage||C|{1}{U}|Enchantment — Aura||| +Teferi's Drake|Mirage||C|{2}{U}|Creature — Drake|3|2| +Teferi's Imp|Mirage||R|{2}{U}|Creature — Imp|1|1| +Thirst|Mirage||C|{2}{U}|Enchantment — Aura||| +Tidal Wave|Mirage||U|{2}{U}|Instant||| +Vaporous Djinn|Mirage||U|{2}{U}{U}|Creature — Djinn|3|4| +Wave Elemental|Mirage||U|{2}{U}{U}|Creature — Elemental|2|3| +Afiya Grove|Mirage||R|{1}{G}|Enchantment||| +Armor of Thorns|Mirage||C|{1}{G}|Enchantment — Aura||| +Barbed Foliage|Mirage||U|{2}{G}{G}|Enchantment||| +Brushwagg|Mirage||R|{1}{G}{G}|Creature — Brushwagg|3|2| +Canopy Dragon|Mirage||R|{4}{G}{G}|Creature — Dragon|4|4| +Crash of Rhinos|Mirage||C|{6}{G}{G}|Creature — Rhino|8|4| +Cycle of Life|Mirage||R|{1}{G}{G}|Enchantment||| +Decomposition|Mirage||U|{1}{G}|Enchantment — Aura||| +Early Harvest|Mirage||R|{1}{G}{G}|Instant||| +Fallow Earth|Mirage||U|{2}{G}|Sorcery||| +Femeref Archers|Mirage||U|{2}{G}|Creature — Human Archer|2|2| +Fog|Mirage||C|{G}|Instant||| +Foratog|Mirage||U|{2}{G}|Creature — Atog|1|2| +Giant Mantis|Mirage||C|{3}{G}|Creature — Insect|2|4| +Gibbering Hyenas|Mirage||C|{2}{G}|Creature — Hyena|3|2| +Granger Guildmage|Mirage||C|{G}|Creature — Human Wizard|1|1| +Hall of Gemstone|Mirage||R|{1}{G}{G}|World Enchantment||| +Jolrael's Centaur|Mirage||C|{1}{G}{G}|Creature — Centaur Archer|2|2| +Jungle Patrol|Mirage||R|{3}{G}|Creature — Human Soldier|3|2| +Jungle Wurm|Mirage||C|{3}{G}{G}|Creature — Wurm|5|5| +Karoo Meerkat|Mirage||U|{1}{G}|Creature — Mongoose|2|1| +Locust Swarm|Mirage||U|{3}{G}|Creature — Insect|1|1| +Lure of Prey|Mirage||R|{2}{G}{G}|Instant||| +Maro|Mirage||R|{2}{G}{G}|Creature — Elemental|*|*| +Mindbender Spores|Mirage||R|{2}{G}|Creature — Fungus Wall|0|1| +Mtenda Lion|Mirage||C|{G}|Creature — Cat|2|1| +Natural Balance|Mirage||R|{2}{G}{G}|Sorcery||| +Nettletooth Djinn|Mirage||U|{3}{G}|Creature — Djinn|4|4| +Preferred Selection|Mirage||R|{2}{G}{G}|Enchantment||| +Quirion Elves|Mirage||C|{1}{G}|Creature — Elf Druid|1|1| +Rampant Growth|Mirage||C|{1}{G}|Sorcery||| +Regeneration|Mirage||C|{1}{G}|Enchantment — Aura||| +Roots of Life|Mirage||U|{1}{G}{G}|Enchantment||| +Sabertooth Cobra|Mirage||C|{2}{G}|Creature — Snake|2|2| +Sandstorm|Mirage||C|{G}|Instant||| +Seedling Charm|Mirage||C|{G}|Instant||| +Seeds of Innocence|Mirage||R|{1}{G}{G}|Sorcery||| +Serene Heart|Mirage||C|{1}{G}|Instant||| +Stalking Tiger|Mirage||C|{3}{G}|Creature — Cat|3|3| +Superior Numbers|Mirage||U|{G}{G}|Sorcery||| +Tranquil Domain|Mirage||C|{1}{G}|Instant||| +Tropical Storm|Mirage||U|{X}{G}|Sorcery||| +Uktabi Faerie|Mirage||C|{1}{G}|Creature — Faerie|1|1| +Uktabi Wildcats|Mirage||R|{4}{G}|Creature — Cat|*|*| +Unseen Walker|Mirage||U|{1}{G}|Creature — Dryad|1|1| +Unyaro Bee Sting|Mirage||U|{3}{G}|Sorcery||| +Village Elder|Mirage||C|{G}|Creature — Human Druid|1|1| +Waiting in the Weeds|Mirage||R|{1}{G}{G}|Sorcery||| +Wall of Roots|Mirage||C|{1}{G}|Creature — Plant Wall|0|5| +Wild Elephant|Mirage||C|{3}{G}|Creature — Elephant|3|3| +Worldly Tutor|Mirage||U|{G}|Instant||| +Agility|Mirage||C|{1}{R}|Enchantment — Aura||| +Aleatory|Mirage||U|{1}{R}|Instant||| +Armorer Guildmage|Mirage||C|{R}|Creature — Human Wizard|1|1| +Barreling Attack|Mirage||R|{2}{R}{R}|Instant||| +Blind Fury|Mirage||U|{2}{R}{R}|Instant||| +Blistering Barrier|Mirage||C|{2}{R}|Creature — Wall|5|2| +Builder's Bane|Mirage||C|{X}{X}{R}|Sorcery||| +Burning Palm Efreet|Mirage||U|{2}{R}{R}|Creature — Efreet|2|2| +Burning Shield Askari|Mirage||C|{2}{R}|Creature — Human Knight|2|2| +Chaos Charm|Mirage||C|{R}|Instant||| +Chaosphere|Mirage||R|{2}{R}|World Enchantment||| +Cinder Cloud|Mirage||U|{3}{R}{R}|Instant||| +Consuming Ferocity|Mirage||U|{1}{R}|Enchantment — Aura||| +Crimson Hellkite|Mirage||R|{6}{R}{R}{R}|Creature — Dragon|6|6| +Crimson Roc|Mirage||U|{4}{R}|Creature — Bird|2|2| +Dwarven Miner|Mirage||U|{1}{R}|Creature — Dwarf|1|2| +Dwarven Nomad|Mirage||C|{2}{R}|Creature — Dwarf Nomad|1|1| +Ekundu Cyclops|Mirage||C|{3}{R}|Creature — Cyclops|3|4| +Emberwilde Djinn|Mirage||R|{2}{R}{R}|Creature — Djinn|5|4| +Final Fortune|Mirage||R|{R}{R}|Instant||| +Firebreathing|Mirage||C|{R}|Enchantment — Aura||| +Flame Elemental|Mirage||U|{2}{R}{R}|Creature — Elemental|3|2| +Flare|Mirage||C|{2}{R}|Instant||| +Goblin Elite Infantry|Mirage||C|{1}{R}|Creature — Goblin Warrior|2|2| +Goblin Scouts|Mirage||U|{3}{R}{R}|Sorcery||| +Goblin Soothsayer|Mirage||U|{R}|Creature — Goblin Shaman|1|1| +Goblin Tinkerer|Mirage||C|{1}{R}|Creature — Goblin Artificer|1|2| +Hammer of Bogardan|Mirage||R|{1}{R}{R}|Sorcery||| +Hivis of the Scale|Mirage||R|{3}{R}{R}|Legendary Creature — Viashino Shaman|3|4| +Illicit Auction|Mirage||R|{3}{R}{R}|Sorcery||| +Incinerate|Mirage||C|{1}{R}|Instant||| +Kaervek's Torch|Mirage||C|{X}{R}|Sorcery||| +Lightning Reflexes|Mirage||C|{1}{R}|Enchantment — Aura||| +Pyric Salamander|Mirage||C|{1}{R}|Creature — Salamander|1|1| +Raging Spirit|Mirage||C|{3}{R}|Creature — Spirit|3|3| +Reckless Embermage|Mirage||R|{3}{R}|Creature — Human Wizard|2|2| +Reign of Chaos|Mirage||U|{2}{R}{R}|Sorcery||| +Searing Spear Askari|Mirage||C|{2}{R}|Creature — Human Knight|2|2| +Sirocco|Mirage||U|{1}{R}|Instant||| +Spitting Earth|Mirage||C|{1}{R}|Sorcery||| +Stone Rain|Mirage||C|{2}{R}|Sorcery||| +Subterranean Spirit|Mirage||R|{3}{R}{R}|Creature — Elemental Spirit|3|3| +Talruum Minotaur|Mirage||C|{2}{R}{R}|Creature — Minotaur Berserker|3|3| +Telim'Tor|Mirage||R|{4}{R}|Legendary Creature — Human Knight|2|2| +Telim'Tor's Edict|Mirage||R|{R}|Instant||| +Torrent of Lava|Mirage||R|{X}{R}{R}|Sorcery||| +Viashino Warrior|Mirage||C|{3}{R}|Creature — Viashino Warrior|4|2| +Volcanic Dragon|Mirage||R|{4}{R}{R}|Creature — Dragon|4|4| +Volcanic Geyser|Mirage||U|{X}{R}{R}|Instant||| +Wildfire Emissary|Mirage||U|{3}{R}|Creature — Efreet|2|4| +Zirilan of the Claw|Mirage||R|{3}{R}{R}|Legendary Creature — Viashino Shaman|3|4| +Afterlife|Mirage||U|{2}{W}|Instant||| +Alarum|Mirage||C|{1}{W}|Instant||| +Auspicious Ancestor|Mirage||R|{3}{W}|Creature — Human Cleric|2|3| +Benevolent Unicorn|Mirage||C|{1}{W}|Creature — Unicorn|1|2| +Blinding Light|Mirage||U|{2}{W}|Sorcery||| +Celestial Dawn|Mirage||R|{1}{W}{W}|Enchantment||| +Civic Guildmage|Mirage||C|{W}|Creature — Human Wizard|1|1| +Dazzling Beauty|Mirage||C|{2}{W}|Instant||| +Disempower|Mirage||C|{1}{W}|Instant||| +Disenchant|Mirage||C|{1}{W}|Instant||| +Divine Offering|Mirage||C|{1}{W}|Instant||| +Divine Retribution|Mirage||R|{1}{W}|Instant||| +Ekundu Griffin|Mirage||C|{3}{W}|Creature — Griffin|2|2| +Enlightened Tutor|Mirage||U|{W}|Instant||| +Ethereal Champion|Mirage||R|{2}{W}{W}{W}|Creature — Avatar|3|4| +Favorable Destiny|Mirage||U|{1}{W}|Enchantment — Aura||| +Femeref Healer|Mirage||C|{1}{W}|Creature — Human Cleric|1|1| +Femeref Knight|Mirage||C|{2}{W}|Creature — Human Knight|2|2| +Femeref Scouts|Mirage||C|{2}{W}|Creature — Human Scout|1|4| +Healing Salve|Mirage||C|{W}|Instant||| +Illumination|Mirage||U|{W}{W}|Instant||| +Iron Tusk Elephant|Mirage||U|{4}{W}|Creature — Elephant|3|3| +Ivory Charm|Mirage||C|{W}|Instant||| +Jabari's Influence|Mirage||R|{3}{W}{W}|Instant||| +Mangara's Blessing|Mirage||U|{2}{W}|Instant||| +Mangara's Equity|Mirage||U|{1}{W}{W}|Enchantment||| +Melesse Spirit|Mirage||U|{3}{W}{W}|Creature — Angel Spirit|3|3| +Mtenda Griffin|Mirage||U|{3}{W}|Creature — Griffin|2|2| +Mtenda Herder|Mirage||C|{W}|Creature — Human Scout|1|1| +Noble Elephant|Mirage||C|{3}{W}|Creature — Elephant|2|2| +Null Chamber|Mirage||R|{3}{W}|World Enchantment||| +Pacifism|Mirage||C|{1}{W}|Enchantment — Aura||| +Pearl Dragon|Mirage||R|{4}{W}{W}|Creature — Dragon|4|4| +Prismatic Circle|Mirage||C|{2}{W}|Enchantment||| +Rashida Scalebane|Mirage||R|{3}{W}{W}|Legendary Creature — Human Soldier|3|4| +Ritual of Steel|Mirage||C|{2}{W}|Enchantment — Aura||| +Sacred Mesa|Mirage||R|{2}{W}|Enchantment||| +Shadowbane|Mirage||U|{1}{W}|Instant||| +Sidar Jabari|Mirage||R|{3}{W}|Legendary Creature — Human Knight|2|2| +Soul Echo|Mirage||R|{X}{W}{W}|Enchantment||| +Spectral Guardian|Mirage||R|{2}{W}{W}|Creature — Spirit|2|3| +Sunweb|Mirage||R|{3}{W}|Creature — Wall|5|6| +Teremko Griffin|Mirage||C|{3}{W}|Creature — Griffin|2|2| +Unyaro Griffin|Mirage||U|{3}{W}|Creature — Griffin|2|2| +Vigilant Martyr|Mirage||U|{W}|Creature — Human Cleric|1|1| +Wall of Resistance|Mirage||C|{1}{W}|Creature — Wall|0|3| +Ward of Lights|Mirage||C|{W}{W}|Enchantment — Aura||| +Yare|Mirage||R|{2}{W}|Instant||| +Zhalfirin Commander|Mirage||U|{2}{W}|Creature — Human Knight|2|2| +Zhalfirin Knight|Mirage||C|{2}{W}|Creature — Human Knight|2|2| +Zuberi, Golden Feather|Mirage||R|{4}{W}|Legendary Creature — Griffin|3|3| +Asmira, Holy Avenger|Mirage||R|{2}{G}{W}|Legendary Creature — Human Cleric|2|3| +Benthic Djinn|Mirage||R|{2}{U}{B}|Creature — Djinn|5|3| +Cadaverous Bloom|Mirage||R|{3}{B}{G}|Enchantment||| +Circle of Despair|Mirage||R|{1}{W}{B}|Enchantment||| +Delirium|Mirage||U|{1}{B}{R}|Instant||| +Discordant Spirit|Mirage||R|{2}{B}{R}|Creature — Spirit|2|2| +Emberwilde Caliph|Mirage||R|{2}{U}{R}|Creature — Djinn|4|4| +Energy Bolt|Mirage||R|{X}{R}{W}|Sorcery||| +Frenetic Efreet|Mirage||R|{1}{U}{R}|Creature — Efreet|2|1| +Grim Feast|Mirage||R|{1}{B}{G}|Enchantment||| +Harbor Guardian|Mirage||U|{2}{W}{U}|Creature — Gargoyle|3|4| +Haunting Apparition|Mirage||U|{1}{U}{B}|Creature — Spirit|1+*|2| +Hazerider Drake|Mirage||U|{2}{W}{U}|Creature — Drake|2|3| +Jungle Troll|Mirage||U|{1}{R}{G}|Creature — Troll|2|1| +Kaervek's Purge|Mirage||U|{X}{B}{R}|Sorcery||| +Leering Gargoyle|Mirage||R|{1}{W}{U}|Creature — Gargoyle|2|2| +Malignant Growth|Mirage||R|{3}{G}{U}|Enchantment||| +Phyrexian Purge|Mirage||R|{2}{B}{R}|Sorcery||| +Prismatic Boon|Mirage||U|{X}{W}{U}|Instant||| +Purgatory|Mirage||R|{2}{W}{B}|Enchantment||| +Radiant Essence|Mirage||U|{1}{G}{W}|Creature — Spirit|2|3| +Reflect Damage|Mirage||R|{3}{R}{W}|Instant||| +Reparations|Mirage||R|{1}{W}{U}|Enchantment||| +Rock Basilisk|Mirage||R|{4}{R}{G}|Creature — Basilisk|4|5| +Savage Twister|Mirage||U|{X}{R}{G}|Sorcery||| +Sawback Manticore|Mirage||R|{3}{R}{G}|Creature — Manticore|2|4| +Sealed Fate|Mirage||U|{X}{U}{B}|Sorcery||| +Shauku's Minion|Mirage||U|{1}{B}{R}|Creature — Human Minion|2|2| +Spatial Binding|Mirage||U|{U}{B}|Enchantment||| +Unfulfilled Desires|Mirage||R|{1}{U}{B}|Enchantment||| +Vitalizing Cascade|Mirage||U|{X}{G}{W}|Instant||| +Warping Wurm|Mirage||R|{2}{G}{U}|Creature — Wurm|1|1| +Wellspring|Mirage||R|{1}{G}{W}|Enchantment — Aura||| +Windreaper Falcon|Mirage||U|{1}{R}{G}|Creature — Bird|1|1| +Zebra Unicorn|Mirage||U|{2}{G}{W}|Creature — Unicorn|2|2| +Swamp|Mirage||L||Basic Land — Swamp||| +Swamp|Mirage||L||Basic Land — Swamp||| +Swamp|Mirage||L||Basic Land — Swamp||| +Swamp|Mirage||L||Basic Land — Swamp||| +Forest|Mirage||L||Basic Land — Forest||| +Forest|Mirage||L||Basic Land — Forest||| +Forest|Mirage||L||Basic Land — Forest||| +Forest|Mirage||L||Basic Land — Forest||| +Bad River|Mirage||U||Land||| +Crystal Vein|Mirage||U||Land||| +Flood Plain|Mirage||U||Land||| +Grasslands|Mirage||U||Land||| +Mountain Valley|Mirage||U||Land||| +Rocky Tar Pit|Mirage||U||Land||| +Teferi's Isle|Mirage||R||Legendary Land||| +Mountain|Mirage||L||Basic Land — Mountain||| +Mountain|Mirage||L||Basic Land — Mountain||| +Mountain|Mirage||L||Basic Land — Mountain||| +Mountain|Mirage||L||Basic Land — Mountain||| +Island|Mirage||L||Basic Land — Island||| +Island|Mirage||L||Basic Land — Island||| +Island|Mirage||L||Basic Land — Island||| +Island|Mirage||L||Basic Land — Island||| +Plains|Mirage||L||Basic Land — Plains||| +Plains|Mirage||L||Basic Land — Plains||| +Plains|Mirage||L||Basic Land — Plains||| +Plains|Mirage||L||Basic Land — Plains||| +Anvil of Bogardan|Visions||R|{2}|Artifact||| +Brass-Talon Chimera|Visions||U|{4}|Artifact Creature — Chimera|2|2| +Diamond Kaleidoscope|Visions||R|{4}|Artifact||| +Dragon Mask|Visions||U|{3}|Artifact||| +Phyrexian Marauder|Visions||R|{X}|Artifact Creature — Construct|0|0| +Phyrexian Walker|Visions||C|{0}|Artifact Creature — Construct|0|3| +Sands of Time|Visions||R|{4}|Artifact||| +Sisay's Ring|Visions||C|{4}|Artifact||| +Snake Basket|Visions||R|{4}|Artifact||| +Teferi's Puzzle Box|Visions||R|{4}|Artifact||| +Tin-Wing Chimera|Visions||U|{4}|Artifact Creature — Chimera|2|2| +Triangle of War|Visions||R|{1}|Artifact||| +Wand of Denial|Visions||R|{2}|Artifact||| +Aku Djinn|Visions||R|{3}{B}{B}|Creature — Djinn|5|6| +Blanket of Night|Visions||U|{1}{B}{B}|Enchantment||| +Brood of Cockroaches|Visions||U|{1}{B}|Creature — Insect|1|1| +Coercion|Visions||C|{2}{B}|Sorcery||| +Crypt Rats|Visions||C|{2}{B}|Creature — Rat|1|1| +Dark Privilege|Visions||C|{1}{B}|Enchantment — Aura||| +Death Watch|Visions||C|{B}|Enchantment — Aura||| +Desolation|Visions||U|{1}{B}{B}|Enchantment||| +Funeral Charm|Visions||C|{B}|Instant||| +Necromancy|Visions||U|{2}{B}|Enchantment||| +Necrosavant|Visions||R|{3}{B}{B}{B}|Creature — Zombie Giant|5|5| +Nekrataal|Visions||U|{2}{B}{B}|Creature — Human Assassin|2|1| +Pillar Tombs of Aku|Visions||R|{2}{B}{B}|World Enchantment||| +Python|Visions||C|{1}{B}{B}|Creature — Snake|3|2| +Suq'Ata Assassin|Visions||U|{1}{B}{B}|Creature — Human Assassin|1|1| +Tar Pit Warrior|Visions||C|{2}{B}|Creature — Cyclops Warrior|3|4| +Urborg Mindsucker|Visions||C|{2}{B}|Creature — Horror|2|2| +Vampiric Tutor|Visions||R|{B}|Instant||| +Vampirism|Visions||U|{1}{B}|Enchantment — Aura||| +Wake of Vultures|Visions||C|{3}{B}|Creature — Bird|3|1| +Wicked Reward|Visions||C|{1}{B}|Instant||| +Betrayal|Visions||C|{U}|Enchantment — Aura||| +Breezekeeper|Visions||C|{3}{U}|Creature — Djinn|4|4| +Chronatog|Visions||R|{1}{U}|Creature — Atog|1|2| +Cloud Elemental|Visions||C|{2}{U}|Creature — Elemental|2|3| +Desertion|Visions||R|{3}{U}{U}|Instant||| +Dream Tides|Visions||U|{2}{U}{U}|Enchantment||| +Impulse|Visions||C|{1}{U}|Instant||| +Inspiration|Visions||C|{3}{U}|Instant||| +Man-o'-War|Visions||C|{2}{U}|Creature — Jellyfish|2|2| +Mystic Veil|Visions||C|{1}{U}|Enchantment — Aura||| +Ovinomancer|Visions||U|{2}{U}|Creature — Human Wizard|0|1| +Prosperity|Visions||U|{X}{U}|Sorcery||| +Rainbow Efreet|Visions||R|{3}{U}|Creature — Efreet|3|1| +Shimmering Efreet|Visions||U|{2}{U}|Creature — Efreet|2|2| +Shrieking Drake|Visions||C|{U}|Creature — Drake|1|1| +Teferi's Realm|Visions||R|{1}{U}{U}|World Enchantment||| +Three Wishes|Visions||R|{1}{U}{U}|Instant||| +Time and Tide|Visions||U|{U}{U}|Instant||| +Undo|Visions||C|{1}{U}{U}|Sorcery||| +Vanishing|Visions||C|{U}|Enchantment — Aura||| +Vision Charm|Visions||C|{U}|Instant||| +Waterspout Djinn|Visions||U|{2}{U}{U}|Creature — Djinn|4|4| +Bull Elephant|Visions||C|{3}{G}|Creature — Elephant|4|4| +City of Solitude|Visions||R|{2}{G}|Enchantment||| +Creeping Mold|Visions||U|{2}{G}{G}|Sorcery||| +Elven Cache|Visions||C|{2}{G}{G}|Sorcery||| +Giant Caterpillar|Visions||C|{3}{G}|Creature — Insect|3|3| +King Cheetah|Visions||C|{3}{G}|Creature — Cat|3|2| +Mortal Wound|Visions||C|{G}|Enchantment — Aura||| +Natural Order|Visions||R|{2}{G}{G}|Sorcery||| +Panther Warriors|Visions||C|{4}{G}|Creature — Cat Warrior|6|3| +Quirion Druid|Visions||R|{2}{G}|Creature — Elf Druid|1|2| +Quirion Ranger|Visions||C|{G}|Creature — Elf|1|1| +River Boa|Visions||C|{1}{G}|Creature — Snake|2|1| +Rowen|Visions||R|{2}{G}{G}|Enchantment||| +Spider Climb|Visions||C|{G}|Enchantment — Aura||| +Stampeding Wildebeests|Visions||U|{2}{G}{G}|Creature — Antelope Beast|5|4| +Summer Bloom|Visions||U|{1}{G}|Sorcery||| +Uktabi Orangutan|Visions||U|{2}{G}|Creature — Ape|2|2| +Warthog|Visions||C|{1}{G}{G}|Creature — Boar|3|2| +Wind Shear|Visions||U|{2}{G}|Instant||| +Bogardan Phoenix|Visions||R|{2}{R}{R}{R}|Creature — Phoenix|3|3| +Dwarven Vigilantes|Visions||C|{2}{R}|Creature — Dwarf|2|2| +Fireblast|Visions||C|{4}{R}{R}|Instant||| +Goblin Recruiter|Visions||U|{1}{R}|Creature — Goblin|1|1| +Hulking Cyclops|Visions||U|{3}{R}{R}|Creature — Cyclops|5|5| +Mob Mentality|Visions||U|{R}|Enchantment — Aura||| +Ogre Enforcer|Visions||R|{3}{R}{R}|Creature — Ogre|4|4| +Raging Gorilla|Visions||C|{2}{R}|Creature — Ape|2|3| +Relentless Assault|Visions||R|{2}{R}{R}|Sorcery||| +Rock Slide|Visions||C|{X}{R}|Instant||| +Solfatara|Visions||C|{2}{R}|Instant||| +Song of Blood|Visions||C|{1}{R}|Sorcery||| +Spitting Drake|Visions||U|{3}{R}|Creature — Drake|2|2| +Suq'Ata Lancer|Visions||C|{2}{R}|Creature — Human Knight|2|2| +Talruum Champion|Visions||C|{4}{R}|Creature — Minotaur|3|3| +Talruum Piper|Visions||U|{4}{R}|Creature — Minotaur|3|3| +Tremor|Visions||C|{R}|Sorcery||| +Viashino Sandstalker|Visions||U|{1}{R}{R}|Creature — Viashino Warrior|4|2| +Archangel|Visions||R|{5}{W}{W}|Creature — Angel|5|5| +Daraja Griffin|Visions||U|{3}{W}|Creature — Griffin|2|2| +Honorable Passage|Visions||U|{1}{W}|Instant||| +Infantry Veteran|Visions||C|{W}|Creature — Human Soldier|1|1| +Longbow Archer|Visions||U|{W}{W}|Creature — Human Soldier Archer|2|2| +Miraculous Recovery|Visions||U|{4}{W}|Instant||| +Parapet|Visions||C|{1}{W}|Enchantment||| +Peace Talks|Visions||U|{1}{W}|Sorcery||| +Relic Ward|Visions||U|{1}{W}|Enchantment — Aura||| +Remedy|Visions||C|{1}{W}|Instant||| +Resistance Fighter|Visions||C|{W}|Creature — Human Soldier|1|1| +Retribution of the Meek|Visions||R|{2}{W}|Sorcery||| +Righteous Aura|Visions||C|{1}{W}|Enchantment||| +Sun Clasp|Visions||C|{1}{W}|Enchantment — Aura||| +Teferi's Honor Guard|Visions||U|{2}{W}|Creature — Human Knight|2|2| +Tithe|Visions||R|{W}|Instant||| +Warrior's Honor|Visions||C|{2}{W}|Instant||| +Zhalfirin Crusader|Visions||R|{1}{W}{W}|Creature — Human Knight|2|2| +Army Ants|Visions||U|{1}{B}{R}|Creature — Insect|1|1| +Breathstealer's Crypt|Visions||R|{2}{U}{B}|Enchantment||| +Corrosion|Visions||R|{1}{B}{R}|Enchantment||| +Mundungu|Visions||U|{1}{U}{B}|Creature — Human Wizard|1|1| +Pygmy Hippo|Visions||R|{G}{U}|Creature — Hippo|2|2| +Righteous War|Visions||R|{1}{W}{B}|Enchantment||| +Scalebane's Elite|Visions||U|{3}{G}{W}|Creature — Human Soldier|4|4| +Simoon|Visions||U|{R}{G}|Instant||| +Squandered Resources|Visions||R|{B}{G}|Enchantment||| +Suleiman's Legacy|Visions||R|{R}{W}|Enchantment||| +Tempest Drake|Visions||U|{1}{W}{U}|Creature — Drake|2|2| +Viashivan Dragon|Visions||R|{2}{R}{R}{G}{G}|Creature — Dragon|4|4| +Coral Atoll|Visions||U||Land||| +Dormant Volcano|Visions||U||Land||| +Quicksand|Visions||U||Land||| +Undiscovered Paradise|Visions||R||Land||| +Aladdin's Ring|Fifth Edition||R|{8}|Artifact||| +Amulet of Kroog|Fifth Edition||C|{2}|Artifact||| +Ankh of Mishra|Fifth Edition||R|{2}|Artifact||| +Ashnod's Altar|Fifth Edition||U|{3}|Artifact||| +Ashnod's Transmogrant|Fifth Edition||C|{1}|Artifact||| +Barbed Sextant|Fifth Edition||C|{1}|Artifact||| +Barl's Cage|Fifth Edition||R|{4}|Artifact||| +Battering Ram|Fifth Edition||C|{2}|Artifact Creature — Construct|1|1| +Bottle of Suleiman|Fifth Edition||R|{4}|Artifact||| +Clay Statue|Fifth Edition||C|{4}|Artifact Creature — Golem|3|1| +Clockwork Beast|Fifth Edition||R|{6}|Artifact Creature — Beast|0|4| +Clockwork Steed|Fifth Edition||U|{4}|Artifact Creature — Horse|0|3| +Colossus of Sardia|Fifth Edition||R|{9}|Artifact Creature — Golem|9|9| +Coral Helm|Fifth Edition||R|{3}|Artifact||| +Crown of the Ages|Fifth Edition||R|{2}|Artifact||| +Crystal Rod|Fifth Edition||U|{1}|Artifact||| +Dancing Scimitar|Fifth Edition||R|{4}|Artifact Creature — Spirit|1|5| +Diabolic Machine|Fifth Edition||U|{7}|Artifact Creature — Construct|4|4| +Dingus Egg|Fifth Edition||R|{4}|Artifact||| +Disrupting Scepter|Fifth Edition||R|{3}|Artifact||| +Dragon Engine|Fifth Edition||R|{3}|Artifact Creature — Construct|1|3| +Elkin Bottle|Fifth Edition||R|{3}|Artifact||| +Feldon's Cane|Fifth Edition||U|{1}|Artifact||| +Fellwar Stone|Fifth Edition||U|{2}|Artifact||| +Feroz's Ban|Fifth Edition||R|{6}|Artifact||| +Flying Carpet|Fifth Edition||R|{4}|Artifact||| +Fountain of Youth|Fifth Edition||U|{0}|Artifact||| +Gauntlets of Chaos|Fifth Edition||R|{5}|Artifact||| +Glasses of Urza|Fifth Edition||U|{1}|Artifact||| +Grapeshot Catapult|Fifth Edition||C|{4}|Artifact Creature — Construct|2|3| +Helm of Chatzuk|Fifth Edition||R|{1}|Artifact||| +Howling Mine|Fifth Edition||R|{2}|Artifact||| +Infinite Hourglass|Fifth Edition||R|{4}|Artifact||| +Iron Star|Fifth Edition||U|{1}|Artifact||| +Ivory Cup|Fifth Edition||U|{1}|Artifact||| +Jade Monolith|Fifth Edition||R|{4}|Artifact||| +Jalum Tome|Fifth Edition||R|{3}|Artifact||| +Jandor's Saddlebags|Fifth Edition||R|{2}|Artifact||| +Jayemdae Tome|Fifth Edition||R|{4}|Artifact||| +Jester's Cap|Fifth Edition||R|{4}|Artifact||| +Joven's Tools|Fifth Edition||U|{6}|Artifact||| +Library of Leng|Fifth Edition||U|{1}|Artifact||| +Mana Vault|Fifth Edition||R|{1}|Artifact||| +Meekstone|Fifth Edition||R|{1}|Artifact||| +Millstone|Fifth Edition||R|{2}|Artifact||| +Nevinyrral's Disk|Fifth Edition||R|{4}|Artifact||| +Obelisk of Undoing|Fifth Edition||R|{1}|Artifact||| +Ornithopter|Fifth Edition||U|{0}|Artifact Creature — Thopter|0|2| +Pentagram of the Ages|Fifth Edition||R|{4}|Artifact||| +Primal Clay|Fifth Edition||R|{4}|Artifact Creature — Shapeshifter|*|*| +Rod of Ruin|Fifth Edition||U|{4}|Artifact||| +Serpent Generator|Fifth Edition||R|{6}|Artifact||| +Shapeshifter|Fifth Edition||U|{6}|Artifact Creature — Shapeshifter|*|7-*| +Skull Catapult|Fifth Edition||U|{4}|Artifact||| +Soul Net|Fifth Edition||U|{1}|Artifact||| +Tawnos's Weaponry|Fifth Edition||U|{2}|Artifact||| +The Hive|Fifth Edition||R|{5}|Artifact||| +Throne of Bone|Fifth Edition||U|{1}|Artifact||| +Time Bomb|Fifth Edition||R|{4}|Artifact||| +Urza's Avenger|Fifth Edition||R|{6}|Artifact Creature — Shapeshifter|4|4| +Urza's Bauble|Fifth Edition||U|{0}|Artifact||| +Wall of Spears|Fifth Edition||C|{3}|Artifact Creature — Wall|2|3| +Winter Orb|Fifth Edition||R|{2}|Artifact||| +Wooden Sphere|Fifth Edition||U|{1}|Artifact||| +Abyssal Specter|Fifth Edition||U|{2}{B}{B}|Creature — Specter|2|3| +Animate Dead|Fifth Edition||U|{1}{B}|Enchantment — Aura||| +Ashes to Ashes|Fifth Edition||U|{1}{B}{B}|Sorcery||| +Bad Moon|Fifth Edition||R|{1}{B}|Enchantment||| +Black Knight|Fifth Edition||U|{B}{B}|Creature — Human Knight|2|2| +Blight|Fifth Edition||U|{B}{B}|Enchantment — Aura||| +Bog Imp|Fifth Edition||C|{1}{B}|Creature — Imp|1|1| +Bog Rats|Fifth Edition||C|{B}|Creature — Rat|1|1| +Bog Wraith|Fifth Edition||U|{3}{B}|Creature — Wraith|3|3| +Breeding Pit|Fifth Edition||U|{3}{B}|Enchantment||| +Broken Visage|Fifth Edition||R|{4}{B}|Instant||| +Carrion Ants|Fifth Edition||U|{2}{B}{B}|Creature — Insect|0|1| +Cloak of Confusion|Fifth Edition||C|{1}{B}|Enchantment — Aura||| +Cursed Land|Fifth Edition||U|{2}{B}{B}|Enchantment — Aura||| +Dark Ritual|Fifth Edition||C|{B}|Instant||| +Deathgrip|Fifth Edition||U|{B}{B}|Enchantment||| +Derelor|Fifth Edition||R|{3}{B}|Creature — Thrull|4|4| +Drain Life|Fifth Edition||C|{X}{1}{B}|Sorcery||| +Drudge Skeletons|Fifth Edition||C|{1}{B}|Creature — Skeleton|1|1| +Erg Raiders|Fifth Edition||C|{1}{B}|Creature — Human Warrior|2|3| +Evil Eye of Orms-by-Gore|Fifth Edition||U|{4}{B}|Creature — Eye|3|6| +Evil Presence|Fifth Edition||U|{B}|Enchantment — Aura||| +Fallen Angel|Fifth Edition||U|{3}{B}{B}|Creature — Angel|3|3| +Fear|Fifth Edition||C|{B}{B}|Enchantment — Aura||| +Frozen Shade|Fifth Edition||C|{2}{B}|Creature — Shade|0|1| +Funeral March|Fifth Edition||C|{1}{B}{B}|Enchantment — Aura||| +Gloom|Fifth Edition||U|{2}{B}|Enchantment||| +Greater Werewolf|Fifth Edition||U|{4}{B}|Creature — Human Wolf|2|4| +Hecatomb|Fifth Edition||R|{1}{B}{B}|Enchantment||| +Howl from Beyond|Fifth Edition||C|{X}{B}|Instant||| +Initiates of the Ebon Hand|Fifth Edition||C|{B}|Creature — Cleric|1|1| +Kjeldoran Dead|Fifth Edition||C|{B}|Creature — Skeleton|3|1| +Knight of Stromgald|Fifth Edition||U|{B}{B}|Creature — Human Knight|2|1| +Krovikan Fetish|Fifth Edition||C|{2}{B}|Enchantment — Aura||| +Leshrac's Rite|Fifth Edition||U|{B}|Enchantment — Aura||| +Lord of the Pit|Fifth Edition||R|{4}{B}{B}{B}|Creature — Demon|7|7| +Lost Soul|Fifth Edition||C|{1}{B}{B}|Creature — Spirit Minion|2|1| +Mind Ravel|Fifth Edition||C|{2}{B}|Sorcery||| +Mind Warp|Fifth Edition||U|{X}{3}{B}|Sorcery||| +Mindstab Thrull|Fifth Edition||C|{1}{B}{B}|Creature — Thrull|2|2| +Mole Worms|Fifth Edition||U|{2}{B}|Creature — Worm|1|1| +Murk Dwellers|Fifth Edition||C|{3}{B}|Creature — Zombie|2|2| +Necrite|Fifth Edition||C|{1}{B}{B}|Creature — Thrull|2|2| +Necropotence|Fifth Edition||R|{B}{B}{B}|Enchantment||| +Nether Shadow|Fifth Edition||R|{B}{B}|Creature — Spirit|1|1| +Nightmare|Fifth Edition||R|{5}{B}|Creature — Nightmare Horse|*|*| +Paralyze|Fifth Edition||C|{B}|Enchantment — Aura||| +Pestilence|Fifth Edition||C|{2}{B}{B}|Enchantment||| +Pit Scorpion|Fifth Edition||C|{2}{B}|Creature — Scorpion|1|1| +Plague Rats|Fifth Edition||C|{2}{B}|Creature — Rat|*|*| +Pox|Fifth Edition||R|{B}{B}{B}|Sorcery||| +Rag Man|Fifth Edition||R|{2}{B}{B}|Creature — Human Minion|2|1| +Raise Dead|Fifth Edition||C|{B}|Sorcery||| +Scathe Zombies|Fifth Edition||C|{2}{B}|Creature — Zombie|2|2| +Sengir Autocrat|Fifth Edition||R|{3}{B}|Creature — Human|2|2| +Sorceress Queen|Fifth Edition||R|{1}{B}{B}|Creature — Human Wizard|1|1| +Stromgald Cabal|Fifth Edition||R|{1}{B}{B}|Creature — Human Knight|2|2| +Terror|Fifth Edition||C|{1}{B}|Instant||| +The Wretched|Fifth Edition||R|{3}{B}{B}|Creature — Demon|2|5| +Thrull Retainer|Fifth Edition||U|{B}|Enchantment — Aura||| +Torture|Fifth Edition||C|{B}|Enchantment — Aura||| +Touch of Death|Fifth Edition||C|{2}{B}|Sorcery||| +Unholy Strength|Fifth Edition||C|{B}|Enchantment — Aura||| +Vampire Bats|Fifth Edition||C|{B}|Creature — Bat|0|1| +Wall of Bone|Fifth Edition||U|{2}{B}|Creature — Skeleton Wall|1|4| +Warp Artifact|Fifth Edition||R|{B}{B}|Enchantment — Aura||| +Weakness|Fifth Edition||C|{B}|Enchantment — Aura||| +Xenic Poltergeist|Fifth Edition||R|{1}{B}{B}|Creature — Spirit|1|1| +Zombie Master|Fifth Edition||R|{1}{B}{B}|Creature — Zombie|2|3| +Ζther Storm|Fifth Edition||U|{3}{U}|Enchantment||| +Air Elemental|Fifth Edition||U|{3}{U}{U}|Creature — Elemental|4|4| +Anti-Magic Aura|Fifth Edition||U|{2}{U}|Enchantment — Aura||| +Azure Drake|Fifth Edition||U|{3}{U}|Creature — Drake|2|4| +Binding Grasp|Fifth Edition||U|{3}{U}|Enchantment — Aura||| +Boomerang|Fifth Edition||C|{U}{U}|Instant||| +Brainstorm|Fifth Edition||C|{U}|Instant||| +Counterspell|Fifth Edition||C|{U}{U}|Instant||| +Dance of Many|Fifth Edition||R|{U}{U}|Enchantment||| +Dandβn|Fifth Edition||C|{U}{U}|Creature — Fish|4|1| +Dark Maze|Fifth Edition||C|{4}{U}|Creature — Wall|4|5| +Deflection|Fifth Edition||R|{3}{U}|Instant||| +Drain Power|Fifth Edition||R|{U}{U}|Sorcery||| +Energy Flux|Fifth Edition||U|{2}{U}|Enchantment||| +Enervate|Fifth Edition||C|{1}{U}|Instant||| +Feedback|Fifth Edition||U|{2}{U}|Enchantment — Aura||| +Flight|Fifth Edition||C|{U}|Enchantment — Aura||| +Flood|Fifth Edition||C|{U}|Enchantment||| +Force Spike|Fifth Edition||C|{U}|Instant||| +Forget|Fifth Edition||R|{U}{U}|Sorcery||| +Gaseous Form|Fifth Edition||C|{2}{U}|Enchantment — Aura||| +Glacial Wall|Fifth Edition||U|{2}{U}|Creature — Wall|0|7| +Homarid Warrior|Fifth Edition||C|{4}{U}|Creature — Homarid Warrior|3|3| +Hurkyl's Recall|Fifth Edition||R|{1}{U}|Instant||| +Hydroblast|Fifth Edition||U|{U}|Instant||| +Juxtapose|Fifth Edition||R|{3}{U}|Sorcery||| +Krovikan Sorcerer|Fifth Edition||C|{2}{U}|Creature — Human Wizard|1|1| +Labyrinth Minotaur|Fifth Edition||C|{3}{U}|Creature — Minotaur|1|4| +Leviathan|Fifth Edition||R|{5}{U}{U}{U}{U}|Creature — Leviathan|10|10| +Lifetap|Fifth Edition||U|{U}{U}|Enchantment||| +Lord of Atlantis|Fifth Edition||R|{U}{U}|Creature — Merfolk|2|2| +Magical Hack|Fifth Edition||R|{U}|Instant||| +Magus of the Unseen|Fifth Edition||R|{1}{U}|Creature — Human Wizard|1|1| +Memory Lapse|Fifth Edition||C|{1}{U}|Instant||| +Merfolk of the Pearl Trident|Fifth Edition||C|{U}|Creature — Merfolk|1|1| +Mind Bomb|Fifth Edition||U|{U}|Sorcery||| +Phantasmal Forces|Fifth Edition||U|{3}{U}|Creature — Illusion|4|1| +Phantasmal Terrain|Fifth Edition||C|{U}{U}|Enchantment — Aura||| +Phantom Monster|Fifth Edition||U|{3}{U}|Creature — Illusion|3|3| +Pirate Ship|Fifth Edition||R|{4}{U}|Creature — Human Pirate|4|3| +Portent|Fifth Edition||C|{U}|Sorcery||| +Power Sink|Fifth Edition||U|{X}{U}|Instant||| +Prodigal Sorcerer|Fifth Edition||C|{2}{U}|Creature — Human Wizard|1|1| +Psychic Venom|Fifth Edition||C|{1}{U}|Enchantment — Aura||| +Ray of Command|Fifth Edition||C|{3}{U}|Instant||| +Recall|Fifth Edition||R|{X}{X}{U}|Sorcery||| +Reef Pirates|Fifth Edition||C|{1}{U}{U}|Creature — Zombie Pirate|2|2| +Remove Soul|Fifth Edition||C|{1}{U}|Instant||| +Sea Serpent|Fifth Edition||C|{5}{U}|Creature — Serpent|5|5| +Sea Spirit|Fifth Edition||U|{4}{U}|Creature — Elemental Spirit|2|3| +Sea Sprite|Fifth Edition||U|{1}{U}|Creature — Faerie|1|1| +Seasinger|Fifth Edition||U|{1}{U}{U}|Creature — Merfolk|0|1| +Segovian Leviathan|Fifth Edition||U|{4}{U}|Creature — Leviathan|3|3| +Sibilant Spirit|Fifth Edition||R|{5}{U}|Creature — Spirit|5|6| +Sleight of Mind|Fifth Edition||R|{U}|Instant||| +Soul Barrier|Fifth Edition||C|{2}{U}|Enchantment||| +Spell Blast|Fifth Edition||C|{X}{U}|Instant||| +Stasis|Fifth Edition||R|{1}{U}|Enchantment||| +Steal Artifact|Fifth Edition||U|{2}{U}{U}|Enchantment — Aura||| +Time Elemental|Fifth Edition||R|{2}{U}|Creature — Elemental|0|2| +Twiddle|Fifth Edition||C|{U}|Instant||| +Unstable Mutation|Fifth Edition||C|{U}|Enchantment — Aura||| +Unsummon|Fifth Edition||C|{U}|Instant||| +Updraft|Fifth Edition||C|{1}{U}|Instant||| +Vodalian Soldiers|Fifth Edition||C|{1}{U}|Creature — Merfolk Soldier|1|2| +Wall of Air|Fifth Edition||U|{1}{U}{U}|Creature — Wall|1|5| +Wind Spirit|Fifth Edition||U|{4}{U}|Creature — Elemental Spirit|3|2| +Zephyr Falcon|Fifth Edition||C|{1}{U}|Creature — Bird|1|1| +Zur's Weirding|Fifth Edition||R|{3}{U}|Enchantment||| +An-Havva Constable|Fifth Edition||R|{1}{G}{G}|Creature — Human|2|1+*| +Aspect of Wolf|Fifth Edition||R|{1}{G}|Enchantment — Aura||| +Aurochs|Fifth Edition||C|{3}{G}|Creature — Aurochs|2|3| +Birds of Paradise|Fifth Edition||R|{G}|Creature — Bird|0|1| +Carapace|Fifth Edition||C|{G}|Enchantment — Aura||| +Cat Warriors|Fifth Edition||C|{1}{G}{G}|Creature — Cat Warrior|2|2| +Chub Toad|Fifth Edition||C|{2}{G}|Creature — Frog|1|1| +Cockatrice|Fifth Edition||R|{3}{G}{G}|Creature — Cockatrice|2|4| +Craw Giant|Fifth Edition||U|{3}{G}{G}{G}{G}|Creature — Giant|6|4| +Craw Wurm|Fifth Edition||C|{4}{G}{G}|Creature — Wurm|6|4| +Crumble|Fifth Edition||U|{G}|Instant||| +Desert Twister|Fifth Edition||U|{4}{G}{G}|Sorcery||| +Durkwood Boars|Fifth Edition||C|{4}{G}|Creature — Boar|4|4| +Elder Druid|Fifth Edition||R|{3}{G}|Creature — Elf Cleric Druid|2|2| +Elven Riders|Fifth Edition||U|{3}{G}{G}|Creature — Elf|3|3| +Elvish Archers|Fifth Edition||R|{1}{G}|Creature — Elf Archer|2|1| +Fog|Fifth Edition||C|{G}|Instant||| +Force of Nature|Fifth Edition||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Foxfire|Fifth Edition||C|{2}{G}|Instant||| +Fungusaur|Fifth Edition||R|{3}{G}|Creature — Fungus Lizard|2|2| +Fyndhorn Elder|Fifth Edition||U|{2}{G}|Creature — Elf Druid|1|1| +Ghazbαn Ogre|Fifth Edition||C|{G}|Creature — Ogre|2|2| +Giant Growth|Fifth Edition||C|{G}|Instant||| +Giant Spider|Fifth Edition||C|{3}{G}|Creature — Spider|2|4| +Grizzly Bears|Fifth Edition||C|{1}{G}|Creature — Bear|2|2| +Hungry Mist|Fifth Edition||C|{2}{G}{G}|Creature — Elemental|6|2| +Hurricane|Fifth Edition||U|{X}{G}|Sorcery||| +Instill Energy|Fifth Edition||U|{G}|Enchantment — Aura||| +Ironroot Treefolk|Fifth Edition||C|{4}{G}|Creature — Treefolk|3|5| +Johtull Wurm|Fifth Edition||U|{5}{G}|Creature — Wurm|6|6| +Killer Bees|Fifth Edition||U|{1}{G}{G}|Creature — Insect|0|1| +Ley Druid|Fifth Edition||C|{2}{G}|Creature — Human Druid|1|1| +Lhurgoyf|Fifth Edition||R|{2}{G}{G}|Creature — Lhurgoyf|*|1+*| +Lifeforce|Fifth Edition||U|{G}{G}|Enchantment||| +Living Artifact|Fifth Edition||R|{G}|Enchantment — Aura||| +Living Lands|Fifth Edition||R|{3}{G}|Enchantment||| +Llanowar Elves|Fifth Edition||C|{G}|Creature — Elf Druid|1|1| +Lure|Fifth Edition||U|{1}{G}{G}|Enchantment — Aura||| +Marsh Viper|Fifth Edition||C|{3}{G}|Creature — Snake|1|2| +Nature's Lore|Fifth Edition||C|{1}{G}|Sorcery||| +Pradesh Gypsies|Fifth Edition||C|{2}{G}|Creature — Human Nomad|1|1| +Primal Order|Fifth Edition||R|{2}{G}{G}|Enchantment||| +Rabid Wombat|Fifth Edition||U|{2}{G}{G}|Creature — Wombat|0|1| +Radjan Spirit|Fifth Edition||U|{3}{G}|Creature — Spirit|3|2| +Regeneration|Fifth Edition||C|{1}{G}|Enchantment — Aura||| +Scaled Wurm|Fifth Edition||C|{7}{G}|Creature — Wurm|7|6| +Scavenger Folk|Fifth Edition||C|{G}|Creature — Human|1|1| +Scryb Sprites|Fifth Edition||C|{G}|Creature — Faerie|1|1| +Shanodin Dryads|Fifth Edition||C|{G}|Creature — Dryad|1|1| +Shrink|Fifth Edition||C|{G}|Instant||| +Stampede|Fifth Edition||R|{1}{G}{G}|Instant||| +Stream of Life|Fifth Edition||C|{X}{G}|Sorcery||| +Sylvan Library|Fifth Edition||R|{1}{G}|Enchantment||| +Tarpan|Fifth Edition||C|{G}|Creature — Horse|1|1| +Thicket Basilisk|Fifth Edition||U|{3}{G}{G}|Creature — Basilisk|2|4| +Titania's Song|Fifth Edition||R|{3}{G}|Enchantment||| +Tranquility|Fifth Edition||C|{2}{G}|Sorcery||| +Tsunami|Fifth Edition||U|{3}{G}|Sorcery||| +Untamed Wilds|Fifth Edition||U|{2}{G}|Sorcery||| +Venom|Fifth Edition||C|{1}{G}{G}|Enchantment — Aura||| +Verduran Enchantress|Fifth Edition||R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Brambles|Fifth Edition||U|{2}{G}|Creature — Plant Wall|2|3| +Wanderlust|Fifth Edition||U|{2}{G}|Enchantment — Aura||| +War Mammoth|Fifth Edition||C|{3}{G}|Creature — Elephant|3|3| +Whirling Dervish|Fifth Edition||U|{G}{G}|Creature — Human Monk|1|1| +Wild Growth|Fifth Edition||C|{G}|Enchantment — Aura||| +Winter Blast|Fifth Edition||U|{X}{G}|Sorcery||| +Wolverine Pack|Fifth Edition||U|{2}{G}{G}|Creature — Wolverine|2|4| +Wyluli Wolf|Fifth Edition||R|{1}{G}|Creature — Wolf|1|1| +Ambush Party|Fifth Edition||C|{4}{R}|Creature — Human Rogue|3|1| +Atog|Fifth Edition||U|{1}{R}|Creature — Atog|1|2| +Ball Lightning|Fifth Edition||R|{R}{R}{R}|Creature — Elemental|6|1| +Bird Maiden|Fifth Edition||C|{2}{R}|Creature — Human Bird|1|2| +Blood Lust|Fifth Edition||C|{1}{R}|Instant||| +Brassclaw Orcs|Fifth Edition||C|{2}{R}|Creature — Orc|3|2| +Brothers of Fire|Fifth Edition||C|{1}{R}{R}|Creature — Human Shaman|2|2| +Cave People|Fifth Edition||U|{1}{R}{R}|Creature — Human|1|4| +Conquer|Fifth Edition||U|{3}{R}{R}|Enchantment — Aura||| +Crimson Manticore|Fifth Edition||R|{2}{R}{R}|Creature — Manticore|2|2| +Detonate|Fifth Edition||U|{X}{R}|Sorcery||| +Disintegrate|Fifth Edition||C|{X}{R}|Sorcery||| +Dwarven Catapult|Fifth Edition||U|{X}{R}|Instant||| +Dwarven Soldier|Fifth Edition||C|{1}{R}|Creature — Dwarf Soldier|2|1| +Dwarven Warriors|Fifth Edition||C|{2}{R}|Creature — Dwarf Warrior|1|1| +Earthquake|Fifth Edition||R|{X}{R}|Sorcery||| +Errantry|Fifth Edition||C|{1}{R}|Enchantment — Aura||| +Eternal Warrior|Fifth Edition||C|{R}|Enchantment — Aura||| +Fire Drake|Fifth Edition||U|{1}{R}{R}|Creature — Drake|1|2| +Fireball|Fifth Edition||C|{X}{R}|Sorcery||| +Firebreathing|Fifth Edition||C|{R}|Enchantment — Aura||| +Flame Spirit|Fifth Edition||U|{4}{R}|Creature — Elemental Spirit|2|3| +Flare|Fifth Edition||C|{2}{R}|Instant||| +Flashfires|Fifth Edition||U|{3}{R}|Sorcery||| +Game of Chaos|Fifth Edition||R|{R}{R}{R}|Sorcery||| +Giant Strength|Fifth Edition||C|{R}{R}|Enchantment — Aura||| +Goblin Digging Team|Fifth Edition||C|{R}|Creature — Goblin|1|1| +Goblin Hero|Fifth Edition||C|{2}{R}|Creature — Goblin|2|2| +Goblin King|Fifth Edition||R|{1}{R}{R}|Creature — Goblin|2|2| +Goblin War Drums|Fifth Edition||C|{2}{R}|Enchantment||| +Goblin Warrens|Fifth Edition||R|{2}{R}|Enchantment||| +Hill Giant|Fifth Edition||C|{3}{R}|Creature — Giant|3|3| +Hurloon Minotaur|Fifth Edition||C|{1}{R}{R}|Creature — Minotaur|2|3| +Imposing Visage|Fifth Edition||C|{R}|Enchantment — Aura||| +Incinerate|Fifth Edition||C|{1}{R}|Instant||| +Inferno|Fifth Edition||R|{5}{R}{R}|Instant||| +Ironclaw Curse|Fifth Edition||R|{R}|Enchantment — Aura||| +Ironclaw Orcs|Fifth Edition||C|{1}{R}|Creature — Orc|2|2| +Jokulhaups|Fifth Edition||R|{4}{R}{R}|Sorcery||| +Keldon Warlord|Fifth Edition||U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Mana Clash|Fifth Edition||R|{R}|Sorcery||| +Mana Flare|Fifth Edition||R|{2}{R}|Enchantment||| +Manabarbs|Fifth Edition||R|{3}{R}|Enchantment||| +Mons's Goblin Raiders|Fifth Edition||C|{R}|Creature — Goblin|1|1| +Mountain Goat|Fifth Edition||C|{R}|Creature — Goat|1|1| +Orcish Artillery|Fifth Edition||U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Captain|Fifth Edition||U|{R}|Creature — Orc Warrior|1|1| +Orcish Conscripts|Fifth Edition||C|{R}|Creature — Orc|2|2| +Orcish Farmer|Fifth Edition||C|{1}{R}{R}|Creature — Orc|2|2| +Orcish Oriflamme|Fifth Edition||U|{3}{R}|Enchantment||| +Orcish Squatters|Fifth Edition||R|{4}{R}|Creature — Orc|2|3| +Orgg|Fifth Edition||R|{3}{R}{R}|Creature — Orgg|6|6| +Panic|Fifth Edition||C|{R}|Instant||| +Primordial Ooze|Fifth Edition||U|{R}|Creature — Ooze|1|1| +Pyroblast|Fifth Edition||U|{R}|Instant||| +Pyrotechnics|Fifth Edition||U|{4}{R}|Sorcery||| +Sabretooth Tiger|Fifth Edition||C|{2}{R}|Creature — Cat|2|1| +Shatter|Fifth Edition||C|{1}{R}|Instant||| +Shatterstorm|Fifth Edition||U|{2}{R}{R}|Sorcery||| +Shivan Dragon|Fifth Edition||R|{4}{R}{R}|Creature — Dragon|5|5| +Smoke|Fifth Edition||R|{R}{R}|Enchantment||| +Stone Giant|Fifth Edition||U|{2}{R}{R}|Creature — Giant|3|4| +Stone Rain|Fifth Edition||C|{2}{R}|Sorcery||| +Stone Spirit|Fifth Edition||U|{4}{R}|Creature — Elemental Spirit|4|3| +The Brute|Fifth Edition||C|{1}{R}|Enchantment — Aura||| +Wall of Fire|Fifth Edition||U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Stone|Fifth Edition||U|{1}{R}{R}|Creature — Wall|0|8| +Winds of Change|Fifth Edition||R|{R}|Sorcery||| +Word of Blasting|Fifth Edition||U|{1}{R}|Instant||| +Abbey Gargoyles|Fifth Edition||U|{2}{W}{W}{W}|Creature — Gargoyle|3|4| +Akron Legionnaire|Fifth Edition||R|{6}{W}{W}|Creature — Giant Soldier|8|4| +Alabaster Potion|Fifth Edition||C|{X}{W}{W}|Instant||| +Angry Mob|Fifth Edition||U|{2}{W}{W}|Creature — Human|2+*|2+*| +Animate Wall|Fifth Edition||R|{W}|Enchantment — Aura||| +Arenson's Aura|Fifth Edition||U|{2}{W}|Enchantment||| +Armageddon|Fifth Edition||R|{3}{W}|Sorcery||| +Armor of Faith|Fifth Edition||C|{W}|Enchantment — Aura||| +Aysen Bureaucrats|Fifth Edition||C|{1}{W}|Creature — Human Advisor|1|1| +Benalish Hero|Fifth Edition||C|{W}|Creature — Human Soldier|1|1| +Blessed Wine|Fifth Edition||C|{1}{W}|Instant||| +Blinking Spirit|Fifth Edition||R|{3}{W}|Creature — Spirit|2|2| +Brainwash|Fifth Edition||C|{W}|Enchantment — Aura||| +Caribou Range|Fifth Edition||R|{2}{W}{W}|Enchantment — Aura||| +Castle|Fifth Edition||U|{3}{W}|Enchantment||| +Circle of Protection: Artifacts|Fifth Edition||U|{1}{W}|Enchantment||| +Circle of Protection: Black|Fifth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Fifth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Fifth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Fifth Edition||C|{1}{W}|Enchantment||| +Circle of Protection: White|Fifth Edition||C|{1}{W}|Enchantment||| +Crusade|Fifth Edition||R|{W}{W}|Enchantment||| +D'Avenant Archer|Fifth Edition||C|{2}{W}|Creature — Human Soldier Archer|1|2| +Death Speakers|Fifth Edition||C|{W}|Creature — Human Cleric|1|1| +Death Ward|Fifth Edition||C|{W}|Instant||| +Disenchant|Fifth Edition||C|{1}{W}|Instant||| +Divine Offering|Fifth Edition||C|{1}{W}|Instant||| +Divine Transformation|Fifth Edition||U|{2}{W}{W}|Enchantment — Aura||| +Dust to Dust|Fifth Edition||U|{1}{W}{W}|Sorcery||| +Eye for an Eye|Fifth Edition||R|{W}{W}|Instant||| +Greater Realm of Preservation|Fifth Edition||U|{1}{W}|Enchantment||| +Heal|Fifth Edition||C|{W}|Instant||| +Healing Salve|Fifth Edition||C|{W}|Instant||| +Hipparion|Fifth Edition||C|{1}{W}|Creature — Horse|1|3| +Holy Strength|Fifth Edition||C|{W}|Enchantment — Aura||| +Icatian Phalanx|Fifth Edition||U|{4}{W}|Creature — Human Soldier|2|4| +Icatian Scout|Fifth Edition||C|{W}|Creature — Human Soldier Scout|1|1| +Icatian Town|Fifth Edition||R|{5}{W}|Sorcery||| +Island Sanctuary|Fifth Edition||R|{1}{W}|Enchantment||| +Ivory Guardians|Fifth Edition||U|{4}{W}{W}|Creature — Giant Cleric|3|3| +Justice|Fifth Edition||U|{2}{W}{W}|Enchantment||| +Karma|Fifth Edition||U|{2}{W}{W}|Enchantment||| +Kismet|Fifth Edition||U|{3}{W}|Enchantment||| +Kjeldoran Royal Guard|Fifth Edition||R|{3}{W}{W}|Creature — Human Soldier|2|5| +Kjeldoran Skycaptain|Fifth Edition||U|{4}{W}|Creature — Human Soldier|2|2| +Mesa Falcon|Fifth Edition||C|{1}{W}|Creature — Bird|1|1| +Mesa Pegasus|Fifth Edition||C|{1}{W}|Creature — Pegasus|1|1| +Order of the Sacred Torch|Fifth Edition||R|{1}{W}{W}|Creature — Human Knight|2|2| +Order of the White Shield|Fifth Edition||U|{W}{W}|Creature — Human Knight|2|1| +Pearled Unicorn|Fifth Edition||C|{2}{W}|Creature — Unicorn|2|2| +Personal Incarnation|Fifth Edition||R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Pikemen|Fifth Edition||C|{1}{W}|Creature — Human Soldier|1|1| +Prismatic Ward|Fifth Edition||C|{1}{W}|Enchantment — Aura||| +Repentant Blacksmith|Fifth Edition||C|{1}{W}|Creature — Human|1|2| +Reverse Damage|Fifth Edition||R|{1}{W}{W}|Instant||| +Righteousness|Fifth Edition||R|{W}|Instant||| +Sacred Boon|Fifth Edition||U|{1}{W}|Instant||| +Samite Healer|Fifth Edition||C|{1}{W}|Creature — Human Cleric|1|1| +Seraph|Fifth Edition||R|{6}{W}|Creature — Angel|4|4| +Serra Bestiary|Fifth Edition||U|{W}{W}|Enchantment — Aura||| +Serra Paladin|Fifth Edition||U|{2}{W}{W}|Creature — Human Knight|2|2| +Shield Bearer|Fifth Edition||C|{1}{W}|Creature — Human Soldier|0|3| +Shield Wall|Fifth Edition||C|{1}{W}|Instant||| +Spirit Link|Fifth Edition||U|{W}|Enchantment — Aura||| +Truce|Fifth Edition||R|{2}{W}|Instant||| +Tundra Wolves|Fifth Edition||C|{W}|Creature — Wolf|1|1| +Wall of Swords|Fifth Edition||U|{3}{W}|Creature — Wall|3|5| +White Knight|Fifth Edition||U|{W}{W}|Creature — Human Knight|2|2| +Wrath of God|Fifth Edition||R|{2}{W}{W}|Sorcery||| +Swamp|Fifth Edition||L||Basic Land — Swamp||| +Swamp|Fifth Edition||L||Basic Land — Swamp||| +Swamp|Fifth Edition||L||Basic Land — Swamp||| +Swamp|Fifth Edition||L||Basic Land — Swamp||| +Forest|Fifth Edition||L||Basic Land — Forest||| +Forest|Fifth Edition||L||Basic Land — Forest||| +Forest|Fifth Edition||L||Basic Land — Forest||| +Forest|Fifth Edition||L||Basic Land — Forest||| +Adarkar Wastes|Fifth Edition||R||Land||| +Bottomless Vault|Fifth Edition||R||Land||| +Brushland|Fifth Edition||R||Land||| +City of Brass|Fifth Edition||R||Land||| +Dwarven Hold|Fifth Edition||R||Land||| +Dwarven Ruins|Fifth Edition||U||Land||| +Ebon Stronghold|Fifth Edition||U||Land||| +Havenwood Battleground|Fifth Edition||U||Land||| +Hollow Trees|Fifth Edition||R||Land||| +Icatian Store|Fifth Edition||R||Land||| +Ice Floe|Fifth Edition||U||Land||| +Karplusan Forest|Fifth Edition||R||Land||| +Ruins of Trokair|Fifth Edition||U||Land||| +Sand Silos|Fifth Edition||R||Land||| +Sulfurous Springs|Fifth Edition||R||Land||| +Svyelunite Temple|Fifth Edition||U||Land||| +Underground River|Fifth Edition||R||Land||| +Urza's Mine|Fifth Edition||C||Land — Urza’s Mine||| +Urza's Power Plant|Fifth Edition||C||Land — Urza’s Power-Plant||| +Urza's Tower|Fifth Edition||C||Land — Urza’s Tower||| +Mountain|Fifth Edition||L||Basic Land — Mountain||| +Mountain|Fifth Edition||L||Basic Land — Mountain||| +Mountain|Fifth Edition||L||Basic Land — Mountain||| +Mountain|Fifth Edition||L||Basic Land — Mountain||| +Island|Fifth Edition||L||Basic Land — Island||| +Island|Fifth Edition||L||Basic Land — Island||| +Island|Fifth Edition||L||Basic Land — Island||| +Island|Fifth Edition||L||Basic Land — Island||| +Plains|Fifth Edition||L||Basic Land — Plains||| +Plains|Fifth Edition||L||Basic Land — Plains||| +Plains|Fifth Edition||L||Basic Land — Plains||| +Plains|Fifth Edition||L||Basic Land — Plains||| +Arrogant Vampire|Portal||U|{3}{B}{B}|Creature — Vampire|4|3| +Assassin's Blade|Portal||U|{1}{B}|Instant||| +Bog Imp|Portal||C|{1}{B}|Creature — Imp|1|1| +Bog Raiders|Portal||C|{2}{B}|Creature — Zombie|2|2| +Bog Wraith|Portal||U|{3}{B}|Creature — Wraith|3|3| +Charging Bandits|Portal||U|{4}{B}|Creature — Human Rogue|3|3| +Craven Knight|Portal||C|{1}{B}|Creature — Human Knight|2|2| +Cruel Bargain|Portal||R|{B}{B}{B}|Sorcery||| +Cruel Tutor|Portal||R|{2}{B}|Sorcery||| +Dread Charge|Portal||R|{3}{B}|Sorcery||| +Dread Reaper|Portal||R|{3}{B}{B}{B}|Creature — Horror|6|5| +Dry Spell|Portal||U|{1}{B}|Sorcery||| +Ebon Dragon|Portal||R|{5}{B}{B}|Creature — Dragon|5|4| +Endless Cockroaches|Portal||R|{1}{B}{B}|Creature — Insect|1|1| +Feral Shadow|Portal||C|{2}{B}|Creature — Nightstalker|2|1| +Final Strike|Portal||R|{2}{B}{B}|Sorcery||| +Gravedigger|Portal||U|{3}{B}|Creature — Zombie|2|2| +Hand of Death|Portal||C|{2}{B}|Sorcery||| +Hand of Death|Portal||C|{2}{B}|Sorcery||| +Howling Fury|Portal||C|{2}{B}|Sorcery||| +King's Assassin|Portal||R|{1}{B}{B}|Creature — Human Assassin|1|1| +Mercenary Knight|Portal||R|{2}{B}|Creature — Human Mercenary Knight|4|4| +Mind Knives|Portal||C|{1}{B}|Sorcery||| +Mind Rot|Portal||C|{2}{B}|Sorcery||| +Muck Rats|Portal||C|{B}|Creature — Rat|1|1| +Nature's Ruin|Portal||U|{2}{B}|Sorcery||| +Noxious Toad|Portal||U|{2}{B}|Creature — Frog|1|1| +Python|Portal||C|{1}{B}{B}|Creature — Snake|3|2| +Rain of Tears|Portal||U|{1}{B}{B}|Sorcery||| +Raise Dead|Portal||C|{B}|Sorcery||| +Serpent Assassin|Portal||R|{3}{B}{B}|Creature — Snake Assassin|2|2| +Serpent Warrior|Portal||C|{2}{B}|Creature — Snake Warrior|3|3| +Skeletal Crocodile|Portal||C|{3}{B}|Creature — Crocodile Skeleton|5|1| +Skeletal Snake|Portal||C|{1}{B}|Creature — Snake Skeleton|2|1| +Soul Shred|Portal||C|{3}{B}{B}|Sorcery||| +Undying Beast|Portal||C|{3}{B}|Creature — Beast|3|2| +Vampiric Feast|Portal||U|{5}{B}{B}|Sorcery||| +Vampiric Touch|Portal||C|{2}{B}|Sorcery||| +Virtue's Ruin|Portal||U|{2}{B}|Sorcery||| +Wicked Pact|Portal||R|{1}{B}{B}|Sorcery||| +Ancestral Memories|Portal||R|{2}{U}{U}{U}|Sorcery||| +Balance of Power|Portal||R|{3}{U}{U}|Sorcery||| +Baleful Stare|Portal||U|{2}{U}|Sorcery||| +Capricious Sorcerer|Portal||R|{2}{U}|Creature — Human Wizard|1|1| +Cloak of Feathers|Portal||C|{U}|Sorcery||| +Cloud Dragon|Portal||R|{5}{U}|Creature — Illusion Dragon|5|4| +Cloud Pirates|Portal||C|{U}|Creature — Human Pirate|1|1| +Cloud Spirit|Portal||U|{2}{U}|Creature — Spirit|3|1| +Command of Unsummoning|Portal||U|{2}{U}|Instant||| +Coral Eel|Portal||C|{1}{U}|Creature — Fish|2|1| +Cruel Fate|Portal||R|{4}{U}|Sorcery||| +Deep-Sea Serpent|Portal||U|{4}{U}{U}|Creature — Serpent|5|5| +Dιjΰ Vu|Portal||C|{2}{U}|Sorcery||| +Djinn of the Lamp|Portal||R|{5}{U}{U}|Creature — Djinn|5|6| +Exhaustion|Portal||R|{2}{U}|Sorcery||| +Flux|Portal||U|{2}{U}|Sorcery||| +Giant Octopus|Portal||C|{3}{U}|Creature — Octopus|3|3| +Horned Turtle|Portal||C|{2}{U}|Creature — Turtle|1|4| +Ingenious Thief|Portal||U|{1}{U}|Creature — Human Rogue|1|1| +Man-o'-War|Portal||U|{2}{U}|Creature — Jellyfish|2|2| +Merfolk of the Pearl Trident|Portal||C|{U}|Creature — Merfolk|1|1| +Mystic Denial|Portal||U|{1}{U}{U}|Instant||| +Omen|Portal||C|{1}{U}|Sorcery||| +Owl Familiar|Portal||C|{1}{U}|Creature — Bird|1|1| +Personal Tutor|Portal||U|{U}|Sorcery||| +Phantom Warrior|Portal||R|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Prosperity|Portal||R|{X}{U}|Sorcery||| +Snapping Drake|Portal||C|{3}{U}|Creature — Drake|3|2| +Sorcerous Sight|Portal||C|{U}|Sorcery||| +Storm Crow|Portal||C|{1}{U}|Creature — Bird|1|2| +Symbol of Unsummoning|Portal||C|{2}{U}|Sorcery||| +Taunt|Portal||R|{U}|Sorcery||| +Theft of Dreams|Portal||U|{2}{U}|Sorcery||| +Thing from the Deep|Portal||R|{6}{U}{U}{U}|Creature — Leviathan|9|9| +Tidal Surge|Portal||C|{1}{U}|Sorcery||| +Time Ebb|Portal||C|{2}{U}|Sorcery||| +Touch of Brilliance|Portal||C|{3}{U}|Sorcery||| +Wind Drake|Portal||C|{2}{U}|Creature — Drake|2|2| +Withering Gaze|Portal||U|{2}{U}|Sorcery||| +Alluring Scent|Portal||R|{1}{G}{G}|Sorcery||| +Anaconda|Portal||U|{3}{G}|Creature — Snake|3|3| +Anaconda|Portal||U|{3}{G}|Creature — Snake|3|3| +Bee Sting|Portal||U|{3}{G}|Sorcery||| +Bull Hippo|Portal||U|{3}{G}|Creature — Hippo|3|3| +Charging Rhino|Portal||R|{3}{G}{G}|Creature — Rhino|4|4| +Deep Wood|Portal||U|{1}{G}|Instant||| +Elite Cat Warrior|Portal||C|{2}{G}|Creature — Cat Warrior|2|3| +Elite Cat Warrior|Portal||C|{2}{G}|Creature — Cat Warrior|2|3| +Elven Cache|Portal||C|{2}{G}{G}|Sorcery||| +Elvish Ranger|Portal||C|{2}{G}|Creature — Elf|4|1| +Fruition|Portal||C|{G}|Sorcery||| +Giant Spider|Portal||C|{3}{G}|Creature — Spider|2|4| +Gorilla Warrior|Portal||C|{2}{G}|Creature — Ape Warrior|3|2| +Grizzly Bears|Portal||C|{1}{G}|Creature — Bear|2|2| +Hurricane|Portal||R|{X}{G}|Sorcery||| +Jungle Lion|Portal||C|{G}|Creature — Cat|2|1| +Mobilize|Portal||C|{G}|Sorcery||| +Monstrous Growth|Portal||C|{1}{G}|Sorcery||| +Monstrous Growth|Portal||C|{1}{G}|Sorcery||| +Moon Sprite|Portal||U|{1}{G}|Creature — Faerie|1|1| +Natural Order|Portal||R|{2}{G}{G}|Sorcery||| +Natural Spring|Portal||U|{3}{G}{G}|Sorcery||| +Nature's Cloak|Portal||R|{2}{G}|Sorcery||| +Nature's Lore|Portal||C|{1}{G}|Sorcery||| +Needle Storm|Portal||U|{2}{G}|Sorcery||| +Plant Elemental|Portal||U|{1}{G}|Creature — Plant Elemental|3|4| +Primeval Force|Portal||R|{2}{G}{G}{G}|Creature — Elemental|8|8| +Redwood Treefolk|Portal||C|{4}{G}|Creature — Treefolk|3|6| +Rowan Treefolk|Portal||C|{3}{G}|Creature — Treefolk|3|4| +Spined Wurm|Portal||C|{4}{G}|Creature — Wurm|5|4| +Stalking Tiger|Portal||C|{3}{G}|Creature — Cat|3|3| +Summer Bloom|Portal||R|{1}{G}|Sorcery||| +Sylvan Tutor|Portal||R|{G}|Sorcery||| +Thundering Wurm|Portal||R|{2}{G}|Creature — Wurm|4|4| +Treetop Defense|Portal||R|{1}{G}|Instant||| +Untamed Wilds|Portal||U|{2}{G}|Sorcery||| +Whiptail Wurm|Portal||U|{6}{G}|Creature — Wurm|8|5| +Willow Dryad|Portal||C|{G}|Creature — Dryad|1|1| +Winter's Grasp|Portal||U|{1}{G}{G}|Sorcery||| +Wood Elves|Portal||R|{2}{G}|Creature — Elf Scout|1|1| +Blaze|Portal||U|{X}{R}|Sorcery||| +Blaze|Portal||U|{X}{R}|Sorcery||| +Boiling Seas|Portal||U|{3}{R}|Sorcery||| +Burning Cloak|Portal||C|{R}|Sorcery||| +Craven Giant|Portal||C|{2}{R}|Creature — Giant|4|1| +Desert Drake|Portal||U|{3}{R}|Creature — Drake|2|2| +Devastation|Portal||R|{5}{R}{R}|Sorcery||| +Earthquake|Portal||R|{X}{R}|Sorcery||| +Fire Dragon|Portal||R|{6}{R}{R}{R}|Creature — Dragon|6|6| +Fire Imp|Portal||U|{2}{R}|Creature — Imp|2|1| +Fire Snake|Portal||C|{4}{R}|Creature — Snake|3|1| +Fire Tempest|Portal||R|{5}{R}{R}|Sorcery||| +Flashfires|Portal||U|{3}{R}|Sorcery||| +Forked Lightning|Portal||R|{3}{R}|Sorcery||| +Goblin Bully|Portal||C|{1}{R}|Creature — Goblin|2|1| +Highland Giant|Portal||C|{2}{R}{R}|Creature — Giant|3|4| +Hill Giant|Portal||C|{3}{R}|Creature — Giant|3|3| +Hulking Cyclops|Portal||U|{3}{R}{R}|Creature — Cyclops|5|5| +Hulking Goblin|Portal||C|{1}{R}|Creature — Goblin|2|2| +Last Chance|Portal||R|{R}{R}|Sorcery||| +Lava Axe|Portal||C|{4}{R}|Sorcery||| +Lava Flow|Portal||U|{3}{R}{R}|Sorcery||| +Lizard Warrior|Portal||C|{3}{R}|Creature — Lizard Warrior|4|2| +Minotaur Warrior|Portal||C|{2}{R}|Creature — Minotaur Warrior|2|3| +Mountain Goat|Portal||U|{R}|Creature — Goat|1|1| +Pillaging Horde|Portal||R|{2}{R}{R}|Creature — Human Barbarian|5|5| +Pyroclasm|Portal||R|{1}{R}|Sorcery||| +Raging Cougar|Portal||C|{2}{R}|Creature — Cat|2|2| +Raging Goblin|Portal||C|{R}|Creature — Goblin Berserker|1|1| +Raging Goblin|Portal||C|{R}|Creature — Goblin Berserker|1|1| +Raging Minotaur|Portal||C|{2}{R}{R}|Creature — Minotaur Berserker|3|3| +Rain of Salt|Portal||U|{4}{R}{R}|Sorcery||| +Scorching Spear|Portal||C|{R}|Sorcery||| +Scorching Winds|Portal||U|{R}|Instant||| +Spitting Earth|Portal||C|{1}{R}|Sorcery||| +Stone Rain|Portal||C|{2}{R}|Sorcery||| +Thundermare|Portal||R|{5}{R}|Creature — Elemental Horse|5|5| +Volcanic Dragon|Portal||R|{4}{R}{R}|Creature — Dragon|4|4| +Volcanic Hammer|Portal||C|{1}{R}|Sorcery||| +Wall of Granite|Portal||U|{2}{R}|Creature — Wall|0|7| +Winds of Change|Portal||R|{R}|Sorcery||| +Alabaster Dragon|Portal||R|{4}{W}{W}|Creature — Dragon|4|4| +Angelic Blessing|Portal||C|{2}{W}|Sorcery||| +Archangel|Portal||R|{5}{W}{W}|Creature — Angel|5|5| +Ardent Militia|Portal||U|{4}{W}|Creature — Human Soldier|2|5| +Armageddon|Portal||R|{3}{W}|Sorcery||| +Armored Pegasus|Portal||C|{1}{W}|Creature — Pegasus|1|2| +Blessed Reversal|Portal||R|{1}{W}|Instant||| +Blinding Light|Portal||R|{2}{W}|Sorcery||| +Border Guard|Portal||C|{2}{W}|Creature — Human Soldier|1|4| +Breath of Life|Portal||C|{3}{W}|Sorcery||| +Charging Paladin|Portal||U|{2}{W}|Creature — Human Knight|2|2| +Defiant Stand|Portal||U|{1}{W}|Instant||| +Devoted Hero|Portal||C|{W}|Creature — Elf Soldier|1|2| +False Peace|Portal||C|{W}|Sorcery||| +Fleet-Footed Monk|Portal||C|{1}{W}|Creature — Human Monk|1|1| +Foot Soldiers|Portal||C|{3}{W}|Creature — Human Soldier|2|4| +Gift of Estates|Portal||R|{1}{W}|Sorcery||| +Harsh Justice|Portal||R|{2}{W}|Instant||| +Keen-Eyed Archers|Portal||C|{2}{W}|Creature — Elf Archer|2|2| +Knight Errant|Portal||C|{1}{W}|Creature — Human Knight|2|2| +Path of Peace|Portal||C|{3}{W}|Sorcery||| +Regal Unicorn|Portal||C|{2}{W}|Creature — Unicorn|2|3| +Renewing Dawn|Portal||U|{1}{W}|Sorcery||| +Sacred Knight|Portal||C|{3}{W}|Creature — Human Knight|3|2| +Sacred Nectar|Portal||C|{1}{W}|Sorcery||| +Seasoned Marshal|Portal||U|{2}{W}{W}|Creature — Human Soldier|2|2| +Spiritual Guardian|Portal||R|{3}{W}{W}|Creature — Spirit|3|4| +Spotted Griffin|Portal||C|{3}{W}|Creature — Griffin|2|3| +Starlight|Portal||U|{1}{W}|Sorcery||| +Starlit Angel|Portal||U|{3}{W}{W}|Creature — Angel|3|4| +Steadfastness|Portal||C|{1}{W}|Sorcery||| +Stern Marshal|Portal||R|{2}{W}|Creature — Human Soldier|2|2| +Temporary Truce|Portal||R|{1}{W}|Sorcery||| +Valorous Charge|Portal||U|{1}{W}{W}|Sorcery||| +Venerable Monk|Portal||U|{2}{W}|Creature — Human Monk Cleric|2|2| +Vengeance|Portal||U|{3}{W}|Sorcery||| +Wall of Swords|Portal||U|{3}{W}|Creature — Wall|3|5| +Warrior's Charge|Portal||C|{2}{W}|Sorcery||| +Warrior's Charge|Portal||C|{2}{W}|Sorcery||| +Wrath of God|Portal||R|{2}{W}{W}|Sorcery||| +Swamp|Portal||L||Basic Land — Swamp||| +Swamp|Portal||L||Basic Land — Swamp||| +Swamp|Portal||L||Basic Land — Swamp||| +Swamp|Portal||L||Basic Land — Swamp||| +Forest|Portal||L||Basic Land — Forest||| +Forest|Portal||L||Basic Land — Forest||| +Forest|Portal||L||Basic Land — Forest||| +Forest|Portal||L||Basic Land — Forest||| +Mountain|Portal||L||Basic Land — Mountain||| +Mountain|Portal||L||Basic Land — Mountain||| +Mountain|Portal||L||Basic Land — Mountain||| +Mountain|Portal||L||Basic Land — Mountain||| +Island|Portal||L||Basic Land — Island||| +Island|Portal||L||Basic Land — Island||| +Island|Portal||L||Basic Land — Island||| +Island|Portal||L||Basic Land — Island||| +Plains|Portal||L||Basic Land — Plains||| +Plains|Portal||L||Basic Land — Plains||| +Plains|Portal||L||Basic Land — Plains||| +Plains|Portal||L||Basic Land — Plains||| +Bφsium Strip|Weatherlight||R|{3}|Artifact||| +Bubble Matrix|Weatherlight||R|{4}|Artifact||| +Chimeric Sphere|Weatherlight||U|{3}|Artifact||| +Dingus Staff|Weatherlight||U|{4}|Artifact||| +Jabari's Banner|Weatherlight||U|{2}|Artifact||| +Jangling Automaton|Weatherlight||C|{3}|Artifact Creature — Construct|3|2| +Mana Web|Weatherlight||R|{3}|Artifact||| +Mind Stone|Weatherlight||C|{2}|Artifact||| +Null Rod|Weatherlight||R|{2}|Artifact||| +Phyrexian Furnace|Weatherlight||U|{1}|Artifact||| +Serrated Biskelion|Weatherlight||U|{3}|Artifact Creature — Construct|2|2| +Steel Golem|Weatherlight||U|{3}|Artifact Creature — Golem|3|4| +Straw Golem|Weatherlight||U|{1}|Artifact Creature — Golem|2|3| +Thran Forge|Weatherlight||U|{3}|Artifact||| +Thran Tome|Weatherlight||R|{4}|Artifact||| +Touchstone|Weatherlight||U|{2}|Artifact||| +Well of Knowledge|Weatherlight||R|{3}|Artifact||| +Xanthic Statue|Weatherlight||R|{8}|Artifact||| +Abyssal Gatekeeper|Weatherlight||C|{1}{B}|Creature — Horror|1|1| +Agonizing Memories|Weatherlight||U|{2}{B}{B}|Sorcery||| +Barrow Ghoul|Weatherlight||C|{1}{B}|Creature — Zombie|4|4| +Bone Dancer|Weatherlight||R|{1}{B}{B}|Creature — Zombie|2|2| +Buried Alive|Weatherlight||U|{2}{B}|Sorcery||| +Circling Vultures|Weatherlight||U|{B}|Creature — Bird|3|2| +Coils of the Medusa|Weatherlight||C|{1}{B}|Enchantment — Aura||| +Doomsday|Weatherlight||R|{B}{B}{B}|Sorcery||| +Fatal Blow|Weatherlight||C|{B}|Instant||| +Festering Evil|Weatherlight||U|{3}{B}{B}|Enchantment||| +Fledgling Djinn|Weatherlight||C|{1}{B}|Creature — Djinn|2|2| +Gallowbraid|Weatherlight||R|{3}{B}{B}|Legendary Creature — Horror|5|5| +Haunting Misery|Weatherlight||C|{1}{B}{B}|Sorcery||| +Hidden Horror|Weatherlight||U|{1}{B}{B}|Creature — Horror|4|4| +Infernal Tribute|Weatherlight||R|{B}{B}{B}|Enchantment||| +Mischievous Poltergeist|Weatherlight||U|{2}{B}|Creature — Spirit|1|1| +Morinfen|Weatherlight||R|{3}{B}{B}|Legendary Creature — Horror|5|4| +Necratog|Weatherlight||U|{1}{B}{B}|Creature — Atog|1|2| +Odylic Wraith|Weatherlight||U|{3}{B}|Creature — Wraith|2|2| +Razortooth Rats|Weatherlight||C|{2}{B}|Creature — Rat|2|1| +Shadow Rider|Weatherlight||C|{2}{B}{B}|Creature — Zombie Knight|3|3| +Shattered Crypt|Weatherlight||C|{X}{B}{B}|Sorcery||| +Spinning Darkness|Weatherlight||C|{4}{B}{B}|Instant||| +Strands of Night|Weatherlight||U|{2}{B}{B}|Enchantment||| +Tendrils of Despair|Weatherlight||C|{B}|Sorcery||| +Urborg Justice|Weatherlight||R|{B}{B}|Instant||| +Urborg Stalker|Weatherlight||R|{3}{B}|Creature — Horror|2|4| +Wave of Terror|Weatherlight||R|{2}{B}|Enchantment||| +Zombie Scavengers|Weatherlight||C|{2}{B}|Creature — Zombie|3|1| +Abduction|Weatherlight||U|{2}{U}{U}|Enchantment — Aura||| +Abjure|Weatherlight||C|{U}|Instant||| +Ancestral Knowledge|Weatherlight||R|{1}{U}|Enchantment||| +Apathy|Weatherlight||C|{U}|Enchantment — Aura||| +Argivian Restoration|Weatherlight||U|{2}{U}{U}|Sorcery||| +Avizoa|Weatherlight||R|{3}{U}|Creature — Jellyfish|2|2| +Cloud Djinn|Weatherlight||U|{5}{U}|Creature — Djinn|5|4| +Disrupt|Weatherlight||C|{U}|Instant||| +Ertai's Familiar|Weatherlight||R|{1}{U}|Creature — Illusion|2|2| +Flux|Weatherlight||C|{2}{U}|Sorcery||| +Fog Elemental|Weatherlight||C|{2}{U}|Creature — Elemental|4|4| +Mana Chains|Weatherlight||C|{U}|Enchantment — Aura||| +Manta Ray|Weatherlight||C|{1}{U}{U}|Creature — Fish|3|3| +Merfolk Traders|Weatherlight||C|{1}{U}|Creature — Merfolk|1|2| +Noble Benefactor|Weatherlight||U|{2}{U}|Creature — Human Cleric|2|2| +Ophidian|Weatherlight||C|{2}{U}|Creature — Snake|1|3| +Paradigm Shift|Weatherlight||R|{1}{U}|Sorcery||| +Pendrell Mists|Weatherlight||R|{3}{U}|Enchantment||| +Phantom Warrior|Weatherlight||U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Phantom Wings|Weatherlight||C|{1}{U}|Enchantment — Aura||| +Psychic Vortex|Weatherlight||R|{2}{U}{U}|Enchantment||| +Relearn|Weatherlight||U|{1}{U}{U}|Sorcery||| +Sage Owl|Weatherlight||C|{1}{U}|Creature — Bird|1|1| +Teferi's Veil|Weatherlight||U|{1}{U}|Enchantment||| +Timid Drake|Weatherlight||U|{2}{U}|Creature — Drake|3|3| +Tolarian Drake|Weatherlight||C|{2}{U}|Creature — Drake|2|4| +Tolarian Entrancer|Weatherlight||R|{1}{U}|Creature — Human Wizard|1|1| +Tolarian Serpent|Weatherlight||R|{5}{U}{U}|Creature — Serpent|7|7| +Vodalian Illusionist|Weatherlight||U|{2}{U}|Creature — Merfolk Wizard|2|2| +Aboroth|Weatherlight||R|{4}{G}{G}|Creature — Elemental|9|9| +Arctic Wolves|Weatherlight||U|{3}{G}{G}|Creature — Wolf|4|5| +Barishi|Weatherlight||U|{2}{G}{G}|Creature — Elemental|4|3| +Blossoming Wreath|Weatherlight||C|{G}|Instant||| +Briar Shield|Weatherlight||C|{G}|Enchantment — Aura||| +Call of the Wild|Weatherlight||R|{2}{G}{G}|Enchantment||| +Choking Vines|Weatherlight||C|{X}{G}|Instant||| +Dense Foliage|Weatherlight||R|{2}{G}|Enchantment||| +Downdraft|Weatherlight||U|{2}{G}|Enchantment||| +Fallow Wurm|Weatherlight||U|{2}{G}|Creature — Wurm|4|4| +Familiar Ground|Weatherlight||U|{2}{G}|Enchantment||| +Fungus Elemental|Weatherlight||R|{3}{G}|Creature — Fungus Elemental|3|3| +Gaea's Blessing|Weatherlight||U|{1}{G}|Sorcery||| +Harvest Wurm|Weatherlight||C|{1}{G}|Creature — Wurm|3|2| +Liege of the Hollows|Weatherlight||R|{2}{G}{G}|Creature — Spirit|3|4| +Llanowar Behemoth|Weatherlight||U|{3}{G}{G}|Creature — Elemental|4|4| +Llanowar Druid|Weatherlight||C|{1}{G}|Creature — Elf Druid|1|2| +Llanowar Sentinel|Weatherlight||C|{2}{G}|Creature — Elf|2|3| +Mwonvuli Ooze|Weatherlight||R|{G}|Creature — Ooze|1+*|1+*| +Nature's Kiss|Weatherlight||C|{1}{G}|Enchantment — Aura||| +Nature's Resurgence|Weatherlight||R|{2}{G}{G}|Sorcery||| +Redwood Treefolk|Weatherlight||C|{4}{G}|Creature — Treefolk|3|6| +Rogue Elephant|Weatherlight||C|{G}|Creature — Elephant|3|3| +Striped Bears|Weatherlight||C|{3}{G}|Creature — Bear|2|2| +Sylvan Hierophant|Weatherlight||U|{1}{G}|Creature — Human Cleric|1|2| +Tranquil Grove|Weatherlight||R|{1}{G}|Enchantment||| +Uktabi Efreet|Weatherlight||C|{2}{G}{G}|Creature — Efreet|5|4| +Veteran Explorer|Weatherlight||U|{G}|Creature — Human Soldier Scout|1|1| +Vitalize|Weatherlight||C|{G}|Instant||| +Ζther Flash|Weatherlight||U|{2}{R}{R}|Enchantment||| +Betrothed of Fire|Weatherlight||C|{1}{R}|Enchantment — Aura||| +Bloodrock Cyclops|Weatherlight||C|{2}{R}|Creature — Cyclops|3|3| +Bogardan Firefiend|Weatherlight||C|{2}{R}|Creature — Elemental Spirit|2|1| +Boiling Blood|Weatherlight||C|{2}{R}|Instant||| +Cinder Giant|Weatherlight||U|{3}{R}|Creature — Giant|5|3| +Cinder Wall|Weatherlight||C|{R}|Creature — Wall|3|3| +Cone of Flame|Weatherlight||U|{3}{R}{R}|Sorcery||| +Desperate Gambit|Weatherlight||U|{R}|Instant||| +Dwarven Berserker|Weatherlight||C|{1}{R}|Creature — Dwarf Berserker|1|1| +Dwarven Thaumaturgist|Weatherlight||R|{2}{R}|Creature — Dwarf Shaman|1|2| +Fervor|Weatherlight||R|{2}{R}|Enchantment||| +Fire Whip|Weatherlight||C|{1}{R}|Enchantment — Aura||| +Firestorm|Weatherlight||R|{R}|Instant||| +Fit of Rage|Weatherlight||C|{1}{R}|Sorcery||| +Goblin Bomb|Weatherlight||R|{1}{R}|Enchantment||| +Goblin Grenadiers|Weatherlight||U|{3}{R}|Creature — Goblin|2|2| +Goblin Vandal|Weatherlight||C|{R}|Creature — Goblin Rogue|1|1| +Heart of Bogardan|Weatherlight||R|{2}{R}{R}|Enchantment||| +Heat Stroke|Weatherlight||R|{2}{R}|Enchantment||| +Hurloon Shaman|Weatherlight||U|{1}{R}{R}|Creature — Minotaur Shaman|2|3| +Lava Hounds|Weatherlight||U|{2}{R}{R}|Creature — Hound|4|4| +Lava Storm|Weatherlight||C|{3}{R}{R}|Instant||| +Maraxus of Keld|Weatherlight||R|{4}{R}{R}|Legendary Creature — Human Warrior|*|*| +Orcish Settlers|Weatherlight||U|{1}{R}|Creature — Orc|1|1| +Roc Hatchling|Weatherlight||U|{R}|Creature — Bird|0|1| +Sawtooth Ogre|Weatherlight||C|{2}{R}{R}|Creature — Ogre|3|3| +Thunderbolt|Weatherlight||C|{1}{R}|Instant||| +Thundermare|Weatherlight||R|{5}{R}|Creature — Elemental Horse|5|5| +Abeyance|Weatherlight||R|{1}{W}|Instant||| +Alabaster Dragon|Weatherlight||R|{4}{W}{W}|Creature — Dragon|4|4| +Alms|Weatherlight||C|{W}|Enchantment||| +Angelic Renewal|Weatherlight||C|{1}{W}|Enchantment||| +Ardent Militia|Weatherlight||C|{4}{W}|Creature — Human Soldier|2|5| +Argivian Find|Weatherlight||U|{W}|Instant||| +Aura of Silence|Weatherlight||U|{1}{W}{W}|Enchantment||| +Benalish Infantry|Weatherlight||C|{2}{W}|Creature — Human Soldier|1|3| +Benalish Knight|Weatherlight||C|{2}{W}|Creature — Human Knight|2|2| +Benalish Missionary|Weatherlight||C|{W}|Creature — Human Cleric|1|1| +Debt of Loyalty|Weatherlight||R|{1}{W}{W}|Instant||| +Duskrider Falcon|Weatherlight||C|{1}{W}|Creature — Bird|1|1| +Empyrial Armor|Weatherlight||C|{1}{W}{W}|Enchantment — Aura||| +Foriysian Brigade|Weatherlight||U|{3}{W}|Creature — Human Soldier|2|4| +Gerrard's Wisdom|Weatherlight||U|{2}{W}{W}|Sorcery||| +Guided Strike|Weatherlight||C|{1}{W}|Instant||| +Heavy Ballista|Weatherlight||C|{3}{W}|Creature — Human Soldier|2|3| +Inner Sanctum|Weatherlight||R|{1}{W}{W}|Enchantment||| +Kithkin Armor|Weatherlight||C|{W}|Enchantment — Aura||| +Master of Arms|Weatherlight||U|{2}{W}|Creature — Human Soldier|2|2| +Mistmoon Griffin|Weatherlight||U|{3}{W}|Creature — Griffin|2|2| +Peacekeeper|Weatherlight||R|{2}{W}|Creature — Human|1|1| +Revered Unicorn|Weatherlight||U|{1}{W}|Creature — Unicorn|2|3| +Serenity|Weatherlight||R|{1}{W}|Enchantment||| +Serra's Blessing|Weatherlight||U|{1}{W}|Enchantment||| +Soul Shepherd|Weatherlight||C|{1}{W}|Creature — Human Cleric|2|1| +Southern Paladin|Weatherlight||R|{2}{W}{W}|Creature — Human Knight|3|3| +Tariff|Weatherlight||R|{1}{W}|Sorcery||| +Volunteer Reserves|Weatherlight||U|{1}{W}|Creature — Human Soldier|2|4| +Gemstone Mine|Weatherlight||U||Land||| +Lotus Vale|Weatherlight||R||Land||| +Scorched Ruins|Weatherlight||R||Land||| +Winding Canyons|Weatherlight||R||Land||| +Altar of Dementia|Tempest||R|{2}|Artifact||| +Booby Trap|Tempest||R|{6}|Artifact||| +Bottle Gnomes|Tempest||U|{3}|Artifact Creature — Gnome|1|3| +Coiled Tinviper|Tempest||C|{3}|Artifact Creature — Snake|2|1| +Cold Storage|Tempest||R|{4}|Artifact||| +Cursed Scroll|Tempest||R|{1}|Artifact||| +Echo Chamber|Tempest||R|{4}|Artifact||| +Emerald Medallion|Tempest||R|{2}|Artifact||| +Emmessi Tome|Tempest||R|{4}|Artifact||| +Energizer|Tempest||R|{4}|Artifact Creature — Juggernaut|2|2| +Essence Bottle|Tempest||U|{2}|Artifact||| +Excavator|Tempest||U|{2}|Artifact||| +Flowstone Sculpture|Tempest||R|{6}|Artifact Creature — Shapeshifter|4|4| +Fool's Tome|Tempest||R|{4}|Artifact||| +Grindstone|Tempest||R|{1}|Artifact||| +Helm of Possession|Tempest||R|{4}|Artifact||| +Jet Medallion|Tempest||R|{2}|Artifact||| +Jinxed Idol|Tempest||R|{2}|Artifact||| +Lotus Petal|Tempest||C|{0}|Artifact||| +Magnetic Web|Tempest||R|{2}|Artifact||| +Manakin|Tempest||C|{2}|Artifact Creature — Construct|1|1| +Metallic Sliver|Tempest||C|{1}|Artifact Creature — Sliver|1|1| +Mogg Cannon|Tempest||U|{2}|Artifact||| +Patchwork Gnomes|Tempest||U|{3}|Artifact Creature — Gnome|2|1| +Pearl Medallion|Tempest||R|{2}|Artifact||| +Phyrexian Grimoire|Tempest||R|{3}|Artifact||| +Phyrexian Hulk|Tempest||U|{6}|Artifact Creature — Golem|5|4| +Phyrexian Splicer|Tempest||U|{2}|Artifact||| +Puppet Strings|Tempest||U|{3}|Artifact||| +Ruby Medallion|Tempest||R|{2}|Artifact||| +Sapphire Medallion|Tempest||R|{2}|Artifact||| +Scalding Tongs|Tempest||R|{2}|Artifact||| +Scroll Rack|Tempest||R|{2}|Artifact||| +Squee's Toy|Tempest||C|{1}|Artifact||| +Static Orb|Tempest||R|{3}|Artifact||| +Telethopter|Tempest||U|{4}|Artifact Creature — Thopter|3|1| +Thumbscrews|Tempest||R|{2}|Artifact||| +Torture Chamber|Tempest||R|{3}|Artifact||| +Watchdog|Tempest||U|{3}|Artifact Creature — Hound|1|2| +Abandon Hope|Tempest||U|{X}{1}{B}|Sorcery||| +Ancient Tomb|Tempest||U||Land||| +Bellowing Fiend|Tempest||R|{4}{B}|Creature — Spirit|3|3| +Bounty Hunter|Tempest||R|{2}{B}{B}|Creature — Human Archer Minion|2|2| +Carrionette|Tempest||R|{1}{B}|Creature — Skeleton|1|1| +Clot Sliver|Tempest||C|{1}{B}|Creature — Sliver|1|1| +Coercion|Tempest||C|{2}{B}|Sorcery||| +Coffin Queen|Tempest||R|{2}{B}|Creature — Zombie Wizard|1|1| +Commander Greven il-Vec|Tempest||R|{3}{B}{B}{B}|Legendary Creature — Human Warrior|7|5| +Corpse Dance|Tempest||R|{2}{B}|Instant||| +Dark Banishing|Tempest||C|{2}{B}|Instant||| +Dark Ritual|Tempest||C|{B}|Instant||| +Darkling Stalker|Tempest||C|{3}{B}|Creature — Shade Spirit|1|1| +Dauthi Embrace|Tempest||U|{2}{B}|Enchantment||| +Dauthi Ghoul|Tempest||U|{1}{B}|Creature — Dauthi Zombie|1|1| +Dauthi Horror|Tempest||C|{1}{B}|Creature — Dauthi Horror|2|1| +Dauthi Marauder|Tempest||C|{2}{B}|Creature — Dauthi Minion|3|1| +Dauthi Mercenary|Tempest||U|{2}{B}|Creature — Dauthi Knight Mercenary|2|1| +Dauthi Mindripper|Tempest||U|{3}{B}|Creature — Dauthi Minion|2|1| +Dauthi Slayer|Tempest||C|{B}{B}|Creature — Dauthi Soldier|2|2| +Death Pits of Rath|Tempest||R|{3}{B}{B}|Enchantment||| +Diabolic Edict|Tempest||C|{1}{B}|Instant||| +Disturbed Burial|Tempest||C|{1}{B}|Sorcery||| +Dread of Night|Tempest||U|{B}|Enchantment||| +Dregs of Sorrow|Tempest||R|{X}{4}{B}|Sorcery||| +Endless Scream|Tempest||C|{X}{B}|Enchantment — Aura||| +Enfeeblement|Tempest||C|{B}{B}|Enchantment — Aura||| +Evincar's Justice|Tempest||C|{2}{B}{B}|Sorcery||| +Extinction|Tempest||R|{4}{B}|Sorcery||| +Fevered Convulsions|Tempest||R|{B}{B}|Enchantment||| +Gravedigger|Tempest||C|{3}{B}|Creature — Zombie|2|2| +Imps' Taunt|Tempest||U|{1}{B}|Instant||| +Kezzerdrix|Tempest||R|{2}{B}{B}|Creature — Rabbit Beast|4|4| +Knight of Dusk|Tempest||U|{1}{B}{B}|Creature — Human Knight|2|2| +Leeching Licid|Tempest||U|{1}{B}|Creature — Licid|1|1| +Living Death|Tempest||R|{3}{B}{B}|Sorcery||| +Maddening Imp|Tempest||R|{2}{B}|Creature — Imp|1|1| +Marsh Lurker|Tempest||C|{3}{B}|Creature — Beast|3|2| +Mindwhip Sliver|Tempest||U|{2}{B}|Creature — Sliver|2|2| +Minion of the Wastes|Tempest||R|{3}{B}{B}{B}|Creature — Minion|*|*| +Perish|Tempest||U|{2}{B}|Sorcery||| +Pit Imp|Tempest||C|{B}|Creature — Imp|0|1| +Rain of Tears|Tempest||U|{1}{B}{B}|Sorcery||| +Rats of Rath|Tempest||C|{1}{B}|Creature — Rat|2|1| +Reanimate|Tempest||U|{B}|Sorcery||| +Reckless Spite|Tempest||U|{1}{B}{B}|Instant||| +Sadistic Glee|Tempest||C|{B}|Enchantment — Aura||| +Sarcomancy|Tempest||R|{B}|Enchantment||| +Screeching Harpy|Tempest||U|{2}{B}{B}|Creature — Harpy Beast|2|2| +Servant of Volrath|Tempest||C|{2}{B}|Creature — Minion|3|3| +Skyshroud Vampire|Tempest||U|{3}{B}{B}|Creature — Vampire|3|3| +Souldrinker|Tempest||U|{3}{B}|Creature — Spirit|2|2| +Spinal Graft|Tempest||C|{1}{B}|Enchantment — Aura||| +Armor Sliver|Tempest||U|{2}{W}|Creature — Sliver|2|2| +Benthic Behemoth|Tempest||R|{5}{U}{U}{U}|Creature — Serpent|7|6| +Capsize|Tempest||C|{1}{U}{U}|Instant||| +Chill|Tempest||U|{1}{U}|Enchantment||| +Counterspell|Tempest||C|{U}{U}|Instant||| +Dismiss|Tempest||U|{2}{U}{U}|Instant||| +Dream Cache|Tempest||C|{2}{U}|Sorcery||| +Duplicity|Tempest||R|{3}{U}{U}|Enchantment||| +Ertai's Meddling|Tempest||R|{X}{U}|Instant||| +Escaped Shapeshifter|Tempest||R|{3}{U}{U}|Creature — Shapeshifter|3|4| +Fighting Drake|Tempest||U|{2}{U}{U}|Creature — Drake|2|4| +Fylamarid|Tempest||U|{1}{U}{U}|Creature — Squid Beast|1|3| +Gaseous Form|Tempest||C|{2}{U}|Enchantment — Aura||| +Giant Crab|Tempest||C|{4}{U}|Creature — Crab|3|3| +Horned Turtle|Tempest||C|{2}{U}|Creature — Turtle|1|4| +Insight|Tempest||U|{2}{U}|Enchantment||| +Interdict|Tempest||U|{1}{U}|Instant||| +Intuition|Tempest||R|{2}{U}|Instant||| +Legacy's Allure|Tempest||U|{U}{U}|Enchantment||| +Legerdemain|Tempest||U|{2}{U}{U}|Sorcery||| +Mana Severance|Tempest||R|{1}{U}|Sorcery||| +Manta Riders|Tempest||C|{U}|Creature — Merfolk|1|1| +Mawcor|Tempest||R|{3}{U}{U}|Creature — Beast|3|3| +Meditate|Tempest||R|{2}{U}|Instant||| +Mnemonic Sliver|Tempest||U|{2}{U}|Creature — Sliver|2|2| +Power Sink|Tempest||C|{X}{U}|Instant||| +Precognition|Tempest||R|{4}{U}|Enchantment||| +Propaganda|Tempest||U|{2}{U}|Enchantment||| +Rootwater Diver|Tempest||U|{U}|Creature — Merfolk|1|1| +Rootwater Hunter|Tempest||C|{2}{U}|Creature — Merfolk|1|1| +Rootwater Matriarch|Tempest||R|{2}{U}{U}|Creature — Merfolk|2|3| +Rootwater Shaman|Tempest||R|{2}{U}|Creature — Merfolk Shaman|2|2| +Sea Monster|Tempest||C|{4}{U}{U}|Creature — Serpent|6|6| +Shadow Rift|Tempest||C|{U}|Instant||| +Shimmering Wings|Tempest||C|{U}|Enchantment — Aura||| +Skyshroud Condor|Tempest||U|{1}{U}|Creature — Bird|2|2| +Spell Blast|Tempest||C|{X}{U}|Instant||| +Steal Enchantment|Tempest||U|{U}{U}|Enchantment — Aura||| +Stinging Licid|Tempest||U|{1}{U}|Creature — Licid|1|1| +Thalakos Dreamsower|Tempest||U|{2}{U}|Creature — Thalakos Wizard|1|1| +Thalakos Mistfolk|Tempest||C|{2}{U}|Creature — Thalakos Illusion|2|1| +Thalakos Seer|Tempest||C|{U}{U}|Creature — Thalakos Wizard|1|1| +Thalakos Sentry|Tempest||C|{1}{U}|Creature — Thalakos Soldier|1|2| +Time Ebb|Tempest||C|{2}{U}|Sorcery||| +Time Warp|Tempest||R|{3}{U}{U}|Sorcery||| +Tradewind Rider|Tempest||R|{3}{U}|Creature — Spirit|1|4| +Twitch|Tempest||C|{2}{U}|Instant||| +Unstable Shapeshifter|Tempest||R|{3}{U}|Creature — Shapeshifter|0|1| +Volrath's Curse|Tempest||C|{1}{U}|Enchantment — Aura||| +Whim of Volrath|Tempest||R|{U}|Instant||| +Whispers of the Muse|Tempest||U|{U}|Instant||| +Wind Dancer|Tempest||U|{1}{U}|Creature — Faerie|1|1| +Wind Drake|Tempest||C|{2}{U}|Creature — Drake|2|2| +Winged Sliver|Tempest||C|{1}{U}|Creature — Sliver|1|1| +Aluren|Tempest||R|{2}{G}{G}|Enchantment||| +Apes of Rath|Tempest||U|{2}{G}{G}|Creature — Ape|5|4| +Bayou Dragonfly|Tempest||C|{1}{G}|Creature — Insect|1|1| +Broken Fall|Tempest||C|{2}{G}|Enchantment||| +Canopy Spider|Tempest||C|{1}{G}|Creature — Spider|1|3| +Charging Rhino|Tempest||U|{3}{G}{G}|Creature — Rhino|4|4| +Choke|Tempest||U|{2}{G}|Enchantment||| +Crazed Armodon|Tempest||R|{2}{G}{G}|Creature — Elephant|3|3| +Dirtcowl Wurm|Tempest||R|{4}{G}|Creature — Wurm|3|4| +Earthcraft|Tempest||R|{1}{G}|Enchantment||| +Eladamri, Lord of Leaves|Tempest||R|{G}{G}|Legendary Creature — Elf Warrior|2|2| +Eladamri's Vineyard|Tempest||R|{G}|Enchantment||| +Elven Warhounds|Tempest||R|{3}{G}|Creature — Hound|2|2| +Elvish Fury|Tempest||C|{G}|Instant||| +Flailing Drake|Tempest||U|{3}{G}|Creature — Drake|2|3| +Frog Tongue|Tempest||C|{G}|Enchantment — Aura||| +Fugitive Druid|Tempest||R|{3}{G}|Creature — Human Druid|3|2| +Harrow|Tempest||U|{2}{G}|Instant||| +Heartwood Dryad|Tempest||C|{1}{G}|Creature — Dryad|2|1| +Heartwood Giant|Tempest||R|{3}{G}{G}|Creature — Giant|4|4| +Heartwood Treefolk|Tempest||U|{2}{G}{G}|Creature — Treefolk|3|4| +Horned Sliver|Tempest||U|{2}{G}|Creature — Sliver|2|2| +Krakilin|Tempest||U|{X}{G}{G}|Creature — Beast|0|0| +Mirri's Guile|Tempest||R|{G}|Enchantment||| +Mongrel Pack|Tempest||R|{3}{G}|Creature — Hound|4|1| +Muscle Sliver|Tempest||C|{1}{G}|Creature — Sliver|1|1| +Natural Spring|Tempest||C|{3}{G}{G}|Sorcery||| +Nature's Revolt|Tempest||R|{3}{G}{G}|Enchantment||| +Needle Storm|Tempest||U|{2}{G}|Sorcery||| +Nurturing Licid|Tempest||U|{1}{G}|Creature — Licid|1|1| +Overrun|Tempest||U|{2}{G}{G}{G}|Sorcery||| +Pincher Beetles|Tempest||C|{2}{G}|Creature — Insect|3|1| +Rampant Growth|Tempest||C|{1}{G}|Sorcery||| +Reality Anchor|Tempest||C|{1}{G}|Instant||| +Reap|Tempest||U|{1}{G}|Instant||| +Recycle|Tempest||R|{4}{G}{G}|Enchantment||| +Respite|Tempest||C|{1}{G}|Instant||| +Root Maze|Tempest||R|{G}|Enchantment||| +Rootbreaker Wurm|Tempest||C|{5}{G}{G}|Creature — Wurm|6|6| +Rootwalla|Tempest||C|{2}{G}|Creature — Lizard|2|2| +Scragnoth|Tempest||U|{4}{G}|Creature — Beast|3|4| +Seeker of Skybreak|Tempest||C|{1}{G}|Creature — Elf|2|1| +Skyshroud Elf|Tempest||C|{1}{G}|Creature — Elf Druid|1|1| +Skyshroud Ranger|Tempest||C|{G}|Creature — Elf|1|1| +Skyshroud Troll|Tempest||C|{2}{G}{G}|Creature — Troll Giant|3|3| +Spike Drone|Tempest||C|{G}|Creature — Spike Drone|0|0| +Storm Front|Tempest||U|{G}|Enchantment||| +Trained Armodon|Tempest||C|{1}{G}{G}|Creature — Elephant|3|3| +Tranquility|Tempest||C|{2}{G}|Sorcery||| +Trumpeting Armodon|Tempest||U|{3}{G}|Creature — Elephant|3|3| +Verdant Force|Tempest||R|{5}{G}{G}{G}|Creature — Elemental|7|7| +Verdigris|Tempest||U|{2}{G}|Instant||| +Winter's Grasp|Tempest||U|{1}{G}{G}|Sorcery||| +Aftershock|Tempest||C|{2}{R}{R}|Sorcery||| +Ancient Runes|Tempest||U|{2}{R}|Enchantment||| +Apocalypse|Tempest||R|{2}{R}{R}{R}|Sorcery||| +Barbed Sliver|Tempest||U|{2}{R}|Creature — Sliver|2|2| +Blood Frenzy|Tempest||C|{1}{R}|Instant||| +Boil|Tempest||U|{3}{R}|Instant||| +Canyon Drake|Tempest||R|{2}{R}{R}|Creature — Drake|1|2| +Canyon Wildcat|Tempest||C|{1}{R}|Creature — Cat|2|1| +Chaotic Goo|Tempest||R|{2}{R}{R}|Creature — Ooze|0|0| +Crown of Flames|Tempest||C|{R}|Enchantment — Aura||| +Deadshot|Tempest||R|{3}{R}|Sorcery||| +Enraging Licid|Tempest||U|{1}{R}|Creature — Licid|1|1| +Firefly|Tempest||U|{3}{R}|Creature — Insect|1|1| +Fireslinger|Tempest||C|{1}{R}|Creature — Human Wizard|1|1| +Flowstone Giant|Tempest||C|{2}{R}{R}|Creature — Giant|3|3| +Flowstone Salamander|Tempest||U|{3}{R}{R}|Creature — Salamander|3|4| +Flowstone Wyvern|Tempest||R|{3}{R}{R}|Creature — Drake|3|3| +Furnace of Rath|Tempest||R|{1}{R}{R}{R}|Enchantment||| +Giant Strength|Tempest||C|{R}{R}|Enchantment — Aura||| +Goblin Bombardment|Tempest||U|{1}{R}|Enchantment||| +Hand to Hand|Tempest||R|{2}{R}|Enchantment||| +Havoc|Tempest||U|{1}{R}|Enchantment||| +Heart Sliver|Tempest||C|{1}{R}|Creature — Sliver|1|1| +Jackal Pup|Tempest||U|{R}|Creature — Hound|2|1| +Kindle|Tempest||C|{1}{R}|Instant||| +Lightning Blast|Tempest||C|{3}{R}|Instant||| +Lightning Elemental|Tempest||C|{3}{R}|Creature — Elemental|4|1| +Lowland Giant|Tempest||C|{2}{R}{R}|Creature — Giant|4|3| +Magmasaur|Tempest||R|{3}{R}{R}|Creature — Elemental Lizard|0|0| +Mogg Conscripts|Tempest||C|{R}|Creature — Goblin|2|2| +Mogg Fanatic|Tempest||C|{R}|Creature — Goblin|1|1| +Mogg Raider|Tempest||C|{R}|Creature — Goblin|1|1| +Mogg Squad|Tempest||U|{1}{R}|Creature — Goblin|3|3| +No Quarter|Tempest||R|{3}{R}|Enchantment||| +Opportunist|Tempest||U|{2}{R}|Creature — Human Soldier|2|2| +Pallimud|Tempest||R|{2}{R}|Creature — Beast|*|3| +Rathi Dragon|Tempest||R|{2}{R}{R}|Creature — Dragon|5|5| +Renegade Warlord|Tempest||U|{4}{R}|Creature — Human Warrior|3|3| +Rolling Thunder|Tempest||C|{X}{R}{R}|Sorcery||| +Sandstone Warrior|Tempest||C|{2}{R}{R}|Creature — Human Soldier Warrior|1|3| +Scorched Earth|Tempest||R|{X}{R}|Sorcery||| +Searing Touch|Tempest||U|{R}|Instant||| +Shadowstorm|Tempest||U|{R}|Sorcery||| +Shatter|Tempest||C|{1}{R}|Instant||| +Shocker|Tempest||R|{1}{R}|Creature — Insect|1|1| +Starke of Rath|Tempest||R|{1}{R}{R}|Legendary Creature — Human Rogue|2|2| +Stone Rain|Tempest||C|{2}{R}|Sorcery||| +Stun|Tempest||C|{1}{R}|Instant||| +Sudden Impact|Tempest||U|{3}{R}|Instant||| +Tahngarth's Rage|Tempest||U|{R}|Enchantment — Aura||| +Tooth and Claw|Tempest||R|{3}{R}|Enchantment||| +Wall of Diffusion|Tempest||C|{1}{R}|Creature — Wall|0|5| +Wild Wurm|Tempest||U|{3}{R}|Creature — Wurm|5|4| +Advance Scout|Tempest||C|{1}{W}|Creature — Human Soldier Scout|1|1| +Angelic Protector|Tempest||U|{3}{W}|Creature — Angel|2|2| +Anoint|Tempest||C|{W}|Instant||| +Armored Pegasus|Tempest||C|{1}{W}|Creature — Pegasus|1|2| +Auratog|Tempest||R|{1}{W}|Creature — Atog|1|2| +Avenging Angel|Tempest||R|{3}{W}{W}|Creature — Angel|3|3| +Circle of Protection: Black|Tempest||C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Tempest||C|{1}{W}|Enchantment||| +Circle of Protection: Green|Tempest||C|{1}{W}|Enchantment||| +Circle of Protection: Red|Tempest||C|{1}{W}|Enchantment||| +Circle of Protection: Shadow|Tempest||C|{1}{W}|Enchantment||| +Circle of Protection: White|Tempest||C|{1}{W}|Enchantment||| +Clergy en-Vec|Tempest||C|{1}{W}|Creature — Human Cleric|1|1| +Cloudchaser Eagle|Tempest||C|{3}{W}|Creature — Bird|2|2| +Disenchant|Tempest||C|{1}{W}|Instant||| +Elite Javelineer|Tempest||C|{2}{W}|Creature — Human Soldier|2|2| +Field of Souls|Tempest||R|{2}{W}{W}|Enchantment||| +Flickering Ward|Tempest||U|{W}|Enchantment — Aura||| +Gallantry|Tempest||U|{1}{W}|Instant||| +Gerrard's Battle Cry|Tempest||R|{W}|Enchantment||| +Hanna's Custody|Tempest||R|{2}{W}|Enchantment||| +Hero's Resolve|Tempest||C|{1}{W}|Enchantment — Aura||| +Humility|Tempest||R|{2}{W}{W}|Enchantment||| +Invulnerability|Tempest||U|{1}{W}|Instant||| +Knight of Dawn|Tempest||U|{1}{W}{W}|Creature — Human Knight|2|2| +Light of Day|Tempest||U|{3}{W}|Enchantment||| +Marble Titan|Tempest||R|{3}{W}|Creature — Giant|3|3| +Master Decoy|Tempest||C|{1}{W}|Creature — Human Soldier|1|2| +Mounted Archers|Tempest||C|{3}{W}|Creature — Human Soldier Archer|2|3| +Oracle en-Vec|Tempest||R|{1}{W}|Creature — Human Wizard|1|1| +Orim, Samite Healer|Tempest||R|{1}{W}{W}|Legendary Creature — Human Cleric|1|3| +Orim's Prayer|Tempest||U|{1}{W}{W}|Enchantment||| +Pacifism|Tempest||C|{1}{W}|Enchantment — Aura||| +Pegasus Refuge|Tempest||R|{3}{W}|Enchantment||| +Quickening Licid|Tempest||U|{1}{W}|Creature — Licid|1|1| +Repentance|Tempest||U|{2}{W}|Sorcery||| +Sacred Guide|Tempest||R|{W}|Creature — Human Cleric|1|1| +Safeguard|Tempest||R|{3}{W}{W}|Enchantment||| +Serene Offering|Tempest||U|{1}{W}|Instant||| +Soltari Crusader|Tempest||U|{2}{W}|Creature — Soltari Knight|2|1| +Soltari Emissary|Tempest||R|{1}{W}|Creature — Soltari Soldier|2|1| +Soltari Foot Soldier|Tempest||C|{W}|Creature — Soltari Soldier|1|1| +Soltari Lancer|Tempest||C|{2}{W}|Creature — Soltari Knight|2|2| +Soltari Monk|Tempest||U|{W}{W}|Creature — Soltari Monk Cleric|2|1| +Soltari Priest|Tempest||U|{W}{W}|Creature — Soltari Cleric|2|1| +Soltari Trooper|Tempest||C|{1}{W}|Creature — Soltari Soldier|1|1| +Spirit Mirror|Tempest||R|{2}{W}{W}|Enchantment||| +Staunch Defenders|Tempest||U|{3}{W}{W}|Creature — Human Soldier|3|4| +Talon Sliver|Tempest||C|{1}{W}|Creature — Sliver|1|1| +Warmth|Tempest||U|{1}{W}|Enchantment||| +Winds of Rath|Tempest||R|{3}{W}{W}|Sorcery||| +Worthy Cause|Tempest||U|{W}|Instant||| +Dracoplasm|Tempest||R|{U}{R}|Creature — Shapeshifter|0|0| +Lobotomy|Tempest||U|{2}{U}{B}|Sorcery||| +Ranger en-Vec|Tempest||U|{1}{G}{W}|Creature — Human Soldier Archer|2|2| +Segmented Wurm|Tempest||U|{3}{R}{G}|Creature — Wurm|5|5| +Selenia, Dark Angel|Tempest||R|{3}{W}{B}|Legendary Creature — Angel|3|3| +Sky Spirit|Tempest||U|{1}{W}{U}|Creature — Spirit|2|2| +Soltari Guerrillas|Tempest||R|{2}{W}{R}|Creature — Soltari Soldier|3|2| +Spontaneous Combustion|Tempest||U|{1}{B}{R}|Instant||| +Vhati il-Dal|Tempest||R|{2}{B}{G}|Legendary Creature — Human Warrior|3|3| +Wood Sage|Tempest||R|{G}{U}|Creature — Human Druid|1|1| +Swamp|Tempest||L||Basic Land — Swamp||| +Swamp|Tempest||L||Basic Land — Swamp||| +Swamp|Tempest||L||Basic Land — Swamp||| +Swamp|Tempest||L||Basic Land — Swamp||| +Forest|Tempest||L||Basic Land — Forest||| +Forest|Tempest||L||Basic Land — Forest||| +Forest|Tempest||L||Basic Land — Forest||| +Forest|Tempest||L||Basic Land — Forest||| +Caldera Lake|Tempest||R||Land||| +Cinder Marsh|Tempest||U||Land||| +Ghost Town|Tempest||U||Land||| +Maze of Shadows|Tempest||U||Land||| +Mogg Hollows|Tempest||U||Land||| +Pine Barrens|Tempest||R||Land||| +Reflecting Pool|Tempest||R||Land||| +Rootwater Depths|Tempest||U||Land||| +Salt Flats|Tempest||R||Land||| +Scabland|Tempest||R||Land||| +Skyshroud Forest|Tempest||R||Land||| +Stalking Stones|Tempest||U||Land||| +Thalakos Lowlands|Tempest||U||Land||| +Vec Townships|Tempest||U||Land||| +Wasteland|Tempest||U||Land||| +Mountain|Tempest||L||Basic Land — Mountain||| +Mountain|Tempest||L||Basic Land — Mountain||| +Mountain|Tempest||L||Basic Land — Mountain||| +Mountain|Tempest||L||Basic Land — Mountain||| +Island|Tempest||L||Basic Land — Island||| +Island|Tempest||L||Basic Land — Island||| +Island|Tempest||L||Basic Land — Island||| +Island|Tempest||L||Basic Land — Island||| +Plains|Tempest||L||Basic Land — Plains||| +Plains|Tempest||L||Basic Land — Plains||| +Plains|Tempest||L||Basic Land — Plains||| +Plains|Tempest||L||Basic Land — Plains||| +Mogg Bombers|Stronghold||C|{3}{R}|Creature — Goblin|3|4| +Mogg Flunkies|Stronghold||C|{1}{R}|Creature — Goblin|3|3| +Mob Justice|Stronghold||C|{1}{R}|Sorcery||| +Silver Wyvern|Stronghold||R|{3}{U}{U}|Creature — Drake|4|3| +Dream Halls|Stronghold||R|{3}{U}{U}|Enchantment||| +Crovax the Cursed|Stronghold||R|{2}{B}{B}|Legendary Creature — Vampire|0|0| +Mogg Infestation|Stronghold||R|{3}{R}{R}|Sorcery||| +Acidic Sliver|Stronghold||U|{B}{R}|Creature — Sliver|2|2| +Amok|Stronghold||R|{1}{R}|Enchantment||| +Awakening|Stronghold||R|{2}{G}{G}|Enchantment||| +Bandage|Stronghold||C|{W}|Instant||| +Bottomless Pit|Stronghold||U|{1}{B}{B}|Enchantment||| +Brush with Death|Stronghold||C|{2}{B}|Sorcery||| +Bullwhip|Stronghold||U|{4}|Artifact||| +Burgeoning|Stronghold||R|{G}|Enchantment||| +Calming Licid|Stronghold||U|{2}{W}|Creature — Licid|2|2| +Cannibalize|Stronghold||C|{1}{B}|Sorcery||| +Mogg Maniac|Stronghold||U|{1}{R}|Creature — Goblin|1|1| +Change of Heart|Stronghold||C|{W}|Instant||| +Cloud Spirit|Stronghold||C|{2}{U}|Creature — Spirit|3|1| +Constant Mists|Stronghold||U|{1}{G}|Instant||| +Ensnaring Bridge|Stronghold||R|{3}|Artifact||| +Contemplation|Stronghold||U|{1}{W}{W}|Enchantment||| +Contempt|Stronghold||C|{1}{U}|Enchantment — Aura||| +Conviction|Stronghold||C|{1}{W}|Enchantment — Aura||| +Corrupting Licid|Stronghold||U|{2}{B}|Creature — Licid|2|2| +Convulsing Licid|Stronghold||U|{2}{R}|Creature — Licid|2|2| +Craven Giant|Stronghold||C|{2}{R}|Creature — Giant|4|1| +Crossbow Ambush|Stronghold||C|{G}|Instant||| +Pit Spawn|Exodus|70|R|{4}{B}{B}{B}|Creature — Demon|6|4| +Crystalline Sliver|Stronghold||U|{W}{U}|Creature — Sliver|2|2| +Dauthi Trapper|Stronghold||U|{2}{B}|Creature — Dauthi Minion|1|1| +Grave Pact|Stronghold||R|{1}{B}{B}{B}|Enchantment||| +Death Stroke|Stronghold||C|{B}{B}|Sorcery||| +Scapegoat|Stronghold||U|{W}|Instant||| +Dominating Licid|Exodus|30|R|{1}{U}{U}|Creature — Licid|1|1| +Dream Prowler|Stronghold||C|{2}{U}{U}|Creature — Illusion|1|5| +Duct Crawler|Stronghold||C|{R}|Creature — Insect|1|1| +Dungeon Shade|Stronghold||C|{3}{B}|Creature — Shade Spirit|1|1| +Shock|Stronghold||C|{R}|Instant||| +Elven Rite|Stronghold||U|{1}{G}|Sorcery||| +Endangered Armodon|Stronghold||C|{2}{G}{G}|Creature — Elephant|4|5| +Ertai, Wizard Adept|Exodus|33|R|{2}{U}|Legendary Creature — Human Wizard|1|1| +Evacuation|Stronghold||R|{3}{U}{U}|Instant||| +Fanning the Flames|Stronghold||U|{X}{R}{R}|Sorcery||| +Primal Rage|Stronghold||U|{1}{G}|Enchantment||| +Flame Wave|Stronghold||U|{3}{R}{R}{R}{R}|Sorcery||| +Fling|Stronghold||C|{1}{R}|Instant||| +Flowstone Blade|Stronghold||C|{R}|Enchantment — Aura||| +Flowstone Hellion|Stronghold||U|{4}{R}|Creature — Hellion Beast|3|3| +Flowstone Mauler|Stronghold||R|{4}{R}{R}|Creature — Beast|4|5| +Shard Phoenix|Stronghold||R|{4}{R}|Creature — Phoenix|2|2| +Flowstone Shambler|Stronghold||C|{2}{R}|Creature — Beast|2|2| +Forbid|Exodus|35|U|{1}{U}{U}|Instant||| +Foul Imp|Stronghold||C|{B}{B}|Creature — Imp|2|2| +Fugue|Exodus|62|U|{3}{B}{B}|Sorcery||| +Furnace Spirit|Stronghold||C|{2}{R}|Creature — Spirit|1|1| +Gliding Licid|Stronghold||U|{2}{U}|Creature — Licid|2|2| +Hammerhead Shark|Stronghold||C|{1}{U}|Creature — Fish|2|3| +Heartstone|Stronghold||U|{3}|Artifact||| +Heat of Battle|Stronghold||U|{1}{R}|Enchantment||| +Hermit Druid|Stronghold||R|{1}{G}|Creature — Human Druid|1|1| +Hesitation|Stronghold||U|{1}{U}|Enchantment||| +Hibernation Sliver|Stronghold||U|{U}{B}|Creature — Sliver|2|2| +Hidden Retreat|Stronghold||R|{2}{W}|Enchantment||| +Honor Guard|Stronghold||C|{W}|Creature — Human Soldier|1|1| +Mindless Automaton|Exodus|135|R|{4}|Artifact Creature — Construct|0|0| +Horn of Greed|Stronghold||R|{3}|Artifact||| +Hornet Cannon|Stronghold||U|{4}|Artifact||| +Intruder Alarm|Stronghold||R|{2}{U}|Enchantment||| +Invasion Plans|Stronghold||R|{2}{R}|Enchantment||| +Null Brooch|Exodus|136|R|{4}|Artifact||| +Jinxed Ring|Stronghold||R|{2}|Artifact||| +Lab Rats|Stronghold||C|{B}|Sorcery||| +Lancers en-Kor|Stronghold||U|{3}{W}{W}|Creature — Kor Soldier|3|3| +Leap|Stronghold||C|{U}|Instant||| +Lowland Basilisk|Stronghold||C|{2}{G}|Creature — Basilisk|1|3| +Mana Leak|Stronghold||C|{1}{U}|Instant||| +Mask of the Mimic|Stronghold||U|{U}|Instant||| +Fighting Chance|Exodus|82|R|{R}|Instant||| +Megrim|Stronghold||U|{2}{B}|Enchantment||| +Mind Games|Stronghold||C|{U}|Instant||| +Mind Peel|Stronghold||U|{B}|Sorcery||| +Mindwarper|Stronghold||R|{2}{B}{B}|Creature — Spirit|0|0| +Mirozel|Exodus|41|U|{3}{U}|Creature — Illusion|2|3| +Spined Sliver|Stronghold||U|{R}{G}|Creature — Sliver|2|2| +Morgue Thrull|Stronghold||C|{2}{B}|Creature — Thrull|2|2| +Mortuary|Stronghold||R|{3}{B}|Enchantment||| +Mox Diamond|Stronghold||R|{0}|Artifact||| +Mulch|Stronghold||C|{1}{G}|Sorcery||| +Tortured Existence|Stronghold||C|{B}|Enchantment||| +Nomads en-Kor|Stronghold||C|{W}|Creature — Kor Nomad Soldier|1|1| +Victual Sliver|Stronghold||U|{G}{W}|Creature — Sliver|2|2| +Overgrowth|Stronghold||C|{2}{G}|Enchantment — Aura||| +Paladin en-Vec|Exodus|12|R|{1}{W}{W}|Creature — Human Knight|2|2| +Plaguebearer|Exodus|71|R|{1}{B}|Creature — Zombie|1|1| +Plated Rootwalla|Exodus|116|C|{4}{G}|Creature — Lizard|3|3| +Portcullis|Stronghold||R|{4}|Artifact||| +Provoke|Stronghold||C|{1}{G}|Instant||| +Pursuit of Knowledge|Stronghold||R|{3}{W}|Enchantment||| +Rabid Rats|Stronghold||C|{1}{B}|Creature — Rat|1|1| +Ransack|Stronghold||U|{3}{U}|Sorcery||| +Ravenous Baboons|Exodus|97|R|{3}{R}|Creature — Ape|2|2| +Rebound|Stronghold||U|{1}{U}|Instant||| +Reins of Power|Stronghold||R|{2}{U}{U}|Instant||| +Revenant|Stronghold||R|{4}{B}|Creature — Spirit|*|*| +Rolling Stones|Stronghold||R|{1}{W}|Enchantment||| +Ruination|Stronghold||R|{3}{R}|Sorcery||| +Sacred Ground|Stronghold||R|{1}{W}|Enchantment||| +Samite Blessing|Stronghold||C|{W}|Enchantment — Aura||| +Carnassid|Stronghold||R|{4}{G}{G}|Creature — Beast|5|4| +Seething Anger|Stronghold||C|{R}|Sorcery||| +Serpent Warrior|Stronghold||C|{2}{B}|Creature — Snake Warrior|3|3| +Shaman en-Kor|Stronghold||R|{1}{W}|Creature — Kor Shaman Cleric|1|2| +Shattering Pulse|Exodus|102|C|{1}{R}|Instant||| +Shifting Wall|Stronghold||U|{X}|Artifact Creature — Wall|0|0| +Sift|Stronghold||C|{3}{U}|Sorcery||| +Skyshroud Falcon|Stronghold||C|{1}{W}|Creature — Bird|1|1| +Skeleton Scavengers|Stronghold||R|{2}{B}|Creature — Skeleton|0|0| +Skyshaper|Exodus|137|U|{2}|Artifact||| +Skyshroud Archer|Stronghold||C|{G}|Creature — Elf Archer|1|1| +Skyshroud Elite|Exodus|123|U|{G}|Creature — Elf|1|1| +Skyshroud Troopers|Stronghold||C|{3}{G}|Creature — Elf Druid Warrior|3|3| +Skyshroud War Beast|Exodus|124|R|{1}{G}|Creature — Beast|*|*| +Sliver Queen|Stronghold||R|{W}{U}{B}{R}{G}|Legendary Creature — Sliver|7|7| +Smite|Stronghold||C|{W}|Instant||| +Soltari Champion|Stronghold||R|{2}{W}|Creature — Soltari Soldier|2|2| +Spirit en-Kor|Stronghold||C|{3}{W}|Creature — Kor Spirit|2|2| +Spike Breeder|Stronghold||R|{3}{G}|Creature — Spike|0|0| +Spike Colony|Stronghold||C|{4}{G}|Creature — Spike|0|0| +Spike Feeder|Stronghold||U|{1}{G}{G}|Creature — Spike|0|0| +Spike Soldier|Stronghold||U|{2}{G}{G}|Creature — Spike Soldier|0|0| +Spike Worker|Stronghold||C|{2}{G}|Creature — Spike|0|0| +Spindrift Drake|Stronghold||C|{U}|Creature — Drake|2|1| +Spined Wurm|Stronghold||C|{4}{G}|Creature — Wurm|5|4| +Spitting Hydra|Stronghold||R|{3}{R}{R}|Creature — Hydra|0|0| +Stronghold Assassin|Stronghold||R|{1}{B}{B}|Creature — Zombie Assassin|2|1| +Stronghold Taskmaster|Stronghold||U|{2}{B}{B}|Creature — Giant Minion|4|3| +Sword of the Chosen|Stronghold||R|{2}|Legendary Artifact||| +Temper|Stronghold||U|{X}{1}{W}|Instant||| +Tempting Licid|Stronghold||U|{2}{G}|Creature — Licid|2|2| +Thalakos Deceiver|Stronghold||R|{3}{U}|Creature — Thalakos Wizard|1|1| +Theft of Dreams|Exodus|49|C|{2}{U}|Sorcery||| +Tidal Surge|Stronghold||C|{1}{U}|Sorcery||| +Tidal Warrior|Stronghold||C|{U}|Creature — Merfolk Warrior|1|1| +Torment|Stronghold||C|{1}{B}|Enchantment — Aura||| +Venerable Monk|Stronghold||C|{2}{W}|Creature — Human Monk Cleric|2|2| +Verdant Touch|Stronghold||R|{1}{G}|Sorcery||| +Volrath's Gardens|Stronghold||R|{1}{G}|Enchantment||| +Volrath's Laboratory|Stronghold||R|{5}|Artifact||| +Volrath's Shapeshifter|Stronghold||R|{1}{U}{U}|Creature — Shapeshifter|0|1| +Volrath's Stronghold|Stronghold||R||Legendary Land||| +Walking Dream|Stronghold||U|{3}{U}|Creature — Illusion|3|3| +Wall of Blossoms|Stronghold||U|{1}{G}|Creature — Plant Wall|0|4| +Wall of Essence|Stronghold||U|{1}{W}|Creature — Wall|0|4| +Wall of Razors|Stronghold||U|{1}{R}|Creature — Wall|4|1| +Wall of Souls|Stronghold||U|{1}{B}|Creature — Wall|0|4| +Wall of Tears|Stronghold||U|{1}{U}|Creature — Wall|0|4| +Warrior Angel|Stronghold||R|{4}{W}{W}|Creature — Angel Warrior|3|4| +Warrior en-Kor|Stronghold||U|{W}{W}|Creature — Kor Warrior Knight|2|2| +Wayward Soul|Exodus|51|C|{2}{U}{U}|Creature — Spirit|3|2| +Youthful Knight|Stronghold||C|{1}{W}|Creature — Human Knight|2|1| +Goblin Cadets|Urza's Saga|189|U|{R}|Creature — Goblin|2|1| +Falter|Urza's Saga|184|C|{1}{R}|Instant||| +Goblin Spelunkers|Urza's Saga|195|C|{2}{R}|Creature — Goblin Warrior|2|2| +Raze|Urza's Saga|207|C|{R}|Sorcery||| +Shower of Sparks|Urza's Saga|217|C|{R}|Instant||| +Crater Hellion|Urza's Saga|179|R|{4}{R}{R}|Creature — Hellion Beast|6|6| +Voltaic Key|Urza's Saga|314|U|{1}|Artifact||| +Temporal Aperture|Urza's Saga|310|R|{2}|Artifact||| +Mobile Fort|Urza's Saga|303|U|{4}|Artifact Creature — Wall|0|6| +Abundance|Urza's Saga|229|R|{2}{G}{G}|Enchantment||| +Citanul Centaurs|Urza's Saga|243|R|{3}{G}|Creature — Centaur|6|3| +Sicken|Urza's Saga|156|C|{B}|Enchantment — Aura||| +Unnerve|Urza's Saga|162|C|{3}{B}|Sorcery||| +Crazed Skirge|Urza's Saga|125|U|{3}{B}|Creature — Imp|2|2| +Exhume|Urza's Saga|134|C|{1}{B}|Sorcery||| +Duress|Urza's Saga|132|C|{B}|Sorcery||| +Reprocess|Urza's Saga|154|R|{2}{B}{B}|Sorcery||| +Phyrexian Negator|Urza's Destiny|65|R|{2}{B}|Creature — Horror|5|5| +Shivan Raptor|Urza's Saga|216|U|{2}{R}|Creature — Lizard|3|1| +Steam Blast|Urza's Saga|219|U|{2}{R}|Sorcery||| +Brand|Urza's Saga|176|R|{R}|Instant||| +Viashino Sandswimmer|Urza's Saga|225|R|{2}{R}{R}|Creature — Viashino|3|2| +Wildfire|Urza's Saga|228|R|{4}{R}{R}|Sorcery||| +Cackling Fiend|Urza's Saga|121|C|{2}{B}{B}|Creature — Zombie|2|1| +Fire Ants|Urza's Saga|187|U|{2}{R}|Creature — Insect|2|1| +Scoria Wurm|Urza's Saga|212|R|{4}{R}|Creature — Wurm|7|7| +Ill-Gotten Gains|Urza's Saga|138|R|{2}{B}{B}|Sorcery||| +Yavimaya Wurm|Urza's Legacy|120|C|{4}{G}{G}|Creature — Wurm|6|4| +Antagonism|Urza's Saga|173|R|{3}{R}|Enchantment||| +Skittering Skirge|Urza's Saga|158|C|{B}{B}|Creature — Imp|3|2| +Urza's Armor|Urza's Saga|313|U|{6}|Artifact||| +Pendrell Drake|Urza's Saga|86|C|{3}{U}|Creature — Drake|2|3| +Worship|Urza's Saga|57|R|{3}{W}|Enchantment||| +Bull Hippo|Urza's Saga|239|U|{3}{G}|Creature — Hippo|3|3| +Herald of Serra|Urza's Saga|17|R|{2}{W}{W}|Creature — Angel|3|4| +Aven Trooper|Torment|2|C|{3}{W}|Creature — Bird Soldier|1|1| +Vulshok Berserker|Mirrodin|111|C|{3}{R}|Creature — Human Berserker|3|2| +Okk|Urza's Saga|204|R|{1}{R}|Creature — Goblin|4|4| +Defensive Formation|Urza's Saga|9|U|{W}|Enchantment||| +Telekinetic Bonds|Judgment|52|R|{2}{U}{U}{U}|Enchantment||| +Viashino Weaponsmith|Urza's Saga|226|C|{3}{R}|Creature — Viashino|2|2| +Looming Shade|Urza's Saga|139|C|{2}{B}|Creature — Shade|1|1| +Sneak Attack|Urza's Saga|218|R|{3}{R}|Enchantment||| +Attunement|Urza's Saga|61|R|{2}{U}|Enchantment||| +Bog Raiders|Urza's Saga|119|C|{2}{B}|Creature — Zombie|2|2| +False Memories|Torment|37|R|{1}{U}|Instant||| +Sunder|Urza's Saga|101|R|{3}{U}{U}|Instant||| +Serra's Hymn|Urza's Saga|48|U|{W}|Enchantment||| +Anaconda|Urza's Saga|232|U|{3}{G}|Creature — Snake|3|3| +Fecundity|Urza's Saga|251|U|{2}{G}|Enchantment||| +Befoul|Urza's Saga|116|C|{2}{B}{B}|Sorcery||| +Hollow Dogs|Urza's Saga|137|C|{4}{B}|Creature — Zombie Hound|3|3| +Planar Void|Urza's Saga|149|U|{B}|Enchantment||| +Phyrexian Processor|Urza's Saga|306|R|{4}|Artifact||| +Blasted Landscape|Urza's Saga|319|U||Land||| +Coral Merfolk|Urza's Saga|67|C|{1}{U}|Creature — Merfolk|2|1| +Pendrell Flux|Urza's Saga|87|C|{1}{U}|Enchantment — Aura||| +Lilting Refrain|Urza's Saga|83|U|{1}{U}|Enchantment||| +Bereavement|Urza's Saga|117|U|{1}{B}|Enchantment||| +Pestilence|Urza's Saga|147|C|{2}{B}{B}|Enchantment||| +Carrion Beetles|Urza's Saga|122|C|{B}|Creature — Insect|1|1| +Darkest Hour|Urza's Saga|128|R|{B}|Enchantment||| +Blanchwood Armor|Urza's Saga|237|U|{2}{G}|Enchantment — Aura||| +Order of Yawgmoth|Urza's Saga|144|U|{2}{B}{B}|Creature — Zombie Knight|2|2| +Dark Ritual|Urza's Saga|127|C|{B}|Instant||| +Sanguine Guard|Urza's Saga|155|U|{1}{B}{B}|Creature — Zombie Knight|2|2| +Yawgmoth's Will|Urza's Saga|171|R|{2}{B}|Sorcery||| +Disenchant|Urza's Saga|12|C|{1}{W}|Instant||| +Symbiosis|Urza's Saga|275|C|{1}{G}|Instant||| +Breach|Urza's Saga|120|C|{2}{B}|Instant||| +Disciple of Grace|Urza's Saga|10|C|{1}{W}|Creature — Human Cleric|1|2| +Voice of Grace|Urza's Saga|54|U|{3}{W}|Creature — Angel|2|2| +Abyssal Horror|Urza's Saga|115|R|{4}{B}{B}|Creature — Horror|2|2| +Catastrophe|Urza's Saga|6|R|{4}{W}{W}|Sorcery||| +Sulfuric Vapors|Urza's Saga|220|R|{3}{R}|Enchantment||| +Exhaustion|Urza's Saga|74|U|{2}{U}|Sorcery||| +Silent Attendant|Urza's Saga|51|C|{2}{W}|Creature — Human Cleric|0|2| +Phyrexian Ghoul|Urza's Saga|148|C|{2}{B}|Creature — Zombie|2|2| +Goblin Patrol|Urza's Saga|193|C|{R}|Creature — Goblin|2|1| +Flesh Reaver|Urza's Saga|136|U|{1}{B}|Creature — Horror|4|4| +Fertile Ground|Urza's Saga|252|C|{1}{G}|Enchantment — Aura||| +Elvish Vanguard|Onslaught|259|R|{1}{G}|Creature — Elf Warrior|1|1| +Viashino Runner|Urza's Saga|224|C|{3}{R}|Creature — Viashino|3|2| +Jagged Lightning|Urza's Saga|200|U|{3}{R}{R}|Sorcery||| +Torch Song|Urza's Saga|222|U|{2}{R}|Enchantment||| +Shivan Hellkite|Urza's Saga|215|R|{5}{R}{R}|Creature — Dragon|5|5| +Stern Proctor|Urza's Saga|99|U|{U}{U}|Creature — Human Wizard|1|2| +Power Taint|Urza's Saga|90|C|{1}{U}|Enchantment — Aura||| +Narcissism|Torment|134|U|{2}{G}|Enchantment||| +Pouncing Jaguar|Urza's Saga|269|C|{G}|Creature — Cat|2|2| +Cradle Guard|Urza's Saga|245|U|{1}{G}{G}|Creature — Treefolk|4|4| +Lightning Dragon|Urza's Saga|202|R|{2}{R}{R}|Creature — Dragon|4|4| +Crosswinds|Urza's Saga|246|U|{1}{G}|Enchantment||| +Songstitcher|Urza's Saga|52|U|{W}|Creature — Human Cleric|1|1| +Rewind|Urza's Saga|93|C|{2}{U}{U}|Instant||| +Peregrine Drake|Urza's Saga|88|U|{4}{U}|Creature — Drake|2|3| +Disciple of Law|Urza's Saga|11|C|{1}{W}|Creature — Human Cleric|1|2| +Voice of Law|Urza's Saga|55|U|{3}{W}|Creature — Angel|2|2| +Hibernation|Urza's Saga|79|U|{2}{U}|Instant||| +Wing Snare|Urza's Legacy|117|U|{2}{G}|Sorcery||| +Stroke of Genius|Urza's Saga|100|R|{X}{2}{U}|Instant||| +Intrepid Hero|Urza's Saga|19|R|{2}{W}|Creature — Human Soldier|1|1| +Vug Lizard|Urza's Saga|227|U|{1}{R}{R}|Creature — Lizard|3|4| +Goblin Spy|Invasion|145|U|{R}|Creature — Goblin Rogue|1|1| +Treetop Rangers|Urza's Saga|279|C|{2}{G}|Creature — Elf|2|2| +Granite Grip|Urza's Legacy|81|C|{2}{R}|Enchantment — Aura||| +Gorilla Warrior|Urza's Saga|256|C|{2}{G}|Creature — Ape Warrior|3|2| +Path of Peace|Urza's Saga|29|C|{3}{W}|Sorcery||| +Argothian Enchantress|Urza's Saga|234|R|{1}{G}|Creature — Human Druid|0|1| +Vernal Bloom|Urza's Saga|281|R|{3}{G}|Enchantment||| +Vebulid|Urza's Saga|165|R|{B}|Creature — Horror|0|0| +War Dance|Urza's Saga|282|U|{G}|Enchantment||| +Vile Requiem|Urza's Saga|167|U|{2}{B}{B}|Enchantment||| +Sanctum Guardian|Urza's Saga|43|U|{1}{W}{W}|Creature — Human Cleric|1|4| +Clear|Urza's Saga|7|U|{1}{W}|Instant||| +Sanctum Custodian|Urza's Saga|42|C|{2}{W}|Creature — Human Cleric|1|2| +Yawgmoth's Edict|Urza's Saga|170|U|{1}{B}|Enchantment||| +Show and Tell|Urza's Saga|96|R|{2}{U}|Sorcery||| +Hopping Automaton|Urza's Saga|297|U|{3}|Artifact Creature — Construct|2|2| +Goblin Raider|Urza's Saga|194|C|{1}{R}|Creature — Goblin Warrior|2|2| +Humble|Urza's Saga|18|U|{1}{W}|Instant||| +Rank and File|Urza's Legacy|65|U|{2}{B}{B}|Creature — Zombie|3|3| +Mother of Runes|Urza's Legacy|14|U|{W}|Creature — Human Cleric|1|1| +Monk Idealist|Urza's Saga|20|U|{2}{W}|Creature — Human Monk Cleric|2|2| +Serra Zealot|Urza's Saga|46|C|{W}|Creature — Human Soldier|1|1| +Monk Realist|Urza's Saga|21|C|{1}{W}|Creature — Human Monk Cleric|1|1| +Knighthood|Urza's Legacy|12|U|{2}{W}|Enchantment||| +Gaea's Bounty|Urza's Saga|254|C|{2}{G}|Sorcery||| +Back to Basics|Urza's Saga|62|R|{2}{U}|Enchantment||| +Serra Avatar|Urza's Saga|45|R|{4}{W}{W}{W}|Creature — Avatar|*|*| +Angelic Chorus|Urza's Saga|3|R|{3}{W}{W}|Enchantment||| +Absolute Grace|Urza's Saga|1|U|{1}{W}|Enchantment||| +Lotus Blossom|Urza's Saga|300|R|{2}|Artifact||| +Cloak of Mists|Urza's Saga|65|C|{1}{U}|Enchantment — Aura||| +Drifting Djinn|Urza's Saga|71|R|{4}{U}{U}|Creature — Djinn|5|5| +Gaea's Embrace|Urza's Saga|255|U|{2}{G}{G}|Enchantment — Aura||| +Shiv's Embrace|Urza's Saga|214|U|{2}{R}{R}|Enchantment — Aura||| +Acidic Soil|Urza's Saga|172|U|{2}{R}|Sorcery||| +Douse|Urza's Saga|70|U|{2}{U}|Enchantment||| +Citanul Hierophants|Urza's Saga|244|R|{3}{G}|Creature — Human Druid|3|2| +Bedlam|Urza's Saga|175|R|{2}{R}{R}|Enchantment||| +Turnabout|Urza's Saga|105|U|{2}{U}{U}|Instant||| +Pegasus Charger|Urza's Saga|30|C|{2}{W}|Creature — Pegasus|2|1| +Smokestack|Urza's Saga|309|R|{4}|Artifact||| +Arc Lightning|Urza's Saga|174|C|{2}{R}|Sorcery||| +Dromosaur|Urza's Saga|182|C|{2}{R}|Creature — Lizard|2|3| +Barrin's Codex|Urza's Saga|286|R|{4}|Artifact||| +Argothian Elder|Urza's Saga|233|U|{3}{G}|Creature — Elf Druid|2|2| +Blood Vassal|Urza's Saga|118|C|{2}{B}|Creature — Thrull|2|2| +Elvish Herder|Urza's Saga|247|C|{G}|Creature — Elf|1|1| +Viashino Outrider|Urza's Saga|223|C|{2}{R}|Creature — Viashino|4|3| +Crystal Chimes|Urza's Saga|292|U|{3}|Artifact||| +Shimmering Barrier|Urza's Saga|50|U|{1}{W}|Creature — Wall|1|3| +Somnophore|Urza's Saga|97|R|{2}{U}{U}|Creature — Illusion|2|2| +Oppression|Urza's Saga|143|R|{1}{B}{B}|Enchantment||| +Blanchwood Treefolk|Urza's Saga|238|C|{4}{G}|Creature — Treefolk|4|5| +Pacifism|Urza's Saga|27|C|{1}{W}|Enchantment — Aura||| +Sporogenesis|Urza's Saga|273|R|{3}{G}|Enchantment||| +Sleeper Agent|Urza's Saga|159|R|{B}|Creature — Minion|3|3| +Tainted Ζther|Urza's Saga|161|R|{2}{B}{B}|Enchantment||| +Fog Bank|Urza's Saga|75|U|{1}{U}|Creature — Wall|0|2| +Lull|Urza's Saga|267|C|{1}{G}|Instant||| +Power Sink|Urza's Saga|89|C|{X}{U}|Instant||| +Thundering Giant|Urza's Saga|221|U|{3}{R}{R}|Creature — Giant|4|3| +Goblin War Buggy|Urza's Saga|196|C|{1}{R}|Creature — Goblin|2|2| +Rain of Salt|Urza's Saga|206|U|{4}{R}{R}|Sorcery||| +Cave Tiger|Urza's Saga|241|C|{2}{G}|Creature — Cat|2|2| +Arcane Laboratory|Urza's Saga|60|U|{2}{U}|Enchantment||| +Planar Birth|Urza's Saga|31|R|{1}{W}|Sorcery||| +Contamination|Urza's Saga|123|R|{2}{B}|Enchantment||| +Argothian Wurm|Urza's Saga|236|R|{3}{G}|Creature — Wurm|6|6| +Elite Archers|Urza's Saga|13|R|{5}{W}|Creature — Human Soldier Archer|3|3| +Imaginary Pet|Urza's Saga|81|R|{1}{U}|Creature — Illusion|4|4| +Pariah|Urza's Saga|28|R|{2}{W}|Enchantment — Aura||| +Elvish Lyrist|Urza's Saga|248|C|{G}|Creature — Elf|1|1| +Seasoned Marshal|Urza's Saga|44|U|{2}{W}{W}|Creature — Human Soldier|2|2| +Unworthy Dead|Urza's Saga|163|C|{1}{B}|Creature — Skeleton|1|1| +Angelic Page|Urza's Saga|4|C|{1}{W}|Creature — Angel Spirit|1|1| +Opal Titan|Urza's Saga|26|R|{2}{W}{W}|Enchantment||| +Hidden Herd|Urza's Saga|262|R|{G}|Enchantment||| +Opal Acrolith|Urza's Saga|22|U|{2}{W}|Enchantment||| +Hidden Ancients|Urza's Saga|260|U|{1}{G}|Enchantment||| +Hidden Predators|Urza's Saga|263|R|{G}|Enchantment||| +Opal Archangel|Urza's Saga|23|R|{4}{W}|Enchantment||| +Veil of Birds|Urza's Saga|106|C|{U}|Enchantment||| +Veiled Crocodile|Urza's Saga|108|R|{2}{U}|Enchantment||| +Hidden Stag|Urza's Saga|265|R|{1}{G}|Enchantment||| +Opal Gargoyle|Urza's Saga|25|C|{1}{W}|Enchantment||| +Veiled Sentry|Urza's Saga|109|U|{U}|Enchantment||| +Opal Caryatid|Urza's Saga|24|C|{W}|Enchantment||| +Hidden Guerrillas|Urza's Saga|261|U|{G}|Enchantment||| +Veiled Apparition|Urza's Saga|107|U|{1}{U}|Enchantment||| +Hidden Spider|Urza's Saga|264|C|{G}|Enchantment||| +Slippery Karst|Urza's Saga|327|C||Land||| +Smoldering Crater|Urza's Saga|328|C||Land||| +Drifting Meadow|Urza's Saga|320|C||Land||| +Fluctuator|Urza's Saga|295|R|{2}|Artifact||| +Remote Isle|Urza's Saga|324|C||Land||| +Polluted Mire|Urza's Saga|323|C||Land||| +Rescind|Urza's Saga|92|C|{1}{U}{U}|Instant||| +Rune of Protection: Black|Urza's Saga|36|C|{1}{W}|Enchantment||| +Rune of Protection: Blue|Urza's Saga|37|C|{1}{W}|Enchantment||| +Rune of Protection: Green|Urza's Saga|38|C|{1}{W}|Enchantment||| +Rune of Protection: Red|Urza's Saga|40|C|{1}{W}|Enchantment||| +Rune of Protection: White|Urza's Saga|41|C|{1}{W}|Enchantment||| +Sandbar Merfolk|Urza's Saga|94|C|{U}|Creature — Merfolk|1|1| +Scrap|Urza's Saga|213|C|{2}{R}|Instant||| +Lay Waste|Urza's Saga|201|C|{3}{R}|Sorcery||| +Rejuvenate|Urza's Saga|271|C|{3}{G}|Sorcery||| +Expunge|Urza's Saga|135|C|{2}{B}|Instant||| +Hush|Urza's Saga|266|C|{3}{G}|Sorcery||| +Priest of Titania|Urza's Saga|270|C|{1}{G}|Creature — Elf Druid|1|1| +Zephid|Urza's Saga|113|R|{4}{U}{U}|Creature — Illusion|3|4| +Retromancer|Urza's Saga|209|C|{2}{R}{R}|Creature — Viashino Shaman|3|3| +Faith Healer|Urza's Saga|14|R|{1}{W}|Creature — Human Cleric|1|1| +Rain of Filth|Urza's Saga|151|U|{B}|Instant||| +Launch|Urza's Saga|82|C|{1}{U}|Enchantment — Aura||| +Waylay|Urza's Saga|56|U|{2}{W}|Instant||| +Tolarian Winds|Urza's Saga|104|C|{1}{U}|Instant||| +Glorious Anthem|Urza's Saga|15|R|{1}{W}{W}|Enchantment||| +Witch Engine|Urza's Saga|169|R|{5}{B}|Creature — Horror|4|4| +Gilded Drake|Urza's Saga|76|R|{1}{U}|Creature — Drake|3|3| +Titania's Chosen|Urza's Saga|277|U|{2}{G}|Creature — Elf Archer|1|1| +Telepathy|Urza's Saga|102|U|{U}|Enchantment||| +Bravado|Urza's Saga|177|C|{1}{R}|Enchantment — Aura||| +Spined Fluke|Urza's Saga|160|U|{2}{B}|Creature — Worm Horror|5|1| +Winding Wurm|Urza's Saga|285|C|{4}{G}|Creature — Wurm|6|6| +Skirge Familiar|Urza's Saga|157|U|{4}{B}|Creature — Imp|3|2| +Dark Hatchling|Urza's Saga|126|R|{4}{B}{B}|Creature — Horror|3|3| +Corrupt|Urza's Saga|124|C|{5}{B}|Sorcery||| +Disorder|Urza's Saga|181|U|{1}{R}|Sorcery||| +Carpet of Flowers|Urza's Saga|240|U|{G}|Enchantment||| +Eastern Paladin|Urza's Saga|133|R|{2}{B}{B}|Creature — Zombie Knight|3|3| +Western Paladin|Urza's Saga|168|R|{2}{B}{B}|Creature — Zombie Knight|3|3| +Argothian Swine|Urza's Saga|235|C|{3}{G}|Creature — Boar|3|3| +Morphling|Urza's Saga|85|R|{3}{U}{U}|Creature — Shapeshifter|3|3| +Acridian|Urza's Saga|230|C|{1}{G}|Creature — Insect|2|4| +Treefolk Seedlings|Urza's Saga|278|U|{2}{G}|Creature — Treefolk|2|*| +Albino Troll|Urza's Saga|231|U|{1}{G}|Creature — Troll|3|3| +Shield Mate|Exodus|19|C|{W}|Creature — Human Soldier|1|1| +Soltari Visionary|Exodus|20|C|{1}{W}{W}|Creature — Soltari Cleric|2|2| +Standing Troops|Exodus|22|C|{2}{W}|Creature — Human Soldier|1|4| +Soul Warden|Exodus|21|C|{W}|Creature — Human Cleric|1|1| +Welkin Hawk|Exodus|25|C|{1}{W}|Creature — Bird|1|1| +Charging Paladin|Exodus|4|C|{2}{W}|Creature — Human Knight|2|2| +Allay|Exodus|1|C|{1}{W}|Instant||| +Reaping the Rewards|Exodus|16|C|{W}|Instant||| +Shackles|Exodus|18|C|{2}{W}|Enchantment — Aura||| +Peace of Mind|Exodus|13|U|{1}{W}|Enchantment||| +Angelic Blessing|Exodus|2|C|{2}{W}|Sorcery||| +Keeper of the Light|Exodus|8|U|{W}{W}|Creature — Human Wizard|1|2| +Treasure Hunter|Exodus|23|U|{2}{W}|Creature — Human|2|2| +Zealots en-Dal|Exodus|26|U|{3}{W}|Creature — Human Soldier|2|4| +Pegasus Stampede|Exodus|14|U|{1}{W}|Sorcery||| +Kor Chant|Exodus|9|C|{2}{W}|Instant||| +Reconnaissance|Exodus|17|U|{W}|Enchantment||| +Penance|Exodus|15|U|{2}{W}|Enchantment||| +Oath of Lieges|Exodus|11|R|{1}{W}|Enchantment||| +Limited Resources|Exodus|10|R|{W}|Enchantment||| +Cataclysm|Exodus|3|R|{2}{W}{W}|Sorcery||| +Convalescence|Exodus|5|R|{1}{W}|Enchantment||| +Wall of Nets|Exodus|24|R|{1}{W}{W}|Creature — Wall|0|7| +Exalted Dragon|Exodus|6|R|{4}{W}{W}|Creature — Dragon|5|5| +School of Piranha|Exodus|45|C|{1}{U}|Creature — Fish|3|3| +Rootwater Mystic|Exodus|44|C|{U}|Creature — Merfolk Wizard|1|1| +Merfolk Looter|Exodus|39|C|{1}{U}|Creature — Merfolk Rogue|1|1| +Whiptongue Frog|Exodus|52|C|{2}{U}|Creature — Frog|1|3| +Thalakos Scout|Exodus|48|C|{2}{U}|Creature — Thalakos Soldier Scout|2|1| +Robe of Mirrors|Exodus|43|C|{U}|Enchantment — Aura||| +Curiosity|Exodus|29|U|{U}|Enchantment — Aura||| +Fade Away|Exodus|34|C|{2}{U}|Sorcery||| +Cunning|Exodus|28|C|{1}{U}|Enchantment — Aura||| +Keeper of the Mind|Exodus|36|U|{U}{U}|Creature — Human Wizard|1|2| +Killer Whale|Exodus|37|U|{3}{U}{U}|Creature — Whale|3|5| +Scrivener|Exodus|46|U|{4}{U}|Creature — Human Wizard|2|2| +Thalakos Drifters|Exodus|47|R|{2}{U}{U}|Creature — Thalakos|3|3| +Treasure Trove|Exodus|50|U|{2}{U}{U}|Enchantment||| +Ζther Tide|Exodus|27|C|{X}{U}|Sorcery||| +Oath of Scholars|Exodus|42|R|{3}{U}|Enchantment||| +Ephemeron|Exodus|31|R|{4}{U}{U}|Creature — Illusion|4|4| +Equilibrium|Exodus|32|R|{1}{U}{U}|Enchantment||| +Mind Over Matter|Exodus|40|R|{2}{U}{U}{U}{U}|Enchantment||| +Mana Breach|Exodus|38|U|{2}{U}|Enchantment||| +Carnophage|Exodus|53|C|{B}|Creature — Zombie|2|2| +Cat Burglar|Exodus|54|C|{3}{B}|Creature — Kor Rogue Minion|2|2| +Dauthi Jackal|Exodus|58|C|{2}{B}|Creature — Dauthi Hound|2|1| +Thrull Surgeon|Exodus|76|C|{1}{B}|Creature — Thrull|1|1| +Grollub|Exodus|63|C|{2}{B}|Creature — Beast|3|3| +Vampire Hounds|Exodus|77|C|{2}{B}|Creature — Vampire Hound|2|2| +Culling the Weak|Exodus|55|C|{B}|Instant||| +Scare Tactics|Exodus|73|C|{B}|Instant||| +Death's Duet|Exodus|60|C|{2}{B}|Sorcery||| +Nausea|Exodus|67|C|{1}{B}|Sorcery||| +Cursed Flesh|Exodus|56|C|{B}|Enchantment — Aura||| +Keeper of the Dead|Exodus|65|U|{B}{B}|Creature — Human Wizard|1|2| +Dauthi Cutthroat|Exodus|57|U|{1}{B}|Creature — Dauthi Minion|1|1| +Spike Cannibal|Exodus|75|U|{1}{B}{B}|Creature — Spike|0|0| +Mind Maggots|Exodus|66|U|{3}{B}|Creature — Insect|2|2| +Dauthi Warlord|Exodus|59|U|{1}{B}|Creature — Dauthi Soldier|*|1| +Necrologia|Exodus|68|U|{3}{B}{B}|Instant||| +Slaughter|Exodus|74|U|{2}{B}{B}|Instant||| +Oath of Ghouls|Exodus|69|R|{1}{B}|Enchantment||| +Entropic Specter|Exodus|61|R|{3}{B}{B}|Creature — Specter Spirit|*|*| +Volrath's Dungeon|Exodus|78|R|{2}{B}{B}|Enchantment||| +Recurring Nightmare|Exodus|72|R|{2}{B}|Enchantment||| +Hatred|Exodus|64|R|{3}{B}{B}|Instant||| +Cinder Crawler|Exodus|80|C|{1}{R}|Creature — Salamander|1|2| +Raging Goblin|Exodus|96|C|{R}|Creature — Goblin Berserker|1|1| +Furnace Brood|Exodus|84|C|{3}{R}|Creature — Elemental|3|3| +Reckless Ogre|Exodus|98|C|{3}{R}|Creature — Ogre|3|2| +Maniacal Rage|Exodus|87|C|{1}{R}|Enchantment — Aura||| +Anarchist|Exodus|79|C|{4}{R}|Creature — Human Wizard|2|2| +Mage il-Vec|Exodus|86|C|{2}{R}|Creature — Human Wizard|2|2| +Sonic Burst|Exodus|103|C|{1}{R}|Instant||| +Paroxysm|Exodus|94|U|{1}{R}|Enchantment — Aura||| +Dizzying Gaze|Exodus|81|C|{R}|Enchantment — Aura||| +Onslaught|Exodus|92|C|{R}|Enchantment||| +Keeper of the Flame|Exodus|85|U|{R}{R}|Creature — Human Wizard|1|2| +Scalding Salamander|Exodus|100|U|{2}{R}|Creature — Salamander|2|1| +Mogg Assassin|Exodus|88|U|{2}{R}|Creature — Goblin Assassin|2|1| +Flowstone Flood|Exodus|83|U|{3}{R}|Sorcery||| +Spellshock|Exodus|104|U|{2}{R}|Enchantment||| +Price of Progress|Exodus|95|U|{1}{R}|Instant||| +Oath of Mages|Exodus|90|R|{1}{R}|Enchantment||| +Pandemonium|Exodus|93|R|{3}{R}|Enchantment||| +Ogre Shaman|Exodus|91|R|{3}{R}{R}|Creature — Ogre Shaman|3|3| +Monstrous Hound|Exodus|89|R|{3}{R}|Creature — Hound|4|4| +Sabertooth Wyvern|Exodus|99|U|{4}{R}|Creature — Drake|3|2| +Seismic Assault|Exodus|101|R|{R}{R}{R}|Enchantment||| +Pygmy Troll|Exodus|118|C|{1}{G}|Creature — Troll|1|1| +Elvish Berserker|Exodus|110|C|{G}|Creature — Elf Berserker|1|1| +Rabid Wolverines|Exodus|119|C|{3}{G}{G}|Creature — Wolverine|4|4| +Wood Elves|Exodus|130|C|{2}{G}|Creature — Elf Scout|1|1| +Rootwater Alligator|Exodus|122|C|{3}{G}|Creature — Crocodile|3|2| +Avenging Druid|Exodus|105|C|{2}{G}|Creature — Human Druid|1|3| +Jackalope Herd|Exodus|111|C|{3}{G}|Creature — Rabbit Beast|4|5| +Reclaim|Exodus|120|C|{G}|Instant||| +Resuscitate|Exodus|121|U|{1}{G}|Instant||| +Predatory Hunger|Exodus|117|C|{G}|Enchantment — Aura||| +Keeper of the Beasts|Exodus|112|U|{G}{G}|Creature — Human Wizard|1|2| +Spike Rogue|Exodus|127|U|{1}{G}{G}|Creature — Spike|0|0| +Cartographer|Exodus|107|U|{2}{G}|Creature — Human|2|2| +Crashing Boars|Exodus|108|U|{3}{G}{G}|Creature — Boar|4|4| +Elven Palisade|Exodus|109|U|{G}|Enchantment||| +Bequeathal|Exodus|106|C|{G}|Enchantment — Aura||| +Song of Serenity|Exodus|125|U|{1}{G}|Enchantment||| +Survival of the Fittest|Exodus|129|R|{1}{G}|Enchantment||| +Oath of Druids|Exodus|115|R|{1}{G}|Enchantment||| +Spike Weaver|Exodus|128|R|{2}{G}{G}|Creature — Spike|0|0| +Manabond|Exodus|113|R|{G}|Enchantment||| +Mirri, Cat Warrior|Exodus|114|R|{1}{G}{G}|Legendary Creature — Cat Warrior|2|3| +Workhorse|Exodus|142|R|{6}|Artifact Creature — Horse|0|0| +Spellbook|Exodus|138|U|{0}|Artifact||| +Transmogrifying Licid|Exodus|141|U|{3}|Artifact Creature — Licid|2|2| +Sphere of Resistance|Exodus|139|R|{2}|Artifact||| +Coat of Arms|Exodus|131|R|{5}|Artifact||| +Erratic Portal|Exodus|132|R|{4}|Artifact||| +Thopter Squadron|Exodus|140|R|{5}|Artifact Creature — Thopter|0|0| +Medicine Bag|Exodus|133|U|{3}|Artifact||| +Memory Crystal|Exodus|134|R|{3}|Artifact||| +City of Traitors|Exodus|143|R||Land||| +High Ground|Exodus|7|U|{W}|Enchantment||| +Volunteer Militia|Portal Second Age||C|{W}|Creature — Human Soldier|1|2| +Alaborn Zealot|Portal Second Age||U|{W}|Creature — Human Soldier|1|1| +Alaborn Trooper|Portal Second Age||C|{2}{W}|Creature — Human Soldier|2|3| +Town Sentry|Portal Second Age||C|{2}{W}|Creature — Human Soldier|2|2| +Temple Acolyte|Portal Second Age||C|{1}{W}|Creature — Human Cleric|1|3| +Trokin High Guard|Portal Second Age||C|{3}{W}|Creature — Human Knight|3|3| +Wild Griffin|Portal Second Age||C|{2}{W}|Creature — Griffin|2|2| +Angelic Wall|Portal Second Age||C|{1}{W}|Creature — Wall|0|4| +Alaborn Musketeer|Portal Second Age||C|{1}{W}|Creature — Human Soldier|2|1| +Angelic Blessing|Portal Second Age||C|{2}{W}|Sorcery||| +Breath of Life|Portal Second Age||C|{3}{W}|Sorcery||| +Path of Peace|Portal Second Age||C|{3}{W}|Sorcery||| +Righteous Charge|Portal Second Age||C|{1}{W}{W}|Sorcery||| +Festival of Trokin|Portal Second Age||C|{W}|Sorcery||| +Angel of Mercy|Portal Second Age||U|{4}{W}|Creature — Angel|3|3| +Alaborn Cavalier|Portal Second Age||U|{2}{W}{W}|Creature — Human Knight|2|2| +Temple Elder|Portal Second Age||U|{2}{W}|Creature — Human Cleric|1|2| +Alaborn Grenadier|Portal Second Age||C|{W}{W}|Creature — Human Soldier|2|2| +Armored Griffin|Portal Second Age||U|{3}{W}|Creature — Griffin|2|3| +Bargain|Portal Second Age||U|{2}{W}|Sorcery||| +Rally the Troops|Portal Second Age||U|{W}|Instant||| +Warrior's Stand|Portal Second Age||U|{1}{W}|Instant||| +Vengeance|Portal Second Age||U|{3}{W}|Sorcery||| +Archangel|Portal Second Age||R|{5}{W}{W}|Creature — Angel|5|5| +Angel of Fury|Portal Second Age||R|{4}{W}{W}|Creature — Angel|3|5| +Alaborn Veteran|Portal Second Age||R|{2}{W}|Creature — Human Knight|2|2| +Steam Catapult|Portal Second Age||R|{3}{W}{W}|Creature — Human Soldier|2|3| +Righteous Fury|Portal Second Age||R|{4}{W}{W}|Sorcery||| +Just Fate|Portal Second Age||R|{2}{W}|Instant||| +Armageddon|Portal Second Age||R|{3}{W}|Sorcery||| +Talas Scout|Portal Second Age||C|{1}{U}|Creature — Human Pirate Scout|1|2| +Talas Explorer|Portal Second Age||C|{1}{U}|Creature — Human Pirate Scout|1|1| +Screeching Drake|Portal Second Age||C|{3}{U}|Creature — Drake|2|2| +Talas Air Ship|Portal Second Age||C|{3}{U}|Creature — Human Pirate|3|2| +Talas Merchant|Portal Second Age||C|{1}{U}|Creature — Human Pirate|1|3| +Steam Frigate|Portal Second Age||C|{2}{U}|Creature — Human Pirate|3|3| +Touch of Brilliance|Portal Second Age||C|{3}{U}|Sorcery||| +Dιjΰ Vu|Portal Second Age||C|{2}{U}|Sorcery||| +Sleight of Hand|Portal Second Age||C|{U}|Sorcery||| +Wind Sail|Portal Second Age||C|{1}{U}|Sorcery||| +Tidal Surge|Portal Second Age||C|{1}{U}|Sorcery||| +Time Ebb|Portal Second Age||C|{2}{U}|Sorcery||| +False Summoning|Portal Second Age||C|{1}{U}|Instant||| +Extinguish|Portal Second Age||C|{1}{U}|Instant||| +Apprentice Sorcerer|Portal Second Age||U|{2}{U}|Creature — Human Wizard|1|1| +Air Elemental|Portal Second Age||U|{3}{U}{U}|Creature — Elemental|4|4| +Armored Galleon|Portal Second Age||U|{4}{U}|Creature — Human Pirate|5|4| +Eye Spy|Portal Second Age||U|{U}|Sorcery||| +Sea Drake|Portal Second Age||U|{2}{U}|Creature — Drake|4|3| +Undo|Portal Second Age||U|{1}{U}{U}|Sorcery||| +Remove|Portal Second Age||U|{U}|Instant||| +Mystic Denial|Portal Second Age||U|{1}{U}{U}|Instant||| +Theft of Dreams|Portal Second Age||U|{2}{U}|Sorcery||| +Coastal Wizard|Portal Second Age||R|{2}{U}{U}|Creature — Human Wizard|1|1| +Talas Warrior|Portal Second Age||R|{1}{U}{U}|Creature — Human Pirate Warrior|2|2| +Denizen of the Deep|Portal Second Age||R|{6}{U}{U}|Creature — Serpent|11|11| +Talas Researcher|Portal Second Age||R|{4}{U}|Creature — Human Pirate Wizard|1|1| +Temporal Manipulation|Portal Second Age||R|{3}{U}{U}|Sorcery||| +Exhaustion|Portal Second Age||R|{2}{U}|Sorcery||| +Piracy|Portal Second Age||R|{U}{U}|Sorcery||| +Muck Rats|Portal Second Age||C|{B}|Creature — Rat|1|1| +Dakmor Scorpion|Portal Second Age||C|{1}{B}|Creature — Scorpion|2|1| +Dakmor Bat|Portal Second Age||C|{1}{B}|Creature — Bat|1|1| +Moaning Spirit|Portal Second Age||C|{2}{B}|Creature — Spirit|2|1| +Swarm of Rats|Portal Second Age||C|{1}{B}|Creature — Rat|*|1| +Prowling Nightstalker|Portal Second Age||C|{3}{B}|Creature — Nightstalker|2|2| +Lurking Nightstalker|Portal Second Age||C|{B}{B}|Creature — Nightstalker|1|1| +Raiding Nightstalker|Portal Second Age||C|{2}{B}|Creature — Nightstalker|2|2| +Ravenous Rats|Portal Second Age||C|{1}{B}|Creature — Rat|1|1| +Raise Dead|Portal Second Age||C|{B}|Sorcery||| +Cruel Edict|Portal Second Age||C|{1}{B}|Sorcery||| +Mind Rot|Portal Second Age||C|{2}{B}|Sorcery||| +Hand of Death|Portal Second Age||C|{2}{B}|Sorcery||| +Chorus of Woe|Portal Second Age||C|{B}|Sorcery||| +Predatory Nightstalker|Portal Second Age||U|{3}{B}{B}|Creature — Nightstalker|3|2| +Brutal Nightstalker|Portal Second Age||U|{3}{B}{B}|Creature — Nightstalker|3|2| +Abyssal Nightstalker|Portal Second Age||U|{3}{B}|Creature — Nightstalker|2|2| +Foul Spirit|Portal Second Age||U|{2}{B}|Creature — Spirit|3|2| +Dark Offering|Portal Second Age||U|{4}{B}{B}|Sorcery||| +Coercion|Portal Second Age||U|{2}{B}|Sorcery||| +Dakmor Plague|Portal Second Age||U|{3}{B}{B}|Sorcery||| +Kiss of Death|Portal Second Age||U|{4}{B}{B}|Sorcery||| +Bloodcurdling Scream|Portal Second Age||U|{X}{B}|Sorcery||| +Hidden Horror|Portal Second Age||R|{1}{B}{B}|Creature — Horror|4|4| +Vampiric Spirit|Portal Second Age||R|{2}{B}{B}|Creature — Spirit|4|3| +Dakmor Sorceress|Portal Second Age||R|{5}{B}|Creature — Human Wizard|*|4| +Nightstalker Engine|Portal Second Age||R|{4}{B}|Creature — Nightstalker|*|3| +Return of the Nightstalkers|Portal Second Age||R|{5}{B}{B}|Sorcery||| +Ancient Craving|Portal Second Age||R|{3}{B}|Sorcery||| +Rain of Daggers|Portal Second Age||R|{4}{B}{B}|Sorcery||| +Raging Goblin|Portal Second Age||C|{R}|Creature — Goblin Berserker|1|1| +Goblin Piker|Portal Second Age||C|{1}{R}|Creature — Goblin Warrior|2|1| +Goblin Raider|Portal Second Age||C|{1}{R}|Creature — Goblin Warrior|2|2| +Goblin Glider|Portal Second Age||C|{1}{R}|Creature — Goblin|1|1| +Goblin Mountaineer|Portal Second Age||C|{R}|Creature — Goblin Scout|1|1| +Ogre Berserker|Portal Second Age||C|{4}{R}|Creature — Ogre Berserker|4|2| +Goblin Cavaliers|Portal Second Age||C|{2}{R}|Creature — Goblin|3|2| +Ogre Taskmaster|Portal Second Age||U|{3}{R}|Creature — Ogre|4|3| +Spitting Earth|Portal Second Age||C|{1}{R}|Sorcery||| +Stone Rain|Portal Second Age||C|{2}{R}|Sorcery||| +Lava Axe|Portal Second Age||C|{4}{R}|Sorcery||| +Tremor|Portal Second Age||C|{R}|Sorcery||| +Volcanic Hammer|Portal Second Age||C|{1}{R}|Sorcery||| +Goblin War Strike|Portal Second Age||C|{R}|Sorcery||| +Ogre Arsonist|Portal Second Age||U|{4}{R}|Creature — Ogre|3|3| +Goblin Matron|Portal Second Age||U|{2}{R}|Creature — Goblin|1|1| +Ogre Warrior|Portal Second Age||C|{3}{R}|Creature — Ogre Warrior|3|3| +Goblin Firestarter|Portal Second Age||U|{R}|Creature — Goblin|1|1| +Obsidian Giant|Portal Second Age||U|{4}{R}|Creature — Giant|4|4| +Blaze|Portal Second Age||U|{X}{R}|Sorcery||| +Jagged Lightning|Portal Second Age||U|{3}{R}{R}|Sorcery||| +Goblin Lore|Portal Second Age||U|{1}{R}|Sorcery||| +Goblin War Cry|Portal Second Age||U|{2}{R}|Sorcery||| +Goblin General|Portal Second Age||R|{1}{R}{R}|Creature — Goblin Warrior|1|1| +Brimstone Dragon|Portal Second Age||R|{6}{R}{R}|Creature — Dragon|6|6| +Cunning Giant|Portal Second Age||R|{5}{R}|Creature — Giant|4|4| +Magma Giant|Portal Second Age||R|{5}{R}{R}|Creature — Giant|5|5| +Relentless Assault|Portal Second Age||R|{2}{R}{R}|Sorcery||| +Earthquake|Portal Second Age||R|{X}{R}|Sorcery||| +Wildfire|Portal Second Age||R|{4}{R}{R}|Sorcery||| +Lynx|Portal Second Age||C|{1}{G}|Creature — Cat|2|1| +Bear Cub|Portal Second Age||C|{1}{G}|Creature — Bear|2|2| +Lone Wolf|Portal Second Age||U|{2}{G}|Creature — Wolf|2|2| +Norwood Riders|Portal Second Age||C|{3}{G}|Creature — Elf|3|3| +Golden Bear|Portal Second Age||C|{3}{G}|Creature — Bear|4|3| +Plated Wurm|Portal Second Age||C|{4}{G}|Creature — Wurm|4|5| +Norwood Archers|Portal Second Age||C|{3}{G}|Creature — Elf Archer|3|3| +Tree Monkey|Portal Second Age||C|{G}|Creature — Ape|1|1| +Norwood Warrior|Portal Second Age||C|{2}{G}|Creature — Elf Warrior|2|2| +Monstrous Growth|Portal Second Age||C|{1}{G}|Sorcery||| +Salvage|Portal Second Age||C|{G}|Sorcery||| +Nature's Lore|Portal Second Age||C|{1}{G}|Sorcery||| +Natural Spring|Portal Second Age||C|{3}{G}{G}|Sorcery||| +Wild Ox|Portal Second Age||U|{3}{G}|Creature — Ox|3|3| +River Bear|Portal Second Age||U|{3}{G}|Creature — Bear|3|3| +Barbtooth Wurm|Portal Second Age||C|{5}{G}|Creature — Wurm|6|4| +Ironhoof Ox|Portal Second Age||U|{3}{G}{G}|Creature — Ox|4|4| +Renewing Touch|Portal Second Age||U|{G}|Sorcery||| +Untamed Wilds|Portal Second Age||U|{2}{G}|Sorcery||| +Deep Wood|Portal Second Age||U|{1}{G}|Instant||| +Harmony of Nature|Portal Second Age||U|{2}{G}|Sorcery||| +Bee Sting|Portal Second Age||U|{3}{G}|Sorcery||| +Norwood Priestess|Portal Second Age||R|{2}{G}{G}|Creature — Elf Druid|1|1| +Sylvan Yeti|Portal Second Age||R|{2}{G}{G}|Creature — Yeti|*|4| +Norwood Ranger|Portal Second Age||C|{G}|Creature — Elf Scout|1|2| +Deathcoil Wurm|Portal Second Age||R|{6}{G}{G}|Creature — Wurm|7|6| +Razorclaw Bear|Portal Second Age||R|{2}{G}{G}|Creature — Bear|3|3| +Alluring Scent|Portal Second Age||R|{1}{G}{G}|Sorcery||| +Hurricane|Portal Second Age||R|{X}{G}|Sorcery||| +Spire Owl|Urza's Saga|98|C|{1}{U}|Creature — Bird|1|1| +Windfall|Urza's Saga|111|U|{2}{U}|Sorcery||| +Grafted Skullcap|Urza's Saga|296|R|{4}|Artifact||| +Whetstone|Urza's Saga|316|R|{3}|Artifact||| +Curfew|Urza's Saga|68|C|{U}|Instant||| +Plains|Urza's Saga|331|L||Basic Land — Plains||| +Plains|Urza's Saga|332|L||Basic Land — Plains||| +Plains|Urza's Saga|333|L||Basic Land — Plains||| +Plains|Urza's Saga|334|L||Basic Land — Plains||| +Island|Urza's Saga|335|L||Basic Land — Island||| +Island|Urza's Saga|336|L||Basic Land — Island||| +Island|Urza's Saga|337|L||Basic Land — Island||| +Island|Urza's Saga|338|L||Basic Land — Island||| +Swamp|Urza's Saga|339|L||Basic Land — Swamp||| +Swamp|Urza's Saga|340|L||Basic Land — Swamp||| +Swamp|Urza's Saga|341|L||Basic Land — Swamp||| +Swamp|Urza's Saga|342|L||Basic Land — Swamp||| +Mountain|Urza's Saga|343|L||Basic Land — Mountain||| +Mountain|Urza's Saga|344|L||Basic Land — Mountain||| +Mountain|Urza's Saga|345|L||Basic Land — Mountain||| +Mountain|Urza's Saga|346|L||Basic Land — Mountain||| +Forest|Urza's Saga|347|L||Basic Land — Forest||| +Forest|Urza's Saga|348|L||Basic Land — Forest||| +Forest|Urza's Saga|349|L||Basic Land — Forest||| +Forest|Urza's Saga|350|L||Basic Land — Forest||| +Plains|Portal Second Age||L||Basic Land — Plains||| +Plains|Portal Second Age||L||Basic Land — Plains||| +Plains|Portal Second Age||L||Basic Land — Plains||| +Island|Portal Second Age||L||Basic Land — Island||| +Island|Portal Second Age||L||Basic Land — Island||| +Island|Portal Second Age||L||Basic Land — Island||| +Swamp|Portal Second Age||L||Basic Land — Swamp||| +Swamp|Portal Second Age||L||Basic Land — Swamp||| +Swamp|Portal Second Age||L||Basic Land — Swamp||| +Mountain|Portal Second Age||L||Basic Land — Mountain||| +Mountain|Portal Second Age||L||Basic Land — Mountain||| +Mountain|Portal Second Age||L||Basic Land — Mountain||| +Forest|Portal Second Age||L||Basic Land — Forest||| +Forest|Portal Second Age||L||Basic Land — Forest||| +Forest|Portal Second Age||L||Basic Land — Forest||| +Absolute Law|Urza's Saga|2|U|{1}{W}|Enchantment||| +Serra's Liturgy|Urza's Saga|49|R|{2}{W}{W}|Enchantment||| +Recantation|Urza's Saga|91|R|{3}{U}{U}|Enchantment||| +Discordant Dirge|Urza's Saga|131|R|{3}{B}{B}|Enchantment||| +Rumbling Crescendo|Urza's Saga|210|R|{3}{R}{R}|Enchantment||| +Midsummer Revel|Urza's Saga|268|R|{3}{G}{G}|Enchantment||| +Hermetic Study|Urza's Saga|78|C|{1}{U}|Enchantment — Aura||| +Daunting Defender|Onslaught|21|C|{4}{W}|Creature — Human Cleric|3|3| +Ostracize|Urza's Legacy|57|C|{B}|Sorcery||| +Zephid's Embrace|Urza's Saga|114|U|{2}{U}{U}|Enchantment — Aura||| +Pit Trap|Urza's Saga|307|U|{2}|Artifact||| +No Rest for the Wicked|Urza's Saga|142|U|{1}{B}|Enchantment||| +Reclusive Wight|Urza's Saga|153|U|{3}{B}|Creature — Zombie Minion|4|4| +Mana Leech|Urza's Saga|141|U|{2}{B}|Creature — Leech|1|1| +Headlong Rush|Urza's Saga|198|C|{1}{R}|Instant||| +Guma|Urza's Saga|197|U|{2}{R}|Creature — Cat|2|2| +Lifeline|Urza's Saga|299|R|{5}|Artifact||| +Noetic Scales|Urza's Saga|304|R|{4}|Artifact||| +Umbilicus|Urza's Saga|312|R|{4}|Artifact||| +Presence of the Master|Urza's Saga|32|U|{3}{W}|Enchantment||| +Healing Salve|Urza's Saga|16|C|{W}|Instant||| +Opal Avenger|Urza's Legacy|15|R|{2}{W}|Enchantment||| +Copper Gnomes|Urza's Saga|291|R|{2}|Artifact Creature — Gnome|1|1| +Parasitic Bond|Urza's Saga|145|U|{3}{B}|Enchantment — Aura||| +Lurking Evil|Urza's Saga|140|R|{B}{B}{B}|Enchantment||| +Goblin Offensive|Urza's Saga|192|U|{X}{1}{R}{R}|Sorcery||| +Titania's Boon|Urza's Saga|276|U|{3}{G}|Sorcery||| +Endless Wurm|Urza's Saga|249|R|{3}{G}{G}|Creature — Wurm|9|9| +Might of Oaks|Urza's Legacy|106|R|{3}{G}|Instant||| +Exploration|Urza's Saga|250|R|{G}|Enchantment||| +Goblin Matron|Urza's Saga|191|C|{2}{R}|Creature — Goblin|1|1| +Enchantment Alteration|Urza's Saga|72|U|{U}|Instant||| +Wild Dogs|Urza's Saga|284|C|{G}|Creature — Hound|2|1| +Root Greevil|Planeshift|91|C|{3}{G}|Creature — Beast|2|3| +Thran Quarry|Urza's Saga|329|R||Land||| +Hollow Specter|Legions|75|R|{1}{B}{B}|Creature — Specter|2|2| +Scrapheap|Urza's Legacy|132|R|{3}|Artifact||| +Quicksilver Amulet|Urza's Legacy|130|R|{4}|Artifact||| +Angel's Trumpet|Urza's Legacy|121|U|{3}|Artifact||| +Wirecat|Urza's Saga|317|U|{4}|Artifact Creature — Cat|4|3| +Memory Jar|Urza's Legacy|129|R|{5}|Artifact||| +Persecute|Urza's Saga|146|R|{2}{B}{B}|Sorcery||| +Endoskeleton|Urza's Saga|294|U|{2}|Artifact||| +Whirlwind|Urza's Saga|283|R|{2}{G}{G}|Sorcery||| +Thran Lens|Urza's Legacy|133|R|{2}|Artifact||| +Chimeric Staff|Urza's Saga|288|R|{4}|Artifact||| +Metrognome|Urza's Saga|301|R|{4}|Artifact||| +Phyrexian Colossus|Urza's Saga|306|R|{7}|Artifact Creature — Golem|8|8| +Fault Line|Urza's Saga|185|R|{X}{R}{R}|Instant||| +Citanul Flute|Urza's Saga|289|R|{5}|Artifact||| +Dragon Blood|Urza's Saga|293|U|{3}|Artifact||| +Wall of Junk|Urza's Saga|315|U|{2}|Artifact Creature — Wall|0|7| +Transcendence|Torment|20|R|{3}{W}{W}{W}|Enchantment||| +Worn Powerstone|Urza's Saga|318|U|{3}|Artifact||| +Tolarian Academy|Urza's Saga|330|R||Legendary Land||| +Bulwark|Urza's Saga|178|R|{3}{R}{R}|Enchantment||| +Claws of Gix|Urza's Saga|290|U|{0}|Artifact||| +Thran Turbine|Urza's Saga|311|U|{1}|Artifact||| +Jhoira's Toolbox|Urza's Legacy|128|U|{2}|Artifact Creature — Insect|1|1| +Defense Grid|Urza's Legacy|125|R|{2}|Artifact||| +Outmaneuver|Urza's Saga|205|U|{X}{R}|Instant||| +Goblin Game|Planeshift|61|R|{5}{R}{R}|Sorcery||| +Rivalry|Urza's Legacy|90|R|{2}{R}|Enchantment||| +Sylvan Basilisk|Portal Second Age||R|{3}{G}{G}|Creature — Basilisk|2|4| +Veiled Serpent|Urza's Saga|110|C|{2}{U}|Enchantment||| +Wizard Mentor|Urza's Saga|112|C|{2}{U}|Creature — Human Wizard|2|2| +Venomous Fangs|Urza's Saga|280|C|{2}{G}|Enchantment — Aura||| +Serra's Sanctum|Urza's Saga|325|R||Legendary Land||| +Swamp|Unglued|86|C||Basic Land — Swamp||| +Island|Unglued|85|C||Basic Land — Island||| +Child of Gaea|Urza's Saga|242|R|{3}{G}{G}{G}|Creature — Elemental|7|7| +Plains|Unglued|84|C||Basic Land — Plains||| +Serra's Embrace|Urza's Saga|47|U|{2}{W}{W}|Enchantment — Aura||| +Forest|Unglued|88|C||Basic Land — Forest||| +Vampiric Embrace|Urza's Saga|164|U|{2}{B}{B}|Enchantment — Aura||| +Molten Hydra|Urza's Legacy|85|R|{1}{R}|Creature — Hydra|1|1| +Destructive Flow|Planeshift|102|R|{B}{R}{G}|Enchantment||| +Sick and Tired|Urza's Legacy|66|C|{2}{B}|Instant||| +Swat|Urza's Legacy|69|C|{1}{B}{B}|Instant||| +Fog of Gnats|Urza's Legacy|53|C|{B}{B}|Creature — Insect|1|1| +Electryte|Urza's Saga|183|R|{3}{R}{R}|Creature — Beast|3|3| +Congregate|Urza's Saga|8|C|{3}{W}|Instant||| +Greener Pastures|Urza's Saga|258|R|{2}{G}|Enchantment||| +Iron Maiden|Urza's Legacy|127|R|{3}|Artifact||| +Wheel of Torture|Urza's Legacy|138|R|{3}|Artifact||| +Mountain|Unglued|87|C||Basic Land — Mountain||| +Peace and Quiet|Urza's Legacy|17|U|{1}{W}|Instant||| +Hawkeater Moth|Urza's Saga|259|U|{3}{G}|Creature — Insect|1|2| +Martyr's Cause|Urza's Legacy|13|U|{2}{W}|Enchantment||| +Academy Researchers|Urza's Saga|58|U|{1}{U}{U}|Creature — Human Wizard|2|2| +Redeem|Urza's Saga|33|U|{1}{W}|Instant||| +Ravenous Skirge|Urza's Saga|152|C|{2}{B}|Creature — Imp|1|1| +Sandbar Serpent|Urza's Saga|95|U|{4}{U}|Creature — Serpent|3|4| +Treefolk Mystic|Urza's Legacy|114|C|{3}{G}|Creature — Treefolk|2|4| +Priest of Gix|Urza's Saga|150|U|{2}{B}|Creature — Human Cleric Minion|2|1| +Read the Runes|Onslaught|104|R|{X}{U}|Instant||| +Tethered Skirge|Urza's Legacy|70|U|{2}{B}|Creature — Imp|2|2| +Spike Hatcher|Exodus|126|R|{6}{G}|Creature — Spike|0|0| +Panther Warriors|Portal||C|{4}{G}|Creature — Cat Warrior|6|3| +Soul Sculptor|Urza's Saga|53|R|{2}{W}|Creature — Human|1|1| +Karn, Silver Golem|Urza's Saga|298|R|{5}|Legendary Artifact Creature — Golem|4|4| +Horseshoe Crab|Urza's Saga|80|C|{2}{U}|Creature — Crab|1|3| +Fortitude|Urza's Saga|253|C|{1}{G}|Enchantment — Aura||| +Goblin Lackey|Urza's Saga|190|U|{R}|Creature — Goblin|1|1| +Catalog|Urza's Saga|64|C|{2}{U}|Instant||| +Barrin, Master Wizard|Urza's Saga|63|R|{1}{U}{U}|Legendary Creature — Human Wizard|1|1| +Brilliant Halo|Urza's Saga|5|C|{1}{W}|Enchantment — Aura||| +Retaliation|Urza's Saga|272|U|{2}{G}|Enchantment||| +Spreading Algae|Urza's Saga|274|U|{G}|Enchantment — Aura||| +Remembrance|Urza's Saga|34|R|{3}{W}|Enchantment||| +Annul|Urza's Saga|59|C|{U}|Instant||| +Energy Field|Urza's Saga|73|R|{1}{U}|Enchantment||| +Gaea's Cradle|Urza's Saga|321|R||Legendary Land||| +Time Spiral|Urza's Saga|103|R|{4}{U}{U}|Sorcery||| +Fiery Mantle|Urza's Saga|186|C|{1}{R}|Enchantment — Aura||| +Confiscate|Urza's Saga|66|U|{4}{U}{U}|Enchantment — Aura||| +Diabolic Servitude|Urza's Saga|130|U|{3}{B}|Enchantment||| +Lingering Mirage|Urza's Saga|84|U|{1}{U}|Enchantment — Aura||| +Heat Ray|Urza's Saga|199|C|{X}{R}|Instant||| +Reflexes|Urza's Saga|208|C|{R}|Enchantment — Aura||| +Meltdown|Urza's Saga|203|U|{X}{R}|Sorcery||| +Greater Good|Urza's Saga|257|R|{2}{G}{G}|Enchantment||| +Shivan Gorge|Urza's Saga|326|R||Legendary Land||| +Volunteer Militia|Portal Three Kingdoms|30|C|{W}|Creature — Human Soldier|1|2| +Wei Night Raiders|Portal Three Kingdoms|89|U|{2}{B}{B}|Creature — Human Soldier|2|2| +Wu Admiral|Portal Three Kingdoms|57|U|{4}{U}|Creature — Human Soldier|3|3| +Flanking Troops|Portal Three Kingdoms|5|U|{2}{W}{W}|Creature — Human Soldier|2|2| +Alert Shu Infantry|Portal Three Kingdoms|1|U|{2}{W}|Creature — Human Soldier|2|2| +Shu Soldier-Farmers|Portal Three Kingdoms|27|U|{4}{W}|Creature — Human Soldier|2|4| +Shu Foot Soldiers|Portal Three Kingdoms|24|C|{2}{W}|Creature — Human Soldier|2|3| +Kongming, "Sleeping Dragon"|Portal Three Kingdoms|9|R|{2}{W}{W}|Legendary Creature — Human Advisor|2|2| +Loyal Retainers|Portal Three Kingdoms|12|U|{2}{W}|Creature — Human Advisor|1|1| +Taunting Challenge|Portal Three Kingdoms|152|R|{1}{G}{G}|Sorcery||| +Ambition's Cost|Portal Three Kingdoms|67|R|{3}{B}|Sorcery||| +Guan Yu, Sainted Warrior|Portal Three Kingdoms|6|R|{3}{W}{W}|Legendary Creature — Human Soldier Warrior|3|5| +Kongming's Contraptions|Portal Three Kingdoms|10|R|{3}{W}|Creature — Human Soldier|2|4| +Riding Red Hare|Portal Three Kingdoms|18|C|{2}{W}|Sorcery||| +Shu Elite Companions|Portal Three Kingdoms|21|U|{4}{W}|Creature — Human Soldier|3|3| +Wu Longbowman|Portal Three Kingdoms|61|U|{2}{U}|Creature — Human Soldier Archer|1|1| +Liu Bei, Lord of Shu|Portal Three Kingdoms|11|R|{3}{W}{W}|Legendary Creature — Human Soldier|2|4| +Ravages of War|Portal Three Kingdoms|17|R|{3}{W}|Sorcery||| +Red Cliffs Armada|Portal Three Kingdoms|51|U|{4}{U}|Creature — Human Soldier|5|4| +Shu General|Portal Three Kingdoms|25|U|{3}{W}|Creature — Human Soldier|2|2| +Meng Huo's Horde|Portal Three Kingdoms|143|C|{4}{G}|Creature — Human Soldier|4|5| +Empty City Ruse|Portal Three Kingdoms|3|U|{W}|Sorcery||| +Forest Bear|Portal Three Kingdoms|135|C|{1}{G}|Creature — Bear|2|2| +Zodiac Rooster|Portal Three Kingdoms|163|C|{1}{G}|Creature — Bird|2|1| +Blaze|Portal Three Kingdoms|102|U|{X}{R}|Sorcery||| +Stone Catapult|Portal Three Kingdoms|84|R|{4}{B}|Creature — Human Soldier|1|2| +False Defeat|Portal Three Kingdoms|4|C|{3}{W}|Sorcery||| +Zodiac Dragon|Portal Three Kingdoms|131|R|{7}{R}{R}|Creature — Dragon|8|8| +Wei Elite Companions|Portal Three Kingdoms|87|U|{4}{B}|Creature — Human Soldier|3|3| +Desperate Charge|Portal Three Kingdoms|74|U|{2}{B}|Sorcery||| +Sun Quan, Lord of Wu|Portal Three Kingdoms|56|R|{4}{U}{U}|Legendary Creature — Human Soldier|4|4| +Coercion|Portal Three Kingdoms|70|U|{2}{B}|Sorcery||| +Imperial Edict|Portal Three Kingdoms|77|C|{1}{B}|Sorcery||| +Yuan Shao, the Indecisive|Portal Three Kingdoms|128|R|{4}{R}|Legendary Creature — Human Soldier|2|3| +Wei Scout|Portal Three Kingdoms|90|C|{1}{B}|Creature — Human Soldier Scout|1|1| +Famine|Portal Three Kingdoms|75|U|{3}{B}{B}|Sorcery||| +Wei Infantry|Portal Three Kingdoms|88|C|{1}{B}|Creature — Human Soldier|2|1| +Zhang He, Wei General|Portal Three Kingdoms|95|R|{3}{B}{B}|Legendary Creature — Human Soldier|4|2| +Overwhelming Forces|Portal Three Kingdoms|79|R|{6}{B}{B}|Sorcery||| +Wolf Pack|Portal Three Kingdoms|158|R|{6}{G}{G}|Creature — Wolf|7|6| +Heavy Fog|Portal Three Kingdoms|136|U|{1}{G}|Instant||| +Sage's Knowledge|Portal Three Kingdoms|52|C|{2}{U}|Sorcery||| +Zhou Yu, Chief Commander|Portal Three Kingdoms|65|R|{5}{U}{U}|Legendary Creature — Human Soldier|8|8| +Rolling Earthquake|Portal Three Kingdoms|122|R|{X}{R}|Sorcery||| +Exhaustion|Portal Three Kingdoms|42|R|{2}{U}|Sorcery||| +Extinguish|Portal Three Kingdoms|43|C|{1}{U}|Instant||| +Wu Spy|Portal Three Kingdoms|63|U|{1}{U}|Creature — Human Soldier Rogue|1|1| +Preemptive Strike|Portal Three Kingdoms|50|C|{1}{U}|Instant||| +Peach Garden Oath|Portal Three Kingdoms|15|U|{W}|Sorcery||| +Forest|Portal Three Kingdoms|178|L||Basic Land — Forest||| +Cunning Advisor|Portal Three Kingdoms|72|U|{3}{B}|Creature — Human Advisor|1|1| +Zodiac Dog|Portal Three Kingdoms|130|C|{2}{R}|Creature — Hound|2|2| +Fire Bowman|Portal Three Kingdoms|112|U|{R}|Creature — Human Soldier Archer|1|1| +Lu Bu, Master-at-Arms|Portal Three Kingdoms|115|R|{5}{R}|Legendary Creature — Human Soldier Warrior|4|3| +Yellow Scarves Cavalry|Portal Three Kingdoms|125|C|{1}{R}|Creature — Human Soldier|1|1| +Control of the Court|Portal Three Kingdoms|105|U|{1}{R}|Sorcery||| +Imperial Recruiter|Portal Three Kingdoms|113|U|{2}{R}|Creature — Human Advisor|1|1| +Zodiac Goat|Portal Three Kingdoms|132|C|{R}|Creature — Goat|1|1| +Independent Troops|Portal Three Kingdoms|114|C|{1}{R}|Creature — Human Soldier|2|1| +Yellow Scarves Troops|Portal Three Kingdoms|127|C|{1}{R}|Creature — Human Soldier|2|2| +Eunuchs' Intrigues|Portal Three Kingdoms|110|U|{2}{R}|Sorcery||| +Diaochan, Artful Beauty|Portal Three Kingdoms|108|R|{3}{R}|Legendary Creature — Human Advisor|1|1| +Southern Elephant|Portal Three Kingdoms|146|C|{3}{G}|Creature — Elephant|3|4| +Ghostly Visit|Portal Three Kingdoms|76|C|{2}{B}|Sorcery||| +Marshaling the Troops|Portal Three Kingdoms|141|R|{1}{G}|Sorcery||| +Cao Cao, Lord of Wei|Portal Three Kingdoms|68|R|{3}{B}{B}|Legendary Creature — Human Soldier|3|3| +Borrowing the East Wind|Portal Three Kingdoms|133|R|{X}{G}{G}|Sorcery||| +Stalking Tiger|Portal Three Kingdoms|149|C|{3}{G}|Creature — Cat|3|3| +Island|Portal Three Kingdoms|169|L||Basic Land — Island||| +Warrior's Oath|Portal Three Kingdoms|124|R|{R}{R}|Sorcery||| +Eightfold Maze|Portal Three Kingdoms|2|R|{2}{W}|Instant||| +Stolen Grain|Portal Three Kingdoms|83|U|{4}{B}{B}|Sorcery||| +Burning Fields|Portal Three Kingdoms|103|C|{4}{R}|Sorcery||| +Lone Wolf|Portal Three Kingdoms|140|U|{2}{G}|Creature — Wolf|2|2| +Wei Ambush Force|Portal Three Kingdoms|85|C|{1}{B}|Creature — Human Soldier|1|1| +Zodiac Monkey|Portal Three Kingdoms|160|C|{1}{G}|Creature — Ape|2|1| +Yuan Shao's Infantry|Portal Three Kingdoms|129|U|{3}{R}|Creature — Human Soldier|2|2| +Deception|Portal Three Kingdoms|73|C|{2}{B}|Sorcery||| +Wei Strike Force|Portal Three Kingdoms|91|C|{2}{B}|Creature — Human Soldier|2|1| +Wielding the Green Dragon|Portal Three Kingdoms|157|C|{1}{G}|Sorcery||| +Mountain|Portal Three Kingdoms|175|L||Basic Land — Mountain||| +Zodiac Rat|Portal Three Kingdoms|98|C|{B}|Creature — Rat|1|1| +Mystic Denial|Portal Three Kingdoms|49|U|{1}{U}{U}|Instant||| +Spring of Eternal Peace|Portal Three Kingdoms|148|C|{3}{G}{G}|Sorcery||| +Three Visits|Portal Three Kingdoms|153|C|{1}{G}|Sorcery||| +Taoist Hermit|Portal Three Kingdoms|150|U|{2}{G}|Creature — Human Mystic|2|2| +Hua Tuo, Honored Physician|Portal Three Kingdoms|137|R|{1}{G}{G}|Legendary Creature — Human|1|2| +Trained Jackal|Portal Three Kingdoms|155|C|{G}|Creature — Hound|1|2| +Hunting Cheetah|Portal Three Kingdoms|138|U|{2}{G}|Creature — Cat|2|3| +Trained Cheetah|Portal Three Kingdoms|155|U|{2}{G}|Creature — Cat|2|2| +Barbarian General|Portal Three Kingdoms|100|U|{4}{R}|Creature — Human Barbarian Soldier|3|2| +Renegade Troops|Portal Three Kingdoms|120|U|{4}{R}|Creature — Human Soldier|4|2| +Yellow Scarves General|Portal Three Kingdoms|126|R|{3}{R}|Creature — Human Soldier|2|2| +Barbarian Horde|Portal Three Kingdoms|101|C|{3}{R}|Creature — Human Barbarian Soldier|3|3| +Misfortune's Gain|Portal Three Kingdoms|13|C|{3}{W}|Sorcery||| +Balance of Power|Portal Three Kingdoms|34|R|{3}{U}{U}|Sorcery||| +Plains|Portal Three Kingdoms|166|L||Basic Land — Plains||| +Zodiac Rabbit|Portal Three Kingdoms|162|C|{G}|Creature — Rabbit|1|1| +Wei Assassins|Portal Three Kingdoms|86|U|{3}{B}{B}|Creature — Human Soldier Assassin|3|2| +Young Wei Recruits|Portal Three Kingdoms|94|C|{1}{B}|Creature — Human Soldier|2|2| +Mountain Bandit|Portal Three Kingdoms|117|C|{R}|Creature — Human Soldier Rogue|1|1| +Zodiac Pig|Portal Three Kingdoms|97|U|{3}{B}|Creature — Boar|3|3| +Poison Arrow|Portal Three Kingdoms|80|U|{4}{B}{B}|Sorcery||| +Return to Battle|Portal Three Kingdoms|81|C|{B}|Sorcery||| +Rally the Troops|Portal Three Kingdoms|16|U|{W}|Instant||| +Xiahou Dun, the One-Eyed|Portal Three Kingdoms|92|R|{2}{B}{B}|Legendary Creature — Human Soldier|3|2| +Slashing Tiger|Portal Three Kingdoms|145|R|{2}{G}{G}|Creature — Cat|3|3| +Relentless Assault|Portal Three Kingdoms|119|R|{2}{R}{R}|Sorcery||| +Champion's Victory|Portal Three Kingdoms|39|U|{U}|Instant||| +Zodiac Tiger|Portal Three Kingdoms|164|U|{2}{G}{G}|Creature — Cat|3|4| +Corrupt Court Official|Portal Three Kingdoms|71|U|{1}{B}|Creature — Human Advisor|1|1| +Virtuous Charge|Portal Three Kingdoms|29|C|{2}{W}|Sorcery||| +Guan Yu's 1,000-Li March|Portal Three Kingdoms|7|R|{4}{W}{W}|Sorcery||| +Zodiac Horse|Portal Three Kingdoms|159|U|{3}{G}|Creature — Horse|3|3| +False Mourning|Portal Three Kingdoms|134|U|{G}|Sorcery||| +Wu Infantry|Portal Three Kingdoms|59|C|{1}{U}|Creature — Human Soldier|2|1| +Council of Advisors|Portal Three Kingdoms|40|U|{2}{U}|Creature — Human Advisor|1|1| +Strategic Planning|Portal Three Kingdoms|53|U|{1}{U}|Sorcery||| +Rockslide Ambush|Portal Three Kingdoms|121|U|{1}{R}|Sorcery||| +Zhang Fei, Fierce Warrior|Portal Three Kingdoms|32|R|{4}{W}{W}|Legendary Creature — Human Soldier Warrior|4|4| +Wu Warship|Portal Three Kingdoms|64|C|{2}{U}|Creature — Human Soldier|3|3| +Stone Rain|Portal Three Kingdoms|123|C|{2}{R}|Sorcery||| +Swamp|Portal Three Kingdoms|172|L||Basic Land — Swamp||| +Zodiac Snake|Portal Three Kingdoms|99|C|{2}{B}|Creature — Snake|2|2| +Lady Zhurong, Warrior Queen|Portal Three Kingdoms|139|R|{4}{G}|Legendary Creature — Human Soldier Warrior|4|3| +Zuo Ci, the Mocking Sage|Portal Three Kingdoms|165|R|{1}{G}{G}|Legendary Creature — Human Advisor|1|2| +Wu Elite Cavalry|Portal Three Kingdoms|58|C|{3}{U}|Creature — Human Soldier|2|3| +Wu Scout|Portal Three Kingdoms|62|C|{1}{U}|Creature — Human Soldier Scout|1|1| +Straw Soldiers|Portal Three Kingdoms|54|C|{1}{U}|Creature — Scarecrow Soldier|1|3| +Lu Su, Wu Advisor|Portal Three Kingdoms|47|R|{3}{U}{U}|Legendary Creature — Human Advisor|1|2| +Wu Light Cavalry|Portal Three Kingdoms|60|C|{1}{U}|Creature — Human Soldier|1|2| +Lu Xun, Scholar General|Portal Three Kingdoms|48|R|{2}{U}{U}|Legendary Creature — Human Soldier|1|3| +Shu Grain Caravan|Portal Three Kingdoms|26|C|{2}{W}|Creature — Human Soldier|2|2| +Shu Farmer|Portal Three Kingdoms|23|C|{1}{W}|Creature — Human|1|1| +Capture of Jingzhou|Portal Three Kingdoms|38|R|{3}{U}{U}|Sorcery||| +Borrowing 100,000 Arrows|Portal Three Kingdoms|35|U|{2}{U}|Sorcery||| +Broken Dam|Portal Three Kingdoms|37|C|{U}|Sorcery||| +Forced Retreat|Portal Three Kingdoms|44|C|{2}{U}|Sorcery||| +Brilliant Plan|Portal Three Kingdoms|36|U|{4}{U}|Sorcery||| +Shu Defender|Portal Three Kingdoms|20|C|{2}{W}|Creature — Human Soldier|2|2| +Trip Wire|Portal Three Kingdoms|154|U|{2}{G}|Sorcery||| +Desert Sandstorm|Portal Three Kingdoms|107|C|{2}{R}|Sorcery||| +Shu Elite Infantry|Portal Three Kingdoms|22|C|{3}{W}|Creature — Human Soldier|3|3| +Counterintelligence|Portal Three Kingdoms|41|U|{2}{U}{U}|Sorcery||| +Spoils of Victory|Portal Three Kingdoms|147|U|{2}{G}|Sorcery||| +Sima Yi, Wei Field Marshal|Portal Three Kingdoms|82|R|{5}{B}|Legendary Creature — Human Soldier|*|4| +Vengeance|Portal Three Kingdoms|28|U|{3}{W}|Sorcery||| +Fire Ambush|Portal Three Kingdoms|111|C|{1}{R}|Sorcery||| +Warrior's Stand|Portal Three Kingdoms|31|U|{1}{W}|Instant||| +Shu Cavalry|Portal Three Kingdoms|19|C|{2}{W}|Creature — Human Soldier|2|2| +Zodiac Ox|Portal Three Kingdoms|161|U|{3}{G}|Creature — Ox|3|3| +Burning of Xinye|Portal Three Kingdoms|104|R|{4}{R}{R}|Sorcery||| +Forest|Portal Three Kingdoms|179|L||Basic Land — Forest||| +Forest|Portal Three Kingdoms|180|L||Basic Land — Forest||| +Island|Portal Three Kingdoms|170|L||Basic Land — Island||| +Island|Portal Three Kingdoms|171|L||Basic Land — Island||| +Mountain|Portal Three Kingdoms|176|L||Basic Land — Mountain||| +Mountain|Portal Three Kingdoms|177|L||Basic Land — Mountain||| +Plains|Portal Three Kingdoms|167|L||Basic Land — Plains||| +Plains|Portal Three Kingdoms|168|L||Basic Land — Plains||| +Swamp|Portal Three Kingdoms|173|L||Basic Land — Swamp||| +Swamp|Portal Three Kingdoms|174|L||Basic Land — Swamp||| +Purging Scythe|Urza's Saga|308|R|{5}|Artifact||| +Mishra's Helix|Urza's Saga|302|R|{5}|Artifact||| +Gamble|Urza's Saga|188|R|{R}|Sorcery||| +Victimize|Urza's Saga|166|U|{2}{B}|Sorcery||| +Despondency|Urza's Saga|129|C|{1}{B}|Enchantment — Aura||| +Scald|Urza's Saga|211|U|{1}{R}|Enchantment||| +Destructive Urge|Urza's Saga|180|U|{1}{R}{R}|Enchantment — Aura||| +Cathodion|Urza's Saga|287|U|{3}|Artifact Creature — Construct|3|3| +Arcane Spyglass|Darksteel|93|C|{4}|Artifact||| +Phyrexian Tower|Urza's Saga|322|R||Legendary Land||| +Great Whale|Urza's Saga|77|R|{5}{U}{U}|Creature — Whale|5|5| +Zhao Zilong, Tiger General|Portal Three Kingdoms|33|R|{3}{W}{W}|Legendary Creature — Human Soldier Warrior|3|3| +Rune of Protection: Artifacts|Urza's Saga|35|U|{1}{W}|Enchantment||| +Disruptive Student|Urza's Saga|69|C|{2}{U}|Creature — Human Wizard|1|1| +Entrails Feaster|Onslaught|143|R|{B}|Creature — Zombie Cat|1|1| +Riptide Laboratory|Onslaught|322|R||Land||| +Sun Ce, Young Conquerer|Portal Three Kingdoms|55|R|{3}{U}{U}|Legendary Creature — Human Soldier|3|3| +Lu Meng, Wu General|Portal Three Kingdoms|46|R|{3}{U}{U}|Legendary Creature — Human Soldier|4|4| +Zhuge Jin, Wu Strategist|Portal Three Kingdoms|66|R|{1}{U}{U}|Legendary Creature — Human Advisor|1|1| +Cao Ren, Wei Commander|Portal Three Kingdoms|69|R|{2}{B}{B}|Legendary Creature — Human Soldier Warrior|3|3| +Pang Tong, "Young Phoenix"|Portal Three Kingdoms|14|R|{1}{W}{W}|Legendary Creature — Human Advisor|1|2| +Huang Zhong, Shu General|Portal Three Kingdoms|8|R|{2}{W}{W}|Legendary Creature — Human Soldier|2|3| +Cruel Revival|Onslaught|135|C|{4}{B}|Instant||| +Lady Sun|Portal Three Kingdoms|45|R|{1}{U}{U}|Legendary Creature — Human Advisor|1|1| +Gravespawn Sovereign|Onslaught|152|R|{4}{B}{B}|Creature — Zombie|3|3| +Zhang Liao, Hero of Hefei|Portal Three Kingdoms|96|R|{4}{B}{B}|Legendary Creature — Human Soldier|3|3| +Imperial Seal|Portal Three Kingdoms|78|R|{B}|Sorcery||| +Ma Chao, Western Warrior|Portal Three Kingdoms|116|R|{3}{R}{R}|Legendary Creature — Human Soldier Warrior|3|3| +Dong Zhou, the Tyrant|Portal Three Kingdoms|109|R|{4}{R}|Legendary Creature — Human Soldier|3|3| +Riding the Dilu Horse|Portal Three Kingdoms|144|R|{2}{G}|Sorcery||| +Meng Huo, Barbarian King|Portal Three Kingdoms|142|R|{3}{G}{G}|Legendary Creature — Human Barbarian Soldier|4|4| +Taoist Mystic|Portal Three Kingdoms|151|R|{2}{G}|Creature — Human Mystic|2|2| +Corrupt Eunuchs|Portal Three Kingdoms|106|U|{3}{R}|Creature — Human Advisor|2|2| +Lord of the Undead|Planeshift|44|R|{1}{B}{B}|Creature — Zombie|2|2| +Merfolk of the Pearl Trident|Seventh Edition|90|C|{U}|Creature — Merfolk|1|1| +Prosperity|Classic Sixth Edition|89|U|{X}{U}|Sorcery||| +Hurricane|Seventh Edition|252|R|{X}{G}|Sorcery||| +Hurricane|Classic Sixth Edition|237|R|{X}{G}|Sorcery||| +Adarkar Wastes|Seventh Edition|325|R||Land||| +Aladdin's Ring|Seventh Edition|286|R|{8}|Artifact||| +Pariah|Seventh Edition|30|R|{2}{W}|Enchantment — Aura||| +Ashnod's Altar|Classic Sixth Edition|274|U|{3}|Artifact||| +Birds of Paradise|Seventh Edition|231|R|{G}|Creature — Bird|0|1| +Blinking Spirit|Battle Royale Box Set||R|{3}{W}|Creature — Spirit|2|2| +Bog Imp|Seventh Edition|122|C|{1}{B}|Creature — Imp|1|1| +Bog Rats|Classic Sixth Edition|117|C|{B}|Creature — Rat|1|1| +Bog Wraith|Seventh Edition|123|U|{3}{B}|Creature — Wraith|3|3| +Boomerang|Seventh Edition|64|C|{U}{U}|Instant||| +Bottle of Suleiman|Classic Sixth Edition|275|R|{4}|Artifact||| +Brushland|Seventh Edition|326|R||Land||| +Castle|Seventh Edition|5|U|{3}{W}|Enchantment||| +Circle of Protection: Black|Seventh Edition|6|C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Seventh Edition|7|C|{1}{W}|Enchantment||| +Circle of Protection: Green|Seventh Edition|8|C|{1}{W}|Enchantment||| +Circle of Protection: Red|Seventh Edition|9|C|{1}{W}|Enchantment||| +Circle of Protection: White|Seventh Edition|10|C|{1}{W}|Enchantment||| +City of Brass|Seventh Edition|327|R||Land||| +Conquer|Classic Sixth Edition|171|U|{3}{R}{R}|Enchantment — Aura||| +Counterspell|Seventh Edition|67|C|{U}{U}|Instant||| +Deflection|Seventh Edition|69|R|{3}{U}|Instant||| +Derelor|Classic Sixth Edition|120|R|{3}{B}|Creature — Thrull|4|4| +Disenchant|Seventh Edition|13|C|{1}{W}|Instant||| +Disrupting Scepter|Classic Sixth Edition|281|R|{3}|Artifact||| +Divine Transformation|Classic Sixth Edition|17|U|{2}{W}{W}|Enchantment — Aura||| +Drudge Skeletons|Seventh Edition|130|C|{1}{B}|Creature — Skeleton|1|1| +Earthquake|Seventh Edition|180|R|{X}{R}|Sorcery||| +Elder Druid|Seventh Edition|238|R|{3}{G}|Creature — Elf Cleric Druid|2|2| +Fallen Angel|Seventh Edition|134|R|{3}{B}{B}|Creature — Angel|3|3| +Fear|Seventh Edition|135|C|{B}{B}|Enchantment — Aura||| +Flight|Seventh Edition|75|C|{U}|Enchantment — Aura||| +Flying Carpet|Seventh Edition|297|R|{4}|Artifact||| +Fog|Seventh Edition|245|C|{G}|Instant||| +Force Spike|Seventh Edition|76|C|{U}|Instant||| +Forest|Seventh Edition|328|L||Basic Land — Forest||| +Forest|Seventh Edition|329|L||Basic Land — Forest||| +Forest|Seventh Edition|330|L||Basic Land — Forest||| +Forest|Seventh Edition|331|L||Basic Land — Forest||| +Tranquil Grove|Classic Sixth Edition|258|R|{1}{G}|Enchantment||| +Fyndhorn Elder|Seventh Edition|246|U|{2}{G}|Creature — Elf Druid|1|1| +Gaseous Form|Classic Sixth Edition|71|C|{2}{U}|Enchantment — Aura||| +Giant Growth|Seventh Edition|248|C|{G}|Instant||| +Giant Spider|Seventh Edition|249|C|{3}{G}|Creature — Spider|2|4| +Giant Strength|Classic Sixth Edition|181|C|{R}{R}|Enchantment — Aura||| +Glacial Wall|Seventh Edition|78|U|{2}{U}|Creature — Wall|0|7| +Glasses of Urza|Classic Sixth Edition|287|U|{1}|Artifact||| +Goblin Digging Team|Seventh Edition|186|C|{R}|Creature — Goblin|1|1| +Goblin King|Seventh Edition|190|R|{1}{R}{R}|Creature — Goblin|2|2| +Grizzly Bears|Seventh Edition|251|C|{1}{G}|Creature — Bear|2|2| +Hecatomb|Classic Sixth Edition|136|R|{1}{B}{B}|Enchantment||| +Howl from Beyond|Seventh Edition|142|C|{X}{B}|Instant||| +Howling Mine|Seventh Edition|300|R|{2}|Artifact||| +Icatian Town|Classic Sixth Edition|25|R|{5}{W}|Sorcery||| +Inferno|Classic Sixth Edition|191|R|{5}{R}{R}|Instant||| +Island|Seventh Edition|332|L||Basic Land — Island||| +Island|Seventh Edition|333|L||Basic Land — Island||| +Island|Seventh Edition|334|L||Basic Land — Island||| +Island|Seventh Edition|335|L||Basic Land — Island||| +Jade Monolith|Classic Sixth Edition|292|R|{4}|Artifact||| +Jalum Tome|Seventh Edition|303|R|{3}|Artifact||| +Jandor's Saddlebags|Seventh Edition|304|R|{2}|Artifact||| +Seismic Assault|Seventh Edition|216|R|{R}{R}{R}|Enchantment||| +Juxtapose|Classic Sixth Edition|77|R|{3}{U}|Sorcery||| +Karplusan Forest|Seventh Edition|336|R||Land||| +Kjeldoran Royal Guard|Classic Sixth Edition|28|R|{3}{W}{W}|Creature — Human Soldier|2|5| +Leshrac's Rite|Seventh Edition|144|U|{B}|Enchantment — Aura||| +Lhurgoyf|Battle Royale Box Set||R|{2}{G}{G}|Creature — Lhurgoyf|*|1+*| +Living Lands|Classic Sixth Edition|238|R|{3}{G}|Enchantment||| +Llanowar Elves|Seventh Edition|253|C|{G}|Creature — Elf Druid|1|1| +Lord of Atlantis|Seventh Edition|83|R|{U}{U}|Creature — Merfolk|2|2| +Lure|Seventh Edition|255|U|{1}{G}{G}|Enchantment — Aura||| +Meekstone|Seventh Edition|307|R|{1}|Artifact||| +Memory Lapse|Classic Sixth Edition|81|C|{1}{U}|Instant||| +Merfolk of the Pearl Trident|Classic Sixth Edition|82|C|{U}|Creature — Merfolk|1|1| +Millstone|Seventh Edition|308|R|{2}|Artifact||| +Mountain|Seventh Edition|337|L||Basic Land — Mountain||| +Mountain|Seventh Edition|338|L||Basic Land — Mountain||| +Mountain|Seventh Edition|339|L||Basic Land — Mountain||| +Mountain|Seventh Edition|340|L||Basic Land — Mountain||| +Orcish Artillery|Classic Sixth Edition|196|U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Oriflamme|Seventh Edition|206|U|{3}{R}|Enchantment||| +Order of the Sacred Torch|Classic Sixth Edition|32|R|{1}{W}{W}|Creature — Human Knight|2|2| +Pestilence|Classic Sixth Edition|149|U|{2}{B}{B}|Enchantment||| +Plains|Seventh Edition|341|L||Basic Land — Plains||| +Plains|Seventh Edition|342|L||Basic Land — Plains||| +Plains|Seventh Edition|343|L||Basic Land — Plains||| +Plains|Seventh Edition|344|L||Basic Land — Plains||| +Pradesh Gypsies|Classic Sixth Edition|244|C|{2}{G}|Creature — Human Nomad|1|1| +Primal Clay|Classic Sixth Edition|307|R|{4}|Artifact Creature — Shapeshifter|*|*| +Prodigal Sorcerer|Seventh Edition|94|C|{2}{U}|Creature — Human Wizard|1|1| +Rag Man|Seventh Edition|156|R|{2}{B}{B}|Creature — Human Minion|2|1| +Raise Dead|Seventh Edition|157|C|{B}|Sorcery||| +Recall|Classic Sixth Edition|92|R|{X}{X}{U}|Sorcery||| +Regeneration|Seventh Edition|265|C|{1}{G}|Enchantment — Aura||| +Remove Soul|Seventh Edition|95|C|{1}{U}|Instant||| +Reverse Damage|Classic Sixth Edition|39|R|{1}{W}{W}|Instant||| +Rod of Ruin|Seventh Edition|314|U|{4}|Artifact||| +Sabretooth Tiger|Classic Sixth Edition|203|C|{2}{R}|Creature — Cat|2|1| +Samite Healer|Seventh Edition|38|C|{1}{W}|Creature — Human Cleric|1|1| +Elvish Lyrist|Seventh Edition|241|U|{G}|Creature — Elf|1|1| +Sengir Autocrat|Classic Sixth Edition|155|R|{3}{B}|Creature — Human|2|2| +Shanodin Dryads|Seventh Edition|269|C|{G}|Creature — Dryad|1|1| +Shatter|Seventh Edition|217|C|{1}{R}|Instant||| +Shatterstorm|Classic Sixth Edition|205|R|{2}{R}{R}|Sorcery||| +Shield Wall|Seventh Edition|44|C|{1}{W}|Instant||| +Rampant Growth|Seventh Edition|262|C|{1}{G}|Sorcery||| +Sibilant Spirit|Classic Sixth Edition|98|R|{5}{U}|Creature — Spirit|5|6| +Skull Catapult|Classic Sixth Edition|309|U|{4}|Artifact||| +Rag Man|Classic Sixth Edition|151|R|{2}{B}{B}|Creature — Human Minion|2|1| +Spirit Link|Classic Sixth Edition|43|U|{W}|Enchantment — Aura||| +Stone Rain|Seventh Edition|221|C|{2}{R}|Sorcery||| +Stream of Life|Seventh Edition|272|C|{X}{G}|Sorcery||| +Stromgald Cabal|Classic Sixth Edition|157|R|{1}{B}{B}|Creature — Human Knight|2|2| +Sulfurous Springs|Seventh Edition|345|R||Land||| +Swamp|Seventh Edition|346|L||Basic Land — Swamp||| +Swamp|Seventh Edition|347|L||Basic Land — Swamp||| +Swamp|Seventh Edition|348|L||Basic Land — Swamp||| +Swamp|Seventh Edition|349|L||Basic Land — Swamp||| +The Hive|Classic Sixth Edition|315|R|{5}|Artifact||| +Tranquility|Seventh Edition|276|C|{2}{G}|Sorcery||| +Tundra Wolves|Classic Sixth Edition|48|C|{W}|Creature — Wolf|1|1| +Twiddle|Seventh Edition|107|C|{U}|Instant||| +Underground River|Seventh Edition|350|R||Land||| +Unsummon|Seventh Edition|108|C|{U}|Instant||| +Untamed Wilds|Seventh Edition|279|U|{2}{G}|Sorcery||| +Verduran Enchantress|Classic Sixth Edition|264|R|{1}{G}{G}|Creature — Human Druid|0|2| +Wall of Air|Seventh Edition|111|U|{1}{U}{U}|Creature — Wall|1|5| +Wall of Fire|Seventh Edition|227|U|{1}{R}{R}|Creature — Wall|0|5| +Wall of Spears|Seventh Edition|323|U|{3}|Artifact Creature — Wall|2|3| +Wall of Swords|Seventh Edition|55|U|{3}{W}|Creature — Wall|3|5| +Wild Growth|Seventh Edition|282|C|{G}|Enchantment — Aura||| +Wrath of God|Seventh Edition|57|R|{2}{W}{W}|Sorcery||| +Elvish Champion|Seventh Edition|240|R|{1}{G}{G}|Creature — Elf|2|2| +Cloud of Faeries|Urza's Legacy|29|C|{1}{U}|Creature — Faerie|1|1| +Rune of Protection: Lands|Urza's Saga|39|R|{1}{W}|Enchantment||| +Treachery|Urza's Destiny|50|R|{3}{U}{U}|Enchantment — Aura||| +Blood Pet|Tempest||C|{B}|Creature — Thrull|1|1| +Teroh's Faithful|Torment|18|C|{3}{W}|Creature — Human Cleric|1|4| +Delusions of Mediocrity|Urza's Legacy|30|R|{3}{U}|Enchantment||| +Opal Champion|Urza's Legacy|16|C|{2}{W}|Enchantment||| +Defender of Law|Urza's Legacy|5|C|{2}{W}|Creature — Human Knight|2|1| +Angelic Curator|Urza's Legacy|1|C|{1}{W}|Creature — Angel Spirit|1|1| +Tragic Poet|Urza's Legacy|24|C|{W}|Creature — Human|1|1| +Expendable Troops|Urza's Legacy|8|C|{1}{W}|Creature — Human Soldier|2|1| +Iron Will|Urza's Legacy|10|C|{W}|Instant||| +Cessation|Urza's Legacy|4|C|{2}{W}|Enchantment — Aura||| +Radiant's Judgment|Urza's Legacy|22|C|{2}{W}|Instant||| +Militant Monk|Torment|9|C|{1}{W}{W}|Creature — Human Monk Cleric|2|1| +Radiant's Dragoons|Urza's Legacy|21|U|{3}{W}|Creature — Human Soldier|2|5| +Planar Collapse|Urza's Legacy|18|R|{1}{W}|Enchantment||| +Blessed Reversal|Urza's Legacy|2|R|{1}{W}|Instant||| +Purify|Urza's Legacy|19|R|{3}{W}{W}|Sorcery||| +Radiant, Archangel|Urza's Legacy|20|R|{3}{W}{W}|Legendary Creature — Angel|3|3| +Thornwind Faeries|Urza's Legacy|44|C|{1}{U}{U}|Creature — Faerie|1|1| +Weatherseed Faeries|Urza's Legacy|48|C|{2}{U}|Creature — Faerie|2|1| +Vigilant Drake|Urza's Legacy|46|C|{4}{U}|Creature — Drake|3|3| +Bouncing Beebles|Urza's Legacy|28|C|{2}{U}|Creature — Beeble|2|2| +Snap|Urza's Legacy|43|C|{1}{U}|Instant||| +Frantic Search|Urza's Legacy|32|C|{2}{U}|Instant||| +Miscalculation|Urza's Legacy|36|C|{1}{U}|Instant||| +Intervene|Urza's Legacy|33|C|{U}|Instant||| +Walking Sponge|Urza's Legacy|47|U|{1}{U}|Creature — Sponge|1|1| +Raven Familiar|Urza's Legacy|39|U|{2}{U}|Creature — Bird|1|2| +King Crab|Urza's Legacy|34|U|{4}{U}{U}|Creature — Crab|4|5| +Tinker|Urza's Legacy|45|U|{2}{U}|Sorcery||| +Slow Motion|Urza's Legacy|42|C|{2}{U}|Enchantment — Aura||| +Rebuild|Urza's Legacy|40|U|{2}{U}|Instant||| +Lurking Skirge|Urza's Legacy|55|R|{1}{B}|Enchantment||| +Anthroplasm|Urza's Legacy|25|R|{2}{U}{U}|Creature — Shapeshifter|0|0| +Levitation|Urza's Legacy|35|U|{2}{U}{U}|Enchantment||| +Fleeting Image|Urza's Legacy|31|R|{2}{U}|Creature — Illusion|2|1| +Archivist|Urza's Legacy|26|R|{2}{U}{U}|Creature — Human Wizard|1|1| +Second Chance|Urza's Legacy|41|R|{2}{U}|Enchantment||| +Phyrexian Broodlings|Urza's Legacy|58|C|{1}{B}{B}|Creature — Minion|2|2| +Plague Beetle|Urza's Legacy|64|C|{B}|Creature — Insect|1|1| +Nim Lasher|Mirrodin|71|C|{2}{B}|Creature — Zombie|1|1| +Sleeper's Guile|Urza's Legacy|67|C|{2}{B}|Enchantment — Aura||| +Unearth|Urza's Legacy|72|C|{B}|Sorcery||| +Bone Shredder|Urza's Legacy|49|U|{2}{B}|Creature — Minion|1|1| +Treacherous Link|Urza's Legacy|71|U|{1}{B}|Enchantment — Aura||| +Eviscerator|Urza's Legacy|52|R|{3}{B}{B}|Creature — Horror|5|5| +Gloomdrifter|Torment|61|U|{3}{B}|Creature — Zombie Minion|2|2| +Brink of Madness|Urza's Legacy|50|R|{2}{B}{B}|Enchantment||| +Subversion|Urza's Legacy|68|R|{3}{B}{B}|Enchantment||| +No Mercy|Urza's Legacy|56|R|{2}{B}{B}|Enchantment||| +Viashino Sandscout|Urza's Legacy|96|C|{1}{R}|Creature — Viashino Scout|2|1| +Defender of Chaos|Urza's Legacy|75|C|{2}{R}|Creature — Human Knight|2|1| +Pygmy Pyrosaur|Urza's Legacy|87|C|{1}{R}|Creature — Lizard|1|1| +About Face|Urza's Legacy|73|C|{R}|Instant||| +Parch|Urza's Legacy|86|C|{1}{R}|Instant||| +Sluggishness|Urza's Legacy|92|C|{1}{R}|Enchantment — Aura||| +Skirk Commando|Onslaught|228|C|{1}{R}{R}|Creature — Goblin|2|1| +Avalanche Riders|Urza's Legacy|74|U|{3}{R}|Creature — Human Nomad|2|2| +Viashino Cutthroat|Urza's Legacy|94|U|{2}{R}{R}|Creature — Viashino|5|3| +Rack and Ruin|Urza's Legacy|89|U|{2}{R}|Instant||| +Shivan Phoenix|Urza's Legacy|91|R|{4}{R}{R}|Creature — Phoenix|3|4| +Viashino Heretic|Urza's Legacy|95|U|{2}{R}|Creature — Viashino|1|3| +Ζther Charge|Onslaught|184|U|{4}{R}|Enchantment||| +Impending Disaster|Urza's Legacy|82|R|{1}{R}|Enchantment||| +Multani's Acolyte|Urza's Legacy|108|C|{G}{G}|Creature — Elf|2|1| +Simian Grunts|Urza's Legacy|113|C|{2}{G}|Creature — Ape|3|4| +Yavimaya Scion|Urza's Legacy|119|C|{4}{G}|Creature — Treefolk|4|4| +Weatherseed Elf|Urza's Legacy|115|C|{G}|Creature — Elf|1|1| +Crop Rotation|Urza's Legacy|98|C|{G}|Instant||| +Rancor|Urza's Legacy|110|C|{G}|Enchantment — Aura||| +Darkwatch Elves|Urza's Legacy|99|U|{2}{G}|Creature — Elf|2|2| +Lone Wolf|Urza's Legacy|105|U|{2}{G}|Creature — Wolf|2|2| +Harmonic Convergence|Urza's Legacy|103|U|{2}{G}|Instant||| +Weatherseed Treefolk|Urza's Legacy|116|R|{2}{G}{G}{G}|Creature — Treefolk|5|3| +Multani, Maro-Sorcerer|Urza's Legacy|107|R|{4}{G}{G}|Legendary Creature — Elemental|*|*| +Hidden Gibbons|Urza's Legacy|104|R|{G}|Enchantment||| +Defense of the Heart|Urza's Legacy|100|R|{3}{G}|Enchantment||| +Ravenous Baloth|Onslaught|278|R|{2}{G}{G}|Creature — Beast|4|4| +Chain of Acid|Onslaught|252|U|{3}{G}|Sorcery||| +Chain of Silence|Onslaught|12|U|{1}{W}|Instant||| +Chain of Vapor|Onslaught|73|U|{U}|Instant||| +Chain of Smog|Onslaught|132|U|{1}{B}|Sorcery||| +Chain of Plasma|Onslaught|193|U|{1}{R}|Instant||| +Deranged Hermit|Urza's Legacy|101|R|{3}{G}{G}|Creature — Elf|1|1| +Bloated Toad|Urza's Legacy|97|U|{2}{G}|Creature — Frog|2|2| +Elvish Pioneer|Onslaught|257|C|{G}|Creature — Elf Druid|1|1| +Ghitu Slinger|Urza's Legacy|77|C|{2}{R}|Creature — Human Nomad|2|2| +Erratic Explosion|Onslaught|201|C|{2}{R}|Sorcery||| +Multani's Presence|Urza's Legacy|109|U|{G}|Enchantment||| +Forbidding Watchtower|Urza's Legacy|140|U||Land||| +Faerie Conclave|Urza's Legacy|139|U||Land||| +Spawning Pool|Urza's Legacy|142|U||Land||| +Ghitu Encampment|Urza's Legacy|141|U||Land||| +Treetop Village|Urza's Legacy|143|U||Land||| +Ring of Gix|Urza's Legacy|131|R|{3}|Artifact||| +Damping Engine|Urza's Legacy|124|R|{4}|Artifact||| +Beast of Burden|Urza's Legacy|122|R|{6}|Artifact Creature — Golem|*|*| +Crawlspace|Urza's Legacy|123|R|{3}|Artifact||| +Palinchron|Urza's Legacy|38|R|{5}{U}{U}|Creature — Illusion|4|5| +Utopia Tree|Invasion|219|R|{1}{G}|Creature — Plant|0|2| +Ζther Sting|Urza's Destiny|76|U|{3}{R}|Enchantment||| +Phyrexian Denouncer|Urza's Legacy|61|C|{1}{B}|Creature — Carrier|1|1| +Arrogant Wurm|Torment|120|U|{3}{G}{G}|Creature — Wurm|4|4| +Thran War Machine|Urza's Legacy|134|U|{4}|Artifact Creature — Construct|4|5| +Grim Monolith|Urza's Legacy|126|R|{2}|Artifact||| +Plow Under|Urza's Destiny|117|R|{3}{G}{G}|Sorcery||| +Urza's Blueprints|Urza's Legacy|137|R|{6}|Artifact||| +Goblin Medics|Urza's Legacy|79|C|{2}{R}|Creature — Goblin Shaman|1|1| +Thran Weaponry|Urza's Legacy|135|R|{4}|Artifact||| +Ticking Gnomes|Urza's Legacy|136|U|{3}|Artifact Creature — Gnome|3|3| +Yavimaya Granger|Urza's Legacy|118|C|{2}{G}|Creature — Elf|2|2| +Pyromancy|Urza's Legacy|88|R|{2}{R}{R}|Enchantment||| +Repopulate|Urza's Legacy|111|C|{1}{G}|Instant||| +Radiant Kavu|Planeshift|120|R|{R}{G}{W}|Creature — Kavu|3|3| +Elephant Guide|Judgment|111|U|{2}{G}|Enchantment — Aura||| +Phyrexian Defiler|Urza's Legacy|60|U|{2}{B}{B}|Creature — Carrier|3|3| +Phyrexian Debaser|Urza's Legacy|59|C|{3}{B}|Creature — Carrier|2|2| +Devout Harpist|Urza's Legacy|6|C|{W}|Creature — Human|1|1| +Sustainer of the Realm|Urza's Legacy|23|U|{2}{W}{W}|Creature — Angel|2|3| +Ghitu Fire-Eater|Urza's Legacy|76|U|{2}{R}|Creature — Human Nomad|2|2| +Opportunity|Urza's Legacy|37|U|{4}{U}{U}|Instant||| +Archangel|Starter 1999|4|R|{5}{W}{W}|Creature — Angel|5|5| +Phyrexian Plaguelord|Urza's Legacy|62|R|{3}{B}{B}|Creature — Carrier|4|4| +Erase|Urza's Legacy|7|C|{W}|Instant||| +Hope and Glory|Urza's Legacy|9|U|{1}{W}|Instant||| +Aura Flux|Urza's Legacy|27|C|{2}{U}|Enchantment||| +Engineered Plague|Urza's Legacy|51|U|{2}{B}|Enchantment||| +Phyrexian Reclamation|Urza's Legacy|63|U|{B}|Enchantment||| +Giant Cockroach|Urza's Legacy|54|C|{3}{B}|Creature — Insect|4|2| +Lava Axe|Urza's Legacy|84|C|{4}{R}|Sorcery||| +Viashino Bey|Urza's Legacy|93|C|{2}{R}{R}|Creature — Viashino|4|3| +Silk Net|Urza's Legacy|112|C|{G}|Instant||| +Gang of Elk|Urza's Legacy|102|U|{5}{G}|Creature — Elk Beast|5|4| +Karmic Guide|Urza's Legacy|11|R|{3}{W}{W}|Creature — Angel Spirit|2|2| +Infernal Contract|Seventh Edition|143|R|{B}{B}{B}|Sorcery||| +Daring Apprentice|Seventh Edition|68|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Early Harvest|Seventh Edition|237|R|{1}{G}{G}|Instant||| +Femeref Archers|Seventh Edition|244|U|{2}{G}|Creature — Human Archer|2|2| +Maro|Seventh Edition|256|R|{2}{G}{G}|Creature — Elemental|*|*| +Rampant Growth|Classic Sixth Edition|246|C|{1}{G}|Sorcery||| +Uktabi Wildcats|Seventh Edition|278|R|{4}{G}|Creature — Cat|*|*| +Final Fortune|Seventh Edition|182|R|{R}{R}|Instant||| +Spitting Earth|Seventh Edition|220|C|{1}{R}|Sorcery||| +Viashino Warrior|Classic Sixth Edition|213|C|{3}{R}|Creature — Viashino Warrior|4|2| +Trained Orgg|Seventh Edition|224|R|{6}{R}|Creature — Orgg|6|6| +Razorfoot Griffin|Seventh Edition|32|C|{3}{W}|Creature — Griffin|2|2| +Pacifism|Seventh Edition|29|C|{1}{W}|Enchantment — Aura||| +Sunweb|Seventh Edition|51|R|{3}{W}|Creature — Wall|5|6| +Ostracize|Seventh Edition|153|C|{B}|Sorcery||| +Tremor|Seventh Edition|225|C|{R}|Sorcery||| +Agonizing Memories|Seventh Edition|117|U|{2}{B}{B}|Sorcery||| +Razortooth Rats|Seventh Edition|158|C|{2}{B}|Creature — Rat|2|1| +Phantom Warrior|Seventh Edition|93|U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Nature's Resurgence|Seventh Edition|259|R|{2}{G}{G}|Sorcery||| +Redwood Treefolk|Seventh Edition|264|C|{4}{G}|Creature — Treefolk|3|6| +Goblin Welder|Urza's Legacy|80|R|{R}|Creature — Goblin Artificer|1|1| +Goblin Burrows|Onslaught|318|U||Land||| +Fervor|Seventh Edition|181|R|{2}{R}|Enchantment||| +Ardent Militia|Seventh Edition|2|U|{4}{W}|Creature — Human Soldier|2|5| +Heavy Ballista|Seventh Edition|19|U|{3}{W}|Creature — Human Soldier|2|3| +Southern Paladin|Seventh Edition|46|R|{2}{W}{W}|Creature — Human Knight|3|3| +Dregs of Sorrow|Seventh Edition|129|R|{X}{4}{B}|Sorcery||| +Gravedigger|Seventh Edition|139|C|{3}{B}|Creature — Zombie|2|2| +Benthic Behemoth|Seventh Edition|63|R|{5}{U}{U}{U}|Creature — Serpent|7|6| +Fighting Drake|Seventh Edition|73|U|{2}{U}{U}|Creature — Drake|2|4| +Mawcor|Seventh Edition|87|R|{3}{U}{U}|Creature — Beast|3|3| +Sea Monster|Seventh Edition|97|C|{4}{U}{U}|Creature — Serpent|6|6| +Wind Dancer|Seventh Edition|113|U|{1}{U}|Creature — Faerie|1|1| +Wind Drake|Seventh Edition|114|C|{2}{U}|Creature — Drake|2|2| +Canopy Spider|Seventh Edition|234|C|{1}{G}|Creature — Spider|1|3| +Seeker of Skybreak|Seventh Edition|268|C|{1}{G}|Creature — Elf|2|1| +Gorilla Chieftain|Seventh Edition|250|C|{2}{G}{G}|Creature — Ape|3|3| +Trained Armodon|Seventh Edition|275|C|{1}{G}{G}|Creature — Elephant|3|3| +Lightning Blast|Seventh Edition|200|C|{3}{R}|Instant||| +Lightning Elemental|Seventh Edition|201|C|{3}{R}|Creature — Elemental|4|1| +Sudden Impact|Seventh Edition|223|U|{3}{R}|Instant||| +Starlight|Seventh Edition|49|U|{1}{W}|Sorcery||| +Staunch Defenders|Seventh Edition|50|U|{3}{W}{W}|Creature — Human Soldier|3|4| +Shock|Seventh Edition|219|C|{R}|Instant||| +Evacuation|Seventh Edition|72|R|{3}{U}{U}|Instant||| +Horned Turtle|Seventh Edition|80|C|{2}{U}|Creature — Turtle|1|4| +Honor Guard|Seventh Edition|21|C|{W}|Creature — Human Soldier|1|1| +Masticore|Urza's Destiny|134|R|{4}|Artifact Creature — Masticore|4|4| +Revenant|Seventh Edition|160|R|{4}{B}|Creature — Spirit|*|*| +Spined Wurm|Seventh Edition|270|C|{4}{G}|Creature — Wurm|5|4| +Engineered Plague|Seventh Edition|133|U|{2}{B}|Enchantment||| +Knight Errant|Seventh Edition|24|C|{1}{W}|Creature — Human Knight|2|2| +Goblin Spelunkers|Seventh Edition|193|C|{2}{R}|Creature — Goblin Warrior|2|2| +Reprocess|Seventh Edition|159|R|{2}{B}{B}|Sorcery||| +Bull Hippo|Seventh Edition|233|U|{3}{G}|Creature — Hippo|3|3| +Looming Shade|Seventh Edition|145|C|{2}{B}|Creature — Shade|1|1| +Anaconda|Seventh Edition|229|U|{3}{G}|Creature — Snake|3|3| +Hollow Dogs|Seventh Edition|141|C|{4}{B}|Creature — Zombie Hound|3|3| +Abyssal Horror|Seventh Edition|115|R|{4}{B}{B}|Creature — Horror|2|2| +Breath of Life|Seventh Edition|4|U|{3}{W}|Sorcery||| +Hibernation|Seventh Edition|79|U|{2}{U}|Instant||| +Intrepid Hero|Seventh Edition|22|R|{2}{W}|Creature — Human Soldier|1|1| +Vernal Bloom|Seventh Edition|281|R|{3}{G}|Enchantment||| +Goblin Raider|Seventh Edition|192|C|{1}{R}|Creature — Goblin Warrior|2|2| +Baleful Stare|Seventh Edition|62|U|{2}{U}|Sorcery||| +Elite Archers|Seventh Edition|15|R|{5}{W}|Creature — Human Soldier Archer|3|3| +Seasoned Marshal|Seventh Edition|40|U|{2}{W}{W}|Creature — Human Soldier|2|2| +Disorder|Seventh Edition|179|U|{1}{R}|Sorcery||| +Eastern Paladin|Seventh Edition|132|R|{2}{B}{B}|Creature — Zombie Knight|3|3| +Western Paladin|Seventh Edition|170|R|{2}{B}{B}|Creature — Zombie Knight|3|3| +Standing Troops|Seventh Edition|48|C|{2}{W}|Creature — Human Soldier|1|4| +Merfolk Looter|Seventh Edition|89|U|{1}{U}|Creature — Merfolk Rogue|1|1| +Treasure Trove|Seventh Edition|106|U|{2}{U}{U}|Enchantment||| +Raging Goblin|Seventh Edition|211|C|{R}|Creature — Goblin Berserker|1|1| +Wood Elves|Seventh Edition|284|C|{2}{G}|Creature — Elf Scout|1|1| +Might of Oaks|Seventh Edition|257|R|{3}{G}|Instant||| +Delusions of Mediocrity|Seventh Edition|70|R|{3}{U}|Enchantment||| +Blessed Reversal|Seventh Edition|3|R|{1}{W}|Instant||| +Levitation|Seventh Edition|82|U|{2}{U}{U}|Enchantment||| +Fleeting Image|Seventh Edition|74|R|{2}{U}|Creature — Illusion|2|1| +Archivist|Seventh Edition|61|R|{2}{U}{U}|Creature — Human Wizard|1|1| +Plague Beetle|Seventh Edition|155|C|{B}|Creature — Insect|1|1| +Lone Wolf|Seventh Edition|254|C|{2}{G}|Creature — Wolf|2|2| +Serra Advocate|Seventh Edition|41|U|{3}{W}|Creature — Angel|2|2| +Confiscate|Seventh Edition|65|U|{4}{U}{U}|Enchantment — Aura||| +Northern Paladin|Seventh Edition|28|R|{2}{W}{W}|Creature — Human Knight|3|3| +Venerable Monk|Seventh Edition|53|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Gerrard's Wisdom|Seventh Edition|16|U|{2}{W}{W}|Sorcery||| +Inspiration|Seventh Edition|81|C|{3}{U}|Instant||| +Knighthood|Seventh Edition|25|U|{2}{W}|Enchantment||| +Storm Crow|Seventh Edition|100|C|{1}{U}|Creature — Bird|1|2| +Strands of Night|Seventh Edition|165|U|{2}{B}{B}|Enchantment||| +Pillage|Seventh Edition|207|U|{1}{R}{R}|Sorcery||| +Lava Axe|Seventh Edition|199|C|{4}{R}|Sorcery||| +Blaze|Seventh Edition|175|U|{X}{R}|Sorcery||| +Familiar Ground|Seventh Edition|243|U|{2}{G}|Enchantment||| +Wing Snare|Seventh Edition|283|U|{2}{G}|Sorcery||| +Elvish Piper|Seventh Edition|242|R|{3}{G}|Creature — Elf Shaman|1|1| +Severed Legion|Onslaught|166|C|{1}{B}{B}|Creature — Zombie|2|2| +Daru Encampment|Onslaught|315|U||Land||| +Elvish Scrapper|Onslaught|258|U|{G}|Creature — Elf|1|1| +Ravaging Horde|Portal Three Kingdoms|118|U|{3}{R}{R}|Creature — Human Soldier|3|3| +Burst of Energy|Urza's Legacy|3|C|{W}|Instant||| +Ghitu War Cry|Urza's Legacy|78|U|{2}{R}|Enchantment||| +Last-Ditch Effort|Urza's Legacy|83|U|{R}|Instant||| +Landslide|Urza's Destiny|92|U|{R}|Sorcery||| +Xun Yu, Wei Advisor|Portal Three Kingdoms|93|R|{1}{B}{B}|Legendary Creature — Human Advisor|1|1| +Apprentice Necromancer|Urza's Destiny|51|R|{1}{B}|Creature — Zombie Wizard|1|1| +Venerable Monk|Classic Sixth Edition|50|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Circle of Protection: White|Classic Sixth Edition|12|C|{1}{W}|Enchantment||| +Circle of Protection: Blue|Classic Sixth Edition|9|C|{1}{W}|Enchantment||| +Circle of Protection: Black|Classic Sixth Edition|8|C|{1}{W}|Enchantment||| +Circle of Protection: Red|Classic Sixth Edition|11|C|{1}{W}|Enchantment||| +Circle of Protection: Green|Classic Sixth Edition|10|C|{1}{W}|Enchantment||| +Pacifism|Classic Sixth Edition|33|C|{1}{W}|Enchantment — Aura||| +Vengeance|Seventh Edition|54|U|{3}{W}|Sorcery||| +Disenchant|Classic Sixth Edition|16|C|{1}{W}|Instant||| +Remedy|Classic Sixth Edition|36|C|{1}{W}|Instant||| +Warrior's Honor|Classic Sixth Edition|53|C|{2}{W}|Instant||| +Samite Healer|Classic Sixth Edition|40|C|{1}{W}|Creature — Human Cleric|1|1| +Armored Pegasus|Classic Sixth Edition|5|C|{1}{W}|Creature — Pegasus|1|2| +Standing Troops|Classic Sixth Edition|44|C|{2}{W}|Creature — Human Soldier|1|4| +D'Avenant Archer|Classic Sixth Edition|14|C|{2}{W}|Creature — Human Soldier Archer|1|2| +Regal Unicorn|Classic Sixth Edition|35|C|{2}{W}|Creature — Unicorn|2|3| +Ekundu Griffin|Classic Sixth Edition|18|C|{3}{W}|Creature — Griffin|2|2| +Longbow Archer|Classic Sixth Edition|30|U|{W}{W}|Creature — Human Soldier Archer|2|2| +Serra's Blessing|Classic Sixth Edition|42|U|{1}{W}|Enchantment||| +Castle|Classic Sixth Edition|6|U|{3}{W}|Enchantment||| +Light of Day|Classic Sixth Edition|29|U|{3}{W}|Enchantment||| +Warmth|Classic Sixth Edition|52|U|{1}{W}|Enchantment||| +Kismet|Classic Sixth Edition|27|U|{3}{W}|Enchantment||| +Serra Advocate|Urza's Destiny|19|U|{3}{W}|Creature — Angel|2|2| +Heavy Ballista|Classic Sixth Edition|23|U|{3}{W}|Creature — Human Soldier|2|3| +Wall of Swords|Classic Sixth Edition|51|U|{3}{W}|Creature — Wall|3|5| +Ardent Militia|Classic Sixth Edition|3|U|{4}{W}|Creature — Human Soldier|2|5| +Staunch Defenders|Classic Sixth Edition|45|U|{3}{W}{W}|Creature — Human Soldier|3|4| +Archangel|Classic Sixth Edition|2|R|{5}{W}{W}|Creature — Angel|5|5| +Sunweb|Classic Sixth Edition|46|R|{3}{W}|Creature — Wall|5|6| +Wrath of God|Classic Sixth Edition|54|R|{2}{W}{W}|Sorcery||| +Armageddon|Classic Sixth Edition|4|R|{3}{W}|Sorcery||| +Crusade|Classic Sixth Edition|13|R|{W}{W}|Enchantment||| +Inspiration|Classic Sixth Edition|76|C|{3}{U}|Instant||| +Counterspell|Classic Sixth Edition|61|C|{U}{U}|Instant||| +Remove Soul|Classic Sixth Edition|94|C|{1}{U}|Instant||| +Boomerang|Classic Sixth Edition|58|C|{U}{U}|Instant||| +Unsummon|Classic Sixth Edition|103|C|{U}|Instant||| +Flight|Classic Sixth Edition|68|C|{U}|Enchantment — Aura||| +Sage Owl|Classic Sixth Edition|95|C|{1}{U}|Creature — Bird|1|1| +Wind Drake|Classic Sixth Edition|106|C|{2}{U}|Creature — Drake|2|2| +Prodigal Sorcerer|Classic Sixth Edition|88|C|{2}{U}|Creature — Human Wizard|1|1| +Horned Turtle|Classic Sixth Edition|74|C|{2}{U}|Creature — Turtle|1|4| +Sea Monster|Classic Sixth Edition|96|C|{4}{U}{U}|Creature — Serpent|6|6| +Abduction|Classic Sixth Edition|55|U|{2}{U}{U}|Enchantment — Aura||| +Glacial Wall|Classic Sixth Edition|72|U|{2}{U}|Creature — Wall|0|7| +Wall of Air|Classic Sixth Edition|105|U|{1}{U}{U}|Creature — Wall|1|5| +Segovian Leviathan|Classic Sixth Edition|97|U|{4}{U}|Creature — Leviathan|3|3| +Phantom Warrior|Classic Sixth Edition|85|U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Forget|Classic Sixth Edition|70|R|{U}{U}|Sorcery||| +Ancestral Memories|Classic Sixth Edition|57|R|{2}{U}{U}{U}|Sorcery||| +Lord of Atlantis|Classic Sixth Edition|79|R|{U}{U}|Creature — Merfolk|2|2| +Daring Apprentice|Classic Sixth Edition|62|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Duress|Seventh Edition|131|C|{B}|Sorcery||| +Fear|Classic Sixth Edition|129|C|{B}{B}|Enchantment — Aura||| +Coercion|Classic Sixth Edition|119|C|{2}{B}|Sorcery||| +Howl from Beyond|Classic Sixth Edition|138|C|{X}{B}|Instant||| +Raise Dead|Classic Sixth Edition|152|C|{B}|Sorcery||| +Painful Memories|Classic Sixth Edition|147|C|{1}{B}|Sorcery||| +Drudge Skeletons|Classic Sixth Edition|123|C|{1}{B}|Creature — Skeleton|1|1| +Razortooth Rats|Classic Sixth Edition|153|C|{2}{B}|Creature — Rat|2|1| +Gravedigger|Classic Sixth Edition|134|C|{3}{B}|Creature — Zombie|2|2| +Strands of Night|Classic Sixth Edition|156|U|{2}{B}{B}|Enchantment||| +Hidden Horror|Classic Sixth Edition|137|U|{1}{B}{B}|Creature — Horror|4|4| +Dread of Night|Classic Sixth Edition|122|U|{B}|Enchantment||| +Perish|Classic Sixth Edition|148|U|{2}{B}|Sorcery||| +Mind Warp|Classic Sixth Edition|143|U|{X}{3}{B}|Sorcery||| +Leshrac's Rite|Classic Sixth Edition|141|U|{B}|Enchantment — Aura||| +Agonizing Memories|Classic Sixth Edition|111|U|{2}{B}{B}|Sorcery||| +Bog Wraith|Classic Sixth Edition|118|U|{3}{B}|Creature — Wraith|3|3| +Evil Eye of Orms-by-Gore|Classic Sixth Edition|126|U|{4}{B}|Creature — Eye|3|6| +Zombie Master|Classic Sixth Edition|162|R|{1}{B}{B}|Creature — Zombie|2|3| +Infernal Contract|Classic Sixth Edition|139|R|{B}{B}{B}|Sorcery||| +Shock|Classic Sixth Edition|206|C|{R}|Instant||| +Lightning Blast|Classic Sixth Edition|193|C|{3}{R}|Instant||| +Pyrotechnics|Classic Sixth Edition|199|C|{4}{R}|Sorcery||| +Spitting Earth|Classic Sixth Edition|208|C|{1}{R}|Sorcery||| +Tremor|Classic Sixth Edition|211|C|{R}|Sorcery||| +Shatter|Classic Sixth Edition|204|C|{1}{R}|Instant||| +Stone Rain|Classic Sixth Edition|209|C|{2}{R}|Sorcery||| +Firebreathing|Classic Sixth Edition|177|C|{R}|Enchantment — Aura||| +Raging Goblin|Classic Sixth Edition|200|C|{R}|Creature — Goblin Berserker|1|1| +Goblin Digging Team|Classic Sixth Edition|182|C|{R}|Creature — Goblin|1|1| +Talruum Minotaur|Classic Sixth Edition|210|C|{2}{R}{R}|Creature — Minotaur Berserker|3|3| +Flame Spirit|Classic Sixth Edition|179|C|{4}{R}|Creature — Elemental Spirit|2|3| +Blaze|Classic Sixth Edition|168|U|{X}{R}|Sorcery||| +Boil|Classic Sixth Edition|169|U|{3}{R}|Instant||| +Volcanic Geyser|Classic Sixth Edition|215|U|{X}{R}{R}|Instant||| +Orcish Oriflamme|Classic Sixth Edition|197|U|{3}{R}|Enchantment||| +Wall of Fire|Classic Sixth Edition|216|U|{1}{R}{R}|Creature — Wall|0|5| +Hulking Cyclops|Classic Sixth Edition|189|U|{3}{R}{R}|Creature — Cyclops|5|5| +Fervor|Classic Sixth Edition|174|R|{2}{R}|Enchantment||| +Relentless Assault|Classic Sixth Edition|202|R|{2}{R}{R}|Sorcery||| +Earthquake|Classic Sixth Edition|173|R|{X}{R}|Sorcery||| +Jokulhaups|Classic Sixth Edition|192|R|{4}{R}{R}|Sorcery||| +Manabarbs|Classic Sixth Edition|194|R|{3}{R}|Enchantment||| +Final Fortune|Classic Sixth Edition|175|R|{R}{R}|Instant||| +Goblin King|Classic Sixth Edition|185|R|{1}{R}{R}|Creature — Goblin|2|2| +Volcanic Dragon|Classic Sixth Edition|214|R|{4}{R}{R}|Creature — Dragon|4|4| +Wild Growth|Classic Sixth Edition|268|C|{G}|Enchantment — Aura||| +Vitalize|Classic Sixth Edition|265|C|{G}|Instant||| +Llanowar Elves|Classic Sixth Edition|239|C|{G}|Creature — Elf Druid|1|1| +Shanodin Dryads|Classic Sixth Edition|252|C|{G}|Creature — Dryad|1|1| +Grizzly Bears|Classic Sixth Edition|236|C|{1}{G}|Creature — Bear|2|2| +Trained Armodon|Classic Sixth Edition|257|C|{1}{G}{G}|Creature — Elephant|3|3| +Giant Spider|Classic Sixth Edition|234|C|{3}{G}|Creature — Spider|2|4| +Stalking Tiger|Classic Sixth Edition|253|C|{3}{G}|Creature — Cat|3|3| +Redwood Treefolk|Classic Sixth Edition|247|C|{4}{G}|Creature — Treefolk|3|6| +Fog|Classic Sixth Edition|230|C|{G}|Instant||| +Giant Growth|Classic Sixth Edition|233|C|{G}|Instant||| +Regeneration|Classic Sixth Edition|248|C|{1}{G}|Enchantment — Aura||| +Tranquility|Classic Sixth Edition|259|C|{2}{G}|Sorcery||| +Elven Cache|Classic Sixth Edition|224|C|{2}{G}{G}|Sorcery||| +Stream of Life|Classic Sixth Edition|254|C|{X}{G}|Sorcery||| +Uktabi Orangutan|Classic Sixth Edition|260|U|{2}{G}|Creature — Ape|2|2| +Familiar Ground|Classic Sixth Edition|228|U|{2}{G}|Enchantment||| +Untamed Wilds|Classic Sixth Edition|263|U|{2}{G}|Sorcery||| +Summer Bloom|Classic Sixth Edition|255|U|{1}{G}|Sorcery||| +Lure|Classic Sixth Edition|240|U|{1}{G}{G}|Enchantment — Aura||| +Femeref Archers|Classic Sixth Edition|229|U|{2}{G}|Creature — Human Archer|2|2| +Fyndhorn Elder|Classic Sixth Edition|232|U|{2}{G}|Creature — Elf Druid|1|1| +Radjan Spirit|Classic Sixth Edition|245|U|{3}{G}|Creature — Spirit|3|2| +Elven Riders|Classic Sixth Edition|225|U|{3}{G}{G}|Creature — Elf|3|3| +Rowen|Classic Sixth Edition|250|R|{2}{G}{G}|Enchantment||| +Early Harvest|Classic Sixth Edition|222|R|{1}{G}{G}|Instant||| +Nature's Resurgence|Classic Sixth Edition|242|R|{2}{G}{G}|Sorcery||| +Elvish Archers|Classic Sixth Edition|226|R|{1}{G}|Creature — Elf Archer|2|1| +Elder Druid|Classic Sixth Edition|223|R|{3}{G}|Creature — Elf Cleric Druid|2|2| +Maro|Classic Sixth Edition|241|R|{2}{G}{G}|Creature — Elemental|*|*| +Birds of Paradise|Classic Sixth Edition|217|R|{G}|Creature — Bird|0|1| +Wyluli Wolf|Classic Sixth Edition|270|R|{1}{G}|Creature — Wolf|1|1| +Uktabi Wildcats|Classic Sixth Edition|261|R|{4}{G}|Creature — Cat|*|*| +Ruins of Trokair|Classic Sixth Edition|327|U||Land||| +Svyelunite Temple|Classic Sixth Edition|329|U||Land||| +Ebon Stronghold|Classic Sixth Edition|324|U||Land||| +Dwarven Ruins|Classic Sixth Edition|323|U||Land||| +Havenwood Battleground|Classic Sixth Edition|325|U||Land||| +Adarkar Wastes|Classic Sixth Edition|319|R||Land||| +Underground River|Classic Sixth Edition|330|R||Land||| +Sulfurous Springs|Classic Sixth Edition|328|R||Land||| +Karplusan Forest|Classic Sixth Edition|326|R||Land||| +Brushland|Classic Sixth Edition|320|R||Land||| +City of Brass|Classic Sixth Edition|321|R||Land||| +Plains|Classic Sixth Edition|331|L||Basic Land — Plains||| +Plains|Classic Sixth Edition|332|L||Basic Land — Plains||| +Plains|Classic Sixth Edition|333|L||Basic Land — Plains||| +Plains|Classic Sixth Edition|334|L||Basic Land — Plains||| +Island|Classic Sixth Edition|335|L||Basic Land — Island||| +Island|Classic Sixth Edition|336|L||Basic Land — Island||| +Island|Classic Sixth Edition|337|L||Basic Land — Island||| +Island|Classic Sixth Edition|338|L||Basic Land — Island||| +Swamp|Classic Sixth Edition|339|L||Basic Land — Swamp||| +Swamp|Classic Sixth Edition|340|L||Basic Land — Swamp||| +Swamp|Classic Sixth Edition|341|L||Basic Land — Swamp||| +Swamp|Classic Sixth Edition|342|L||Basic Land — Swamp||| +Mountain|Classic Sixth Edition|343|L||Basic Land — Mountain||| +Mountain|Classic Sixth Edition|344|L||Basic Land — Mountain||| +Mountain|Classic Sixth Edition|345|L||Basic Land — Mountain||| +Mountain|Classic Sixth Edition|346|L||Basic Land — Mountain||| +Forest|Classic Sixth Edition|347|L||Basic Land — Forest||| +Forest|Classic Sixth Edition|348|L||Basic Land — Forest||| +Forest|Classic Sixth Edition|349|L||Basic Land — Forest||| +Forest|Classic Sixth Edition|350|L||Basic Land — Forest||| +Storm Crow|Classic Sixth Edition|101|C|{1}{U}|Creature — Bird|1|2| +Dark Banishing|Seventh Edition|127|C|{2}{B}|Instant||| +Pillage|Classic Sixth Edition|198|U|{1}{R}{R}|Sorcery||| +Crystal Rod|Classic Sixth Edition|277|U|{1}|Artifact||| +Ivory Cup|Classic Sixth Edition|291|U|{1}|Artifact||| +Throne of Bone|Classic Sixth Edition|316|U|{1}|Artifact||| +Iron Star|Classic Sixth Edition|290|U|{1}|Artifact||| +Wooden Sphere|Classic Sixth Edition|318|U|{1}|Artifact||| +Fountain of Youth|Classic Sixth Edition|286|U|{0}|Artifact||| +Ornithopter|Classic Sixth Edition|303|U|{0}|Artifact Creature — Thopter|0|2| +Rod of Ruin|Classic Sixth Edition|308|U|{4}|Artifact||| +Soul Net|Classic Sixth Edition|312|U|{1}|Artifact||| +Aladdin's Ring|Classic Sixth Edition|271|R|{8}|Artifact||| +Ankh of Mishra|Classic Sixth Edition|273|R|{2}|Artifact||| +Dancing Scimitar|Classic Sixth Edition|279|R|{4}|Artifact Creature — Spirit|1|5| +Dingus Egg|Classic Sixth Edition|280|R|{4}|Artifact||| +Flying Carpet|Classic Sixth Edition|285|R|{4}|Artifact||| +Howling Mine|Classic Sixth Edition|289|R|{2}|Artifact||| +Jalum Tome|Classic Sixth Edition|293|R|{3}|Artifact||| +Jayemdae Tome|Classic Sixth Edition|294|R|{4}|Artifact||| +Meekstone|Classic Sixth Edition|298|R|{1}|Artifact||| +Millstone|Classic Sixth Edition|299|R|{2}|Artifact||| +Pentagram of the Ages|Classic Sixth Edition|305|R|{4}|Artifact||| +Wall of Glare|Urza's Destiny|25|C|{1}{W}|Creature — Wall|0|5| +Field Surgeon|Urza's Destiny|8|C|{1}{W}|Creature — Human Cleric|1|1| +Reliquary Monk|Urza's Destiny|14|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Jasmine Seer|Urza's Destiny|10|U|{3}{W}|Creature — Human Wizard|1|1| +Capashen Knight|Urza's Destiny|3|C|{1}{W}|Creature — Human Knight|1|1| +Flicker|Urza's Destiny|9|R|{1}{W}|Sorcery||| +Mask of Law and Grace|Urza's Destiny|11|C|{W}|Enchantment — Aura||| +Voice of Reason|Urza's Destiny|24|U|{3}{W}|Creature — Angel|2|2| +Voice of Duty|Urza's Destiny|23|U|{3}{W}|Creature — Angel|2|2| +Scour|Urza's Destiny|18|U|{2}{W}{W}|Instant||| +Archery Training|Urza's Destiny|2|U|{W}|Enchantment — Aura||| +Slay|Planeshift|55|U|{2}{B}|Instant||| +Academy Rector|Urza's Destiny|1|R|{3}{W}|Creature — Human Cleric|1|2| +Opalescence|Urza's Destiny|13|R|{2}{W}{W}|Enchantment||| +Replenish|Urza's Destiny|15|R|{3}{W}|Sorcery||| +Dralnu's Pet|Planeshift|23|R|{1}{U}{U}|Creature — Shapeshifter|2|2| +Fledgling Osprey|Urza's Destiny|33|C|{U}|Creature — Bird|1|1| +Blizzard Elemental|Urza's Destiny|27|R|{5}{U}{U}|Creature — Elemental|5|5| +Kingfisher|Urza's Destiny|36|C|{3}{U}|Creature — Bird|2|2| +Brine Seer|Urza's Destiny|28|U|{3}{U}|Creature — Human Wizard|1|1| +Telepathic Spies|Urza's Destiny|47|C|{2}{U}|Creature — Human Wizard|2|2| +Disappear|Urza's Destiny|30|U|{2}{U}{U}|Enchantment — Aura||| +Rescue|Urza's Destiny|44|C|{U}|Instant||| +Thieving Magpie|Urza's Destiny|49|U|{2}{U}{U}|Creature — Bird|1|3| +Metathran Elite|Urza's Destiny|38|U|{1}{U}{U}|Creature — Metathran Soldier|2|3| +Mental Discipline|Urza's Destiny|37|C|{1}{U}{U}|Enchantment||| +Quash|Urza's Destiny|42|U|{2}{U}{U}|Instant||| +Private Research|Urza's Destiny|41|U|{U}|Enchantment — Aura||| +Opposition|Urza's Destiny|40|R|{2}{U}{U}|Enchantment||| +Iridescent Drake|Urza's Destiny|35|U|{3}{U}|Creature — Drake|2|2| +Rayne, Academy Chancellor|Urza's Destiny|43|R|{2}{U}|Legendary Creature — Human Wizard|1|1| +Donate|Urza's Destiny|31|R|{2}{U}|Sorcery||| +Disease Carriers|Urza's Destiny|57|C|{2}{B}{B}|Creature — Rat|2|2| +Squirming Mass|Urza's Destiny|73|C|{1}{B}|Creature — Horror|1|1| +Ravenous Rats|Urza's Destiny|68|C|{1}{B}|Creature — Rat|1|1| +Nightshade Seer|Urza's Destiny|63|U|{3}{B}|Creature — Human Wizard|1|1| +Encroach|Urza's Destiny|59|U|{B}|Sorcery||| +Rapid Decay|Urza's Destiny|67|R|{1}{B}|Instant||| +Bubbling Muck|Urza's Destiny|54|C|{B}|Sorcery||| +Plague Dogs|Urza's Destiny|66|U|{4}{B}|Creature — Zombie Hound|3|3| +Dying Wail|Urza's Destiny|58|C|{1}{B}|Enchantment — Aura||| +Festering Wound|Urza's Destiny|61|U|{1}{B}|Enchantment — Aura||| +Eradicate|Urza's Destiny|60|U|{2}{B}{B}|Sorcery||| +Body Snatcher|Urza's Destiny|53|R|{2}{B}{B}|Creature — Minion|2|2| +Viridian Acolyte|Darksteel|89|C|{G}|Creature — Elf Shaman|1|1| +Attrition|Urza's Destiny|52|R|{1}{B}{B}|Enchantment||| +Yawgmoth's Bargain|Urza's Destiny|75|R|{4}{B}{B}|Enchantment||| +Keldon Vandals|Urza's Destiny|91|C|{2}{R}|Creature — Human Rogue|4|1| +Colos Yearling|Urza's Destiny|79|C|{2}{R}|Creature — Goat Beast|1|1| +Hulking Ogre|Urza's Destiny|87|C|{2}{R}|Creature — Ogre|3|3| +Goblin Gardener|Urza's Destiny|84|C|{3}{R}|Creature — Goblin|2|1| +Wild Colos|Urza's Destiny|100|C|{2}{R}|Creature — Goat Beast|2|2| +Cinder Seer|Urza's Destiny|78|U|{3}{R}|Creature — Human Wizard|1|1| +Trumpet Blast|Urza's Destiny|98|C|{2}{R}|Instant||| +Flame Jet|Urza's Destiny|81|C|{1}{R}|Sorcery||| +Goblin Masons|Urza's Destiny|86|C|{1}{R}|Creature — Goblin|2|1| +Mark of Fury|Urza's Destiny|93|C|{R}|Enchantment — Aura||| +Reckless Abandon|Urza's Destiny|94|C|{R}|Sorcery||| +Keldon Champion|Urza's Destiny|90|U|{2}{R}{R}|Creature — Human Barbarian|3|2| +Splinter|Urza's Destiny|121|U|{2}{G}{G}|Sorcery||| +Incendiary|Urza's Destiny|89|U|{R}|Enchantment — Aura||| +Goblin Marshal|Urza's Destiny|85|R|{4}{R}{R}|Creature — Goblin Warrior|3|3| +Bloodshot Cyclops|Urza's Destiny|77|R|{5}{R}|Creature — Cyclops Giant|4|4| +Repercussion|Urza's Destiny|95|R|{1}{R}{R}|Enchantment||| +Impatience|Urza's Destiny|88|R|{2}{R}|Enchantment||| +Wake of Destruction|Urza's Destiny|99|R|{3}{R}{R}{R}|Sorcery||| +Hunting Moa|Urza's Destiny|109|U|{2}{G}|Creature — Bird Beast|3|2| +Heart Warden|Urza's Destiny|108|C|{1}{G}|Creature — Elf Druid|1|1| +Taunting Elf|Urza's Destiny|122|C|{G}|Creature — Elf|0|1| +Marker Beetles|Urza's Destiny|112|C|{1}{G}{G}|Creature — Insect|2|3| +Goliath Beetle|Urza's Destiny|107|C|{2}{G}|Creature — Insect|3|1| +Ivy Seer|Urza's Destiny|110|U|{3}{G}|Creature — Elf Wizard|1|1| +Yavimaya Elder|Urza's Destiny|124|C|{1}{G}{G}|Creature — Human Druid|2|1| +Multani's Decree|Urza's Destiny|114|C|{3}{G}|Sorcery||| +Far Wanderings|Torment|125|C|{2}{G}|Sorcery||| +Gamekeeper|Urza's Destiny|106|U|{3}{G}|Creature — Elf|2|2| +Pattern of Rebirth|Urza's Destiny|115|R|{3}{G}|Enchantment — Aura||| +Momentum|Urza's Destiny|113|U|{2}{G}|Enchantment — Aura||| +Yavimaya Enchantress|Urza's Destiny|125|U|{2}{G}|Creature — Human Druid|2|2| +Rofellos, Llanowar Emissary|Urza's Destiny|118|R|{G}{G}|Legendary Creature — Elf Druid|2|1| +Thorn Elemental|Urza's Destiny|123|R|{5}{G}{G}|Creature — Elemental|7|7| +Elvish Piper|Urza's Destiny|104|R|{3}{G}|Creature — Elf Shaman|1|1| +Brass Secretary|Urza's Destiny|128|U|{3}|Artifact Creature — Construct|2|1| +Metalworker|Urza's Destiny|135|R|{3}|Artifact Creature — Construct|1|2| +Mantis Engine|Urza's Destiny|133|U|{5}|Artifact Creature — Insect|3|3| +Thran Dynamo|Urza's Destiny|139|U|{4}|Artifact||| +Braidwood Cup|Urza's Destiny|126|U|{3}|Artifact||| +Fodder Cannon|Urza's Destiny|131|U|{4}|Artifact||| +Braidwood Sextant|Urza's Destiny|127|U|{1}|Artifact||| +Caltrops|Urza's Destiny|129|U|{3}|Artifact||| +Thran Golem|Urza's Destiny|141|R|{5}|Artifact Creature — Golem|3|3| +Extruder|Urza's Destiny|130|U|{4}|Artifact Creature — Juggernaut|4|3| +Junk Diver|Urza's Destiny|132|R|{3}|Artifact Creature — Bird|1|1| +Urza's Incubator|Urza's Destiny|142|R|{3}|Artifact||| +Powder Keg|Urza's Destiny|136|R|{2}|Artifact||| +Storage Matrix|Urza's Destiny|138|R|{3}|Artifact||| +Aura Thief|Urza's Destiny|26|R|{3}{U}|Creature — Illusion|2|2| +Scrying Glass|Urza's Destiny|137|R|{2}|Artifact||| +Scent of Jasmine|Urza's Destiny|17|C|{W}|Instant||| +Scent of Cinder|Urza's Destiny|96|C|{1}{R}|Sorcery||| +Scent of Nightshade|Urza's Destiny|69|C|{1}{B}|Instant||| +Scent of Brine|Urza's Destiny|45|C|{1}{U}|Instant||| +Scent of Ivy|Urza's Destiny|120|C|{G}|Instant||| +Exile|Classic Sixth Edition|21|R|{2}{W}|Instant||| +Reprisal|Classic Sixth Edition|37|U|{1}{W}|Instant||| +Celestial Dawn|Classic Sixth Edition|7|R|{1}{W}{W}|Enchantment||| +Enlightened Tutor|Classic Sixth Edition|19|U|{W}|Instant||| +Ethereal Champion|Classic Sixth Edition|20|R|{2}{W}{W}{W}|Creature — Avatar|3|4| +Unyaro Griffin|Classic Sixth Edition|49|U|{3}{W}|Creature — Griffin|2|2| +Daraja Griffin|Classic Sixth Edition|15|U|{3}{W}|Creature — Griffin|2|2| +Infantry Veteran|Classic Sixth Edition|26|C|{W}|Creature — Human Soldier|1|1| +Serenity|Classic Sixth Edition|41|R|{1}{W}|Enchantment||| +Tariff|Classic Sixth Edition|47|R|{1}{W}|Sorcery||| +Resistance Fighter|Classic Sixth Edition|38|C|{W}|Creature — Human Soldier|1|1| +Diminishing Returns|Classic Sixth Edition|65|R|{2}{U}{U}|Sorcery||| +Library of Lat-Nam|Classic Sixth Edition|78|R|{4}{U}|Sorcery||| +Dream Cache|Classic Sixth Edition|66|C|{2}{U}|Sorcery||| +Harmattan Efreet|Classic Sixth Edition|73|U|{2}{U}{U}|Creature — Efreet|2|2| +Mystical Tutor|Classic Sixth Edition|83|U|{U}|Instant||| +Psychic Transfer|Classic Sixth Edition|90|R|{4}{U}|Sorcery||| +Desertion|Classic Sixth Edition|64|R|{3}{U}{U}|Instant||| +Air Elemental|Classic Sixth Edition|56|U|{3}{U}{U}|Creature — Elemental|4|4| +Zur's Weirding|Classic Sixth Edition|108|R|{3}{U}|Enchantment||| +Relearn|Classic Sixth Edition|93|U|{1}{U}{U}|Sorcery||| +Insight|Classic Sixth Edition|75|U|{2}{U}|Enchantment||| +Spell Blast|Classic Sixth Edition|100|C|{X}{U}|Instant||| +Greed|Classic Sixth Edition|135|R|{3}{B}|Enchantment||| +Syphon Soul|Classic Sixth Edition|159|C|{2}{B}|Sorcery||| +Abyssal Specter|Classic Sixth Edition|110|U|{2}{B}{B}|Creature — Specter|2|3| +Dry Spell|Classic Sixth Edition|124|C|{1}{B}|Sorcery||| +Abyssal Hunter|Classic Sixth Edition|109|R|{3}{B}|Creature — Human Assassin|1|1| +Ashen Powder|Classic Sixth Edition|112|R|{2}{B}{B}|Sorcery||| +Blighted Shaman|Classic Sixth Edition|114|U|{1}{B}|Creature — Human Cleric Shaman|1|1| +Enfeeblement|Classic Sixth Edition|125|C|{B}{B}|Enchantment — Aura||| +Feral Shadow|Classic Sixth Edition|131|C|{2}{B}|Creature — Nightstalker|2|1| +Forbidden Crypt|Classic Sixth Edition|132|R|{3}{B}{B}|Enchantment||| +Gravebane Zombie|Classic Sixth Edition|133|U|{3}{B}|Creature — Zombie|3|2| +Necrosavant|Classic Sixth Edition|145|R|{3}{B}{B}{B}|Creature — Zombie Giant|5|5| +Nekrataal|Battle Royale Box Set||U|{2}{B}{B}|Creature — Human Assassin|2|1| +Python|Classic Sixth Edition|150|C|{1}{B}{B}|Creature — Snake|3|2| +Vampiric Tutor|Classic Sixth Edition|161|R|{B}|Instant||| +Nightmare|Classic Sixth Edition|146|R|{5}{B}|Creature — Nightmare Horse|*|*| +Doomsday|Classic Sixth Edition|121|R|{B}{B}{B}|Sorcery||| +Mischievous Poltergeist|Classic Sixth Edition|144|U|{2}{B}|Creature — Spirit|1|1| +Blight|Classic Sixth Edition|113|U|{B}{B}|Enchantment — Aura||| +Blood Pet|Classic Sixth Edition|115|C|{B}|Creature — Thrull|1|1| +Obsianus Golem|Classic Sixth Edition|302|U|{6}|Artifact Creature — Golem|4|6| +Storm Cauldron|Classic Sixth Edition|313|R|{5}|Artifact||| +Amber Prison|Classic Sixth Edition|272|R|{4}|Artifact||| +Cursed Totem|Classic Sixth Edition|278|R|{2}|Artifact||| +Fire Diamond|Classic Sixth Edition|284|U|{2}|Artifact||| +Grinning Totem|Classic Sixth Edition|288|R|{4}|Artifact||| +Lead Golem|Classic Sixth Edition|295|U|{5}|Artifact Creature — Golem|3|5| +Patagia Golem|Classic Sixth Edition|304|U|{4}|Artifact Creature — Golem|2|3| +Snake Basket|Classic Sixth Edition|311|R|{4}|Artifact||| +Teferi's Puzzle Box|Classic Sixth Edition|314|R|{4}|Artifact||| +Wand of Denial|Classic Sixth Edition|317|R|{2}|Artifact||| +Dragon Engine|Classic Sixth Edition|282|R|{3}|Artifact Creature — Construct|1|3| +Crystal Vein|Classic Sixth Edition|322|U||Land||| +Goblin Hero|Classic Sixth Edition|184|C|{2}{R}|Creature — Goblin|2|2| +Goblin Recruiter|Classic Sixth Edition|186|U|{1}{R}|Creature — Goblin|1|1| +Spitting Drake|Classic Sixth Edition|207|U|{3}{R}|Creature — Drake|2|2| +Fire Elemental|Classic Sixth Edition|176|U|{3}{R}{R}|Creature — Elemental|5|4| +Hammer of Bogardan|Classic Sixth Edition|188|R|{1}{R}{R}|Sorcery||| +Goblin Warrens|Classic Sixth Edition|187|R|{2}{R}|Enchantment||| +Balduvian Horde|Classic Sixth Edition|167|R|{2}{R}{R}|Creature — Human Barbarian|5|5| +Crimson Hellkite|Classic Sixth Edition|172|R|{6}{R}{R}{R}|Creature — Dragon|6|6| +Reckless Embermage|Classic Sixth Edition|201|R|{3}{R}|Creature — Human Wizard|2|2| +Gorilla Chieftain|Classic Sixth Edition|235|C|{2}{G}{G}|Creature — Ape|3|3| +Creeping Mold|Classic Sixth Edition|220|U|{2}{G}{G}|Sorcery||| +Worldly Tutor|Classic Sixth Edition|269|U|{G}|Instant||| +Dense Foliage|Classic Sixth Edition|221|R|{2}{G}|Enchantment||| +Call of the Wild|Classic Sixth Edition|218|R|{2}{G}{G}|Enchantment||| +Waiting in the Weeds|Classic Sixth Edition|266|R|{1}{G}{G}|Sorcery||| +Mystic Compass|Classic Sixth Edition|301|U|{2}|Artifact||| +Phyrexian Vault|Classic Sixth Edition|306|U|{3}|Artifact||| +Dragon Mask|Classic Sixth Edition|283|U|{3}|Artifact||| +Mana Prism|Classic Sixth Edition|296|U|{3}|Artifact||| +Charcoal Diamond|Classic Sixth Edition|276|U|{2}|Artifact||| +Marble Diamond|Classic Sixth Edition|297|U|{2}|Artifact||| +Moss Diamond|Classic Sixth Edition|300|U|{2}|Artifact||| +Sky Diamond|Classic Sixth Edition|310|U|{2}|Artifact||| +Chill|Classic Sixth Edition|60|U|{1}{U}|Enchantment||| +Polymorph|Classic Sixth Edition|86|R|{3}{U}|Sorcery||| +Pearl Dragon|Classic Sixth Edition|34|R|{4}{W}{W}|Creature — Dragon|4|4| +Ζther Flash|Classic Sixth Edition|163|U|{2}{R}{R}|Enchantment||| +Capashen Templar|Urza's Destiny|5|C|{2}{W}|Creature — Human Knight|2|2| +Fend Off|Urza's Destiny|7|C|{1}{W}|Instant||| +Solidarity|Urza's Destiny|20|C|{3}{W}|Instant||| +False Prophet|Urza's Destiny|6|R|{2}{W}{W}|Creature — Human Cleric|2|2| +Soul Feast|Urza's Destiny|72|U|{3}{B}{B}|Sorcery||| +Chime of Night|Urza's Destiny|56|C|{1}{B}|Enchantment — Aura||| +Tethered Griffin|Urza's Destiny|21|R|{W}|Creature — Griffin|2|3| +Covetous Dragon|Urza's Destiny|80|R|{4}{R}|Creature — Dragon|6|5| +Goblin Festival|Urza's Destiny|83|R|{1}{R}|Enchantment||| +Yavimaya Hollow|Urza's Destiny|143|R||Legendary Land||| +Emperor Crocodile|Urza's Destiny|105|R|{3}{G}|Creature — Crocodile|5|5| +Cloudchaser Eagle|Seventh Edition|11|C|{3}{W}|Creature — Bird|2|2| +Holy Strength|Seventh Edition|20|C|{W}|Enchantment — Aura||| +Eager Cadet|Seventh Edition|14|C|{W}|Creature — Human Soldier|1|1| +Skyshroud Falcon|Seventh Edition|45|C|{1}{W}|Creature — Bird|1|1| +Reprisal|Seventh Edition|33|U|{1}{W}|Instant||| +Bubbling Beebles|Urza's Destiny|29|C|{4}{U}|Creature — Beeble|3|3| +Sigil of Sleep|Urza's Destiny|46|C|{U}|Enchantment — Aura||| +Slinking Skirge|Urza's Destiny|71|C|{3}{B}|Creature — Imp|2|1| +Skittering Horror|Urza's Destiny|70|C|{2}{B}|Creature — Horror|4|3| +Master Healer|Seventh Edition|27|R|{4}{W}|Creature — Human Cleric|1|4| +Temporal Adept|Seventh Edition|103|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Bloodshot Cyclops|Seventh Edition|176|R|{5}{R}|Creature — Cyclops Giant|4|4| +Telepathy|Seventh Edition|102|U|{U}|Enchantment||| +Sage Owl|Seventh Edition|96|C|{1}{U}|Creature — Bird|1|1| +Opposition|Seventh Edition|92|R|{2}{U}{U}|Enchantment||| +Wall of Wonder|Seventh Edition|112|R|{2}{U}{U}|Creature — Wall|1|5| +Reverse Damage|Seventh Edition|34|R|{1}{W}{W}|Instant||| +Steal Artifact|Seventh Edition|99|U|{2}{U}{U}|Enchantment — Aura||| +Air Elemental|Seventh Edition|58|U|{3}{U}{U}|Creature — Elemental|4|4| +Goblin Elite Infantry|Seventh Edition|187|C|{1}{R}|Creature — Goblin Warrior|2|2| +Sabretooth Tiger|Seventh Edition|215|C|{2}{R}|Creature — Cat|2|1| +Ghitu Fire-Eater|Seventh Edition|184|U|{2}{R}|Creature — Human Nomad|2|2| +Goblin Matron|Seventh Edition|191|U|{2}{R}|Creature — Goblin|1|1| +Orcish Artillery|Seventh Edition|205|U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Fire Elemental|Seventh Edition|183|U|{3}{R}{R}|Creature — Elemental|5|4| +Crimson Hellkite|Seventh Edition|178|R|{6}{R}{R}{R}|Creature — Dragon|6|6| +Inferno|Seventh Edition|198|R|{5}{R}{R}|Instant||| +Ogre Taskmaster|Seventh Edition|203|U|{3}{R}|Creature — Ogre|4|3| +Soul Feast|Seventh Edition|163|U|{3}{B}{B}|Sorcery||| +Magnify|Urza's Destiny|111|C|{G}|Instant||| +Unholy Strength|Seventh Edition|168|C|{B}|Enchantment — Aura||| +Darkest Hour|Seventh Edition|128|R|{B}|Enchantment||| +Nightmare|Seventh Edition|150|R|{5}{B}|Creature — Nightmare Horse|*|*| +Mind Rot|Seventh Edition|147|C|{2}{B}|Sorcery||| +Reflexes|Seventh Edition|213|C|{R}|Enchantment — Aura||| +Storm Shaman|Seventh Edition|222|U|{2}{R}|Creature — Human Cleric Shaman|0|4| +Reclaim|Seventh Edition|263|C|{G}|Instant||| +Sisay's Ring|Seventh Edition|315|U|{4}|Artifact||| +Charcoal Diamond|Seventh Edition|289|U|{2}|Artifact||| +Marble Diamond|Seventh Edition|306|U|{2}|Artifact||| +Sky Diamond|Seventh Edition|316|U|{2}|Artifact||| +Fire Diamond|Seventh Edition|296|U|{2}|Artifact||| +Moss Diamond|Seventh Edition|309|U|{2}|Artifact||| +Patagia Golem|Seventh Edition|310|U|{4}|Artifact Creature — Golem|2|3| +Phyrexian Colossus|Seventh Edition|311|R|{7}|Artifact Creature — Golem|8|8| +Beast of Burden|Seventh Edition|287|R|{6}|Artifact Creature — Golem|*|*| +Static Orb|Seventh Edition|319|R|{3}|Artifact||| +Coat of Arms|Seventh Edition|290|R|{5}|Artifact||| +Dingus Egg|Seventh Edition|292|R|{4}|Artifact||| +Ensnaring Bridge|Seventh Edition|294|R|{3}|Artifact||| +Disrupting Scepter|Seventh Edition|293|R|{3}|Artifact||| +Sanctimony|Urza's Destiny|16|U|{1}{W}|Enchantment||| +Master Healer|Urza's Destiny|12|R|{4}{W}|Creature — Human Cleric|1|4| +Temporal Adept|Urza's Destiny|48|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Goblin Berserker|Urza's Destiny|82|U|{3}{R}|Creature — Goblin Berserker|2|2| +Rofellos's Gift|Urza's Destiny|119|C|{G}|Sorcery||| +Compost|Urza's Destiny|102|U|{1}{G}|Enchantment||| +Pygmy Pyrosaur|Seventh Edition|208|C|{1}{R}|Creature — Lizard|1|1| +Compost|Seventh Edition|235|U|{1}{G}|Enchantment||| +Yavimaya Enchantress|Seventh Edition|285|U|{2}{G}|Creature — Human Druid|2|2| +Spineless Thug|Seventh Edition|164|C|{1}{B}|Creature — Zombie Mercenary|2|2| +Ancient Silverback|Urza's Destiny|101|R|{4}{G}{G}|Creature — Ape|6|5| +Healing Salve|Classic Sixth Edition|22|C|{W}|Instant||| +Hero's Resolve|Classic Sixth Edition|24|C|{1}{W}|Enchantment — Aura||| +Mesa Falcon|Classic Sixth Edition|31|C|{1}{W}|Creature — Bird|1|1| +Animate Wall|Classic Sixth Edition|1|R|{W}|Enchantment — Aura||| +Tidal Surge|Classic Sixth Edition|102|C|{1}{U}|Sorcery||| +Psychic Venom|Classic Sixth Edition|91|C|{1}{U}|Enchantment — Aura||| +Phantasmal Terrain|Classic Sixth Edition|84|C|{U}{U}|Enchantment — Aura||| +Vodalian Soldiers|Classic Sixth Edition|104|C|{1}{U}|Creature — Merfolk Soldier|1|2| +Fog Elemental|Classic Sixth Edition|69|C|{2}{U}|Creature — Elemental|4|4| +Browse|Classic Sixth Edition|59|U|{2}{U}{U}|Enchantment||| +Power Sink|Classic Sixth Edition|87|U|{X}{U}|Instant||| +Soldevi Sage|Classic Sixth Edition|99|U|{1}{U}|Creature — Human Wizard|1|1| +Wind Spirit|Classic Sixth Edition|107|U|{4}{U}|Creature — Elemental Spirit|3|2| +Deflection|Classic Sixth Edition|63|R|{3}{U}|Instant||| +Mana Short|Classic Sixth Edition|80|R|{2}{U}|Instant||| +Flash|Classic Sixth Edition|67|R|{1}{U}|Instant||| +Anaba Shaman|Classic Sixth Edition|165|C|{3}{R}|Creature — Minotaur Shaman|2|2| +Mountain Goat|Classic Sixth Edition|195|C|{R}|Creature — Goat|1|1| +Goblin Elite Infantry|Classic Sixth Edition|183|C|{1}{R}|Creature — Goblin Warrior|2|2| +Anaba Bodyguard|Classic Sixth Edition|164|C|{3}{R}|Creature — Minotaur|2|3| +Balduvian Barbarians|Classic Sixth Edition|166|C|{1}{R}{R}|Creature — Human Barbarian|3|2| +Flashfires|Classic Sixth Edition|180|U|{3}{R}|Sorcery||| +Vertigo|Classic Sixth Edition|212|U|{R}|Instant||| +Burrowing|Classic Sixth Edition|170|U|{R}|Enchantment — Aura||| +Illicit Auction|Classic Sixth Edition|190|R|{3}{R}{R}|Sorcery||| +Cat Warriors|Classic Sixth Edition|219|C|{1}{G}{G}|Creature — Cat Warrior|2|2| +Fyndhorn Brownie|Classic Sixth Edition|231|C|{2}{G}|Creature — Ouphe|1|1| +Scaled Wurm|Classic Sixth Edition|251|C|{7}{G}|Creature — Wurm|7|6| +Panther Warriors|Classic Sixth Edition|243|C|{4}{G}|Creature — Cat Warrior|6|3| +Fallow Earth|Classic Sixth Edition|227|U|{2}{G}|Sorcery||| +Thicket Basilisk|Classic Sixth Edition|256|U|{3}{G}{G}|Creature — Basilisk|2|4| +Unseen Walker|Classic Sixth Edition|262|U|{1}{G}|Creature — Dryad|1|1| +River Boa|Classic Sixth Edition|249|U|{1}{G}|Creature — Snake|2|1| +Warthog|Classic Sixth Edition|267|U|{1}{G}{G}|Creature — Boar|3|2| +Fit of Rage|Classic Sixth Edition|178|C|{1}{R}|Sorcery||| +Fatal Blow|Classic Sixth Edition|128|C|{B}|Instant||| +Terror|Classic Sixth Edition|160|C|{1}{B}|Instant||| +Feast of the Unicorn|Classic Sixth Edition|130|C|{3}{B}|Enchantment — Aura||| +Bog Imp|Classic Sixth Edition|116|C|{1}{B}|Creature — Imp|1|1| +Scathe Zombies|Classic Sixth Edition|154|C|{2}{B}|Creature — Zombie|2|2| +Stupor|Classic Sixth Edition|158|U|{2}{B}|Sorcery||| +Fallen Angel|Classic Sixth Edition|127|R|{3}{B}{B}|Creature — Angel|3|3| +Tormented Angel|Urza's Destiny|22|C|{3}{W}|Creature — Angel|1|5| +Capashen Standard|Urza's Destiny|4|C|{W}|Enchantment — Aura||| +Metathran Soldier|Urza's Destiny|39|C|{1}{U}|Creature — Metathran Soldier|1|1| +Illuminated Wings|Urza's Destiny|34|C|{1}{U}|Enchantment — Aura||| +Fatigue|Urza's Destiny|32|C|{1}{U}|Sorcery||| +Elvish Lookout|Urza's Destiny|103|C|{G}|Creature — Elf|1|1| +Thran Foundry|Urza's Destiny|140|U|{1}|Artifact||| +Phyrexian Monitor|Urza's Destiny|64|C|{3}{B}|Creature — Skeleton|2|2| +Twisted Experiment|Urza's Destiny|74|C|{1}{B}|Enchantment — Aura||| +Carnival of Souls|Urza's Destiny|55|R|{1}{B}|Enchantment||| +Lurking Jackals|Urza's Destiny|62|U|{B}|Enchantment||| +Flowstone Charger|Apocalypse|99|U|{2}{R}{W}|Creature — Beast|2|5| +Convalescent Care|Onslaught|14|R|{1}{W}{W}|Enchantment||| +Yavimaya's Embrace|Apocalypse|127|R|{5}{G}{U}{U}|Enchantment — Aura||| +Vindicate|Apocalypse|126|R|{1}{W}{B}|Sorcery||| +Guard Dogs|Planeshift|5|U|{3}{W}|Creature — Hound|2|2| +Ancient Spider|Planeshift|96|R|{2}{G}{W}|Creature — Spider|2|5| +Consume Strength|Apocalypse|93|C|{1}{B}{G}|Instant||| +Plated Spider|Urza's Destiny|116|C|{4}{G}|Creature — Spider|4|4| +Keldon Mantle|Planeshift|65|C|{1}{R}|Enchantment — Aura||| +Sowing Salt|Urza's Destiny|97|U|{2}{R}{R}|Sorcery||| +Charm Peddler|Mercadian Masques|6|C|{W}|Creature — Human Spellshaper|1|1| +Devout Witness|Mercadian Masques|17|C|{2}{W}|Creature — Human Spellshaper|2|2| +Thermal Glider|Mercadian Masques|53|C|{2}{W}|Creature — Human Rebel|2|1| +Revered Elder|Mercadian Masques|43|C|{2}{W}|Creature — Human Cleric|1|2| +Ramosian Sergeant|Mercadian Masques|39|C|{W}|Creature — Human Rebel|1|1| +Crossbow Infantry|Mercadian Masques|16|C|{1}{W}|Creature — Human Soldier Archer|1|1| +Alabaster Wall|Mercadian Masques|2|C|{2}{W}|Creature — Wall|0|4| +Fresh Volunteers|Mercadian Masques|20|C|{1}{W}|Creature — Human Rebel|2|2| +Ramosian Lieutenant|Mercadian Masques|37|C|{1}{W}|Creature — Human Rebel|1|2| +Nightwind Glider|Mercadian Masques|31|C|{2}{W}|Creature — Human Rebel|2|1| +Task Force|Mercadian Masques|52|C|{2}{W}|Creature — Human Rebel|1|3| +Inviolability|Mercadian Masques|23|C|{1}{W}|Enchantment — Aura||| +Orim's Cure|Mercadian Masques|33|C|{1}{W}|Instant||| +Disenchant|Mercadian Masques|18|C|{1}{W}|Instant||| +Afterlife|Mercadian Masques|1|U|{2}{W}|Instant||| +Soothing Balm|Mercadian Masques|48|C|{1}{W}|Instant||| +Cho-Manno's Blessing|Mercadian Masques|12|C|{W}{W}|Enchantment — Aura||| +Pious Warrior|Mercadian Masques|34|C|{3}{W}|Creature — Human Rebel Warrior|2|3| +Balthor the Stout|Torment|91|R|{1}{R}{R}|Legendary Creature — Dwarf Barbarian|2|2| +Moment of Silence|Mercadian Masques|28|C|{W}|Instant||| +Righteous Aura|Mercadian Masques|45|U|{1}{W}|Enchantment||| +Waterfront Bouncer|Mercadian Masques|114|C|{1}{U}|Creature — Merfolk Spellshaper|1|1| +Balloon Peddler|Mercadian Masques|59|C|{2}{U}|Creature — Human Spellshaper|2|2| +Darting Merfolk|Mercadian Masques|72|C|{1}{U}|Creature — Merfolk|1|1| +Timid Drake|Mercadian Masques|111|U|{2}{U}|Creature — Drake|3|3| +Stinging Barrier|Mercadian Masques|107|C|{2}{U}{U}|Creature — Wall|0|4| +Port Inspector|Mercadian Masques|90|C|{1}{U}|Creature — Human|1|2| +Cloud Sprite|Mercadian Masques|67|C|{U}|Creature — Faerie|1|1| +Saprazzan Raider|Mercadian Masques|102|C|{2}{U}|Creature — Merfolk|1|2| +Drake Hatchling|Mercadian Masques|76|C|{2}{U}|Creature — Drake|1|3| +Rishadan Cutpurse|Mercadian Masques|93|C|{2}{U}|Creature — Human Pirate|1|1| +Blockade Runner|Mercadian Masques|60|C|{3}{U}|Creature — Merfolk|2|2| +Misstep|Mercadian Masques|88|C|{1}{U}|Sorcery||| +Tidal Bore|Mercadian Masques|109|C|{1}{U}|Instant||| +Counterspell|Mercadian Masques|69|C|{U}{U}|Instant||| +Brainstorm|Mercadian Masques|61|C|{U}|Instant||| +Karn's Touch|Mercadian Masques|86|R|{U}{U}|Instant||| +Buoyancy|Mercadian Masques|63|C|{1}{U}|Enchantment — Aura||| +Customs Depot|Mercadian Masques|71|U|{1}{U}|Enchantment||| +Diplomatic Immunity|Mercadian Masques|75|C|{1}{U}|Enchantment — Aura||| +Dehydration|Mercadian Masques|73|C|{3}{U}|Enchantment — Aura||| +Bog Witch|Mercadian Masques|118|C|{2}{B}|Creature — Human Spellshaper|1|1| +Plague Witch|Nemesis|66|C|{1}{B}|Creature — Elf Spellshaper|1|1| +Cateran Persuader|Mercadian Masques|124|C|{B}{B}|Creature — Human Mercenary|2|1| +Misshapen Fiend|Mercadian Masques|147|C|{1}{B}|Creature — Horror Mercenary|1|1| +Cateran Brute|Mercadian Masques|120|C|{2}{B}|Creature — Horror Mercenary|2|2| +Wall of Distortion|Mercadian Masques|171|C|{2}{B}{B}|Creature — Wall|1|3| +Alley Grifters|Mercadian Masques|115|C|{1}{B}{B}|Creature — Human Mercenary|2|2| +Highway Robber|Mercadian Masques|139|C|{2}{B}{B}|Creature — Human Rogue Mercenary|2|2| +Rampart Crawler|Mercadian Masques|156|C|{B}|Creature — Lizard Mercenary|1|1| +Deepwood Ghoul|Mercadian Masques|131|C|{2}{B}|Creature — Zombie|2|1| +Skulking Fugitive|Mercadian Masques|161|C|{2}{B}|Creature — Horror Mercenary|3|4| +Vendetta|Mercadian Masques|170|C|{B}|Instant||| +Insubordination|Mercadian Masques|141|C|{B}{B}|Enchantment — Aura||| +Sever Soul|Mercadian Masques|159|C|{3}{B}{B}|Sorcery||| +Dark Ritual|Mercadian Masques|129|C|{B}|Instant||| +Soul Channeling|Mercadian Masques|163|C|{2}{B}|Enchantment — Aura||| +Maggot Therapy|Mercadian Masques|145|C|{2}{B}|Enchantment — Aura||| +Snuff Out|Mercadian Masques|162|C|{3}{B}|Instant||| +Ghoul's Feast|Mercadian Masques|137|U|{1}{B}|Instant||| +Specter's Wail|Mercadian Masques|164|C|{1}{B}|Sorcery||| +Bog Smugglers|Mercadian Masques|117|C|{1}{B}{B}|Creature — Human Mercenary|2|2| +Flailing Soldier|Mercadian Masques|189|C|{R}|Creature — Human Soldier|2|2| +Ceremonial Guard|Mercadian Masques|182|C|{2}{R}|Creature — Human Soldier|3|4| +Kyren Glider|Mercadian Masques|196|C|{1}{R}|Creature — Goblin|1|1| +Wild Jhovall|Mercadian Masques|227|C|{3}{R}|Creature — Cat|3|3| +Kyren Sniper|Mercadian Masques|199|C|{2}{R}|Creature — Goblin|1|1| +Battle Rampart|Mercadian Masques|173|C|{2}{R}|Creature — Wall|1|3| +Cinder Elemental|Mercadian Masques|183|U|{3}{R}|Creature — Elemental|2|2| +Shock Troops|Mercadian Masques|212|C|{3}{R}|Creature — Human Soldier|2|2| +Cavern Crawler|Mercadian Masques|181|C|{2}{R}|Creature — Insect|0|3| +Sizzle|Mercadian Masques|213|C|{2}{R}|Sorcery||| +Stone Rain|Mercadian Masques|215|C|{2}{R}|Sorcery||| +Flaming Sword|Mercadian Masques|190|C|{1}{R}|Enchantment — Aura||| +Tremor|Mercadian Masques|220|C|{R}|Sorcery||| +Thunderclap|Mercadian Masques|219|C|{2}{R}|Instant||| +Crash|Mercadian Masques|186|C|{2}{R}|Instant||| +Lunge|Mercadian Masques|203|C|{2}{R}|Instant||| +Lightning Hounds|Mercadian Masques|201|C|{2}{R}{R}|Creature — Hound|3|2| +War Cadence|Mercadian Masques|224|U|{2}{R}|Enchantment||| +Cave Sense|Mercadian Masques|179|C|{1}{R}|Enchantment — Aura||| +Deepwood Drummer|Mercadian Masques|239|C|{1}{G}|Creature — Human Spellshaper|1|1| +Rushwood Herbalist|Mercadian Masques|265|C|{2}{G}|Creature — Human Spellshaper|2|2| +Deepwood Wolverine|Mercadian Masques|242|C|{G}|Creature — Wolverine|1|1| +Vine Trellis|Mercadian Masques|285|C|{1}{G}|Creature — Plant Wall|0|4| +Venomous Dragonfly|Mercadian Masques|282|C|{3}{G}|Creature — Insect|1|1| +Snorting Gahr|Mercadian Masques|272|C|{2}{G}{G}|Creature — Rhino Beast|3|3| +Rushwood Dryad|Mercadian Masques|263|C|{1}{G}|Creature — Dryad|2|1| +Deadly Insect|Mercadian Masques|238|C|{4}{G}|Creature — Insect|6|1| +Horned Troll|Mercadian Masques|251|C|{2}{G}|Creature — Troll|2|2| +Silverglade Elemental|Mercadian Masques|269|C|{4}{G}|Creature — Elemental|4|4| +Howling Wolf|Mercadian Masques|252|C|{2}{G}{G}|Creature — Wolf|2|2| +Land Grant|Mercadian Masques|255|C|{1}{G}|Sorcery||| +Ancestral Mask|Mercadian Masques|229|C|{2}{G}|Enchantment — Aura||| +Tiger Claws|Mercadian Masques|279|C|{2}{G}|Enchantment — Aura||| +Squall|Mercadian Masques|275|C|{2}{G}|Sorcery||| +Tranquility|Mercadian Masques|280|C|{2}{G}|Sorcery||| +Desert Twister|Mercadian Masques|243|U|{4}{G}{G}|Sorcery||| +Ferocity|Mercadian Masques|245|C|{1}{G}|Enchantment — Aura||| +Invigorate|Mercadian Masques|254|C|{2}{G}|Instant||| +Revive|Mercadian Masques|262|U|{1}{G}|Sorcery||| +Remote Farm|Mercadian Masques|323|C||Land||| +Saprazzan Skerry|Mercadian Masques|328|C||Land||| +Peat Bog|Mercadian Masques|322|C||Land||| +Sandstone Needle|Mercadian Masques|326|C||Land||| +Hickory Woodlot|Mercadian Masques|319|C||Land||| +Cho-Arrim Alchemist|Mercadian Masques|8|R|{W}|Creature — Human Spellshaper|1|1| +Ramosian Sky Marshal|Mercadian Masques|40|R|{3}{W}{W}|Creature — Human Rebel|3|3| +Cho-Arrim Bruiser|Mercadian Masques|9|R|{5}{W}|Creature — Ogre Rebel|3|4| +Reverent Mantra|Mercadian Masques|44|R|{3}{W}|Instant||| +Jhovall Queen|Mercadian Masques|25|R|{4}{W}{W}|Creature — Cat Rebel|4|7| +Security Detail|Mercadian Masques|47|R|{3}{W}|Enchantment||| +Ivory Mask|Mercadian Masques|24|R|{2}{W}{W}|Enchantment||| +Spiritual Focus|Mercadian Masques|49|R|{1}{W}|Enchantment||| +Wave of Reckoning|Mercadian Masques|56|R|{4}{W}|Sorcery||| +Armistice|Mercadian Masques|3|R|{2}{W}|Enchantment||| +Cornered Market|Mercadian Masques|14|R|{2}{W}|Enchantment||| +Crackdown|Mercadian Masques|15|R|{2}{W}|Enchantment||| +Common Cause|Mercadian Masques|13|R|{2}{W}|Enchantment||| +Overtaker|Mercadian Masques|89|R|{1}{U}|Creature — Merfolk Spellshaper|1|1| +Aerial Caravan|Mercadian Masques|58|R|{4}{U}{U}|Creature — Human Soldier|4|3| +Sand Squid|Mercadian Masques|96|R|{3}{U}|Creature — Squid Beast|2|2| +Saprazzan Bailiff|Mercadian Masques|97|R|{3}{U}{U}|Creature — Merfolk|2|2| +Rishadan Brigand|Mercadian Masques|92|R|{4}{U}|Creature — Human Pirate|3|2| +Saprazzan Breaker|Mercadian Masques|98|U|{4}{U}|Creature — Beast|3|3| +Saprazzan Heir|Mercadian Masques|99|R|{1}{U}|Creature — Merfolk|1|1| +Extravagant Spirit|Mercadian Masques|79|R|{3}{U}|Creature — Spirit|4|4| +Tidal Kraken|Mercadian Masques|110|R|{5}{U}{U}{U}|Creature — Kraken|6|6| +Trade Routes|Mercadian Masques|112|R|{1}{U}|Enchantment||| +Statecraft|Mercadian Masques|106|R|{3}{U}|Enchantment||| +Shoving Match|Mercadian Masques|103|U|{2}{U}|Instant||| +Embargo|Mercadian Masques|77|R|{3}{U}|Enchantment||| +Catapult Master|Onslaught|10|R|{3}{W}{W}|Creature — Human Soldier|3|3| +Misdirection|Mercadian Masques|87|R|{3}{U}{U}|Instant||| +Cowardice|Mercadian Masques|70|R|{3}{U}{U}|Enchantment||| +Squeeze|Mercadian Masques|105|R|{3}{U}|Enchantment||| +Strongarm Thug|Mercadian Masques|165|U|{2}{B}|Creature — Human Mercenary|1|1| +Cateran Enforcer|Mercadian Masques|121|U|{3}{B}{B}|Creature — Horror Mercenary|4|3| +Cateran Slaver|Mercadian Masques|125|R|{4}{B}{B}|Creature — Horror Mercenary|5|5| +Silent Assassin|Mercadian Masques|160|R|{B}{B}|Creature — Human Mercenary Assassin|2|1| +Nether Spirit|Mercadian Masques|149|R|{1}{B}{B}|Creature — Spirit|2|2| +Notorious Assassin|Mercadian Masques|150|R|{3}{B}|Creature — Human Spellshaper Assassin|2|2| +Coral Net|Torment|35|C|{U}|Enchantment — Aura||| +Delraich|Mercadian Masques|133|R|{6}{B}|Creature — Horror|6|6| +Cateran Overlord|Mercadian Masques|123|R|{4}{B}{B}{B}|Creature — Horror Mercenary|7|5| +Instigator|Mercadian Masques|140|R|{1}{B}|Creature — Human Spellshaper|1|1| +Rouse|Mercadian Masques|157|C|{1}{B}|Instant||| +Conspiracy|Mercadian Masques|127|R|{3}{B}{B}|Enchantment||| +Extortion|Mercadian Masques|135|R|{3}{B}{B}|Sorcery||| +Haunted Crossroads|Mercadian Masques|138|U|{2}{B}|Enchantment||| +Unnatural Hunger|Mercadian Masques|169|R|{3}{B}{B}|Enchantment — Aura||| +Liability|Mercadian Masques|144|R|{1}{B}{B}|Enchantment||| +Midnight Ritual|Mercadian Masques|146|R|{X}{2}{B}|Sorcery||| +Hammer Mage|Mercadian Masques|193|U|{1}{R}|Creature — Human Spellshaper|1|1| +Flailing Manticore|Mercadian Masques|187|R|{3}{R}|Creature — Manticore|3|3| +Two-Headed Dragon|Mercadian Masques|221|R|{4}{R}{R}|Creature — Dragon|4|4| +Battle Squadron|Mercadian Masques|174|R|{3}{R}{R}|Creature — Goblin|*|*| +Crag Saurian|Mercadian Masques|185|R|{R}{R}{R}|Creature — Lizard|4|4| +Blood Hound|Mercadian Masques|176|R|{2}{R}|Creature — Hound|1|1| +Corrupt Official|Mercadian Masques|128|R|{4}{B}|Creature — Human Minion|3|1| +Squee, Goblin Nabob|Mercadian Masques|214|R|{2}{R}|Legendary Creature — Goblin|1|1| +Territorial Dispute|Mercadian Masques|217|R|{4}{R}{R}|Enchantment||| +Robber Fly|Mercadian Masques|209|U|{2}{R}|Creature — Insect|1|1| +Tectonic Break|Mercadian Masques|216|R|{X}{R}{R}|Sorcery||| +Puppet's Verdict|Mercadian Masques|208|R|{1}{R}{R}|Instant||| +Thieves' Auction|Mercadian Masques|218|R|{4}{R}{R}{R}|Sorcery||| +Brawl|Mercadian Masques|178|R|{3}{R}{R}|Instant||| +Pulverize|Mercadian Masques|207|R|{4}{R}{R}|Sorcery||| +Cave-In|Mercadian Masques|180|R|{3}{R}{R}|Sorcery||| +Blood Oath|Mercadian Masques|177|R|{3}{R}|Instant||| +Silverglade Pathfinder|Mercadian Masques|270|U|{1}{G}|Creature — Dryad Spellshaper|1|1| +Pacifism|Onslaught|47|C|{1}{W}|Enchantment — Aura||| +Caller of the Hunt|Mercadian Masques|233|R|{2}{G}|Creature — Human|*|*| +Lithophage|Mercadian Masques|202|R|{3}{R}{R}|Creature — Insect|7|7| +Megatherium|Mercadian Masques|259|R|{2}{G}|Creature — Beast|4|4| +Erithizon|Mercadian Masques|244|R|{2}{G}{G}|Creature — Beast|4|4| +Vine Dryad|Mercadian Masques|284|R|{3}{G}|Creature — Dryad|1|3| +Vernal Equinox|Mercadian Masques|283|R|{3}{G}|Enchantment||| +Food Chain|Mercadian Masques|246|R|{2}{G}|Enchantment||| +Sacred Prey|Mercadian Masques|268|C|{G}|Creature — Horse|1|1| +Collective Unconscious|Mercadian Masques|236|R|{4}{G}{G}|Sorcery||| +Foster|Mercadian Masques|247|R|{2}{G}{G}|Enchantment||| +Bifurcate|Mercadian Masques|230|R|{3}{G}|Sorcery||| +Game Preserve|Mercadian Masques|248|R|{2}{G}|Enchantment||| +Venomous Breath|Mercadian Masques|281|U|{3}{G}|Instant||| +Briar Patch|Mercadian Masques|232|U|{1}{G}{G}|Enchantment||| +Crumbling Sanctuary|Mercadian Masques|292|R|{5}|Artifact||| +Worry Beads|Mercadian Masques|315|R|{3}|Artifact||| +Magistrate's Scepter|Mercadian Masques|304|R|{3}|Artifact||| +Bargaining Table|Mercadian Masques|288|R|{5}|Artifact||| +Crooked Scales|Mercadian Masques|291|R|{4}|Artifact||| +General's Regalia|Mercadian Masques|295|R|{3}|Artifact||| +Mercadian Lift|Mercadian Masques|306|R|{2}|Artifact||| +Horn of Plenty|Mercadian Masques|298|R|{6}|Artifact||| +Kyren Archive|Mercadian Masques|302|R|{3}|Artifact||| +Rishadan Pawnshop|Mercadian Masques|311|R|{2}|Artifact||| +Distorting Lens|Mercadian Masques|293|R|{2}|Artifact||| +Kyren Toy|Mercadian Masques|303|R|{3}|Artifact||| +Assembly Hall|Mercadian Masques|286|R|{5}|Artifact||| +Tooth of Ramos|Mercadian Masques|313|R|{3}|Artifact||| +Horn of Ramos|Mercadian Masques|299|R|{3}|Artifact||| +Skull of Ramos|Mercadian Masques|312|R|{3}|Artifact||| +Eye of Ramos|Mercadian Masques|294|R|{3}|Artifact||| +Heart of Ramos|Mercadian Masques|296|R|{3}|Artifact||| +Rishadan Port|Mercadian Masques|324|R||Land||| +Henge of Ramos|Mercadian Masques|318|U||Land||| +Tower of the Magistrate|Mercadian Masques|330|R||Land||| +Henge Guardian|Mercadian Masques|297|U|{5}|Artifact Creature — Dragon Wurm|3|4| +Dust Bowl|Mercadian Masques|316|R||Land||| +Wishmonger|Mercadian Masques|57|U|{3}{W}|Creature — Unicorn Monger|3|3| +Charmed Griffin|Mercadian Masques|7|U|{3}{W}|Creature — Griffin|3|3| +Ignoble Soldier|Mercadian Masques|22|U|{2}{W}|Creature — Human Soldier|3|1| +Cho-Arrim Legate|Mercadian Masques|10|U|{2}{W}|Creature — Human Soldier|1|2| +Steadfast Guard|Mercadian Masques|50|C|{W}{W}|Creature — Human Rebel|2|2| +Ballista Squad|Mercadian Masques|5|U|{3}{W}|Creature — Human Rebel|2|2| +Ramosian Captain|Mercadian Masques|35|U|{1}{W}{W}|Creature — Human Rebel|2|2| +Fountain Watch|Mercadian Masques|19|R|{3}{W}{W}|Creature — Human Cleric|2|4| +Noble Purpose|Mercadian Masques|32|U|{3}{W}{W}|Enchantment||| +Honor the Fallen|Mercadian Masques|21|R|{1}{W}|Instant||| +Arrest|Mercadian Masques|4|U|{2}{W}|Enchantment — Aura||| +Righteous Indignation|Mercadian Masques|46|U|{2}{W}|Enchantment||| +Diplomatic Escort|Mercadian Masques|74|U|{1}{U}|Creature — Human Spellshaper|1|1| +Sailmonger|Mercadian Masques|95|U|{3}{U}|Creature — Human Monger|3|3| +Indentured Djinn|Mercadian Masques|85|U|{1}{U}{U}|Creature — Djinn|4|4| +Chambered Nautilus|Mercadian Masques|64|U|{2}{U}|Creature — Nautilus Beast|2|2| +Saprazzan Legate|Mercadian Masques|100|U|{3}{U}|Creature — Merfolk Soldier|1|3| +Chameleon Spirit|Mercadian Masques|65|U|{3}{U}|Creature — Illusion Spirit|*|*| +Rishadan Airship|Mercadian Masques|91|C|{2}{U}|Creature — Human Pirate|3|1| +Glowing Anemone|Mercadian Masques|81|U|{3}{U}|Creature — Jellyfish Beast|1|3| +Coastal Piracy|Mercadian Masques|68|U|{2}{U}{U}|Enchantment||| +Energy Flux|Mercadian Masques|78|U|{2}{U}|Enchantment||| +Soothsaying|Mercadian Masques|104|U|{U}|Enchantment||| +War Tax|Mercadian Masques|113|U|{2}{U}|Enchantment||| +Rishadan Footpad|Mercadian Masques|94|U|{3}{U}|Creature — Human Pirate|2|2| +Thwart|Mercadian Masques|108|U|{2}{U}{U}|Instant||| +False Demise|Mercadian Masques|80|U|{2}{U}|Enchantment — Aura||| +High Seas|Mercadian Masques|83|U|{2}{U}|Enchantment||| +Cackling Witch|Mercadian Masques|119|U|{1}{B}|Creature — Human Spellshaper|1|1| +Scandalmonger|Mercadian Masques|158|U|{3}{B}|Creature — Boar Monger|3|3| +Enslaved Horror|Mercadian Masques|134|U|{3}{B}|Creature — Horror|4|4| +Molting Harpy|Mercadian Masques|148|U|{B}|Creature — Harpy Mercenary|2|1| +Cateran Kidnappers|Mercadian Masques|122|U|{2}{B}{B}|Creature — Human Mercenary|4|2| +Deathgazer|Mercadian Masques|130|U|{3}{B}|Creature — Lizard|2|2| +Deepwood Legate|Mercadian Masques|132|U|{3}{B}|Creature — Shade|1|1| +Quagmire Lamprey|Mercadian Masques|154|U|{2}{B}|Creature — Fish|1|1| +Thrashing Wumpus|Mercadian Masques|166|R|{3}{B}{B}|Creature — Beast|3|3| +Primeval Shambler|Mercadian Masques|152|U|{4}{B}|Creature — Horror Mercenary|3|3| +Larceny|Mercadian Masques|143|U|{3}{B}{B}|Enchantment||| +Forced March|Mercadian Masques|136|R|{X}{B}{B}{B}|Sorcery||| +Pretender's Claim|Mercadian Masques|151|U|{1}{B}|Enchantment — Aura||| +Rain of Tears|Mercadian Masques|155|U|{1}{B}{B}|Sorcery||| +Unmask|Mercadian Masques|168|R|{3}{B}|Sorcery||| +Black Market|Mercadian Masques|116|R|{3}{B}{B}|Enchantment||| +Cateran Summons|Mercadian Masques|126|U|{B}|Sorcery||| +Intimidation|Mercadian Masques|142|U|{2}{B}{B}{B}|Enchantment||| +Putrefaction|Mercadian Masques|153|U|{4}{B}|Enchantment||| +Seismic Mage|Mercadian Masques|211|R|{3}{R}|Creature — Human Spellshaper|1|1| +Kris Mage|Mercadian Masques|195|C|{R}|Creature — Human Spellshaper|1|1| +Warmonger|Mercadian Masques|225|U|{3}{R}|Creature — Minotaur Monger|3|3| +Hired Giant|Mercadian Masques|194|U|{3}{R}|Creature — Giant|4|4| +Flailing Ogre|Mercadian Masques|188|U|{2}{R}|Creature — Ogre|3|3| +Rock Badger|Mercadian Masques|210|U|{4}{R}|Creature — Badger Beast|3|3| +Kyren Legate|Mercadian Masques|197|U|{1}{R}|Creature — Goblin|1|1| +Gerrard's Irregulars|Mercadian Masques|192|C|{4}{R}|Creature — Human Soldier|4|2| +Ogre Taskmaster|Mercadian Masques|206|U|{3}{R}|Creature — Ogre|4|3| +Lava Runner|Mercadian Masques|200|R|{1}{R}{R}|Creature — Lizard|2|2| +Kyren Negotiations|Mercadian Masques|198|U|{2}{R}{R}|Enchantment||| +Close Quarters|Mercadian Masques|184|U|{2}{R}{R}|Enchantment||| +Furious Assault|Mercadian Masques|191|C|{2}{R}|Enchantment||| +Sustenance|Mercadian Masques|278|U|{1}{G}|Enchantment||| +Mercadia's Downfall|Mercadian Masques|205|U|{2}{R}|Instant||| +Warpath|Mercadian Masques|226|U|{3}{R}|Instant||| +Word of Blasting|Mercadian Masques|228|U|{1}{R}|Instant||| +Volcanic Wind|Mercadian Masques|223|U|{4}{R}{R}|Sorcery||| +Magistrate's Veto|Mercadian Masques|204|U|{2}{R}|Enchantment||| +Dawnstrider|Mercadian Masques|237|R|{1}{G}|Creature — Dryad Spellshaper|1|1| +Squallmonger|Mercadian Masques|276|U|{3}{G}|Creature — Monger|3|3| +Hunted Wumpus|Mercadian Masques|253|U|{3}{G}|Creature — Beast|6|6| +Boa Constrictor|Mercadian Masques|231|U|{4}{G}|Creature — Snake|3|3| +Lumbering Satyr|Mercadian Masques|257|U|{2}{G}{G}|Creature — Satyr Beast|5|4| +Arms Dealer|Mercadian Masques|172|U|{2}{R}|Creature — Goblin Rogue|1|1| +Saber Ants|Mercadian Masques|267|U|{3}{G}|Creature — Insect|2|3| +Groundskeeper|Mercadian Masques|250|U|{G}|Creature — Human Druid|1|1| +Rushwood Legate|Mercadian Masques|266|U|{2}{G}|Creature — Dryad|2|1| +Caustic Wasps|Mercadian Masques|234|U|{2}{G}|Creature — Insect|1|1| +Deepwood Tantiv|Mercadian Masques|241|U|{4}{G}|Creature — Beast|2|4| +Ley Line|Mercadian Masques|256|U|{3}{G}|Enchantment||| +Stamina|Mercadian Masques|277|U|{2}{G}|Enchantment — Aura||| +Rushwood Elemental|Mercadian Masques|264|R|{G}{G}{G}{G}{G}|Creature — Elemental|4|4| +Spidersilk Armor|Mercadian Masques|273|C|{2}{G}|Enchantment||| +Spontaneous Generation|Mercadian Masques|274|R|{3}{G}|Sorcery||| +Clear the Land|Mercadian Masques|235|R|{2}{G}|Sorcery||| +Natural Affinity|Mercadian Masques|260|R|{2}{G}|Instant||| +Snake Pit|Mercadian Masques|271|U|{3}{G}|Enchantment||| +Toymaker|Mercadian Masques|314|U|{2}|Artifact Creature — Spellshaper|1|1| +Monkey Cage|Mercadian Masques|307|R|{5}|Artifact||| +Crenellated Wall|Mercadian Masques|290|U|{4}|Artifact Creature — Wall|0|4| +Puffer Extract|Mercadian Masques|310|U|{5}|Artifact||| +Iron Lance|Mercadian Masques|300|U|{2}|Artifact||| +Barbed Wire|Mercadian Masques|287|U|{3}|Artifact||| +Jeweled Torque|Mercadian Masques|301|U|{2}|Artifact||| +Credit Voucher|Mercadian Masques|289|U|{2}|Artifact||| +Panacea|Mercadian Masques|308|U|{4}|Artifact||| +Power Matrix|Mercadian Masques|309|R|{4}|Artifact||| +High Market|Mercadian Masques|320|R||Land||| +Saprazzan Cove|Mercadian Masques|327|U||Land||| +Subterranean Hangar|Mercadian Masques|329|U||Land||| +Fountain of Cho|Mercadian Masques|317|U||Land||| +Mercadian Bazaar|Mercadian Masques|321|U||Land||| +Rushwood Grove|Mercadian Masques|325|U||Land||| +Jhovall Rider|Mercadian Masques|26|U|{4}{W}|Creature — Human Rebel|3|3| +Story Circle|Mercadian Masques|51|U|{1}{W}{W}|Enchantment||| +Lost Soul|Classic Sixth Edition|142|C|{1}{B}{B}|Creature — Spirit Minion|2|1| +Kjeldoran Dead|Classic Sixth Edition|140|C|{B}|Creature — Skeleton|3|1| +Thunder Dragon|Starter 1999|119|R|{5}{R}{R}|Creature — Dragon|5|5| +Thorn Elemental|Starter 1999|147|R|{5}{G}{G}|Creature — Elemental|7|7| +Denizen of the Deep|Starter 1999|35|R|{6}{U}{U}|Creature — Serpent|11|11| +Dakmor Sorceress|Starter 1999|74|R|{5}{B}|Creature — Human Wizard|*|4| +Champion Lancer|Starter 1999|11|R|{4}{W}{W}|Creature — Human Knight|3|3| +Goblin General|Starter 1999|101|U|{1}{R}{R}|Creature — Goblin Warrior|1|1| +Dakmor Lancer|Starter 1999|71|R|{4}{B}{B}|Creature — Human Knight|3|3| +Vizzerdrix|Starter 1999|59|R|{6}{U}|Creature — Rabbit Beast|6|6| +Devastation|Starter 1999|94|R|{5}{R}{R}|Sorcery||| +Fire Tempest|Starter 1999|97|R|{5}{R}{R}|Sorcery||| +Relentless Assault|Starter 1999|115|R|{2}{R}{R}|Sorcery||| +Last Chance|Starter 1999|110|R|{R}{R}|Sorcery||| +Goblin Glider|Starter 1999|102|U|{1}{R}|Creature — Goblin|1|1| +Goblin Commando|Starter 1999|100|U|{4}{R}|Creature — Goblin|2|2| +Hulking Ogre|Starter 1999|108|U|{2}{R}|Creature — Ogre|3|3| +Fire Elemental|Starter 1999|96|U|{3}{R}{R}|Creature — Elemental|5|4| +Earth Elemental|Starter 1999|95|U|{3}{R}{R}|Creature — Elemental|4|5| +Spitting Earth|Starter 1999|117|U|{1}{R}|Sorcery||| +Cinder Storm|Starter 1999|93|U|{6}{R}|Sorcery||| +Goblin Lore|Starter 1999|104|U|{1}{R}|Sorcery||| +Jagged Lightning|Starter 1999|109|U|{3}{R}{R}|Sorcery||| +Lava Axe|Starter 1999|111|C|{4}{R}|Sorcery||| +Volcanic Hammer|Starter 1999|123|C|{1}{R}|Sorcery||| +Tremor|Starter 1999|121|C|{R}|Sorcery||| +Stone Rain|Starter 1999|118|C|{2}{R}|Sorcery||| +Scorching Spear|Starter 1999|116|C|{R}|Sorcery||| +Raging Goblin|Starter 1999|114|C|{R}|Creature — Goblin Berserker|1|1| +Goblin Mountaineer|Starter 1999|105|C|{R}|Creature — Goblin Scout|1|1| +Hulking Goblin|Starter 1999|107|C|{1}{R}|Creature — Goblin|2|2| +Goblin Chariot|Starter 1999|99|C|{2}{R}|Creature — Goblin Warrior|2|2| +Goblin Cavaliers|Starter 1999|98|C|{2}{R}|Creature — Goblin|3|2| +Goblin Settler|Starter 1999|106|U|{3}{R}|Creature — Goblin|1|1| +Sylvan Yeti|Starter 1999|146|R|{2}{G}{G}|Creature — Yeti|*|4| +Sylvan Basilisk|Starter 1999|145|R|{3}{G}{G}|Creature — Basilisk|2|4| +Whirlwind|Starter 1999|150|R|{2}{G}{G}|Sorcery||| +Squall|Starter 1999|143|C|{2}{G}|Sorcery||| +Alluring Scent|Starter 1999|124|R|{1}{G}{G}|Sorcery||| +Nature's Cloak|Starter 1999|135|R|{2}{G}|Sorcery||| +Pride of Lions|Starter 1999|139|U|{3}{G}{G}|Creature — Cat|4|4| +Wood Elves|Starter 1999|153|U|{2}{G}|Creature — Elf Scout|1|1| +Lone Wolf|Starter 1999|130|C|{2}{G}|Creature — Wolf|2|2| +Bull Hippo|Starter 1999|126|U|{3}{G}|Creature — Hippo|3|3| +Wild Ox|Starter 1999|151|U|{3}{G}|Creature — Ox|3|3| +Untamed Wilds|Starter 1999|148|U|{2}{G}|Sorcery||| +Moon Sprite|Starter 1999|133|U|{1}{G}|Creature — Faerie|1|1| +Whiptail Wurm|Starter 1999|149|U|{6}{G}|Creature — Wurm|8|5| +Natural Spring|Starter 1999|134|U|{3}{G}{G}|Sorcery||| +Grizzly Bears|Starter 1999|129|C|{1}{G}|Creature — Bear|2|2| +Monstrous Growth|Starter 1999|132|C|{1}{G}|Sorcery||| +Nature's Lore|Starter 1999|136|C|{1}{G}|Sorcery||| +Renewing Touch|Starter 1999|140|U|{G}|Sorcery||| +Grim Tutor|Starter 1999|79|R|{1}{B}{B}|Sorcery||| +Ancient Craving|Starter 1999|64|R|{3}{B}|Sorcery||| +Wicked Pact|Starter 1999|92|R|{1}{B}{B}|Sorcery||| +Dread Reaper|Starter 1999|76|R|{3}{B}{B}{B}|Creature — Horror|6|5| +Shrieking Specter|Starter 1999|89|U|{5}{B}|Creature — Specter|2|2| +Stream of Acid|Starter 1999|91|U|{2}{B}{B}|Sorcery||| +Soul Feast|Starter 1999|90|U|{3}{B}{B}|Sorcery||| +Coercion|Starter 1999|69|U|{2}{B}|Sorcery||| +Dakmor Plague|Starter 1999|72|U|{3}{B}{B}|Sorcery||| +Dark Offering|Starter 1999|75|U|{4}{B}{B}|Sorcery||| +Howling Fury|Starter 1999|82|U|{2}{B}|Sorcery||| +Ravenous Rats|Starter 1999|86|U|{1}{B}|Creature — Rat|1|1| +Serpent Warrior|Starter 1999|88|C|{2}{B}|Creature — Snake Warrior|3|3| +Gravedigger|Starter 1999|78|U|{3}{B}|Creature — Zombie|2|2| +Feral Shadow|Starter 1999|77|C|{2}{B}|Creature — Nightstalker|2|1| +Bog Wraith|Starter 1999|67|U|{3}{B}|Creature — Wraith|3|3| +Muck Rats|Starter 1999|84|C|{B}|Creature — Rat|1|1| +Bog Imp|Starter 1999|65|C|{1}{B}|Creature — Imp|1|1| +Raise Dead|Starter 1999|85|C|{B}|Sorcery||| +Mind Rot|Starter 1999|83|C|{2}{B}|Sorcery||| +Hand of Death|Starter 1999|80|C|{2}{B}|Sorcery||| +Dakmor Ghoul|Starter 1999|70|U|{2}{B}{B}|Creature — Zombie|2|2| +Chorus of Woe|Starter 1999|68|C|{B}|Sorcery||| +Counterspell|Starter 1999|34|U|{U}{U}|Instant||| +Dakmor Scorpion|Starter 1999|73|C|{1}{B}|Creature — Scorpion|2|1| +Bog Raiders|Starter 1999|66|C|{2}{B}|Creature — Zombie|2|2| +Hollow Dogs|Starter 1999|81|C|{4}{B}|Creature — Zombie Hound|3|3| +Gerrard's Wisdom|Starter 1999|18|R|{2}{W}{W}|Sorcery||| +Armageddon|Starter 1999|6|R|{3}{W}|Sorcery||| +Blinding Light|Starter 1999|8|R|{2}{W}|Sorcery||| +Loyal Sentry|Starter 1999|20|R|{W}|Creature — Human Soldier|1|1| +Angel of Light|Starter 1999|1|U|{4}{W}|Creature — Angel|3|3| +Angel of Mercy|Starter 1999|2|U|{4}{W}|Creature — Angel|3|3| +Vengeance|Starter 1999|29|U|{3}{W}|Sorcery||| +Royal Trooper|Starter 1999|25|U|{2}{W}|Creature — Human Soldier|2|2| +Devout Monk|Starter 1999|14|C|{W}|Creature — Human Monk Cleric|1|1| +Border Guard|Starter 1999|9|C|{2}{W}|Creature — Human Soldier|1|4| +Knight Errant|Starter 1999|19|C|{1}{W}|Creature — Human Knight|2|2| +Foot Soldiers|Starter 1999|17|C|{3}{W}|Creature — Human Soldier|2|4| +Steadfastness|Starter 1999|27|C|{1}{W}|Sorcery||| +Angelic Blessing|Starter 1999|3|C|{2}{W}|Sorcery||| +Charging Paladin|Starter 1999|12|U|{2}{W}|Creature — Human Knight|2|2| +Veteran Cavalier|Starter 1999|30|U|{W}{W}|Creature — Human Knight|2|2| +Gush|Mercadian Masques|82|C|{4}{U}|Instant||| +Ramosian Rally|Mercadian Masques|38|C|{3}{W}|Instant||| +Muzzle|Mercadian Masques|30|C|{1}{W}|Enchantment — Aura||| +Cho-Manno, Revolutionary|Mercadian Masques|11|R|{2}{W}{W}|Legendary Creature — Human Rebel|2|2| +Rappelling Scouts|Mercadian Masques|41|R|{2}{W}{W}|Creature — Human Rebel Scout|1|4| +Quiet Speculation|Judgment|49|U|{1}{U}|Sorcery||| +Hoodwink|Mercadian Masques|84|C|{1}{U}|Instant||| +Charisma|Mercadian Masques|66|R|{U}{U}{U}|Enchantment — Aura||| +Deliver|Invasion|292|U|{2}{U}|Instant||| +Deliver|Invasion|292|U|{2}{U}|Instant||| +Malice|Invasion|293|U|{3}{B}|Instant||| +Malice|Invasion|293|U|{3}{B}|Instant||| +Suffering|Invasion|294|U|{3}{R}|Sorcery||| +Suffering|Invasion|294|U|{3}{R}|Sorcery||| +Battery|Invasion|295|U|{3}{G}|Sorcery||| +Battery|Invasion|295|U|{3}{G}|Sorcery||| +Wane|Invasion|296|U|{W}|Instant||| +Wane|Invasion|296|U|{W}|Instant||| +Uphill Battle|Mercadian Masques|222|U|{2}{R}|Enchantment||| +Pangosaur|Mercadian Masques|261|R|{2}{G}{G}|Creature — Lizard|6|6| +Balthor the Defiled|Judgment|61|R|{2}{B}{B}|Legendary Creature — Zombie Dwarf|2|2| +Mercadian Atlas|Mercadian Masques|305|R|{5}|Artifact||| +Giant Caterpillar|Mercadian Masques|249|C|{3}{G}|Creature — Insect|3|3| +Ramosian Commander|Mercadian Masques|36|U|{2}{W}{W}|Creature — Human Rebel|2|4| +Plains|Mercadian Masques|331|L||Basic Land — Plains||| +Plains|Mercadian Masques|332|L||Basic Land — Plains||| +Plains|Mercadian Masques|333|L||Basic Land — Plains||| +Plains|Mercadian Masques|334|L||Basic Land — Plains||| +Island|Mercadian Masques|335|L||Basic Land — Island||| +Island|Mercadian Masques|336|L||Basic Land — Island||| +Island|Mercadian Masques|337|L||Basic Land — Island||| +Island|Mercadian Masques|338|L||Basic Land — Island||| +Swamp|Mercadian Masques|339|L||Basic Land — Swamp||| +Swamp|Mercadian Masques|340|L||Basic Land — Swamp||| +Swamp|Mercadian Masques|341|L||Basic Land — Swamp||| +Swamp|Mercadian Masques|342|L||Basic Land — Swamp||| +Mountain|Mercadian Masques|343|L||Basic Land — Mountain||| +Mountain|Mercadian Masques|344|L||Basic Land — Mountain||| +Mountain|Mercadian Masques|345|L||Basic Land — Mountain||| +Mountain|Mercadian Masques|346|L||Basic Land — Mountain||| +Forest|Mercadian Masques|347|L||Basic Land — Forest||| +Forest|Mercadian Masques|348|L||Basic Land — Forest||| +Forest|Mercadian Masques|349|L||Basic Land — Forest||| +Forest|Mercadian Masques|350|L||Basic Land — Forest||| +Abyssal Horror|Starter 1999|63|R|{4}{B}{B}|Creature — Horror|2|2| +Volcanic Dragon|Starter 1999|122|R|{4}{R}{R}|Creature — Dragon|4|4| +Eager Cadet|Starter 1999|15|C|{W}|Creature — Human Soldier|1|1| +Breath of Life|Starter 1999|10|U|{3}{W}|Sorcery||| +Righteous Charge|Starter 1999|22|U|{1}{W}{W}|Sorcery||| +Bargain|Starter 1999|7|U|{2}{W}|Sorcery||| +Coral Eel|Starter 1999|33|C|{1}{U}|Creature — Fish|2|1| +Giant Octopus|Starter 1999|39|C|{3}{U}|Creature — Octopus|3|3| +Storm Crow|Starter 1999|53|C|{1}{U}|Creature — Bird|1|2| +Wind Drake|Starter 1999|61|C|{2}{U}|Creature — Drake|2|2| +Snapping Drake|Starter 1999|52|C|{3}{U}|Creature — Drake|3|2| +Sea Eagle|Starter 1999|50|C|{1}{U}|Creature — Bird|1|1| +Touch of Brilliance|Starter 1999|57|C|{3}{U}|Sorcery||| +Time Ebb|Starter 1999|55|C|{2}{U}|Sorcery||| +Eye Spy|Starter 1999|38|U|{U}|Sorcery||| +Extinguish|Starter 1999|37|C|{1}{U}|Instant||| +Remove Soul|Starter 1999|49|C|{1}{U}|Instant||| +Man-o'-War|Starter 1999|41|U|{2}{U}|Creature — Jellyfish|2|2| +Phantom Warrior|Starter 1999|44|R|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Water Elemental|Starter 1999|60|U|{3}{U}{U}|Creature — Elemental|5|4| +Air Elemental|Starter 1999|32|U|{3}{U}{U}|Creature — Elemental|4|4| +Owl Familiar|Starter 1999|43|U|{1}{U}|Creature — Bird|1|1| +Ingenious Thief|Starter 1999|40|C|{1}{U}|Creature — Human Rogue|1|1| +Exhaustion|Starter 1999|36|U|{2}{U}|Sorcery||| +Undo|Starter 1999|58|U|{1}{U}{U}|Sorcery||| +Relearn|Starter 1999|48|U|{1}{U}{U}|Sorcery||| +Tidings|Starter 1999|54|U|{3}{U}{U}|Sorcery||| +Time Warp|Starter 1999|56|R|{3}{U}{U}|Sorcery||| +Piracy|Starter 1999|45|R|{U}{U}|Sorcery||| +Psychic Transfer|Starter 1999|46|R|{4}{U}|Sorcery||| +Willow Elf|Starter 1999|152|C|{G}|Creature — Elf|1|1| +Norwood Ranger|Starter 1999|138|C|{G}|Creature — Elf Scout|1|2| +Lynx|Starter 1999|131|U|{1}{G}|Creature — Cat|2|1| +Norwood Archers|Starter 1999|137|C|{3}{G}|Creature — Elf Archer|3|3| +Durkwood Boars|Starter 1999|127|C|{4}{G}|Creature — Boar|4|4| +Royal Falcon|Starter 1999|24|C|{1}{W}|Creature — Bird|1|1| +Devoted Hero|Starter 1999|13|C|{W}|Creature — Elf Soldier|1|2| +Wild Griffin|Starter 1999|31|C|{2}{W}|Creature — Griffin|2|2| +Venerable Monk|Starter 1999|28|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Path of Peace|Starter 1999|21|C|{3}{W}|Sorcery||| +Sacred Nectar|Starter 1999|26|C|{1}{W}|Sorcery||| +Ardent Militia|Starter 1999|5|U|{4}{W}|Creature — Human Soldier|2|5| +False Peace|Starter 1999|16|U|{W}|Sorcery||| +Righteous Fury|Starter 1999|23|R|{4}{W}{W}|Sorcery||| +Mons's Goblin Raiders|Starter 1999|112|R|{R}|Creature — Goblin|1|1| +Goblin Hero|Starter 1999|103|R|{2}{R}|Creature — Goblin|2|2| +Sleight of Hand|Starter 1999|51|C|{U}|Sorcery||| +Ransack|Starter 1999|47|R|{3}{U}|Sorcery||| +Ogre Warrior|Starter 1999|113|C|{3}{R}|Creature — Ogre Warrior|3|3| +Southern Elephant|Starter 1999|142|C|{3}{G}|Creature — Elephant|3|4| +Silverback Ape|Starter 1999|141|U|{3}{G}{G}|Creature — Ape|5|5| +Gorilla Warrior|Starter 1999|128|C|{2}{G}|Creature — Ape Warrior|3|2| +Wind Sail|Starter 1999|62|U|{1}{U}|Sorcery||| +Barbtooth Wurm|Starter 1999|125|C|{5}{G}|Creature — Wurm|6|4| +Summer Bloom|Starter 1999|144|R|{1}{G}|Sorcery||| +Merfolk of the Pearl Trident|Starter 1999|42|C|{U}|Creature — Merfolk|1|1| +Scathe Zombies|Starter 1999|87|C|{2}{B}|Creature — Zombie|2|2| +Maniacal Rage|Battle Royale Box Set||C|{1}{R}|Enchantment — Aura||| +Village Elder|Battle Royale Box Set||C|{G}|Creature — Human Druid|1|1| +Broken Fall|Battle Royale Box Set||C|{2}{G}|Enchantment||| +Tranquility|Battle Royale Box Set||C|{2}{G}|Sorcery||| +Symbiosis|Battle Royale Box Set||C|{1}{G}|Instant||| +Arc Lightning|Battle Royale Box Set||C|{2}{R}|Sorcery||| +Shower of Sparks|Battle Royale Box Set||C|{R}|Instant||| +Scryb Sprites|Battle Royale Box Set||C|{G}|Creature — Faerie|1|1| +Skyshroud Elite|Battle Royale Box Set||U|{G}|Creature — Elf|1|1| +Llanowar Elves|Battle Royale Box Set||C|{G}|Creature — Elf Druid|1|1| +Seeker of Skybreak|Battle Royale Box Set||C|{1}{G}|Creature — Elf|2|1| +River Boa|Battle Royale Box Set||U|{1}{G}|Creature — Snake|2|1| +Pincher Beetles|Battle Royale Box Set||C|{2}{G}|Creature — Insect|3|1| +Uthden Troll|Battle Royale Box Set||U|{2}{R}|Creature — Troll|2|2| +Spike Feeder|Battle Royale Box Set||U|{1}{G}{G}|Creature — Spike|0|0| +Trumpeting Armodon|Battle Royale Box Set||U|{3}{G}|Creature — Elephant|3|3| +Wildfire Emissary|Battle Royale Box Set||U|{3}{R}|Creature — Efreet|2|4| +Plated Rootwalla|Battle Royale Box Set||C|{4}{G}|Creature — Lizard|3|3| +Mogg Hollows|Battle Royale Box Set||U||Land||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Armored Pegasus|Battle Royale Box Set||C|{1}{W}|Creature — Pegasus|1|2| +Air Elemental|Battle Royale Box Set||U|{3}{U}{U}|Creature — Elemental|4|4| +Azure Drake|Battle Royale Box Set||U|{3}{U}|Creature — Drake|2|4| +Disruptive Student|Battle Royale Box Set||C|{2}{U}|Creature — Human Wizard|1|1| +Wind Drake|Battle Royale Box Set||C|{2}{U}|Creature — Drake|2|2| +Manta Riders|Battle Royale Box Set||C|{U}|Creature — Merfolk|1|1| +Mana Leak|Battle Royale Box Set||C|{1}{U}|Instant||| +Counterspell|Battle Royale Box Set||C|{U}{U}|Instant||| +Opportunity|Battle Royale Box Set||U|{4}{U}{U}|Instant||| +Prodigal Sorcerer|Battle Royale Box Set||C|{2}{U}|Creature — Human Wizard|1|1| +Healing Salve|Battle Royale Box Set||C|{W}|Instant||| +Infantry Veteran|Battle Royale Box Set||C|{W}|Creature — Human Soldier|1|1| +Soul Warden|Battle Royale Box Set||C|{W}|Creature — Human Cleric|1|1| +Disenchant|Battle Royale Box Set||C|{1}{W}|Instant||| +Songstitcher|Battle Royale Box Set||U|{W}|Creature — Human Cleric|1|1| +Windfall|Battle Royale Box Set||U|{2}{U}|Sorcery||| +Curfew|Battle Royale Box Set||C|{U}|Instant||| +Man-o'-War|Battle Royale Box Set||C|{2}{U}|Creature — Jellyfish|2|2| +Flood|Battle Royale Box Set||C|{U}|Enchantment||| +Control Magic|Battle Royale Box Set||U|{2}{U}{U}|Enchantment — Aura||| +Ray of Command|Battle Royale Box Set||C|{3}{U}|Instant||| +Catastrophe|Battle Royale Box Set||R|{4}{W}{W}|Sorcery||| +Island|Battle Royale Box Set||L||Basic Land — Island||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Thalakos Lowlands|Battle Royale Box Set||U||Land||| +Wall of Heat|Battle Royale Box Set||C|{2}{R}|Creature — Wall|2|6| +Subversion|Battle Royale Box Set||R|{3}{B}{B}|Enchantment||| +Pestilence|Battle Royale Box Set||U|{2}{B}{B}|Enchantment||| +Sadistic Glee|Battle Royale Box Set||C|{B}|Enchantment — Aura||| +Terror|Battle Royale Box Set||C|{1}{B}|Instant||| +Syphon Soul|Battle Royale Box Set||C|{2}{B}|Sorcery||| +Exhume|Battle Royale Box Set||C|{1}{B}|Sorcery||| +Dark Ritual|Battle Royale Box Set||C|{B}|Instant||| +Living Death|Battle Royale Box Set||R|{3}{B}{B}|Sorcery||| +Unnerve|Battle Royale Box Set||C|{3}{B}|Sorcery||| +Weakness|Battle Royale Box Set||C|{B}|Enchantment — Aura||| +Rolling Thunder|Battle Royale Box Set||C|{X}{R}{R}|Sorcery||| +Heat Ray|Battle Royale Box Set||C|{X}{R}|Instant||| +Reanimate|Battle Royale Box Set||U|{B}|Sorcery||| +Sewer Rats|Battle Royale Box Set||C|{B}|Creature — Rat|1|1| +Raging Goblin|Battle Royale Box Set||C|{R}|Creature — Goblin Berserker|1|1| +Fire Ants|Battle Royale Box Set||U|{2}{R}|Creature — Insect|2|1| +Phyrexian Ghoul|Battle Royale Box Set||C|{2}{B}|Creature — Zombie|2|2| +Crazed Skirge|Battle Royale Box Set||U|{3}{B}|Creature — Imp|2|2| +Lightning Elemental|Battle Royale Box Set||C|{3}{R}|Creature — Elemental|4|1| +Abyssal Specter|Battle Royale Box Set||U|{2}{B}{B}|Creature — Specter|2|3| +Cackling Fiend|Battle Royale Box Set||C|{2}{B}{B}|Creature — Zombie|2|1| +Sengir Vampire|Battle Royale Box Set||U|{3}{B}{B}|Creature — Vampire|4|4| +Cinder Marsh|Battle Royale Box Set||U||Land||| +Swamp|Battle Royale Box Set||L||Basic Land — Swamp||| +Swords to Plowshares|Battle Royale Box Set||U|{W}|Instant||| +Scaled Wurm|Battle Royale Box Set||C|{7}{G}|Creature — Wurm|7|6| +Fertile Ground|Battle Royale Box Set||C|{1}{G}|Enchantment — Aura||| +Master Decoy|Battle Royale Box Set||C|{1}{W}|Creature — Human Soldier|1|2| +Angelic Page|Battle Royale Box Set||C|{1}{W}|Creature — Angel Spirit|1|1| +Vec Townships|Battle Royale Box Set||U||Land||| +Spike Weaver|Battle Royale Box Set||R|{2}{G}{G}|Creature — Spike|0|0| +Wrath of God|Battle Royale Box Set||R|{2}{W}{W}|Sorcery||| +Spike Colony|Battle Royale Box Set||C|{4}{G}|Creature — Spike|0|0| +Argothian Elder|Battle Royale Box Set||U|{3}{G}|Creature — Elf Druid|2|2| +Seasoned Marshal|Battle Royale Box Set||U|{2}{W}{W}|Creature — Human Soldier|2|2| +Sanctum Custodian|Battle Royale Box Set||C|{2}{W}|Creature — Human Cleric|1|2| +Sanctum Guardian|Battle Royale Box Set||U|{1}{W}{W}|Creature — Human Cleric|1|4| +Advance Scout|Battle Royale Box Set||C|{1}{W}|Creature — Human Soldier Scout|1|1| +Soltari Foot Soldier|Battle Royale Box Set||C|{W}|Creature — Soltari Soldier|1|1| +Elvish Lyrist|Battle Royale Box Set||U|{G}|Creature — Elf|1|1| +Sun Clasp|Battle Royale Box Set||C|{1}{W}|Enchantment — Aura||| +Pacifism|Battle Royale Box Set||C|{1}{W}|Enchantment — Aura||| +Fecundity|Battle Royale Box Set||U|{2}{G}|Enchantment||| +Sandstorm|Battle Royale Box Set||C|{G}|Instant||| +Giant Growth|Battle Royale Box Set||C|{G}|Instant||| +Hurricane|Battle Royale Box Set||U|{X}{G}|Sorcery||| +Dirtcowl Wurm|Battle Royale Box Set||R|{4}{G}|Creature — Wurm|3|4| +Land Tax|Battle Royale Box Set||U|{W}|Enchantment||| +Spike Worker|Battle Royale Box Set||C|{2}{G}|Creature — Spike|0|0| +Slippery Karst|Battle Royale Box Set||C||Land||| +Remote Isle|Battle Royale Box Set||C||Land||| +Polluted Mire|Battle Royale Box Set||C||Land||| +Drifting Meadow|Battle Royale Box Set||C||Land||| +Steam Blast|Battle Royale Box Set||U|{2}{R}|Sorcery||| +Gorilla Warrior|Battle Royale Box Set||C|{2}{G}|Creature — Ape Warrior|3|2| +Defiant Falcon|Nemesis|6|C|{1}{W}|Creature — Rebel Bird|1|1| +Angelfire Crusader|Apocalypse|1|C|{3}{W}|Creature — Human Soldier Knight|2|3| +Lawbringer|Nemesis|10|C|{2}{W}|Creature — Kor Rebel|2|2| +Lightbringer|Nemesis|11|C|{2}{W}|Creature — Kor Rebel|2|2| +Lashknife|Nemesis|9|C|{1}{W}|Enchantment — Aura||| +Angelic Favor|Nemesis|1|U|{3}{W}|Instant||| +Seal of Cleansing|Nemesis|18|C|{1}{W}|Enchantment||| +Fanatical Devotion|Nemesis|8|C|{2}{W}|Enchantment||| +Noble Stand|Nemesis|14|U|{4}{W}|Enchantment||| +Avenger en-Dal|Nemesis|2|R|{1}{W}|Creature — Human Spellshaper|1|1| +Chieftain en-Dal|Nemesis|4|U|{1}{W}{W}|Creature — Human Knight|2|2| +Voice of Truth|Nemesis|25|U|{3}{W}|Creature — Angel|2|2| +Defiant Vanguard|Nemesis|7|U|{2}{W}|Creature — Human Rebel|2|2| +Topple|Nemesis|24|C|{2}{W}|Sorcery||| +Sivvi's Ruse|Nemesis|21|U|{2}{W}{W}|Instant||| +Lin Sivvi, Defiant Hero|Nemesis|12|R|{1}{W}{W}|Legendary Creature — Human Rebel|1|3| +Blinding Angel|Nemesis|3|R|{3}{W}{W}|Creature — Angel|2|4| +Aven Fogbringer|Judgment|34|C|{3}{U}|Creature — Bird Wizard|2|1| +Escape Routes|Planeshift|25|C|{2}{U}|Enchantment||| +Spiritual Asylum|Nemesis|23|R|{2}{W}{W}|Enchantment||| +Trickster Mage|Nemesis|49|C|{U}|Creature — Human Spellshaper|1|1| +Wandering Eye|Nemesis|50|C|{2}{U}|Creature — Illusion|1|3| +Cloudskate|Nemesis|29|C|{1}{U}|Creature — Illusion|2|2| +Jolting Merfolk|Nemesis|34|U|{2}{U}{U}|Creature — Merfolk|2|2| +Sneaky Homunculus|Nemesis|44|C|{1}{U}|Creature — Homunculus Illusion|1|1| +Sliptide Serpent|Nemesis|43|R|{4}{U}{U}|Creature — Serpent|4|4| +Daze|Nemesis|30|C|{1}{U}|Instant||| +Accumulated Knowledge|Nemesis|26|C|{1}{U}|Instant||| +Infiltrate|Nemesis|33|C|{U}|Instant||| +Seal of Removal|Nemesis|42|C|{U}|Enchantment||| +Mossdog|Nemesis|106|C|{G}|Creature — Plant Hound|1|1| +Tears of Rage|Darksteel|70|U|{2}{R}{R}|Instant||| +Submerge|Nemesis|48|U|{4}{U}|Instant||| +Seahunter|Nemesis|41|R|{2}{U}{U}|Creature — Human Mercenary|2|2| +Stronghold Biologist|Nemesis|45|U|{2}{U}|Creature — Human Spellshaper|1|1| +Bribery|Mercadian Masques|62|R|{3}{U}{U}|Sorcery||| +Pale Moon|Nemesis|36|R|{1}{U}|Instant||| +Dominate|Nemesis|31|U|{X}{1}{U}{U}|Instant||| +Rising Waters|Nemesis|38|R|{3}{U}|Enchantment||| +Sunken Hope|Planeshift|37|R|{3}{U}{U}|Enchantment||| +Undertaker|Mercadian Masques|167|C|{1}{B}|Creature — Human Spellshaper|1|1| +Rathi Intimidator|Nemesis|69|C|{1}{B}{B}|Creature — Horror Mercenary|2|1| +Belbe's Percher|Nemesis|53|C|{2}{B}|Creature — Bird|2|2| +Spiteful Bully|Nemesis|72|C|{1}{B}|Creature — Zombie Mercenary|3|3| +Spineless Thug|Nemesis|71|C|{1}{B}|Creature — Zombie Mercenary|2|2| +Rathi Fiend|Nemesis|68|U|{3}{B}|Creature — Horror Mercenary|2|2| +Mind Swords|Nemesis|60|C|{1}{B}|Sorcery||| +Parallax Dementia|Nemesis|62|C|{1}{B}|Enchantment — Aura||| +Seal of Doom|Nemesis|70|C|{2}{B}|Enchantment||| +Vicious Hunger|Nemesis|74|C|{B}{B}|Sorcery||| +Divining Witch|Nemesis|57|R|{1}{B}|Creature — Human Spellshaper|1|1| +Carrion Wall|Nemesis|54|U|{1}{B}{B}|Creature — Wall|3|2| +Battlefield Percher|Nemesis|52|U|{3}{B}{B}|Creature — Bird|2|2| +Dark Triumph|Nemesis|55|U|{4}{B}|Instant||| +Keldon Twilight|Planeshift|112|R|{1}{B}{R}|Enchantment||| +Massacre|Nemesis|58|U|{2}{B}{B}|Sorcery||| +Volrath the Fallen|Nemesis|75|R|{3}{B}{B}{B}|Legendary Creature — Shapeshifter|6|4| +Murderous Betrayal|Nemesis|61|R|{B}{B}{B}|Enchantment||| +Death Pit Offering|Nemesis|56|R|{2}{B}{B}|Enchantment||| +Mind Slash|Nemesis|59|U|{1}{B}{B}|Enchantment||| +Blaster Mage|Mercadian Masques|175|C|{2}{R}|Creature — Human Spellshaper|2|2| +Laccolith Grunt|Nemesis|87|C|{2}{R}|Creature — Beast|2|2| +Flowstone Crusher|Nemesis|81|C|{3}{R}{R}|Creature — Beast|4|4| +Laccolith Whelp|Nemesis|91|C|{R}|Creature — Beast|1|1| +Flowstone Wall|Nemesis|86|C|{2}{R}|Creature — Wall|0|6| +Downhill Charge|Nemesis|79|C|{2}{R}|Instant||| +Laccolith Rig|Nemesis|88|C|{R}|Enchantment — Aura||| +Seal of Fire|Nemesis|98|C|{R}|Enchantment||| +Flowstone Strike|Nemesis|84|C|{1}{R}|Instant||| +Arc Mage|Nemesis|77|U|{2}{R}|Creature — Human Spellshaper|2|2| +Laccolith Warrior|Nemesis|90|U|{2}{R}{R}|Creature — Beast Warrior|3|3| +Mogg Alarm|Nemesis|93|U|{1}{R}{R}|Sorcery||| +Rupture|Nemesis|97|U|{2}{R}|Sorcery||| +Flowstone Surge|Nemesis|85|U|{1}{R}|Enchantment||| +Mogg Salvage|Nemesis|94|U|{2}{R}|Instant||| +Moggcatcher|Nemesis|96|R|{2}{R}{R}|Creature — Human Mercenary|2|2| +Flowstone Overseer|Nemesis|82|R|{2}{R}{R}{R}|Creature — Beast|4|4| +Shrieking Mogg|Nemesis|99|R|{1}{R}|Creature — Goblin|1|1| +Flowstone Slide|Nemesis|83|R|{X}{2}{R}{R}|Sorcery||| +Mana Cache|Nemesis|92|R|{1}{R}{R}|Enchantment||| +Stronghold Gambit|Nemesis|100|R|{1}{R}|Sorcery||| +Stampede Driver|Nemesis|122|U|{G}|Creature — Human Spellshaper|1|1| +Skyshroud Ridgeback|Nemesis|120|C|{G}|Creature — Beast|2|3| +Skyshroud Sentinel|Nemesis|121|C|{2}{G}|Creature — Elf|1|1| +Blastoderm|Nemesis|102|C|{2}{G}{G}|Creature — Beast|5|5| +Coiling Woodworm|Nemesis|103|U|{2}{G}|Creature — Insect Worm|*|1| +Treetop Bracers|Nemesis|123|C|{1}{G}|Enchantment — Aura||| +Seal of Strength|Nemesis|115|C|{G}|Enchantment||| +Fog Patch|Nemesis|104|C|{1}{G}|Instant||| +Harvest Mage|Nemesis|105|C|{G}|Creature — Human Spellshaper|1|1| +Skyshroud Cutter|Nemesis|118|C|{3}{G}|Creature — Beast|2|2| +Nesting Wurm|Nemesis|107|U|{4}{G}{G}|Creature — Wurm|4|3| +Woodripper|Nemesis|125|U|{3}{G}{G}|Creature — Beast|4|6| +Pack Hunt|Nemesis|109|R|{3}{G}|Sorcery||| +Wild Mammoth|Nemesis|124|U|{2}{G}|Creature — Elephant|3|4| +Animate Land|Nemesis|101|U|{G}|Instant||| +Refreshing Rain|Nemesis|110|U|{3}{G}|Instant||| +Skyshroud Poacher|Nemesis|119|R|{2}{G}{G}|Creature — Human Rebel|2|2| +Saproling Burst|Nemesis|113|R|{4}{G}|Enchantment||| +Elephant Resurgence|Prophecy|113|R|{1}{G}|Sorcery||| +Saproling Cluster|Nemesis|114|R|{1}{G}|Enchantment||| +Rejuvenation Chamber|Nemesis|137|U|{3}|Artifact||| +Rusting Golem|Nemesis|138|U|{4}|Artifact Creature — Golem|*|*| +Belbe's Armor|Nemesis|126|U|{3}|Artifact||| +Flowstone Armor|Nemesis|131|U|{3}|Artifact||| +Eye of Yawgmoth|Nemesis|129|R|{3}|Artifact||| +Terrain Generator|Nemesis|143|U||Land||| +Complex Automaton|Nemesis|128|R|{4}|Artifact Creature — Golem|4|4| +Rackling|Nemesis|136|U|{4}|Artifact Creature — Construct|2|2| +Viseling|Nemesis|140|U|{4}|Artifact Creature — Construct|2|2| +Flowstone Thopter|Nemesis|132|U|{7}|Artifact Creature — Thopter|4|4| +Tangle Wire|Nemesis|139|R|{3}|Artifact||| +Predator, Flagship|Nemesis|135|R|{5}|Legendary Artifact||| +Belbe's Portal|Nemesis|127|R|{5}|Artifact||| +Rath's Edge|Nemesis|142|R||Legendary Land||| +Kor Haven|Nemesis|141|R||Legendary Land||| +Saprazzan Outrigger|Mercadian Masques|101|C|{3}{U}|Creature — Merfolk|5|5| +Trained Orgg|Starter 1999|120|R|{6}{R}|Creature — Orgg|6|6| +Plains|Starter 1999|166|L||Basic Land — Plains||| +Plains|Starter 1999|169|L||Basic Land — Plains||| +Plains|Starter 1999|168|L||Basic Land — Plains||| +Plains|Starter 1999|167|L||Basic Land — Plains||| +Island|Starter 1999|158|L||Basic Land — Island||| +Island|Starter 1999|159|L||Basic Land — Island||| +Island|Starter 1999|161|L||Basic Land — Island||| +Swamp|Starter 1999|172|L||Basic Land — Swamp||| +Swamp|Starter 1999|170|L||Basic Land — Swamp||| +Swamp|Starter 1999|173|L||Basic Land — Swamp||| +Swamp|Starter 1999|171|L||Basic Land — Swamp||| +Island|Starter 1999|160|L||Basic Land — Island||| +Mountain|Starter 1999|162|L||Basic Land — Mountain||| +Mountain|Starter 1999|165|L||Basic Land — Mountain||| +Mountain|Starter 1999|164|L||Basic Land — Mountain||| +Mountain|Starter 1999|163|L||Basic Land — Mountain||| +Forest|Starter 1999|156|L||Basic Land — Forest||| +Forest|Starter 1999|157|L||Basic Land — Forest||| +Forest|Starter 1999|154|L||Basic Land — Forest||| +Forest|Starter 1999|155|L||Basic Land — Forest||| +Rock Jockey|Scourge|101|C|{2}{R}|Creature — Goblin|3|3| +Slingshot Goblin|Planeshift|72|C|{2}{R}|Creature — Goblin|2|2| +Defender en-Vec|Nemesis|5|C|{3}{W}|Creature — Human Cleric|2|4| +Netter en-Dal|Nemesis|13|C|{W}|Creature — Human Spellshaper|1|1| +Parallax Wave|Nemesis|17|R|{2}{W}{W}|Enchantment||| +Phyrexian Prowler|Nemesis|65|U|{3}{B}|Creature — Zombie Mercenary|3|3| +Oracle's Attendants|Nemesis|16|R|{3}{W}|Creature — Human Soldier|1|5| +Parallax Nexus|Nemesis|63|R|{2}{B}|Enchantment||| +Off Balance|Nemesis|15|C|{W}|Instant||| +Stronghold Machinist|Nemesis|46|U|{2}{U}|Creature — Human Spellshaper|1|1| +Parallax Tide|Nemesis|37|R|{2}{U}{U}|Enchantment||| +Lure|Mercadian Masques|258|U|{1}{G}{G}|Enchantment — Aura||| +Bola Warrior|Nemesis|78|C|{1}{R}|Creature — Human Spellshaper Warrior|1|1| +Overlaid Terrain|Nemesis|108|R|{2}{G}{G}|Enchantment||| +Flint Golem|Nemesis|130|U|{4}|Artifact Creature — Golem|2|3| +Trap Runner|Mercadian Masques|55|U|{2}{W}{W}|Creature — Human Soldier|2|3| +Ζther Barrier|Nemesis|27|R|{2}{U}|Enchantment||| +Flame Rift|Nemesis|80|C|{1}{R}|Sorcery||| +Rootwater Commando|Nemesis|39|C|{2}{U}|Creature — Merfolk|2|2| +Oraxid|Nemesis|35|C|{3}{U}|Creature — Crab Beast|2|3| +Ancient Hydra|Nemesis|76|U|{4}{R}|Creature — Hydra|5|1| +Laccolith Titan|Nemesis|89|R|{5}{R}{R}|Creature — Beast|6|6| +Multani's Harmony|Planeshift|84|U|{G}|Enchantment — Aura||| +Mogg Toady|Nemesis|95|C|{1}{R}|Creature — Goblin|2|2| +Parallax Inhibitor|Nemesis|134|R|{2}|Artifact||| +Sivvi's Valor|Nemesis|22|R|{2}{W}|Instant||| +Reverent Silence|Nemesis|111|C|{3}{G}|Sorcery||| +Scouting Trek|Invasion|210|U|{1}{G}|Sorcery||| +Kill Switch|Nemesis|133|R|{3}|Artifact||| +Silkenfist Fighter|Nemesis|19|C|{1}{W}|Creature — Kor Soldier|1|3| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Silkenfist Order|Nemesis|20|U|{3}{W}{W}|Creature — Kor Soldier|3|5| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Mountain|Battle Royale Box Set||L||Basic Land — Mountain||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Forest|Battle Royale Box Set||L||Basic Land — Forest||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Plains|Battle Royale Box Set||L||Basic Land — Plains||| +Island|Battle Royale Box Set||L||Basic Land — Island||| +Island|Battle Royale Box Set||L||Basic Land — Island||| +Island|Battle Royale Box Set||L||Basic Land — Island||| +Island|Battle Royale Box Set||L||Basic Land — Island||| +Swamp|Battle Royale Box Set||L||Basic Land — Swamp||| +Swamp|Battle Royale Box Set||L||Basic Land — Swamp||| +Swamp|Battle Royale Box Set||L||Basic Land — Swamp||| +Stronghold Discipline|Nemesis|73|C|{2}{B}{B}|Sorcery||| +Air Bladder|Nemesis|28|C|{U}|Enchantment — Aura||| +Phyrexian Driver|Nemesis|64|C|{2}{B}|Creature — Zombie Mercenary|1|1| +Stronghold Zeppelin|Nemesis|47|U|{2}{U}{U}|Creature — Human|3|3| +Ensnare|Nemesis|32|U|{3}{U}|Instant||| +Rootwater Thief|Nemesis|40|R|{1}{U}|Creature — Merfolk Rogue|1|2| +Rathi Assassin|Nemesis|67|R|{2}{B}{B}|Creature — Zombie Mercenary Assassin|2|2| +Skyshroud Claim|Nemesis|117|C|{3}{G}|Sorcery||| +Skyshroud Behemoth|Nemesis|116|R|{5}{G}{G}|Creature — Beast|10|10| +Deepwood Elder|Mercadian Masques|240|R|{G}{G}|Creature — Dryad Spellshaper|2|2| +Ascendant Evincar|Nemesis|51|R|{4}{B}{B}|Legendary Creature — Vampire|3|3| +Sunscape Apprentice|Invasion|41|C|{W}|Creature — Human Wizard|1|1| +Glimmering Angel|Invasion|17|C|{3}{W}|Creature — Angel|2|2| +Viashino Grappler|Invasion|179|C|{2}{R}|Creature — Viashino|3|1| +Ardent Soldier|Invasion|3|C|{1}{W}|Creature — Human Soldier|1|2| +Benalish Lancer|Invasion|7|C|{2}{W}|Creature — Human Knight|2|2| +Razorfoot Griffin|Invasion|29|C|{3}{W}|Creature — Griffin|2|2| +Crimson Acolyte|Invasion|11|C|{1}{W}|Creature — Human Cleric|1|1| +Obsidian Acolyte|Invasion|22|C|{1}{W}|Creature — Human Cleric|1|1| +Capashen Unicorn|Invasion|10|C|{1}{W}|Creature — Unicorn|1|2| +Benalish Trapper|Invasion|8|C|{1}{W}|Creature — Human Soldier|1|2| +Strength of Unity|Invasion|40|C|{3}{W}|Enchantment — Aura||| +Holy Day|Invasion|20|C|{W}|Instant||| +Reviving Dose|Invasion|31|C|{2}{W}|Instant||| +Shackles|Invasion|37|C|{2}{W}|Enchantment — Aura||| +Restrain|Invasion|30|C|{2}{W}|Instant||| +Prison Barricade|Invasion|25|C|{1}{W}|Creature — Wall|1|3| +Orim's Touch|Invasion|23|C|{W}|Instant||| +Dismantling Blow|Invasion|14|C|{2}{W}|Instant||| +Benalish Heralds|Invasion|6|U|{3}{W}|Creature — Human Soldier|2|4| +Benalish Emissary|Invasion|5|U|{2}{W}|Creature — Human Wizard|1|4| +Ruham Djinn|Invasion|35|U|{5}{W}|Creature — Djinn|5|5| +Spirit Weaver|Invasion|39|U|{1}{W}|Creature — Human Wizard|2|1| +Angel of Mercy|Invasion|2|U|{4}{W}|Creature — Angel|3|3| +Liberate|Invasion|21|U|{1}{W}|Instant||| +Samite Ministration|Invasion|36|U|{1}{W}|Instant||| +Blinding Light|Invasion|9|U|{2}{W}|Sorcery||| +Death or Glory|Invasion|13|R|{4}{W}|Sorcery||| +Pledge of Loyalty|Invasion|24|U|{1}{W}|Enchantment — Aura||| +Teferi's Care|Invasion|43|U|{2}{W}|Enchantment||| +Alabaster Leech|Invasion|1|R|{W}|Creature — Leech|1|3| +Sunscape Master|Invasion|42|R|{2}{W}{W}|Creature — Human Wizard|2|2| +Samite Elder|Planeshift|14|R|{2}{W}|Creature — Human Cleric|1|2| +Crusading Knight|Invasion|12|R|{2}{W}{W}|Creature — Human Knight|2|2| +Atalya, Samite Master|Invasion|4|R|{3}{W}{W}|Legendary Creature — Human Cleric|2|3| +Reya Dawnbringer|Invasion|33|R|{6}{W}{W}{W}|Legendary Creature — Angel|4|6| +Winnow|Invasion|45|R|{1}{W}|Instant||| +Global Ruin|Invasion|18|R|{4}{W}|Sorcery||| +Spirit of Resistance|Invasion|38|R|{2}{W}|Enchantment||| +Divine Presence|Invasion|15|R|{2}{W}|Enchantment||| +Fight or Flight|Invasion|16|R|{3}{W}|Enchantment||| +Rout|Invasion|34|R|{3}{W}{W}|Sorcery||| +Stormscape Apprentice|Invasion|75|C|{U}|Creature — Human Wizard|1|1| +Metathran Zombie|Invasion|63|C|{1}{U}|Creature — Metathran Zombie|1|1| +Tower Drake|Invasion|82|C|{2}{U}|Creature — Drake|2|1| +Faerie Squadron|Invasion|58|C|{U}|Creature — Faerie|1|1| +Vodalian Serpent|Invasion|86|C|{3}{U}|Creature — Serpent|2|2| +Tidal Visionary|Invasion|80|C|{U}|Creature — Merfolk Wizard|1|1| +Shoreline Raider|Invasion|73|C|{2}{U}|Creature — Merfolk|2|2| +Dream Thrush|Invasion|53|C|{1}{U}|Creature — Bird|1|1| +Hunting Drake|Planeshift|27|C|{4}{U}|Creature — Drake|2|2| +Shimmering Wings|Invasion|72|C|{U}|Enchantment — Aura||| +Worldly Counsel|Invasion|89|C|{1}{U}|Instant||| +Phantasmal Terrain|Invasion|65|C|{U}{U}|Enchantment — Aura||| +Barrin's Unmaking|Invasion|46|C|{1}{U}|Instant||| +Repulse|Invasion|70|C|{2}{U}|Instant||| +Exclude|Invasion|56|C|{2}{U}|Instant||| +Traveler's Cloak|Invasion|83|C|{2}{U}|Enchantment — Aura||| +Opt|Invasion|64|C|{U}|Instant||| +Prohibit|Invasion|67|C|{1}{U}|Instant||| +Probe|Invasion|66|C|{2}{U}|Sorcery||| +Tolarian Emissary|Invasion|81|U|{2}{U}|Creature — Human Wizard|1|2| +Zanam Djinn|Invasion|90|U|{5}{U}|Creature — Djinn|5|6| +Vodalian Hypnotist|Invasion|84|U|{1}{U}|Creature — Merfolk Wizard|1|1| +Rainbow Crow|Invasion|69|U|{3}{U}|Creature — Bird|2|2| +Sky Weaver|Invasion|74|U|{1}{U}|Creature — Metathran Wizard|2|1| +Essence Leak|Invasion|55|U|{U}|Enchantment — Aura||| +Fact or Fiction|Invasion|57|U|{3}{U}|Instant||| +Sway of Illusion|Invasion|77|U|{1}{U}|Instant||| +Disrupt|Invasion|51|U|{U}|Instant||| +Collective Restraint|Invasion|49|R|{3}{U}|Enchantment||| +Manipulate Fate|Invasion|60|U|{1}{U}|Sorcery||| +Metathran Aerostat|Invasion|61|R|{2}{U}{U}|Creature — Metathran|2|2| +Stormscape Master|Invasion|76|R|{2}{U}{U}|Creature — Human Wizard|2|2| +Blind Seer|Invasion|47|R|{2}{U}{U}|Legendary Creature — Human Wizard|3|3| +Empress Galina|Invasion|54|R|{3}{U}{U}|Legendary Creature — Merfolk|1|3| +Crystal Spray|Invasion|50|R|{2}{U}|Instant||| +Mana Maze|Invasion|59|R|{1}{U}|Enchantment||| +Sapphire Leech|Invasion|71|R|{1}{U}|Creature — Leech|2|2| +Distorting Wake|Invasion|52|R|{X}{U}{U}{U}|Sorcery||| +Breaking Wave|Invasion|48|R|{2}{U}{U}|Sorcery||| +Teferi's Response|Invasion|78|R|{1}{U}|Instant||| +Nightscape Apprentice|Invasion|112|C|{B}|Creature — Zombie Wizard|1|1| +Firescreamer|Invasion|106|C|{3}{B}|Creature — Kavu|2|2| +Urborg Phantom|Invasion|132|C|{2}{B}|Creature — Spirit Minion|3|1| +Duskwalker|Invasion|104|C|{B}|Creature — Human Minion|1|1| +Urborg Skeleton|Invasion|134|C|{B}|Creature — Skeleton|0|1| +Plague Spitter|Invasion|119|U|{2}{B}|Creature — Horror|2|2| +Phyrexian Delver|Invasion|115|R|{3}{B}{B}|Creature — Zombie|3|2| +Phyrexian Battleflies|Invasion|114|C|{B}|Creature — Insect|0|1| +Bog Initiate|Invasion|95|C|{1}{B}|Creature — Human Wizard|1|1| +Soul Burn|Invasion|124|C|{X}{2}{B}|Sorcery||| +Scavenged Weaponry|Invasion|123|C|{2}{B}|Enchantment — Aura||| +Recover|Invasion|122|C|{2}{B}|Sorcery||| +Addle|Invasion|91|U|{1}{B}|Sorcery||| +Mourning|Invasion|111|C|{1}{B}|Enchantment — Aura||| +Exotic Curse|Invasion|105|C|{2}{B}|Enchantment — Aura||| +Hypnotic Cloud|Invasion|109|C|{1}{B}|Sorcery||| +Agonizing Demise|Invasion|92|C|{3}{B}|Instant||| +Urborg Shambler|Invasion|133|U|{2}{B}{B}|Creature — Horror|4|3| +Phyrexian Reaper|Invasion|117|C|{4}{B}|Creature — Zombie|3|3| +Goham Djinn|Invasion|107|U|{5}{B}|Creature — Djinn|5|5| +Urborg Emissary|Invasion|131|U|{2}{B}|Creature — Human Wizard|3|1| +Trench Wurm|Invasion|127|U|{3}{B}|Creature — Wurm|3|3| +Phyrexian Slayer|Invasion|118|C|{3}{B}|Creature — Minion|2|2| +Hate Weaver|Invasion|108|U|{1}{B}|Creature — Zombie Wizard|2|1| +Annihilate|Invasion|94|U|{3}{B}{B}|Instant||| +Shade's Form|Torment|81|C|{1}{B}{B}|Enchantment — Aura||| +Cursed Flesh|Invasion|98|C|{B}|Enchantment — Aura||| +Reckless Spite|Invasion|121|U|{1}{B}{B}|Instant||| +Defiling Tears|Invasion|99|U|{2}{B}|Instant||| +Tsabo's Assassin|Invasion|128|R|{2}{B}{B}|Creature — Zombie Assassin|1|1| +Nightscape Master|Invasion|113|R|{2}{B}{B}|Creature — Zombie Wizard|2|2| +Devouring Strossus|Invasion|101|R|{5}{B}{B}{B}|Creature — Horror|9|9| +Doomsday Specter|Planeshift|103|R|{2}{U}{B}|Creature — Specter|2|3| +Andradite Leech|Invasion|93|R|{2}{B}|Creature — Leech|2|2| +Marauding Knight|Invasion|110|R|{2}{B}{B}|Creature — Zombie Knight|2|2| +Yawgmoth's Agenda|Invasion|135|R|{3}{B}{B}|Enchantment||| +Desperate Research|Invasion|100|R|{1}{B}|Sorcery||| +Wild Research|Apocalypse|72|R|{2}{R}|Enchantment||| +Spreading Plague|Invasion|125|R|{4}{B}|Enchantment||| +Twilight's Call|Invasion|130|R|{4}{B}{B}|Sorcery||| +Do or Die|Invasion|102|R|{1}{B}|Sorcery||| +Thunderscape Apprentice|Invasion|174|C|{R}|Creature — Human Wizard|1|1| +Hooded Kavu|Invasion|147|C|{2}{R}|Creature — Kavu|2|2| +Rampant Elephant|Invasion|28|C|{3}{W}|Creature — Elephant|2|2| +Kavu Aggressor|Invasion|148|C|{2}{R}|Creature — Kavu|3|2| +Pouncing Kavu|Invasion|158|C|{1}{R}|Creature — Kavu|1|1| +Rogue Kavu|Invasion|160|C|{1}{R}|Creature — Kavu|1|1| +Scarred Puma|Invasion|163|C|{R}|Creature — Cat|2|1| +Slimy Kavu|Invasion|170|C|{2}{R}|Creature — Kavu|2|2| +Ancient Kavu|Invasion|136|C|{3}{R}|Creature — Kavu|3|3| +Overload|Invasion|157|C|{R}|Instant||| +Turf Wound|Invasion|177|C|{2}{R}|Instant||| +Maniacal Rage|Invasion|155|C|{1}{R}|Enchantment — Aura||| +Stun|Invasion|172|C|{1}{R}|Instant||| +Crown of Flames|Invasion|142|C|{R}|Enchantment — Aura||| +Zap|Invasion|180|C|{2}{R}|Instant||| +Tribal Flames|Invasion|176|C|{1}{R}|Sorcery||| +Scorching Lava|Invasion|164|C|{1}{R}|Instant||| +Savage Offensive|Invasion|162|C|{1}{R}|Sorcery||| +Kavu Runner|Invasion|150|U|{3}{R}|Creature — Kavu|3|3| +Skittish Kavu|Invasion|168|U|{1}{R}|Creature — Kavu|1|1| +Rage Weaver|Invasion|159|U|{1}{R}|Creature — Human Wizard|2|1| +Halam Djinn|Invasion|146|U|{5}{R}|Creature — Djinn|6|5| +Firebrand Ranger|Invasion|143|U|{1}{R}|Creature — Human Soldier|2|1| +Shivan Emissary|Invasion|166|U|{2}{R}|Creature — Human Wizard|1|1| +Chaotic Strike|Invasion|140|U|{1}{R}|Instant||| +Ghitu Fire|Invasion|144|R|{X}{R}|Sorcery||| +Urza's Rage|Invasion|178|R|{2}{R}|Instant||| +Lightning Dart|Invasion|152|U|{1}{R}|Instant||| +Collapsing Borders|Invasion|141|R|{3}{R}|Enchantment||| +Breath of Darigaaz|Invasion|138|U|{1}{R}|Sorcery||| +Shivan Harvest|Invasion|167|U|{1}{R}|Enchantment||| +Loafing Giant|Invasion|153|R|{4}{R}|Creature — Giant|4|6| +Thunderscape Master|Invasion|175|R|{2}{R}{R}|Creature — Human Wizard|2|2| +Callous Giant|Invasion|139|R|{4}{R}{R}|Creature — Giant|4|4| +Ruby Leech|Invasion|161|R|{1}{R}|Creature — Leech|2|2| +Skizzik|Invasion|169|R|{3}{R}|Creature — Elemental|5|3| +Kavu Monarch|Invasion|149|R|{2}{R}{R}|Creature — Kavu|3|3| +Obliterate|Invasion|156|R|{6}{R}{R}|Sorcery||| +Bend or Break|Invasion|137|R|{3}{R}|Sorcery||| +Tectonic Instability|Invasion|173|R|{2}{R}|Enchantment||| +Mages' Contest|Invasion|154|R|{1}{R}{R}|Instant||| +Thornscape Apprentice|Invasion|215|C|{G}|Creature — Human Wizard|1|1| +Serpentine Kavu|Invasion|211|C|{4}{G}|Creature — Kavu|4|4| +Kavu Titan|Invasion|194|R|{1}{G}|Creature — Kavu|2|2| +Pincer Spider|Invasion|201|C|{2}{G}|Creature — Spider|2|3| +Kavu Climber|Invasion|192|C|{3}{G}{G}|Creature — Kavu|3|3| +Quirion Trailblazer|Invasion|205|C|{3}{G}|Creature — Elf Scout|1|2| +Nomadic Elf|Invasion|200|C|{1}{G}|Creature — Elf Nomad|2|2| +Quirion Elves|Invasion|203|C|{1}{G}|Creature — Elf Druid|1|1| +Pygmy Kavu|Planeshift|88|C|{3}{G}|Creature — Kavu|1|2| +Fertile Ground|Invasion|188|C|{1}{G}|Enchantment — Aura||| +Tangle|Invasion|213|U|{1}{G}|Instant||| +Tranquility|Invasion|217|C|{2}{G}|Sorcery||| +Whip Silk|Invasion|225|C|{G}|Enchantment — Aura||| +Wandering Stream|Invasion|224|C|{2}{G}|Sorcery||| +Explosive Growth|Invasion|187|C|{G}|Instant||| +Vigorous Charge|Invasion|222|C|{G}|Instant||| +Rooting Kavu|Invasion|207|U|{2}{G}{G}|Creature — Kavu|4|3| +Llanowar Vanguard|Invasion|197|C|{2}{G}|Creature — Dryad|1|1| +Might Weaver|Invasion|198|U|{1}{G}|Creature — Human Wizard|2|1| +Kavu Chameleon|Invasion|191|U|{3}{G}{G}|Creature — Kavu|4|4| +Sulam Djinn|Invasion|212|U|{5}{G}|Creature — Djinn|6|6| +Verduran Emissary|Invasion|221|U|{2}{G}|Creature — Human Wizard|2|3| +Treefolk Healer|Invasion|218|U|{4}{G}|Creature — Treefolk Cleric|2|3| +Wallop|Invasion|223|U|{1}{G}|Sorcery||| +Harrow|Invasion|189|C|{2}{G}|Instant||| +Canopy Surge|Invasion|184|U|{1}{G}|Sorcery||| +Thicket Elemental|Invasion|214|R|{3}{G}{G}|Creature — Elemental|4|4| +Thornscape Master|Invasion|216|R|{2}{G}{G}|Creature — Human Wizard|2|2| +Verdeloth the Ancient|Invasion|220|R|{4}{G}{G}|Legendary Creature — Treefolk|4|7| +Molimo, Maro-Sorcerer|Invasion|199|R|{4}{G}{G}{G}|Legendary Creature — Elemental|*|*| +Blurred Mongoose|Invasion|183|R|{1}{G}|Creature — Mongoose|2|1| +Jade Leech|Invasion|190|R|{2}{G}{G}|Creature — Leech|5|5| +Elfhame Sanctuary|Invasion|185|U|{1}{G}|Enchantment||| +Pulse of Llanowar|Invasion|202|U|{3}{G}|Enchantment||| +Kavu Lair|Invasion|193|R|{2}{G}|Enchantment||| +Restock|Invasion|206|R|{3}{G}{G}|Sorcery||| +Bind|Invasion|182|R|{1}{G}|Instant||| +Noble Panther|Invasion|257|R|{1}{G}{W}|Creature — Cat|3|3| +Raging Kavu|Invasion|262|R|{1}{R}{G}|Creature — Kavu|3|1| +Slinking Serpent|Invasion|274|U|{2}{U}{B}|Creature — Serpent|2|3| +Riptide Crab|Invasion|266|U|{1}{W}{U}|Creature — Crab|1|3| +Vicious Kavu|Invasion|284|U|{1}{B}{R}|Creature — Kavu|2|2| +Aura Shards|Invasion|233|U|{1}{G}{W}|Enchantment||| +Plague Spores|Invasion|260|C|{4}{B}{R}|Sorcery||| +Recoil|Invasion|264|C|{1}{U}{B}|Instant||| +Absorb|Invasion|226|R|{W}{U}{U}|Instant||| +Frenzied Tilling|Invasion|247|C|{3}{R}{G}|Sorcery||| +Llanowar Knight|Invasion|254|C|{G}{W}|Creature — Elf Knight|2|2| +Galina's Knight|Invasion|248|C|{W}{U}|Creature — Merfolk Knight|2|2| +Vodalian Zombie|Invasion|286|C|{U}{B}|Creature — Merfolk Zombie|2|2| +Shivan Zombie|Invasion|271|C|{B}{R}|Creature — Barbarian Zombie|2|2| +Yavimaya Barbarian|Invasion|290|C|{R}{G}|Creature — Elf Barbarian|2|2| +Charging Troll|Invasion|239|U|{2}{G}{W}|Creature — Troll|3|3| +Horned Cheetah|Invasion|251|U|{2}{G}{W}|Creature — Cat|2|2| +Armadillo Cloak|Invasion|229|C|{1}{G}{W}|Enchantment — Aura||| +Samite Archer|Invasion|269|U|{1}{W}{U}|Creature — Human Cleric Archer|1|1| +Teferi's Moat|Invasion|279|R|{3}{W}{U}|Enchantment||| +Sleeper's Robe|Invasion|273|U|{U}{B}|Enchantment — Aura||| +Lobotomy|Invasion|255|U|{2}{U}{B}|Sorcery||| +Backlash|Invasion|234|U|{1}{B}{R}|Instant||| +Cinder Shade|Invasion|240|U|{1}{B}{R}|Creature — Shade|1|1| +Cauldron Dance|Invasion|238|U|{4}{B}{R}|Instant||| +Yavimaya Kavu|Invasion|291|U|{2}{R}{G}|Creature — Kavu|*|*| +Simoon|Invasion|272|U|{R}{G}|Instant||| +Hunting Kavu|Invasion|252|U|{1}{R}{G}|Creature — Kavu|2|3| +Angelic Shield|Invasion|228|U|{W}{U}|Enchantment||| +Seer's Vision|Invasion|270|U|{2}{U}{B}|Enchantment||| +Smoldering Tar|Invasion|275|U|{2}{B}{R}|Enchantment||| +Fires of Yavimaya|Invasion|246|U|{1}{R}{G}|Enchantment||| +Sterling Grove|Invasion|278|U|{G}{W}|Enchantment||| +Heroes' Reunion|Invasion|250|U|{G}{W}|Instant||| +Aura Mutation|Invasion|232|R|{G}{W}|Instant||| +Kangee, Aerie Keeper|Invasion|253|R|{2}{W}{U}|Legendary Creature — Bird Wizard|2|2| +Ordered Migration|Invasion|258|U|{3}{W}{U}|Sorcery||| +Vile Consumption|Invasion|285|R|{1}{U}{B}|Enchantment||| +Spinal Embrace|Invasion|276|R|{3}{U}{U}{B}|Instant||| +Undermine|Invasion|282|R|{U}{U}{B}|Instant||| +Reckless Assault|Invasion|263|R|{2}{B}{R}|Enchantment||| +Blazing Specter|Invasion|236|R|{2}{B}{R}|Creature — Specter|2|2| +Meteor Storm|Invasion|256|R|{R}{G}|Enchantment||| +Ζther Rift|Invasion|227|R|{1}{R}{G}|Enchantment||| +Artifact Mutation|Invasion|231|R|{R}{G}|Instant||| +Reviving Vapors|Invasion|265|U|{2}{W}{U}|Instant||| +Armored Guardian|Invasion|230|R|{3}{W}{U}|Creature — Cat Soldier|2|5| +Powerstone Minefield|Apocalypse|115|R|{2}{R}{W}|Enchantment||| +Void|Invasion|287|R|{3}{B}{R}|Sorcery||| +Pyre Zombie|Invasion|261|R|{1}{B}{R}|Creature — Zombie|2|1| +Overabundance|Invasion|259|R|{1}{R}{G}|Enchantment||| +Voracious Cobra|Invasion|288|U|{2}{R}{G}|Creature — Snake|2|2| +Sabertooth Nishoba|Invasion|268|R|{4}{G}{W}|Creature — Cat Beast Warrior|5|5| +Dromar, the Banisher|Invasion|244|R|{3}{W}{U}{B}|Legendary Creature — Dragon|6|6| +Crosis, the Purger|Invasion|242|R|{3}{U}{B}{R}|Legendary Creature — Dragon|6|6| +Darigaaz, the Igniter|Invasion|243|R|{3}{B}{R}{G}|Legendary Creature — Dragon|6|6| +Rith, the Awakener|Invasion|267|R|{3}{R}{G}{W}|Legendary Creature — Dragon|6|6| +Treva, the Renewer|Invasion|280|R|{3}{G}{W}{U}|Legendary Creature — Dragon|6|6| +Wayfaring Giant|Invasion|44|U|{5}{W}|Creature — Giant|1|3| +Temporal Distortion|Invasion|79|R|{3}{U}{U}|Enchantment||| +Coalition Victory|Invasion|241|R|{3}{W}{U}{B}{R}{G}|Sorcery||| +Seashell Cameo|Invasion|311|U|{3}|Artifact||| +Drake-Skull Cameo|Invasion|302|U|{3}|Artifact||| +Bloodstone Cameo|Invasion|298|U|{3}|Artifact||| +Troll-Horn Cameo|Invasion|316|U|{3}|Artifact||| +Tigereye Cameo|Invasion|314|U|{3}|Artifact||| +Power Armor|Invasion|309|U|{4}|Artifact||| +Juntu Stakes|Invasion|304|R|{2}|Artifact||| +Alloy Golem|Invasion|297|U|{6}|Artifact Creature — Golem|4|4| +Sparring Golem|Invasion|312|U|{3}|Artifact Creature — Golem|2|2| +Phyrexian Altar|Invasion|306|R|{3}|Artifact||| +Urza's Filter|Invasion|318|R|{4}|Artifact||| +Tsabo's Web|Invasion|317|R|{2}|Artifact||| +Tek|Invasion|313|R|{5}|Artifact Creature — Dragon|2|2| +Chromatic Sphere|Invasion|299|U|{1}|Artifact||| +Phyrexian Lens|Invasion|307|R|{3}|Artifact||| +Lotus Guardian|Invasion|305|R|{7}|Artifact Creature — Dragon|4|4| +Planar Portal|Invasion|308|R|{6}|Artifact||| +Irrigation Ditch|Invasion|324|C||Land||| +Ancient Spring|Invasion|319|C||Land||| +Sulfur Vent|Invasion|328|C||Land||| +Geothermal Crevice|Invasion|323|C||Land||| +Tinder Farm|Invasion|329|C||Land||| +Coastal Tower|Invasion|321|U||Land||| +Salt Marsh|Invasion|326|U||Land||| +Urborg Volcano|Invasion|330|U||Land||| +Shivan Oasis|Invasion|327|U||Land||| +Elfhame Palace|Invasion|322|U||Land||| +Archaeological Dig|Invasion|320|U||Land||| +Caves of Koilos|Apocalypse|140|R||Land||| +Battlefield Forge|Apocalypse|139|R||Land||| +Llanowar Wastes|Apocalypse|141|R||Land||| +Yavimaya Coast|Apocalypse|143|R||Land||| +Shivan Reef|Apocalypse|142|R||Land||| +Infest|Onslaught|157|U|{1}{B}{B}|Sorcery||| +Wintermoon Mesa|Prophecy|143|R||Land||| +Pure Reflection|Invasion|27|R|{2}{W}|Enchantment||| +Crypt Angel|Invasion|97|R|{4}{B}|Creature — Angel|3|3| +Tsabo Tavoc|Invasion|281|R|{5}{B}{R}|Legendary Creature — Horror|7|4| +Llanowar Cavalry|Invasion|195|C|{2}{G}|Creature — Human Soldier|1|4| +Kavu Scout|Invasion|151|C|{2}{R}|Creature — Kavu Scout|0|2| +Well-Laid Plans|Invasion|88|R|{2}{U}|Enchantment||| +Wings of Hope|Invasion|289|C|{W}{U}|Enchantment — Aura||| +Cremate|Invasion|96|U|{B}|Instant||| +Dredge|Invasion|103|U|{B}|Instant||| +Aggressive Urge|Invasion|181|C|{1}{G}|Instant||| +Unquestioned Authority|Judgment|31|U|{2}{W}|Enchantment — Aura||| +Sword Dancer|Prophecy|25|U|{1}{W}|Creature — Human Rebel|1|2| +Trenching Steed|Prophecy|26|C|{3}{W}|Creature — Horse Rebel|2|3| +Troubled Healer|Prophecy|27|C|{2}{W}|Creature — Human Cleric|1|2| +Diving Griffin|Prophecy|6|C|{1}{W}{W}|Creature — Griffin|2|2| +Glittering Lynx|Prophecy|11|C|{W}|Creature — Cat|1|1| +Mageta's Boon|Prophecy|14|C|{1}{W}|Enchantment — Aura||| +Rhystic Shield|Prophecy|20|C|{1}{W}|Instant||| +Flowering Field|Prophecy|9|U|{1}{W}|Enchantment — Aura||| +Excise|Prophecy|8|C|{X}{W}|Instant||| +Mirror Strike|Prophecy|17|U|{3}{W}|Instant||| +Mine Bearer|Prophecy|16|C|{2}{W}|Creature — Human Soldier|1|1| +Shield Dancer|Prophecy|23|U|{2}{W}|Creature — Human Rebel|1|3| +Entangler|Prophecy|7|U|{2}{W}{W}|Enchantment — Aura||| +Glittering Lion|Prophecy|10|U|{2}{W}|Creature — Cat|2|2| +Reveille Squad|Prophecy|18|U|{2}{W}{W}|Creature — Human Rebel|3|3| +Aura Fracture|Prophecy|2|C|{2}{W}|Enchantment||| +Abolish|Prophecy|1|U|{1}{W}{W}|Instant||| +Rhystic Circle|Prophecy|19|C|{2}{W}{W}|Enchantment||| +Mercenary Informer|Prophecy|15|R|{2}{W}|Creature — Human Rebel Mercenary|2|1| +Avatar of Hope|Prophecy|3|R|{6}{W}{W}|Creature — Avatar|4|9| +Mageta the Lion|Prophecy|13|R|{3}{W}{W}|Legendary Creature — Human Spellshaper|3|3| +Jeweled Spirit|Prophecy|12|R|{3}{W}{W}|Creature — Spirit|3|3| +Celestial Convergence|Prophecy|5|R|{2}{W}{W}|Enchantment||| +Sheltering Prayers|Prophecy|22|R|{W}|Enchantment||| +Blessed Wind|Prophecy|4|R|{7}{W}{W}|Sorcery||| +Samite Sanctuary|Prophecy|21|R|{2}{W}|Enchantment||| +Ribbon Snake|Prophecy|46|C|{1}{U}{U}|Creature — Snake|2|3| +Hazy Homunculus|Prophecy|36|C|{1}{U}|Creature — Homunculus Illusion|1|1| +Gulf Squid|Prophecy|35|C|{3}{U}|Creature — Squid Beast|2|2| +Coastal Hornclaw|Prophecy|31|C|{4}{U}|Creature — Bird|3|3| +Sunken Field|Prophecy|51|U|{1}{U}|Enchantment — Aura||| +Rhystic Deluge|Prophecy|43|C|{2}{U}|Enchantment||| +Rhystic Scrying|Prophecy|44|U|{2}{U}{U}|Sorcery||| +Mana Vapors|Prophecy|38|U|{1}{U}|Sorcery||| +Alexi's Cloak|Prophecy|29|C|{1}{U}|Enchantment — Aura||| +Withdraw|Prophecy|54|C|{U}{U}|Instant||| +Spiketail Hatchling|Prophecy|49|C|{1}{U}|Creature — Drake|1|1| +Quicksilver Wall|Prophecy|41|U|{2}{U}|Creature — Wall|1|6| +Stormwatch Eagle|Prophecy|50|C|{3}{U}|Creature — Bird|2|1| +Troublesome Spirit|Prophecy|52|R|{2}{U}{U}|Creature — Spirit|3|4| +Windscouter|Prophecy|53|U|{3}{U}|Creature — Human Scout|3|3| +Excavation|Prophecy|33|U|{1}{U}|Enchantment||| +Foil|Prophecy|34|U|{2}{U}{U}|Instant||| +Rethink|Prophecy|42|C|{2}{U}|Instant||| +Rhystic Study|Prophecy|45|C|{2}{U}|Enchantment||| +Avatar of Will|Prophecy|30|R|{6}{U}{U}|Creature — Avatar|5|6| +Alexi, Zephyr Mage|Prophecy|28|R|{3}{U}{U}|Legendary Creature — Human Spellshaper|3|3| +Spiketail Drake|Prophecy|48|U|{3}{U}{U}|Creature — Drake|3|3| +Psychic Theft|Prophecy|40|R|{1}{U}|Sorcery||| +Heightened Awareness|Prophecy|37|R|{3}{U}{U}|Enchantment||| +Shrouded Serpent|Prophecy|47|R|{4}{U}{U}{U}|Creature — Serpent|4|4| +Denying Wind|Prophecy|32|R|{7}{U}{U}|Sorcery||| +Overburden|Prophecy|39|R|{1}{U}|Enchantment||| +Nakaya Shade|Prophecy|69|U|{1}{B}|Creature — Shade|1|1| +Death Charmer|Prophecy|61|C|{2}{B}|Creature — Worm Mercenary|2|2| +Bog Glider|Prophecy|58|C|{2}{B}|Creature — Human Mercenary|1|1| +Agent of Shauku|Prophecy|55|C|{1}{B}|Creature — Human Mercenary|1|1| +Fen Stalker|Prophecy|64|C|{3}{B}|Creature — Nightstalker|3|2| +Whipstitched Zombie|Prophecy|81|C|{1}{B}|Creature — Zombie|2|2| +Greel's Caress|Prophecy|67|C|{1}{B}|Enchantment — Aura||| +Soul Strings|Prophecy|78|C|{X}{B}|Sorcery||| +Flay|Prophecy|65|C|{3}{B}|Sorcery||| +Steal Strength|Prophecy|79|C|{1}{B}|Instant||| +Wall of Vipers|Prophecy|80|U|{2}{B}|Creature — Snake Wall|2|4| +Plague Fiend|Prophecy|73|C|{1}{B}|Creature — Insect|1|1| +Soul Charmer|Prophecy|24|C|{2}{W}|Creature — Human Rebel|2|2| +Pit Raptor|Prophecy|72|U|{2}{B}{B}|Creature — Bird Mercenary|4|3| +Outbreak|Prophecy|71|U|{3}{B}|Sorcery||| +Rhystic Tutor|Prophecy|77|R|{2}{B}|Sorcery||| +Despoil|Prophecy|62|C|{3}{B}|Sorcery||| +Endbringer's Revel|Prophecy|63|U|{2}{B}|Enchantment||| +Rebel Informer|Prophecy|75|R|{2}{B}|Creature — Human Mercenary Rebel|1|2| +Coffin Puppets|Prophecy|60|R|{3}{B}{B}|Creature — Zombie|3|3| +Greel, Mind Raker|Prophecy|66|R|{3}{B}{B}|Legendary Creature — Horror Spellshaper|3|3| +Bog Elemental|Prophecy|57|R|{3}{B}{B}|Creature — Elemental|5|4| +Avatar of Woe|Prophecy|56|R|{6}{B}{B}|Creature — Avatar|6|5| +Plague Wind|Prophecy|74|R|{7}{B}{B}|Sorcery||| +Rhystic Syphon|Prophecy|76|U|{3}{B}{B}|Sorcery||| +Infernal Genesis|Prophecy|68|R|{4}{B}{B}|Enchantment||| +Spur Grappler|Prophecy|104|C|{2}{R}|Creature — Beast|2|1| +Fault Riders|Prophecy|88|C|{2}{R}|Creature — Human Soldier|2|2| +Ridgeline Rager|Prophecy|100|C|{2}{R}|Creature — Beast|1|2| +Whip Sergeant|Prophecy|107|U|{2}{R}|Creature — Human Soldier|2|1| +Keldon Berserker|Prophecy|93|C|{3}{R}|Creature — Human Soldier Berserker|2|3| +Zerapa Minotaur|Prophecy|108|C|{2}{R}{R}|Creature — Minotaur|3|3| +Devastate|Prophecy|87|C|{3}{R}{R}|Sorcery||| +Latulla's Orders|Prophecy|96|C|{1}{R}|Enchantment — Aura||| +Rhystic Lightning|Prophecy|99|C|{2}{R}|Instant||| +Barbed Field|Prophecy|83|U|{2}{R}{R}|Enchantment — Aura||| +Brutal Suppression|Prophecy|85|U|{R}|Enchantment||| +Scoria Cat|Prophecy|101|U|{3}{R}{R}|Creature — Cat|3|3| +Keldon Arsonist|Prophecy|92|U|{2}{R}|Creature — Human Soldier|1|1| +Branded Brawlers|Prophecy|84|C|{R}|Creature — Human Soldier|2|2| +Panic Attack|Prophecy|98|C|{2}{R}|Sorcery||| +Inflame|Prophecy|91|C|{R}|Instant||| +Search for Survivors|Prophecy|102|R|{2}{R}|Sorcery||| +Flameshot|Prophecy|90|U|{3}{R}|Sorcery||| +Citadel of Pain|Prophecy|86|U|{2}{R}|Enchantment||| +Avatar of Fury|Prophecy|82|R|{6}{R}{R}|Creature — Avatar|6|6| +Veteran Brawlers|Prophecy|106|R|{1}{R}|Creature — Human Soldier|4|4| +Latulla, Keldon Overseer|Prophecy|95|R|{3}{R}{R}|Legendary Creature — Human Spellshaper|3|3| +Lesser Gargadon|Prophecy|97|U|{2}{R}{R}|Creature — Beast|6|4| +Keldon Firebombers|Prophecy|94|R|{3}{R}{R}|Creature — Human Soldier|3|3| +Fickle Efreet|Prophecy|89|R|{3}{R}|Creature — Efreet|5|2| +Searing Wind|Prophecy|103|R|{8}{R}|Instant||| +Task Mage Assembly|Prophecy|105|R|{2}{R}|Enchantment||| +Vintara Elephant|Prophecy|131|C|{4}{G}|Creature — Elephant|4|3| +Rib Cage Spider|Prophecy|121|C|{2}{G}|Creature — Spider|1|4| +Spore Frog|Prophecy|126|C|{G}|Creature — Frog|1|1| +Silt Crawler|Prophecy|123|C|{2}{G}|Creature — Beast|3|3| +Vintara Snapper|Prophecy|132|U|{G}{G}|Creature — Turtle|2|2| +Darba|Prophecy|111|U|{3}{G}|Creature — Bird Beast|5|4| +Thresher Beast|Prophecy|128|C|{3}{G}{G}|Creature — Beast|4|4| +Calming Verse|Prophecy|110|C|{3}{G}|Sorcery||| +Jolrael's Favor|Prophecy|116|C|{1}{G}|Enchantment — Aura||| +Wild Might|Prophecy|134|C|{1}{G}|Instant||| +Verdant Field|Prophecy|130|U|{2}{G}|Enchantment — Aura||| +Pygmy Razorback|Prophecy|120|C|{1}{G}|Creature — Boar|2|1| +Marsh Boa|Prophecy|118|C|{G}|Creature — Snake|1|1| +Root Cage|Prophecy|122|U|{1}{G}|Enchantment||| +Spitting Spider|Prophecy|125|U|{3}{G}{G}|Creature — Spider|3|5| +Living Terrain|Prophecy|117|U|{2}{G}{G}|Enchantment — Aura||| +Snag|Prophecy|124|U|{3}{G}|Instant||| +Thrive|Prophecy|129|C|{X}{G}|Sorcery||| +Saproling Symbiosis|Invasion|209|R|{3}{G}|Sorcery||| +Avatar of Might|Prophecy|109|R|{6}{G}{G}|Creature — Avatar|8|8| +Squirrel Wrangler|Prophecy|127|R|{2}{G}{G}|Creature — Human Druid|2|2| +Jolrael, Empress of Beasts|Prophecy|115|R|{3}{G}{G}|Legendary Creature — Human Spellshaper|3|3| +Mungha Wurm|Prophecy|119|R|{2}{G}{G}|Creature — Wurm|6|5| +Forgotten Harvest|Prophecy|114|R|{1}{G}|Enchantment||| +Vitalizing Wind|Prophecy|133|R|{8}{G}|Instant||| +Dual Nature|Prophecy|112|R|{4}{G}{G}|Enchantment||| +Hollow Warrior|Prophecy|138|U|{4}|Artifact Creature — Golem Warrior|4|4| +Chimeric Idol|Prophecy|136|U|{3}|Artifact||| +Well of Life|Prophecy|141|U|{4}|Artifact||| +Copper-Leaf Angel|Prophecy|137|R|{5}|Artifact Creature — Angel|2|2| +Keldon Battlewagon|Prophecy|139|R|{5}|Artifact Creature — Juggernaut|0|3| +Well of Discovery|Prophecy|140|R|{6}|Artifact||| +Rhystic Cave|Prophecy|142|U||Land||| +Noxious Field|Prophecy|70|U|{1}{B}{B}|Enchantment — Aura||| +Rhox|Nemesis|112|R|{4}{G}{G}|Creature — Rhino Beast|5|5| +Wash Out|Invasion|87|U|{3}{U}|Sorcery||| +Rewards of Diversity|Invasion|32|U|{2}{W}|Enchantment||| +Chilling Apparition|Prophecy|59|U|{2}{B}|Creature — Spirit|1|1| +Llanowar Elite|Invasion|196|C|{G}|Creature — Elf|1|1| +Dueling Grounds|Invasion|245|R|{1}{G}{W}|Enchantment||| +Breath of Life|Starter 2000||U|{3}{W}|Sorcery||| +Wind Drake|Starter 2000||C|{2}{U}|Creature — Drake|2|2| +Wild Griffin|Starter 2000||C|{2}{W}|Creature — Griffin|2|2| +Knight Errant|Starter 2000||C|{1}{W}|Creature — Human Knight|2|2| +Island|Starter 2000||L||Basic Land — Island||| +Island|Starter 2000||L||Basic Land — Island||| +Plains|Starter 2000||L||Basic Land — Plains||| +Plains|Starter 2000||L||Basic Land — Plains||| +Eager Cadet|Starter 2000||C|{W}|Creature — Human Soldier|1|1| +Angelic Blessing|Starter 2000||C|{2}{W}|Sorcery||| +Giant Octopus|Starter 2000||C|{3}{U}|Creature — Octopus|3|3| +Merfolk of the Pearl Trident|Starter 2000||C|{U}|Creature — Merfolk|1|1| +Royal Falcon|Starter 2000||C|{1}{W}|Creature — Bird|1|1| +Sea Eagle|Starter 2000||C|{1}{U}|Creature — Bird|1|1| +Time Ebb|Starter 2000||C|{2}{U}|Sorcery||| +Vizzerdrix|Starter 2000||R|{6}{U}|Creature — Rabbit Beast|6|6| +Monstrous Growth|Starter 2000||C|{1}{G}|Sorcery||| +Ogre Warrior|Starter 2000||C|{3}{R}|Creature — Ogre Warrior|3|3| +Coercion|Starter 2000||C|{2}{B}|Sorcery||| +Swamp|Starter 2000||L||Basic Land — Swamp||| +Swamp|Starter 2000||L||Basic Land — Swamp||| +Mountain|Starter 2000||L||Basic Land — Mountain||| +Mountain|Starter 2000||L||Basic Land — Mountain||| +Forest|Starter 2000||L||Basic Land — Forest||| +Forest|Starter 2000||L||Basic Land — Forest||| +Willow Elf|Starter 2000||C|{G}|Creature — Elf|1|1| +Moon Sprite|Starter 2000||U|{1}{G}|Creature — Faerie|1|1| +Goblin Hero|Starter 2000||C|{2}{R}|Creature — Goblin|2|2| +Scathe Zombies|Starter 2000||C|{2}{B}|Creature — Zombie|2|2| +Lava Axe|Starter 2000||C|{4}{R}|Sorcery||| +Hand of Death|Starter 2000||C|{2}{B}|Sorcery||| +Mons's Goblin Raiders|Starter 2000||C|{R}|Creature — Goblin|1|1| +Bog Imp|Starter 2000||C|{1}{B}|Creature — Imp|1|1| +Durkwood Boars|Starter 2000||C|{4}{G}|Creature — Boar|4|4| +Trained Orgg|Starter 2000||R|{6}{R}|Creature — Orgg|6|6| +Spined Wurm|Starter 2000||C|{4}{G}|Creature — Wurm|5|4| +Stone Rain|Starter 2000||C|{2}{R}|Sorcery||| +Armored Pegasus|Starter 2000||C|{1}{W}|Creature — Pegasus|1|2| +Python|Starter 2000||C|{1}{B}{B}|Creature — Snake|3|2| +Disenchant|Starter 2000||C|{1}{W}|Instant||| +Shock|Starter 2000||C|{R}|Instant||| +Giant Growth|Starter 2000||C|{G}|Instant||| +Counterspell|Starter 2000||C|{U}{U}|Instant||| +Terror|Starter 2000||C|{1}{B}|Instant||| +Prodigal Sorcerer|Starter 2000||C|{2}{U}|Creature — Human Wizard|1|1| +Drudge Skeletons|Starter 2000||C|{1}{B}|Creature — Skeleton|1|1| +Llanowar Elves|Starter 2000||C|{G}|Creature — Elf Druid|1|1| +Flight|Starter 2000||C|{U}|Enchantment — Aura||| +Flame Spirit|Starter 2000||C|{4}{R}|Creature — Elemental Spirit|2|3| +Venerable Monk|Starter 2000||C|{2}{W}|Creature — Human Monk Cleric|2|2| +Wing Storm|Prophecy|135|U|{2}{G}|Sorcery||| +Inspiration|Starter 2000||C|{3}{U}|Instant||| +Obsianus Golem|Starter 2000||U|{6}|Artifact Creature — Golem|4|6| +Rod of Ruin|Starter 2000||U|{4}|Artifact||| +Samite Healer|Starter 2000||C|{1}{W}|Creature — Human Cleric|1|1| +Hero's Resolve|Starter 2000||C|{1}{W}|Enchantment — Aura||| +Orcish Oriflamme|Starter 2000||U|{3}{R}|Enchantment||| +Soul Net|Starter 2000||U|{1}|Artifact||| +Healing Salve|Seventh Edition|18|C|{W}|Instant||| +Angelic Page|Seventh Edition|1|C|{1}{W}|Creature — Angel Spirit|1|1| +Spirit Link|Seventh Edition|47|U|{W}|Enchantment — Aura||| +Longbow Archer|Seventh Edition|26|U|{W}{W}|Creature — Human Soldier Archer|2|2| +Sustainer of the Realm|Seventh Edition|52|U|{2}{W}{W}|Creature — Angel|2|3| +Sacred Ground|Seventh Edition|36|R|{1}{W}|Enchantment||| +Rolling Stones|Seventh Edition|35|R|{1}{W}|Enchantment||| +Worship|Seventh Edition|56|R|{3}{W}|Enchantment||| +Purify|Seventh Edition|31|R|{3}{W}{W}|Sorcery||| +Serra Angel|Seventh Edition|42|R|{3}{W}{W}|Creature — Angel|4|4| +Kjeldoran Royal Guard|Seventh Edition|23|R|{3}{W}{W}|Creature — Human Soldier|2|5| +Sleight of Hand|Seventh Edition|98|C|{U}|Sorcery||| +Tolarian Winds|Seventh Edition|105|C|{1}{U}|Instant||| +Telepathic Spies|Seventh Edition|101|C|{2}{U}|Creature — Human Wizard|2|2| +Arcane Laboratory|Seventh Edition|60|U|{2}{U}|Enchantment||| +Mana Breach|Seventh Edition|85|U|{2}{U}|Enchantment||| +Opportunity|Seventh Edition|91|U|{4}{U}{U}|Instant||| +Thieving Magpie|Seventh Edition|104|U|{2}{U}{U}|Creature — Bird|1|3| +Mahamoti Djinn|Seventh Edition|84|R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Short|Seventh Edition|86|R|{2}{U}|Instant||| +Equilibrium|Seventh Edition|71|R|{1}{U}{U}|Enchantment||| +Squall|Seventh Edition|271|C|{2}{G}|Sorcery||| +Thoughtleech|Seventh Edition|274|U|{G}{G}|Enchantment||| +Blanchwood Armor|Seventh Edition|232|U|{2}{G}|Enchantment — Aura||| +Treefolk Seedlings|Seventh Edition|277|U|{2}{G}|Creature — Treefolk|2|*| +Scavenger Folk|Seventh Edition|267|U|{G}|Creature — Human|1|1| +Rowen|Seventh Edition|266|R|{2}{G}{G}|Enchantment||| +Nature's Revolt|Seventh Edition|260|R|{3}{G}{G}|Enchantment||| +Elvish Archers|Seventh Edition|239|R|{1}{G}|Creature — Elf Archer|2|1| +Verduran Enchantress|Seventh Edition|280|R|{1}{G}{G}|Creature — Human Druid|0|2| +Ancient Silverback|Seventh Edition|230|R|{4}{G}{G}|Creature — Ape|6|5| +Thorn Elemental|Seventh Edition|273|R|{5}{G}{G}|Creature — Elemental|7|7| +Ertai, the Corrupted|Planeshift|107|R|{2}{W}{U}{B}|Legendary Creature — Human Wizard|3|4| +Sunscape Familiar|Planeshift|17|C|{1}{W}|Creature — Wall|0|3| +Stormscape Familiar|Planeshift|36|C|{1}{U}|Creature — Bird|1|1| +Thunderscape Familiar|Planeshift|76|C|{1}{R}|Creature — Kavu|1|1| +Thornscape Familiar|Planeshift|95|C|{1}{G}|Creature — Insect|2|1| +Nausea|Seventh Edition|148|C|{1}{B}|Sorcery||| +Corrupt|Seventh Edition|124|C|{5}{B}|Sorcery||| +Blood Pet|Seventh Edition|121|C|{B}|Creature — Thrull|1|1| +Serpent Warrior|Seventh Edition|162|C|{2}{B}|Creature — Snake Warrior|3|3| +Giant Cockroach|Seventh Edition|138|C|{3}{B}|Creature — Insect|4|2| +Bereavement|Seventh Edition|120|U|{1}{B}|Enchantment||| +Yawgmoth's Edict|Seventh Edition|171|U|{1}{B}|Enchantment||| +Megrim|Seventh Edition|146|U|{2}{B}|Enchantment||| +Befoul|Seventh Edition|118|U|{2}{B}{B}|Sorcery||| +Nocturnal Raid|Seventh Edition|151|U|{2}{B}{B}|Instant||| +Fugue|Seventh Edition|137|U|{3}{B}{B}|Sorcery||| +Necrologia|Seventh Edition|149|U|{3}{B}{B}|Instant||| +Abyssal Specter|Seventh Edition|116|U|{2}{B}{B}|Creature — Specter|2|3| +Crypt Rats|Seventh Edition|125|U|{2}{B}|Creature — Rat|1|1| +Foul Imp|Seventh Edition|136|U|{B}{B}|Creature — Imp|2|2| +Wall of Bone|Seventh Edition|169|U|{2}{B}|Creature — Skeleton Wall|1|4| +Dakmor Lancer|Seventh Edition|126|U|{4}{B}{B}|Creature — Human Knight|3|3| +Oppression|Seventh Edition|152|R|{1}{B}{B}|Enchantment||| +Greed|Seventh Edition|140|R|{3}{B}|Enchantment||| +Tainted Ζther|Seventh Edition|167|R|{2}{B}{B}|Enchantment||| +Persecute|Seventh Edition|154|R|{2}{B}{B}|Sorcery||| +Stronghold Assassin|Seventh Edition|166|R|{1}{B}{B}|Creature — Zombie Assassin|2|1| +Eladamri's Call|Planeshift|106|R|{G}{W}|Instant||| +Bellowing Fiend|Seventh Edition|119|R|{4}{B}|Creature — Spirit|3|3| +Crystal Rod|Seventh Edition|291|U|{1}|Artifact||| +Iron Star|Seventh Edition|301|U|{1}|Artifact||| +Ivory Cup|Seventh Edition|302|U|{1}|Artifact||| +Soul Net|Seventh Edition|317|U|{1}|Artifact||| +Throne of Bone|Seventh Edition|322|U|{1}|Artifact||| +Wooden Sphere|Seventh Edition|324|U|{1}|Artifact||| +Spellbook|Seventh Edition|318|U|{0}|Artifact||| +Caltrops|Seventh Edition|288|U|{3}|Artifact||| +Phyrexian Hulk|Seventh Edition|312|U|{6}|Artifact Creature — Golem|5|4| +Pit Trap|Seventh Edition|313|U|{2}|Artifact||| +Serra's Embrace|Seventh Edition|43|U|{2}{W}{W}|Enchantment — Aura||| +Grapeshot Catapult|Seventh Edition|299|U|{4}|Artifact Creature — Construct|2|3| +Jayemdae Tome|Seventh Edition|305|R|{4}|Artifact||| +Grafted Skullcap|Seventh Edition|298|R|{4}|Artifact||| +Teferi's Puzzle Box|Seventh Edition|321|R|{4}|Artifact||| +Storm Cauldron|Seventh Edition|320|R|{5}|Artifact||| +Feroz's Ban|Seventh Edition|295|R|{6}|Artifact||| +Creeping Mold|Seventh Edition|236|U|{2}{G}{G}|Sorcery||| +Pride of Lions|Seventh Edition|261|U|{3}{G}{G}|Creature — Cat|4|4| +Gang of Elk|Seventh Edition|247|U|{5}{G}|Creature — Elk Beast|5|4| +Pyrotechnics|Seventh Edition|210|U|{4}{R}|Sorcery||| +Granite Grip|Seventh Edition|195|C|{2}{R}|Enchantment — Aura||| +Goblin Chariot|Seventh Edition|185|C|{2}{R}|Creature — Goblin Warrior|2|2| +Balduvian Barbarians|Seventh Edition|173|C|{1}{R}{R}|Creature — Human Barbarian|3|2| +Goblin Gardener|Seventh Edition|188|C|{3}{R}|Creature — Goblin|2|1| +Boil|Seventh Edition|177|U|{3}{R}|Instant||| +Goblin War Drums|Seventh Edition|194|U|{2}{R}|Enchantment||| +Pyroclasm|Seventh Edition|209|U|{1}{R}|Sorcery||| +Ζther Flash|Seventh Edition|172|U|{2}{R}{R}|Enchantment||| +Goblin Glider|Seventh Edition|189|U|{1}{R}|Creature — Goblin|1|1| +Hill Giant|Seventh Edition|196|C|{3}{R}|Creature — Giant|3|3| +Impatience|Seventh Edition|197|R|{2}{R}|Enchantment||| +Mana Clash|Seventh Edition|202|R|{R}|Sorcery||| +Relentless Assault|Seventh Edition|214|R|{2}{R}{R}|Sorcery||| +Wildfire|Seventh Edition|228|R|{4}{R}{R}|Sorcery||| +Okk|Seventh Edition|204|R|{1}{R}|Creature — Goblin|4|4| +Reckless Embermage|Seventh Edition|212|R|{3}{R}|Creature — Human Wizard|2|2| +Shivan Dragon|Seventh Edition|218|R|{4}{R}{R}|Creature — Dragon|5|5| +Bedlam|Seventh Edition|174|R|{2}{R}{R}|Enchantment||| +Nightscape Familiar|Planeshift|48|C|{1}{B}|Creature — Zombie|1|1| +Tainted Well|Invasion|126|C|{2}{B}|Enchantment — Aura||| +Searing Rays|Invasion|165|U|{2}{R}|Sorcery||| +Saproling Infestation|Invasion|208|R|{1}{G}|Enchantment||| +Barrin's Spite|Invasion|235|R|{2}{U}{B}|Sorcery||| +Stalking Assassin|Invasion|277|R|{1}{U}{B}|Creature — Human Assassin|1|1| +Draco|Planeshift|131|R|{16}|Artifact Creature — Dragon|9|9| +Spellgorger Barbarian|Judgment|100|C|{3}{R}|Creature — Human Nightmare Barbarian|3|1| +Riptide Shapeshifter|Onslaught|109|U|{3}{U}{U}|Creature — Shapeshifter|3|3| +Overgrown Estate|Apocalypse|113|R|{B}{G}{W}|Enchantment||| +Daring Leap|Planeshift|101|C|{1}{W}{U}|Instant||| +Martyrs' Tomb|Apocalypse|110|U|{2}{W}{B}|Enchantment||| +Captain's Maneuver|Apocalypse|92|U|{X}{R}{W}|Instant||| +Temporal Spring|Apocalypse|125|C|{1}{G}{U}|Sorcery||| +Death Mutation|Apocalypse|96|U|{6}{B}{G}|Sorcery||| +Dromar's Attendant|Invasion|303|U|{5}|Artifact Creature — Golem|3|3| +Crosis's Attendant|Invasion|300|U|{5}|Artifact Creature — Golem|3|3| +Darigaaz's Attendant|Invasion|301|U|{5}|Artifact Creature — Golem|3|3| +Rith's Attendant|Invasion|310|U|{5}|Artifact Creature — Golem|3|3| +Treva's Attendant|Invasion|315|U|{5}|Artifact Creature — Golem|3|3| +Dega Disciple|Apocalypse|4|C|{W}|Creature — Human Wizard|1|1| +Ceta Disciple|Apocalypse|19|C|{U}|Creature — Merfolk Wizard|1|1| +Necra Disciple|Apocalypse|44|C|{B}|Creature — Human Wizard|1|1| +Raka Disciple|Apocalypse|66|C|{R}|Creature — Minotaur Wizard|1|1| +Ana Disciple|Apocalypse|73|C|{G}|Creature — Human Wizard|1|1| +Planar Despair|Apocalypse|50|R|{3}{B}{B}|Sorcery||| +Dromar's Charm|Planeshift|105|U|{W}{U}{B}|Instant||| +Crosis's Charm|Planeshift|99|U|{U}{B}{R}|Instant||| +Darigaaz's Charm|Planeshift|100|U|{B}{R}{G}|Instant||| +Rith's Charm|Planeshift|122|U|{R}{G}{W}|Instant||| +Treva's Charm|Planeshift|129|U|{G}{W}{U}|Instant||| +Stratadon|Planeshift|135|U|{10}|Artifact Creature — Beast|5|5| +Malicious Advice|Planeshift|114|C|{X}{U}{B}|Instant||| +Terminate|Planeshift|128|C|{B}{R}|Instant||| +Hull Breach|Planeshift|111|C|{R}{G}|Sorcery||| +Gerrard's Command|Planeshift|109|C|{G}{W}|Instant||| +Ascending Aven|Onslaught|68|C|{2}{U}{U}|Creature — Bird Soldier|3|2| +Star Compass|Planeshift|134|U|{2}|Artifact||| +Planeswalker's Mirth|Planeshift|12|R|{2}{W}|Enchantment||| +Planeswalker's Mischief|Planeshift|29|R|{2}{U}|Enchantment||| +Planeswalker's Scorn|Planeshift|52|R|{2}{B}|Enchantment||| +Planeswalker's Fury|Planeshift|70|R|{2}{R}|Enchantment||| +Planeswalker's Favor|Planeshift|86|R|{2}{G}|Enchantment||| +Forsaken City|Planeshift|139|R||Land||| +Cloud Cover|Planeshift|98|R|{2}{W}{U}|Enchantment||| +Singe|Planeshift|71|C|{R}|Instant||| +Haunted Angel|Apocalypse|12|U|{2}{W}|Creature — Angel|3|3| +Sunscape Battlemage|Planeshift|16|U|{2}{W}|Creature — Human Wizard|2|2| +Stormscape Battlemage|Planeshift|35|U|{2}{U}|Creature — Metathran Wizard|2|2| +Nightscape Battlemage|Planeshift|47|U|{2}{B}|Creature — Zombie Wizard|2|2| +Thunderscape Battlemage|Planeshift|75|U|{2}{R}|Creature — Human Wizard|2|2| +Thornscape Battlemage|Planeshift|94|U|{2}{G}|Creature — Elf Wizard|2|2| +Urza's Guilt|Planeshift|130|R|{2}{U}{B}|Sorcery||| +Shivan Wurm|Planeshift|124|R|{3}{R}{G}|Creature — Wurm|7|7| +Silver Drake|Planeshift|125|C|{1}{W}{U}|Creature — Drake|3|3| +Cavern Harpy|Planeshift|97|C|{U}{B}|Creature — Harpy Beast|2|1| +Lava Zombie|Planeshift|113|C|{1}{B}{R}|Creature — Zombie|4|3| +Horned Kavu|Planeshift|110|C|{R}{G}|Creature — Kavu|3|4| +Steel Leaf Paladin|Planeshift|127|C|{4}{G}{W}|Creature — Elf Knight|4|4| +Keldon Necropolis|Invasion|325|R||Legendary Land||| +Exotic Disease|Planeshift|43|U|{4}{B}|Sorcery||| +Dromar's Cavern|Planeshift|138|U||Land — Lair||| +Sawtooth Loon|Planeshift|123|U|{2}{W}{U}|Creature — Bird|2|2| +Marsh Crocodile|Planeshift|115|U|{2}{U}{B}|Creature — Crocodile|4|4| +Sparkcaster|Planeshift|126|U|{2}{R}{G}|Creature — Kavu|5|3| +Crosis's Catacombs|Planeshift|136|U||Land — Lair||| +Razing Snidd|Planeshift|121|U|{4}{B}{R}|Creature — Beast|3|3| +Darigaaz's Caldera|Planeshift|137|U||Land — Lair||| +Rith's Grove|Planeshift|141|U||Land — Lair||| +Treva's Ruins|Planeshift|143|U||Land — Lair||| +Pollen Remedy|Planeshift|13|C|{W}|Instant||| +Rushing River|Planeshift|30|C|{2}{U}|Instant||| +Bog Down|Planeshift|39|C|{2}{B}|Sorcery||| +Magma Burst|Planeshift|66|C|{3}{R}|Instant||| +Falling Timber|Planeshift|79|C|{2}{G}|Instant||| +Degavolver|Apocalypse|6|R|{1}{W}|Creature — Volver|1|1| +Cetavolver|Apocalypse|21|R|{1}{U}|Creature — Volver|1|1| +Necravolver|Apocalypse|46|R|{2}{B}|Creature — Volver|2|2| +Rakavolver|Apocalypse|68|R|{2}{R}|Creature — Volver|2|2| +Anavolver|Apocalypse|75|R|{3}{G}|Creature — Volver|3|3| +Pernicious Deed|Apocalypse|114|R|{1}{B}{G}|Enchantment||| +Sinister Strength|Planeshift|54|C|{1}{B}|Enchantment — Aura||| +Penumbra Kavu|Apocalypse|83|U|{4}{G}|Creature — Kavu|3|3| +Plains|Invasion|331|L||Basic Land — Plains||| +Island|Invasion|335|L||Basic Land — Island||| +Swamp|Invasion|339|L||Basic Land — Swamp||| +Mountain|Invasion|343|L||Basic Land — Mountain||| +Forest|Invasion|347|L||Basic Land — Forest||| +Index|Apocalypse|25|C|{U}|Sorcery||| +Savage Gorilla|Apocalypse|85|C|{4}{G}|Creature — Ape|3|3| +Wormfang Drake|Judgment|57|C|{2}{U}|Creature — Nightmare Drake|3|4| +Urborg Drake|Invasion|283|U|{1}{U}{B}|Creature — Drake|2|3| +Captain Sisay|Invasion|237|R|{2}{G}{W}|Legendary Creature — Human Soldier|2|2| +Hanna, Ship's Navigator|Invasion|249|R|{1}{W}{U}|Legendary Creature — Human Artificer|1|2| +Meteor Crater|Planeshift|140|R||Land||| +Terminal Moraine|Planeshift|142|U||Land||| +Protective Sphere|Invasion|26|C|{2}{W}|Enchantment||| +Desolation Angel|Apocalypse|38|R|{3}{B}{B}|Creature — Angel|5|4| +Implode|Planeshift|62|U|{4}{R}|Sorcery||| +Evasive Action|Apocalypse|23|U|{1}{U}|Instant||| +Flametongue Kavu|Planeshift|60|U|{3}{R}|Creature — Kavu|4|2| +Honorable Scout|Planeshift|8|C|{W}|Creature — Human Soldier Scout|1|1| +Emblazoned Golem|Apocalypse|136|U|{2}|Artifact Creature — Golem|1|2| +Maggot Carrier|Planeshift|45|C|{B}|Creature — Zombie|1|1| +Kavu Recluse|Planeshift|64|C|{2}{R}|Creature — Kavu|2|2| +Mogg Sentry|Planeshift|69|R|{R}|Creature — Goblin Warrior|1|1| +Samite Pilgrim|Planeshift|15|C|{1}{W}|Creature — Human Cleric|1|1| +Mogg Jailer|Planeshift|68|U|{1}{R}|Creature — Goblin|2|2| +Day|Apocalypse|131|U|{2}{W}|Instant||| +March of Souls|Planeshift|10|R|{4}{W}|Sorcery||| +Carrion Rats|Torment|54|C|{B}|Creature — Rat|2|1| +Phyrexian Bloodstock|Planeshift|50|C|{4}{B}|Creature — Zombie|3|3| +Phyrexian Tyranny|Planeshift|118|R|{U}{B}{R}|Enchantment||| +Harsh Judgment|Invasion|19|R|{2}{W}{W}|Enchantment||| +Aurora Griffin|Planeshift|2|C|{3}{W}|Creature — Griffin|2|2| +Disciple of Kangee|Planeshift|3|C|{2}{W}|Creature — Human Wizard|2|2| +Quirion Dryad|Planeshift|89|R|{1}{G}|Creature — Dryad|1|1| +Psychic Battle|Invasion|68|R|{3}{U}{U}|Enchantment||| +Strafe|Planeshift|73|U|{R}|Sorcery||| +Shifting Sky|Planeshift|32|U|{2}{U}|Enchantment||| +Hobble|Planeshift|7|C|{2}{W}|Enchantment — Aura||| +Vodalian Merchant|Invasion|85|C|{1}{U}|Creature — Merfolk|1|2| +Ravenous Rats|Invasion|120|C|{1}{B}|Creature — Rat|1|1| +Plains|Invasion|332|L||Basic Land — Plains||| +Plains|Invasion|333|L||Basic Land — Plains||| +Plains|Invasion|334|L||Basic Land — Plains||| +Island|Invasion|336|L||Basic Land — Island||| +Island|Invasion|337|L||Basic Land — Island||| +Island|Invasion|338|L||Basic Land — Island||| +Swamp|Invasion|340|L||Basic Land — Swamp||| +Swamp|Invasion|341|L||Basic Land — Swamp||| +Swamp|Invasion|342|L||Basic Land — Swamp||| +Mountain|Invasion|344|L||Basic Land — Mountain||| +Mountain|Invasion|345|L||Basic Land — Mountain||| +Mountain|Invasion|346|L||Basic Land — Mountain||| +Forest|Invasion|348|L||Basic Land — Forest||| +Forest|Invasion|349|L||Basic Land — Forest||| +Forest|Invasion|350|L||Basic Land — Forest||| +Quirion Explorer|Planeshift|90|C|{1}{G}|Creature — Elf Druid Scout|1|1| +Strongarm Tactics|Onslaught|173|R|{1}{B}|Sorcery||| +Arctic Merfolk|Planeshift|21|C|{1}{U}|Creature — Merfolk|1|1| +Spirit Flare|Torment|15|C|{3}{W}|Instant||| +Sea Snidd|Planeshift|31|C|{4}{U}|Creature — Beast|3|3| +Mire Kavu|Planeshift|67|C|{3}{R}|Creature — Kavu|3|2| +Volcano Imp|Planeshift|56|C|{3}{B}|Creature — Imp|2|2| +Tunneler Wurm|Judgment|135|U|{6}{G}{G}|Creature — Wurm|6|6| +Coalition Honor Guard|Apocalypse|3|C|{3}{W}|Creature — Human Flagbearer|2|4| +Phyrexian Infiltrator|Invasion|116|R|{2}{B}|Creature — Minion|2|2| +Quicksilver Dagger|Apocalypse|118|C|{1}{U}{R}|Enchantment — Aura||| +Stone Kavu|Planeshift|93|C|{4}{G}|Creature — Kavu|3|3| +Metathran Transport|Invasion|62|U|{1}{U}{U}|Creature — Metathran|1|3| +Tsabo's Decree|Invasion|129|R|{5}{B}|Instant||| +Mana Cylix|Planeshift|132|U|{1}|Artifact||| +Aura Blast|Planeshift|1|C|{1}{W}|Instant||| +Allied Strategies|Planeshift|20|U|{4}{U}|Sorcery||| +Stand or Fall|Invasion|171|R|{3}{R}|Enchantment||| +Primal Growth|Planeshift|87|C|{2}{G}|Sorcery||| +Magnigoth Treefolk|Planeshift|82|R|{4}{G}|Creature — Treefolk|2|6| +Skyshroud Blessing|Planeshift|92|U|{1}{G}|Instant||| +Surprise Deployment|Planeshift|18|U|{3}{W}|Instant||| +Dwell on the Past|Torment|124|U|{G}|Sorcery||| +Sisay's Ingenuity|Planeshift|33|C|{U}|Enchantment — Aura||| +Tahngarth, Talruum Hero|Planeshift|74|R|{3}{R}{R}|Legendary Creature — Minotaur Warrior|4|4| +Amphibious Kavu|Planeshift|78|C|{2}{G}|Creature — Kavu|2|2| +Natural Emergence|Planeshift|117|R|{2}{R}{G}|Enchantment||| +Gaea's Herald|Planeshift|80|R|{1}{G}|Creature — Elf|1|1| +Nemata, Grove Guardian|Planeshift|85|R|{4}{G}{G}|Legendary Creature — Treefolk|4|5| +Dark Suspicions|Planeshift|40|R|{2}{B}{B}|Enchantment||| +Insolence|Planeshift|63|C|{2}{R}|Enchantment — Aura||| +Quirion Sentinel|Invasion|204|C|{1}{G}|Creature — Elf Druid|2|1| +Voice of All|Planeshift|19|U|{2}{W}{W}|Creature — Angel|2|2| +Heroic Defiance|Planeshift|6|C|{1}{W}|Enchantment — Aura||| +Mystic Snake|Apocalypse|112|R|{1}{G}{U}{U}|Creature — Snake|2|2| +Diabolic Intent|Planeshift|42|R|{1}{B}|Sorcery||| +Dominaria's Judgment|Planeshift|4|R|{2}{W}|Instant||| +Legacy Weapon|Apocalypse|137|R|{7}|Legendary Artifact||| +Prowling Pangolin|Onslaught|163|U|{3}{B}{B}|Creature — Anteater Beast|6|5| +Mind Sludge|Torment|70|U|{4}{B}|Sorcery||| +False Cure|Onslaught|146|R|{B}{B}|Instant||| +Caldera Kavu|Planeshift|58|C|{2}{R}|Creature — Kavu|2|2| +Elvish Champion|Invasion|186|R|{1}{G}{G}|Creature — Elf|2|2| +Illuminate|Apocalypse|63|U|{X}{R}|Sorcery||| +Carrion Wurm|Torment|55|U|{3}{B}{B}|Creature — Zombie Wurm|6|5| +Ice Cave|Apocalypse|24|R|{3}{U}{U}|Enchantment||| +Phyrexian Scuta|Planeshift|51|R|{3}{B}|Creature — Zombie|3|3| +Noxious Vapors|Planeshift|49|U|{1}{B}{B}|Sorcery||| +Fleetfoot Panther|Planeshift|108|U|{1}{G}{W}|Creature — Cat|3|4| +Skyship Weatherlight|Planeshift|133|R|{4}|Legendary Artifact||| +Ertai's Trickery|Planeshift|24|U|{U}|Instant||| +Meddling Mage|Planeshift|116|R|{W}{U}|Creature — Human Wizard|2|2| +Backslide|Onslaught|70|C|{1}{U}|Instant||| +Kird Ape|Beatdown Box Set||C|{R}|Creature — Ape|1|1| +Clockwork Avian|Beatdown Box Set||R|{5}|Artifact Creature — Bird|0|4| +Sengir Vampire|Beatdown Box Set||U|{3}{B}{B}|Creature — Vampire|4|4| +Mahamoti Djinn|Beatdown Box Set||R|{4}{U}{U}|Creature — Djinn|5|6| +Force of Nature|Beatdown Box Set||R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Shambling Strider|Beatdown Box Set||C|{4}{G}{G}|Creature — Yeti|5|5| +Diabolic Vision|Beatdown Box Set||U|{U}{B}|Sorcery||| +Quirion Elves|Beatdown Box Set||C|{1}{G}|Creature — Elf Druid|1|1| +Tar Pit Warrior|Beatdown Box Set||C|{2}{B}|Creature — Cyclops Warrior|3|4| +Impulse|Beatdown Box Set||C|{1}{U}|Instant||| +Clockwork Beast|Beatdown Box Set||R|{6}|Artifact Creature — Beast|0|4| +Drain Life|Beatdown Box Set||C|{X}{1}{B}|Sorcery||| +Leviathan|Beatdown Box Set||R|{5}{U}{U}{U}{U}|Creature — Leviathan|10|10| +Ball Lightning|Beatdown Box Set||R|{R}{R}{R}|Creature — Elemental|6|1| +Fireball|Beatdown Box Set||C|{X}{R}|Sorcery||| +Shivan Dragon|Beatdown Box Set||R|{4}{R}{R}|Creature — Dragon|5|5| +Svyelunite Temple|Beatdown Box Set||U||Land||| +Hulking Cyclops|Beatdown Box Set||U|{3}{R}{R}|Creature — Cyclops|5|5| +Cloud Djinn|Beatdown Box Set||U|{5}{U}|Creature — Djinn|5|4| +Bloodrock Cyclops|Beatdown Box Set||C|{2}{R}|Creature — Cyclops|3|3| +Giant Crab|Beatdown Box Set||C|{4}{U}|Creature — Crab|3|3| +Segmented Wurm|Beatdown Box Set||U|{3}{R}{G}|Creature — Wurm|5|5| +Death Stroke|Beatdown Box Set||C|{B}{B}|Sorcery||| +Yavimaya Wurm|Beatdown Box Set||C|{4}{G}{G}|Creature — Wurm|6|4| +Dark Ritual|Beatdown Box Set||C|{B}|Instant||| +Thundering Giant|Beatdown Box Set||U|{3}{R}{R}|Creature — Giant|4|3| +Slippery Karst|Beatdown Box Set||C||Land||| +Smoldering Crater|Beatdown Box Set||C||Land||| +Remote Isle|Beatdown Box Set||C||Land||| +Polluted Mire|Beatdown Box Set||C||Land||| +Killer Whale|Beatdown Box Set||U|{3}{U}{U}|Creature — Whale|3|5| +Sonic Burst|Beatdown Box Set||C|{1}{R}|Instant||| +Crashing Boars|Beatdown Box Set||U|{3}{G}{G}|Creature — Boar|4|4| +Gaseous Form|Beatdown Box Set||C|{2}{U}|Enchantment — Aura||| +Vigilant Drake|Beatdown Box Set||C|{4}{U}|Creature — Drake|3|3| +Lava Axe|Beatdown Box Set||C|{4}{R}|Sorcery||| +Counterspell|Beatdown Box Set||C|{U}{U}|Instant||| +Shock|Beatdown Box Set||C|{R}|Instant||| +Talruum Minotaur|Beatdown Box Set||C|{2}{R}{R}|Creature — Minotaur Berserker|3|3| +Wild Growth|Beatdown Box Set||C|{G}|Enchantment — Aura||| +Fog|Beatdown Box Set||C|{G}|Instant||| +Giant Growth|Beatdown Box Set||C|{G}|Instant||| +Ebon Stronghold|Beatdown Box Set||U||Land||| +Dwarven Ruins|Beatdown Box Set||U||Land||| +Havenwood Battleground|Beatdown Box Set||U||Land||| +Blizzard Elemental|Beatdown Box Set||R|{5}{U}{U}|Creature — Elemental|5|5| +Air Elemental|Beatdown Box Set||U|{3}{U}{U}|Creature — Elemental|4|4| +Balduvian Horde|Beatdown Box Set||R|{2}{R}{R}|Creature — Human Barbarian|5|5| +Skittering Horror|Beatdown Box Set||C|{2}{B}|Creature — Horror|4|3| +Fog Elemental|Beatdown Box Set||C|{2}{U}|Creature — Elemental|4|4| +Power Sink|Beatdown Box Set||C|{X}{U}|Instant||| +Terror|Beatdown Box Set||C|{1}{B}|Instant||| +Fallen Angel|Beatdown Box Set||R|{3}{B}{B}|Creature — Angel|3|3| +Plated Spider|Beatdown Box Set||C|{4}{G}|Creature — Spider|4|4| +Spectral Lynx|Apocalypse|17|R|{1}{W}|Creature — Cat Spirit|2|1| +Dwarven Patrol|Apocalypse|61|U|{2}{R}|Creature — Dwarf|4|2| +Jaded Response|Apocalypse|26|C|{1}{U}|Instant||| +Wretched Anurid|Onslaught|183|C|{1}{B}|Creature — Zombie Frog Beast|3|3| +Day|Apocalypse|131|U|{2}{W}|Instant||| +Phyrexian Gargantua|Apocalypse|48|U|{4}{B}{B}|Creature — Horror|4|4| +Accursed Centaur|Onslaught|123|C|{B}|Creature — Zombie Centaur|2|2| +Urborg Elf|Apocalypse|90|C|{1}{G}|Creature — Elf Druid|1|1| +Tranquil Path|Apocalypse|89|C|{4}{G}|Sorcery||| +Barbarian Outcast|Torment|92|C|{1}{R}|Creature — Human Barbarian Beast|2|2| +Cephalid Constable|Judgment|35|R|{1}{U}{U}|Creature — Cephalid Wizard|1|1| +Spawning Pit|Darksteel|141|U|{2}|Artifact||| +Dodecapod|Apocalypse|134|U|{4}|Artifact Creature — Golem|3|3| +Dragon Arch|Apocalypse|135|U|{5}|Artifact||| +Fungal Shambler|Apocalypse|100|R|{4}{G}{U}{B}|Creature — Fungus Beast|6|4| +Patriarch's Bidding|Onslaught|161|R|{3}{B}{B}|Sorcery||| +Razorfin Hunter|Apocalypse|119|C|{U}{R}|Creature — Merfolk Goblin|1|1| +Gaea's Skyfolk|Apocalypse|101|C|{G}{U}|Creature — Elf Merfolk|2|2| +Putrid Warrior|Apocalypse|117|C|{W}{B}|Creature — Zombie Soldier Warrior|2|2| +Llanowar Dead|Apocalypse|109|C|{B}{G}|Creature — Zombie Elf|2|2| +Goblin Legionnaire|Apocalypse|103|C|{R}{W}|Creature — Goblin Soldier|2|2| +Unnatural Selection|Apocalypse|32|R|{1}{U}|Enchantment||| +Sleeping Potion|Planeshift|34|C|{1}{U}|Enchantment — Aura||| +Death Bomb|Planeshift|41|C|{3}{B}|Instant||| +Standard Bearer|Apocalypse|18|C|{1}{W}|Creature — Human Flagbearer|1|1| +Squee's Embrace|Apocalypse|122|C|{R}{W}|Enchantment — Aura||| +Manacles of Decay|Apocalypse|14|C|{1}{W}|Enchantment — Aura||| +Coalition Flag|Apocalypse|2|U|{W}|Enchantment — Aura||| +Gerrard Capashen|Apocalypse|11|R|{3}{W}{W}|Legendary Creature — Human Soldier|3|4| +Living Airship|Apocalypse|28|C|{3}{U}|Creature — Metathran|2|3| +Jilt|Apocalypse|27|C|{1}{U}|Instant||| +Mournful Zombie|Apocalypse|43|C|{2}{B}|Creature — Zombie|2|1| +Zombie Boa|Apocalypse|54|C|{4}{B}|Creature — Zombie Snake|3|3| +Urborg Uprising|Apocalypse|53|C|{4}{B}|Sorcery||| +Tundra Kavu|Apocalypse|71|C|{2}{R}|Creature — Kavu|2|2| +Bloodfire Dwarf|Apocalypse|56|C|{R}|Creature — Dwarf|1|1| +Kavu Glider|Apocalypse|64|C|{2}{R}|Creature — Kavu|2|1| +Dwarven Landslide|Apocalypse|60|C|{3}{R}|Sorcery||| +Bomb Squad|Odyssey|179|R|{3}{R}|Creature — Dwarf|1|1| +Penumbra Bobcat|Apocalypse|82|C|{2}{G}|Creature — Cat|2|1| +Lay of the Land|Apocalypse|81|C|{G}|Sorcery||| +Soul Link|Apocalypse|120|C|{1}{W}{B}|Enchantment — Aura||| +Ana Sanctuary|Apocalypse|74|U|{2}{G}|Enchantment||| +Squee's Revenge|Apocalypse|123|U|{1}{U}{R}|Sorcery||| +Lashknife Barrier|Planeshift|9|U|{2}{W}|Enchantment||| +Planar Overlay|Planeshift|28|R|{2}{U}|Sorcery||| +Warped Devotion|Planeshift|57|U|{2}{B}|Enchantment||| +Deadapult|Planeshift|59|R|{2}{R}|Enchantment||| +Gaea's Might|Planeshift|81|C|{G}|Instant||| +Mirrorwood Treefolk|Planeshift|83|U|{3}{G}|Creature — Treefolk|2|4| +Dralnu's Crusade|Planeshift|104|R|{1}{B}{R}|Enchantment||| +Crossbow Infantry|Seventh Edition|12|C|{1}{W}|Creature — Human Soldier Archer|1|1| +Sanctimony|Seventh Edition|39|U|{1}{W}|Enchantment||| +Glorious Anthem|Seventh Edition|17|R|{1}{W}{W}|Enchantment||| +Coral Merfolk|Seventh Edition|66|C|{1}{U}|Creature — Merfolk|2|1| +Vigilant Drake|Seventh Edition|109|C|{4}{U}|Creature — Drake|3|3| +Dead Ringers|Apocalypse|37|C|{4}{B}|Sorcery||| +Minotaur Tactician|Apocalypse|65|C|{3}{R}|Creature — Minotaur|1|1| +Waterspout Elemental|Planeshift|38|R|{3}{U}{U}|Creature — Elemental|3|4| +Orim's Chant|Planeshift|11|R|{W}|Instant||| +Helionaut|Apocalypse|13|C|{2}{W}|Creature — Human Soldier|1|2| +Vodalian Mystic|Apocalypse|33|U|{1}{U}|Creature — Merfolk Wizard|1|1| +Memory Lapse|Seventh Edition|88|C|{1}{U}|Instant||| +Ancestral Memories|Seventh Edition|59|R|{2}{U}{U}{U}|Sorcery||| +Necra Sanctuary|Apocalypse|45|U|{2}{B}|Enchantment||| +Divine Light|Apocalypse|8|C|{W}|Sorcery||| +Laquatus's Disdain|Judgment|44|U|{1}{U}|Instant||| +Bog Gnarr|Apocalypse|76|C|{4}{G}|Creature — Beast|2|2| +Glade Gnarr|Apocalypse|78|C|{5}{G}|Creature — Beast|4|4| +Tahngarth's Glare|Apocalypse|70|C|{R}|Sorcery||| +Reef Shaman|Apocalypse|29|C|{U}|Creature — Merfolk Shaman|0|2| +Symbiotic Deployment|Apocalypse|88|R|{2}{G}|Enchantment||| +Death|Apocalypse|130|U|{1}{B}|Sorcery||| +Death|Apocalypse|130|U|{1}{B}|Sorcery||| +Reality|Apocalypse|129|U|{2}{G}|Instant||| +Reality|Apocalypse|129|U|{2}{G}|Instant||| +Ice|Apocalypse|128|U|{1}{U}|Instant||| +Ice|Apocalypse|128|U|{1}{U}|Instant||| +Order|Apocalypse|132|U|{3}{W}|Instant||| +Chaos|Apocalypse|132|U|{2}{R}|Instant||| +Guided Passage|Apocalypse|105|R|{U}{R}{G}|Sorcery||| +Mind Extraction|Apocalypse|42|C|{2}{B}|Sorcery||| +Ceta Sanctuary|Apocalypse|20|U|{2}{U}|Enchantment||| +Llawan, Cephalid Empress|Torment|42|R|{3}{U}|Legendary Creature — Cephalid|2|3| +Dega Sanctuary|Apocalypse|5|U|{2}{W}|Enchantment||| +Raka Sanctuary|Apocalypse|67|U|{2}{R}|Enchantment||| +Prophetic Bolt|Apocalypse|116|R|{3}{U}{R}|Instant||| +Quagmire Druid|Apocalypse|51|C|{2}{B}|Creature — Zombie Druid|2|2| +Gainsay|Planeshift|26|U|{1}{U}|Instant||| +Erhnam Djinn|Beatdown Box Set||U|{3}{G}|Creature — Djinn|4|5| +Shriek of Dread|Planeshift|53|C|{1}{B}|Instant||| +Last Stand|Apocalypse|107|R|{W}{U}{B}{R}{G}|Sorcery||| +Swamp|Beatdown Box Set||L||Basic Land — Swamp||| +Swamp|Beatdown Box Set||L||Basic Land — Swamp||| +Swamp|Beatdown Box Set||L||Basic Land — Swamp||| +Island|Beatdown Box Set||L||Basic Land — Island||| +Island|Beatdown Box Set||L||Basic Land — Island||| +Island|Beatdown Box Set||L||Basic Land — Island||| +Mountain|Beatdown Box Set||L||Basic Land — Mountain||| +Mountain|Beatdown Box Set||L||Basic Land — Mountain||| +Mountain|Beatdown Box Set||L||Basic Land — Mountain||| +Forest|Beatdown Box Set||L||Basic Land — Forest||| +Forest|Beatdown Box Set||L||Basic Land — Forest||| +Forest|Beatdown Box Set||L||Basic Land — Forest||| +Bone Harvest|Beatdown Box Set||C|{2}{B}|Instant||| +Brainstorm|Beatdown Box Set||C|{U}|Instant||| +Cloud Elemental|Beatdown Box Set||C|{2}{U}|Creature — Elemental|2|3| +Coercion|Beatdown Box Set||C|{2}{B}|Sorcery||| +Crash of Rhinos|Beatdown Box Set||C|{6}{G}{G}|Creature — Rhino|8|4| +Deadly Insect|Beatdown Box Set||C|{4}{G}|Creature — Insect|6|1| +Diabolic Edict|Beatdown Box Set||C|{1}{B}|Instant||| +Gravedigger|Beatdown Box Set||C|{3}{B}|Creature — Zombie|2|2| +Hollow Dogs|Beatdown Box Set||C|{4}{B}|Creature — Zombie Hound|3|3| +Lightning Bolt|Beatdown Box Set||C|{R}|Instant||| +Llanowar Elves|Beatdown Box Set||C|{G}|Creature — Elf Druid|1|1| +Lowland Giant|Beatdown Box Set||C|{2}{R}{R}|Creature — Giant|4|3| +Raging Goblin|Beatdown Box Set||C|{R}|Creature — Goblin Berserker|1|1| +Rampant Growth|Beatdown Box Set||C|{1}{G}|Sorcery||| +Scaled Wurm|Beatdown Box Set||C|{7}{G}|Creature — Wurm|7|6| +Skittering Skirge|Beatdown Box Set||C|{B}{B}|Creature — Imp|3|2| +Snapping Drake|Beatdown Box Set||C|{3}{U}|Creature — Drake|3|2| +Tolarian Winds|Beatdown Box Set||C|{1}{U}|Instant||| +Viashino Warrior|Beatdown Box Set||C|{3}{R}|Creature — Viashino Warrior|4|2| +Wayward Soul|Beatdown Box Set||C|{2}{U}{U}|Creature — Spirit|3|2| +Thunderbolt|Beatdown Box Set||C|{1}{R}|Instant||| +Woolly Spider|Beatdown Box Set||C|{1}{G}{G}|Creature — Spider|2|3| +Feral Shadow|Beatdown Box Set||C|{2}{B}|Creature — Nightstalker|2|1| +Suffocating Blast|Apocalypse|124|R|{1}{U}{U}{R}|Instant||| +Scathe Zombies|Seventh Edition|161|C|{2}{B}|Creature — Zombie|2|2| +Morgue Toad|Planeshift|46|C|{2}{B}|Creature — Frog|2|2| +Last Caress|Apocalypse|41|C|{2}{B}|Sorcery||| +False Dawn|Apocalypse|10|R|{1}{W}|Sorcery||| +Alpha Kavu|Planeshift|77|U|{2}{G}|Creature — Kavu|2|2| +Questing Phelddagrif|Planeshift|119|R|{1}{G}{W}{U}|Creature — Phelddagrif|4|4| +Lightning Angel|Apocalypse|108|R|{1}{R}{W}{U}|Creature — Angel|3|4| +Enlistment Officer|Apocalypse|9|U|{3}{W}|Creature — Human Soldier|2|3| +Tidal Courier|Apocalypse|31|U|{3}{U}|Creature — Merfolk|1|2| +Phyrexian Rager|Apocalypse|49|C|{2}{B}|Creature — Horror|2|2| +Grave Defiler|Apocalypse|40|U|{3}{B}|Creature — Zombie|2|1| +Phyrexian Arena|Apocalypse|47|R|{1}{B}{B}|Enchantment||| +Goblin Ringleader|Apocalypse|62|U|{3}{R}|Creature — Goblin|2|2| +Sylvan Messenger|Apocalypse|87|U|{3}{G}|Creature — Elf|2|2| +Penumbra Wurm|Apocalypse|84|R|{5}{G}{G}|Creature — Wurm|6|6| +Whirlpool Rider|Apocalypse|35|C|{1}{U}|Creature — Merfolk|1|1| +Whirlpool Drake|Apocalypse|34|U|{3}{U}|Creature — Drake|2|2| +Whirlpool Warrior|Apocalypse|36|R|{2}{U}|Creature — Merfolk Warrior|2|2| +Shield of Duty and Reason|Apocalypse|16|C|{W}|Enchantment — Aura||| +Confound|Planeshift|22|C|{1}{U}|Instant||| +Kavu Mauler|Apocalypse|80|R|{4}{G}{G}|Creature — Kavu|4|4| +Brass Herald|Apocalypse|133|U|{6}|Artifact Creature — Golem|2|2| +Strength of Night|Apocalypse|86|C|{2}{G}|Instant||| +Minotaur Illusionist|Apocalypse|111|U|{3}{U}{R}|Creature — Minotaur Wizard|3|4| +Spiritmonger|Apocalypse|121|R|{3}{B}{G}|Creature — Beast|6|6| +Fervent Charge|Apocalypse|98|R|{1}{W}{B}{R}|Enchantment||| +Gaea's Balance|Apocalypse|77|U|{3}{G}|Sorcery||| +Ζther Mutation|Apocalypse|91|U|{3}{G}{U}|Sorcery||| +Cromat|Apocalypse|94|R|{W}{U}{B}{R}{G}|Legendary Creature — Illusion|5|5| +Suppress|Apocalypse|52|U|{2}{B}|Sorcery||| +Kavu Howler|Apocalypse|79|U|{4}{G}{G}|Creature — Kavu|4|5| +Orim's Thunder|Apocalypse|15|C|{2}{W}|Instant||| +Shimmering Mirage|Apocalypse|30|C|{1}{U}|Instant||| +Coastal Drake|Apocalypse|22|C|{2}{U}|Creature — Drake|2|1| +Gallantry|Odyssey|23|U|{1}{W}|Instant||| +Foul Presence|Apocalypse|39|U|{2}{B}|Enchantment — Aura||| +Bloodfire Kavu|Apocalypse|58|U|{2}{R}{R}|Creature — Kavu|2|2| +Bloodfire Colossus|Apocalypse|55|R|{6}{R}{R}|Creature — Giant|6|6| +Diversionary Tactics|Apocalypse|7|U|{3}{W}|Enchantment||| +Tahngarth, Talruum Hero|Planeshift|74|R|{3}{R}{R}|Legendary Creature — Minotaur Warrior|4|4| +Ertai, the Corrupted|Planeshift|107|R|{2}{W}{U}{B}|Legendary Creature — Human Wizard|3|4| +Skyship Weatherlight|Planeshift|133|R|{4}|Legendary Artifact||| +Bloodfire Infusion|Apocalypse|57|C|{2}{R}|Enchantment — Aura||| +Jungle Barrier|Apocalypse|106|U|{2}{G}{U}|Creature — Plant Wall|2|6| +Vizzerdrix|Seventh Edition|110|R|{6}{U}|Creature — Rabbit Beast|6|6| +Desolation Giant|Apocalypse|59|R|{2}{R}{R}|Creature — Giant|3|3| +Death Grasp|Apocalypse|95|R|{X}{W}{B}|Sorcery||| +Gerrard's Verdict|Apocalypse|102|U|{W}{B}|Sorcery||| +Goblin Trenches|Apocalypse|104|R|{1}{R}{W}|Enchantment||| +Ebony Treefolk|Apocalypse|97|U|{1}{B}{G}|Creature — Treefolk|3|3| +Hallow|Darksteel|4|C|{W}|Instant||| +Equal Treatment|Torment|4|U|{1}{W}|Instant||| +Chainer's Edict|Torment|57|U|{1}{B}|Sorcery||| +Smash|Apocalypse|69|C|{2}{R}|Instant||| +Mask of Intolerance|Apocalypse|138|R|{2}|Artifact||| +Blessed Orator|Odyssey|12|U|{3}{W}|Creature — Human Cleric|1|4| +Pilgrim of Virtue|Odyssey|41|C|{2}{W}|Creature — Human Cleric|1|3| +Pilgrim of Justice|Odyssey|40|C|{2}{W}|Creature — Human Cleric|1|3| +Aven Archer|Odyssey|6|U|{3}{W}{W}|Creature — Bird Soldier Archer|2|2| +Hallowed Healer|Odyssey|25|C|{2}{W}|Creature — Human Cleric|1|1| +Aven Cloudchaser|Odyssey|7|C|{3}{W}|Creature — Bird Soldier|2|2| +Tireless Tribe|Odyssey|56|C|{W}|Creature — Human Nomad|1|1| +Mystic Visionary|Odyssey|35|C|{1}{W}|Creature — Human Nomad Mystic|2|1| +Vengeful Dreams|Torment|21|R|{W}{W}|Instant||| +Angelic Wall|Odyssey|3|C|{1}{W}|Creature — Wall|0|4| +Auramancer|Odyssey|5|C|{2}{W}|Creature — Human Wizard|2|2| +Embolden|Odyssey|22|C|{2}{W}|Instant||| +Life Burst|Odyssey|30|C|{1}{W}|Instant||| +Hypochondria|Torment|7|U|{1}{W}|Enchantment||| +Second Thoughts|Odyssey|45|C|{4}{W}|Instant||| +Kirtar's Desire|Odyssey|27|C|{W}|Enchantment — Aura||| +Cephalid Aristocrat|Torment|27|C|{4}{U}|Creature — Cephalid|3|3| +Aven Smokeweaver|Odyssey|64|U|{2}{U}{U}|Creature — Bird Soldier|2|3| +Cephalid Scout|Odyssey|74|C|{1}{U}|Creature — Cephalid Wizard Scout|1|1| +Cephalid Broker|Odyssey|71|U|{3}{U}|Creature — Cephalid|2|2| +Scrivener|Odyssey|100|C|{4}{U}|Creature — Human Wizard|2|2| +Skywing Aven|Torment|47|C|{2}{U}|Creature — Bird Soldier|2|1| +Graxiplon|Onslaught|86|U|{5}{U}|Creature — Beast|3|4| +Krosan Constrictor|Torment|129|C|{3}{G}|Creature — Snake|2|2| +Aven Windreader|Odyssey|65|C|{3}{U}{U}|Creature — Bird Soldier Wizard|3|3| +Cephalid Pathmage|Legions|31|C|{2}{U}|Creature — Cephalid Wizard|1|2| +Hydromorph Gull|Torment|40|U|{3}{U}{U}|Creature — Elemental Bird|3|3| +Churning Eddy|Torment|32|C|{3}{U}|Sorcery||| +Obsessive Search|Torment|43|C|{U}|Instant||| +Rites of Refusal|Odyssey|99|C|{1}{U}|Instant||| +Repel|Odyssey|98|C|{3}{U}|Instant||| +Fervent Denial|Odyssey|86|U|{3}{U}{U}|Instant||| +Ζther Burst|Odyssey|60|C|{1}{U}|Instant||| +Careful Study|Odyssey|70|C|{U}|Sorcery||| +Aboshan's Desire|Odyssey|59|C|{U}|Enchantment — Aura||| +Dirty Wererat|Odyssey|130|C|{3}{B}|Creature — Human Rat Minion|2|3| +Cabal Inquisitor|Odyssey|119|C|{1}{B}|Creature — Human Minion|1|1| +Soul Scourge|Torment|85|C|{4}{B}|Creature — Nightmare Horror|3|2| +Zombie Assassin|Odyssey|168|C|{4}{B}|Creature — Zombie Assassin|3|2| +Frightcrawler|Odyssey|138|C|{1}{B}|Creature — Horror|1|1| +Whispering Shade|Odyssey|167|C|{3}{B}|Creature — Shade|1|1| +Zombie Cannibal|Odyssey|169|C|{B}|Creature — Zombie|1|1| +Famished Ghoul|Odyssey|135|U|{3}{B}|Creature — Zombie|3|2| +Overeager Apprentice|Odyssey|154|C|{2}{B}|Creature — Human Minion|1|2| +Balshan Beguiler|Odyssey|66|U|{2}{U}|Creature — Human Wizard|1|1| +Faceless Butcher|Torment|60|C|{2}{B}{B}|Creature — Nightmare Horror|2|3| +Afflict|Odyssey|115|C|{2}{B}|Instant||| +Gravedigger|Odyssey|140|C|{3}{B}|Creature — Zombie|2|2| +Morgue Theft|Odyssey|151|C|{1}{B}|Sorcery||| +Ghastly Demise|Odyssey|139|C|{B}|Instant||| +Morbid Hunger|Odyssey|150|C|{4}{B}{B}|Sorcery||| +Mind Burst|Odyssey|148|C|{1}{B}|Sorcery||| +Bamboozle|Odyssey|68|U|{2}{U}|Sorcery||| +Patriarch's Desire|Odyssey|156|C|{3}{B}|Enchantment — Aura||| +Pardic Firecat|Odyssey|211|C|{3}{R}|Creature — Elemental Cat|2|3| +Halberdier|Odyssey|196|C|{3}{R}|Creature — Human Barbarian|3|1| +Ember Beast|Odyssey|190|C|{2}{R}|Creature — Beast|3|4| +Pardic Swordsmith|Odyssey|213|C|{2}{R}|Creature — Dwarf|1|1| +Crazed Firecat|Torment|94|U|{5}{R}{R}|Creature — Elemental Cat|4|4| +Chainflinger|Odyssey|181|C|{3}{R}|Creature — Beast|2|2| +Barbarian Lunatic|Odyssey|175|C|{2}{R}|Creature — Human Barbarian|2|1| +Anarchist|Odyssey|173|C|{4}{R}|Creature — Human Wizard|2|2| +Thermal Blast|Odyssey|224|C|{4}{R}|Instant||| +Dwarven Grunt|Odyssey|185|C|{R}|Creature — Dwarf|1|1| +Kamahl's Desire|Odyssey|199|C|{1}{R}|Enchantment — Aura||| +Swirling Sandstorm|Judgment|102|C|{3}{R}|Sorcery||| +Lava Blister|Odyssey|200|U|{1}{R}|Sorcery||| +Rites of Initiation|Odyssey|217|C|{R}|Instant||| +Lava Dart|Judgment|94|C|{R}|Instant||| +Flame Burst|Odyssey|194|C|{1}{R}|Instant||| +Volcanic Spray|Odyssey|226|U|{1}{R}|Sorcery||| +Earth Rift|Odyssey|189|C|{3}{R}|Sorcery||| +Longhorn Firebeast|Torment|103|C|{2}{R}|Creature — Elemental Ox Beast|3|2| +Nantuko Disciple|Odyssey|253|C|{3}{G}|Creature — Insect Druid|2|2| +Woodland Druid|Odyssey|284|C|{G}|Creature — Human Druid|1|2| +Diligent Farmhand|Odyssey|237|C|{G}|Creature — Human Druid|1|1| +Metamorphic Wurm|Odyssey|250|U|{3}{G}{G}|Creature — Elephant Wurm|3|3| +Krosan Avenger|Odyssey|247|C|{2}{G}|Creature — Human Druid|3|1| +Howling Gale|Odyssey|244|U|{1}{G}|Instant||| +Wild Mongrel|Odyssey|283|C|{1}{G}|Creature — Hound|2|2| +Druid Lyrist|Odyssey|238|C|{G}|Creature — Human Druid|1|1| +Simplify|Odyssey|269|C|{G}|Sorcery||| +Krosan Archer|Odyssey|246|C|{3}{G}|Creature — Centaur Archer|2|3| +Rabid Elephant|Odyssey|263|C|{4}{G}|Creature — Elephant|3|4| +Leaf Dancer|Odyssey|249|C|{1}{G}{G}|Creature — Centaur|2|2| +Cartographer|Odyssey|232|C|{2}{G}|Creature — Human|2|2| +Nimble Mongoose|Odyssey|258|U|{G}|Creature — Mongoose|1|1| +Werebear|Odyssey|282|C|{1}{G}|Creature — Human Bear Druid|1|1| +Call of the Herd|Odyssey|231|R|{2}{G}|Sorcery||| +Possessed Centaur|Torment|137|R|{2}{G}{G}|Creature — Centaur Horror|3|3| +Muscle Burst|Odyssey|252|C|{1}{G}|Instant||| +Rites of Spring|Odyssey|265|C|{1}{G}|Sorcery||| +Sylvan Might|Odyssey|277|U|{1}{G}|Instant||| +Seton's Desire|Odyssey|268|C|{2}{G}|Enchantment — Aura||| +Skycloud Expanse|Odyssey|327|R||Land||| +Darkwater Catacombs|Odyssey|319|R||Land||| +Shadowblood Ridge|Odyssey|326|R||Land||| +Mossfire Valley|Odyssey|321|R||Land||| +Sungrass Prairie|Odyssey|328|R||Land||| +Beloved Chaplain|Odyssey|11|U|{1}{W}|Creature — Human Cleric|1|1| +Petradon|Torment|108|R|{6}{R}{R}|Creature — Nightmare Beast|5|6| +Centaur Veteran|Torment|123|C|{5}{G}|Creature — Centaur|3|3| +Mystic Zealot|Odyssey|36|C|{3}{W}|Creature — Human Nomad Mystic|2|4| +Mystic Crusader|Odyssey|33|R|{1}{W}{W}|Creature — Human Nomad Mystic|2|1| +Resilient Wanderer|Odyssey|43|U|{2}{W}{W}|Creature — Human Nomad|2|3| +Nomad Decoy|Odyssey|37|U|{2}{W}|Creature — Human Nomad|1|2| +Luminous Guardian|Odyssey|31|U|{3}{W}|Creature — Human Nomad|1|4| +Spiritualize|Odyssey|53|U|{2}{W}|Instant||| +Ray of Distortion|Odyssey|42|C|{3}{W}|Instant||| +Sphere of Truth|Odyssey|52|U|{3}{W}|Enchantment||| +Sphere of Reason|Odyssey|51|U|{3}{W}|Enchantment||| +Sphere of Grace|Odyssey|49|U|{3}{W}|Enchantment||| +Sphere of Law|Odyssey|50|U|{3}{W}|Enchantment||| +Sphere of Duty|Odyssey|48|U|{3}{W}|Enchantment||| +Possessed Nomad|Torment|13|R|{2}{W}{W}|Creature — Human Nomad Horror|3|3| +Innocent Blood|Odyssey|145|C|{B}|Sorcery||| +Puppeteer|Odyssey|97|U|{2}{U}|Creature — Human Wizard|1|2| +Balshan Griffin|Odyssey|67|U|{3}{U}{U}|Creature — Griffin|3|2| +Cephalid Looter|Odyssey|72|C|{2}{U}|Creature — Cephalid Rogue|2|1| +Predict|Odyssey|94|U|{1}{U}|Instant||| +Plagiarize|Torment|44|R|{3}{U}|Instant||| +Insidious Dreams|Torment|66|R|{3}{B}|Instant||| +Dematerialize|Odyssey|81|C|{3}{U}|Sorcery||| +Turbulent Dreams|Torment|49|R|{U}{U}|Sorcery||| +Immobilizing Ink|Odyssey|87|C|{1}{U}|Enchantment — Aura||| +Persuasion|Odyssey|92|R|{3}{U}{U}|Enchantment — Aura||| +Think Tank|Odyssey|104|U|{2}{U}|Enchantment||| +Flash of Insight|Judgment|40|U|{X}{1}{U}|Instant||| +Syncopate|Odyssey|103|C|{X}{U}|Instant||| +Painbringer|Odyssey|155|U|{2}{B}{B}|Creature — Human Minion|1|1| +Childhood Horror|Odyssey|123|U|{3}{B}|Creature — Horror|2|2| +Stalking Bloodsucker|Odyssey|163|R|{4}{B}{B}|Creature — Vampire|4|4| +Crypt Creeper|Odyssey|125|C|{1}{B}|Creature — Zombie|2|1| +Frantic Purification|Torment|6|C|{2}{W}|Instant||| +Rotting Giant|Odyssey|158|U|{1}{B}|Creature — Zombie Giant|3|3| +Screams of the Damned|Odyssey|160|U|{3}{B}{B}|Enchantment||| +Buried Alive|Odyssey|118|U|{2}{B}|Sorcery||| +Zombify|Odyssey|171|U|{3}{B}|Sorcery||| +Skull Fracture|Odyssey|162|U|{B}|Sorcery||| +Extract|Odyssey|85|R|{U}|Sorcery||| +Cursed Monstrosity|Odyssey|126|R|{4}{B}|Creature — Horror|4|3| +Dwarven Recruiter|Odyssey|186|U|{2}{R}|Creature — Dwarf|2|2| +Spark Mage|Odyssey|222|U|{R}|Creature — Dwarf Wizard|1|1| +Frenetic Ogre|Odyssey|195|U|{4}{R}|Creature — Ogre|2|3| +Breaking Point|Judgment|81|R|{1}{R}{R}|Sorcery||| +Accelerate|Torment|90|C|{1}{R}|Instant||| +Blazing Salvo|Odyssey|178|C|{R}|Instant||| +Magma Vein|Odyssey|203|U|{2}{R}|Enchantment||| +Shower of Coals|Odyssey|221|U|{3}{R}{R}|Sorcery||| +Battle Strain|Odyssey|177|U|{1}{R}|Enchantment||| +Ember Shot|Judgment|87|C|{6}{R}|Instant||| +Flash of Defiance|Torment|99|C|{1}{R}|Sorcery||| +Recoup|Odyssey|216|U|{1}{R}|Sorcery||| +Liquid Fire|Odyssey|201|U|{4}{R}{R}|Sorcery||| +Demolish|Odyssey|183|U|{3}{R}|Sorcery||| +Overmaster|Torment|104|R|{R}|Sorcery||| +Nantuko Elder|Odyssey|254|U|{2}{G}|Creature — Insect Druid|1|2| +Ivy Elemental|Odyssey|245|R|{X}{G}|Creature — Elemental|0|0| +Krosan Restorer|Torment|130|C|{2}{G}|Creature — Human Druid|1|2| +Acorn Harvest|Torment|118|C|{3}{G}|Sorcery||| +Springing Tiger|Odyssey|272|C|{3}{G}|Creature — Cat|3|3| +Crashing Centaur|Odyssey|235|U|{4}{G}{G}|Creature — Centaur|3|4| +Still Life|Odyssey|275|U|{1}{G}{G}|Enchantment||| +Beast Attack|Odyssey|230|U|{2}{G}{G}{G}|Instant||| +Roar of the Wurm|Odyssey|266|U|{6}{G}|Sorcery||| +Piper's Melody|Odyssey|261|U|{G}|Sorcery||| +Cleansing Meditation|Torment|3|U|{1}{W}{W}|Sorcery||| +Deep Reconnaissance|Odyssey|236|U|{2}{G}|Sorcery||| +Exoskeletal Armor|Judgment|114|U|{1}{G}|Enchantment — Aura||| +Insist|Torment|127|R|{G}|Sorcery||| +Limestone Golem|Odyssey|301|U|{6}|Artifact Creature — Golem|3|4| +Otarian Juggernaut|Odyssey|305|R|{4}|Artifact Creature — Juggernaut|2|3| +Guiltfeeder|Judgment|68|R|{3}{B}{B}|Creature — Horror|0|4| +Skycloud Egg|Odyssey|309|U|{1}|Artifact||| +Sandstone Deadfall|Odyssey|307|U|{3}|Artifact||| +Cabal Coffers|Torment|139|U||Land||| +Steamclaw|Odyssey|310|U|{2}|Artifact||| +Charmed Pendant|Odyssey|298|R|{4}|Artifact||| +Nomad Stadium|Odyssey|322|U||Land||| +Cephalid Coliseum|Odyssey|317|U||Land||| +Cabal Pit|Odyssey|315|U||Land||| +Centaur Garden|Odyssey|316|U||Land||| +Barbarian Ring|Odyssey|313|U||Land||| +Invigorating Falls|Torment|128|C|{2}{G}{G}|Sorcery||| +Restless Dreams|Torment|79|C|{B}|Sorcery||| +Devoted Caretaker|Odyssey|18|R|{W}|Creature — Human Cleric|1|2| +Wayward Angel|Odyssey|57|R|{4}{W}{W}|Creature — Angel Horror|4|4| +Master Apothecary|Odyssey|32|R|{W}{W}{W}|Creature — Human Cleric|2|2| +Major Teroh|Torment|8|R|{3}{W}|Legendary Creature — Bird Soldier|2|3| +Graceful Antelope|Odyssey|24|R|{2}{W}{W}|Creature — Antelope|1|4| +Cantivore|Odyssey|13|R|{1}{W}{W}|Creature — Lhurgoyf|*|*| +Delaying Shield|Odyssey|17|R|{3}{W}|Enchantment||| +Divine Sacrament|Odyssey|19|R|{1}{W}{W}|Enchantment||| +Earnest Fellowship|Odyssey|21|R|{1}{W}|Enchantment||| +Kirtar's Wrath|Odyssey|28|R|{4}{W}{W}|Sorcery||| +Aegis of Honor|Odyssey|1|R|{W}|Enchantment||| +Aven Shrine|Odyssey|9|R|{1}{W}{W}|Enchantment||| +Test of Endurance|Judgment|29|R|{2}{W}{W}|Enchantment||| +Patron Wizard|Odyssey|89|R|{U}{U}{U}|Creature — Human Wizard|2|2| +Breakthrough|Torment|26|U|{X}{U}|Sorcery||| +Scalpelexis|Judgment|50|R|{4}{U}|Creature — Beast|1|5| +Amugaba|Odyssey|61|R|{5}{U}{U}|Creature — Illusion|6|6| +Cognivore|Odyssey|77|R|{6}{U}{U}|Creature — Lhurgoyf|*|*| +Time Stretch|Odyssey|108|R|{8}{U}{U}|Sorcery||| +Unifying Theory|Odyssey|112|R|{1}{U}|Enchantment||| +Gravestorm|Odyssey|141|R|{B}{B}{B}|Enchantment||| +Standstill|Odyssey|102|U|{1}{U}|Enchantment||| +Laquatus's Creativity|Odyssey|88|U|{4}{U}|Sorcery||| +Aura Graft|Odyssey|62|U|{1}{U}|Instant||| +Pedantic Learning|Odyssey|90|R|{U}{U}|Enchantment||| +Cephalid Shrine|Odyssey|75|R|{1}{U}{U}|Enchantment||| +Battle of Wits|Odyssey|69|R|{3}{U}{U}|Enchantment||| +Cabal Patriarch|Odyssey|120|R|{3}{B}{B}{B}|Legendary Creature — Human Wizard|5|5| +Sutured Ghoul|Judgment|73|R|{4}{B}{B}{B}|Creature — Zombie|*|*| +Repentant Vampire|Odyssey|157|R|{3}{B}{B}|Creature — Vampire|3|3| +Mortivore|Odyssey|152|R|{2}{B}{B}|Creature — Lhurgoyf|*|*| +Braids, Cabal Minion|Odyssey|117|R|{2}{B}{B}|Legendary Creature — Human Minion|2|2| +Mindslicer|Odyssey|149|R|{2}{B}{B}|Creature — Horror|4|3| +Bloodcurdler|Odyssey|116|R|{1}{B}|Creature — Horror|1|1| +Nefarious Lich|Odyssey|153|R|{B}{B}{B}{B}|Enchantment||| +Tainted Pact|Odyssey|164|R|{1}{B}|Instant||| +Diabolic Tutor|Odyssey|129|U|{2}{B}{B}|Sorcery||| +Decaying Soil|Odyssey|127|R|{1}{B}{B}|Enchantment||| +Haunting Echoes|Odyssey|142|R|{3}{B}{B}|Sorcery||| +Zombie Infestation|Odyssey|170|U|{1}{B}|Enchantment||| +Skeletal Scrying|Odyssey|161|U|{X}{B}|Instant||| +Cabal Shrine|Odyssey|121|R|{1}{B}{B}|Enchantment||| +Mortal Combat|Torment|71|R|{2}{B}{B}|Enchantment||| +Whipkeeper|Odyssey|228|U|{2}{R}{R}|Creature — Dwarf|1|1| +Pardic Miner|Odyssey|212|R|{1}{R}|Creature — Dwarf|1|1| +Kamahl, Pit Fighter|Odyssey|198|R|{4}{R}{R}|Legendary Creature — Human Barbarian|6|1| +Mine Layer|Odyssey|205|R|{3}{R}|Creature — Dwarf|1|1| +Ashen Firebeast|Odyssey|174|R|{6}{R}{R}|Creature — Elemental Beast|6|6| +Savage Firecat|Odyssey|218|R|{3}{R}{R}|Creature — Elemental Cat|0|0| +Obstinate Familiar|Odyssey|210|R|{R}|Creature — Lizard|1|1| +Vampiric Dragon|Odyssey|296|R|{6}{B}{R}|Creature — Vampire Dragon|5|5| +Volley of Boulders|Odyssey|227|R|{8}{R}|Sorcery||| +Need for Speed|Odyssey|209|R|{R}|Enchantment||| +Molten Influence|Odyssey|207|R|{1}{R}|Instant||| +Price of Glory|Odyssey|214|U|{2}{R}|Enchantment||| +Dwarven Shrine|Odyssey|187|R|{1}{R}{R}|Enchantment||| +Chance Encounter|Odyssey|182|R|{2}{R}{R}|Enchantment||| +Squirrel Mob|Odyssey|273|R|{1}{G}{G}|Creature — Squirrel|2|2| +Gorilla Titan|Odyssey|241|U|{3}{G}{G}|Creature — Ape|4|4| +Nantuko Mentor|Odyssey|255|R|{2}{G}|Creature — Insect Druid|1|1| +Terravore|Odyssey|278|R|{1}{G}{G}|Creature — Lhurgoyf|*|*| +Stone-Tongue Basilisk|Odyssey|276|R|{4}{G}{G}{G}|Creature — Basilisk|4|5| +Zoologist|Odyssey|285|R|{3}{G}|Creature — Human Druid|1|2| +Seton, Krosan Protector|Odyssey|267|R|{G}{G}{G}|Legendary Creature — Centaur Druid|2|2| +Chlorophant|Odyssey|234|R|{G}{G}{G}|Creature — Elemental|1|1| +Nut Collector|Odyssey|259|R|{5}{G}|Creature — Human Druid|1|1| +Verdant Succession|Odyssey|280|R|{4}{G}|Enchantment||| +Ground Seal|Odyssey|242|R|{1}{G}|Enchantment||| +Parallel Evolution|Torment|136|R|{3}{G}{G}|Sorcery||| +Holistic Wisdom|Odyssey|243|R|{1}{G}{G}|Enchantment||| +Nantuko Shrine|Odyssey|256|R|{1}{G}{G}|Enchantment||| +Overrun|Odyssey|260|U|{2}{G}{G}{G}|Sorcery||| +Junk Golem|Odyssey|300|R|{4}|Artifact Creature — Golem|0|0| +Catalyst Stone|Odyssey|297|R|{2}|Artifact||| +Mesmeric Orb|Mirrodin|204|R|{2}|Artifact||| +Mossfire Egg|Odyssey|304|U|{1}|Artifact||| +Crystal Quarry|Odyssey|318|R||Land||| +Deserted Temple|Odyssey|320|R||Land||| +Petrified Field|Odyssey|323|R||Land||| +Tarnished Citadel|Odyssey|329|R||Land||| +Sacred Nectar|Seventh Edition|37|C|{1}{W}|Sorcery||| +Monstrous Growth|Seventh Edition|258|C|{1}{G}|Sorcery||| +Giant Octopus|Seventh Edition|77|C|{3}{U}|Creature — Octopus|3|3| +Volcanic Hammer|Seventh Edition|226|C|{1}{R}|Sorcery||| +Cease-Fire|Odyssey|14|C|{2}{W}|Instant||| +Demoralize|Odyssey|184|C|{2}{R}|Instant||| +Vivify|Odyssey|281|U|{2}{G}|Instant||| +Epicenter|Odyssey|192|R|{4}{R}|Sorcery||| +Twigwalker|Odyssey|279|U|{2}{G}|Creature — Insect|2|2| +Krosan Beast|Odyssey|248|R|{3}{G}|Creature — Squirrel Beast|1|1| +Magnivore|Odyssey|204|R|{2}{R}{R}|Creature — Lhurgoyf|*|*| +Entomb|Odyssey|132|R|{B}|Instant||| +Shadowblood Egg|Odyssey|308|U|{1}|Artifact||| +Ancestral Tribute|Odyssey|2|R|{5}{W}{W}|Sorcery||| +Traumatize|Odyssey|110|R|{3}{U}{U}|Sorcery||| +Execute|Odyssey|133|U|{2}{B}|Instant||| +Malevolent Awakening|Odyssey|147|U|{1}{B}{B}|Enchantment||| +Devastating Dreams|Torment|95|R|{R}{R}|Sorcery||| +Skyshooter|Odyssey|270|U|{1}{G}|Creature — Centaur Archer|1|2| +Cabal Ritual|Torment|51|C|{1}{B}|Instant||| +Bash to Bits|Odyssey|176|U|{3}{R}|Instant||| +Firebolt|Odyssey|193|C|{R}|Sorcery||| +Scorching Missile|Odyssey|219|C|{3}{R}|Sorcery||| +Seize the Day|Odyssey|220|R|{3}{R}|Sorcery||| +Mystic Familiar|Torment|11|C|{1}{W}|Creature — Bird|1|2| +Patrol Hound|Odyssey|38|C|{1}{W}|Creature — Hound|2|2| +Concentrate|Odyssey|78|U|{2}{U}{U}|Sorcery||| +Krosan Verge|Judgment|141|U||Land||| +Possessed Aven|Torment|45|R|{2}{U}{U}|Creature — Bird Soldier Horror|3|3| +Covert Operative|Legions|33|C|{4}{U}|Creature — Human Wizard|3|2| +Peek|Odyssey|91|C|{U}|Instant||| +Tombfire|Odyssey|165|R|{B}|Sorcery||| +Touch of Invisibility|Odyssey|109|C|{3}{U}|Sorcery||| +Acceptable Losses|Odyssey|172|C|{3}{R}|Sorcery||| +Bearscape|Odyssey|229|R|{1}{G}{G}|Enchantment||| +Darkwater Egg|Odyssey|299|U|{1}|Artifact||| +Sungrass Egg|Odyssey|311|U|{1}|Artifact||| +Shelter|Odyssey|46|C|{1}{W}|Instant||| +Coffin Purge|Odyssey|124|C|{B}|Instant||| +Cultural Exchange|Odyssey|79|R|{4}{U}{U}|Sorcery||| +Tribal Golem|Onslaught|311|R|{6}|Artifact Creature — Golem|4|4| +Testament of Faith|Odyssey|55|U|{W}|Enchantment||| +Chatter of the Squirrel|Odyssey|233|C|{G}|Sorcery||| +Reckless Charge|Odyssey|215|C|{R}|Sorcery||| +Rancid Earth|Torment|78|C|{1}{B}{B}|Sorcery||| +Pulsating Illusion|Odyssey|96|U|{4}{U}|Creature — Illusion|0|1| +Plains|Odyssey|331|L||Basic Land — Plains||| +Island|Odyssey|335|L||Basic Land — Island||| +Island|Odyssey|336|L||Basic Land — Island||| +Island|Odyssey|337|L||Basic Land — Island||| +Island|Odyssey|338|L||Basic Land — Island||| +Swamp|Odyssey|339|L||Basic Land — Swamp||| +Swamp|Odyssey|340|L||Basic Land — Swamp||| +Swamp|Odyssey|341|L||Basic Land — Swamp||| +Swamp|Odyssey|342|L||Basic Land — Swamp||| +Mountain|Odyssey|343|L||Basic Land — Mountain||| +Mountain|Odyssey|344|L||Basic Land — Mountain||| +Mountain|Odyssey|345|L||Basic Land — Mountain||| +Mountain|Odyssey|346|L||Basic Land — Mountain||| +Forest|Odyssey|347|L||Basic Land — Forest||| +Forest|Odyssey|348|L||Basic Land — Forest||| +Forest|Odyssey|349|L||Basic Land — Forest||| +Forest|Odyssey|350|L||Basic Land — Forest||| +Plains|Odyssey|332|L||Basic Land — Plains||| +Plains|Odyssey|333|L||Basic Land — Plains||| +Plains|Odyssey|334|L||Basic Land — Plains||| +Treetop Sentinel|Odyssey|111|U|{2}{U}{U}|Creature — Bird Soldier|2|3| +Face of Fear|Odyssey|134|U|{5}{B}|Creature — Horror|3|4| +Mudhole|Odyssey|208|R|{2}{R}|Instant||| +Refresh|Odyssey|264|C|{2}{G}|Instant||| +Tainted Field|Torment|140|U||Land||| +Tainted Isle|Torment|141|U||Land||| +Tainted Peak|Torment|142|U||Land||| +Tainted Wood|Torment|143|U||Land||| +Abandoned Outpost|Odyssey|312|C||Land||| +Seafloor Debris|Odyssey|325|C||Land||| +Bog Wreckage|Odyssey|314|C||Land||| +Ravaged Highlands|Odyssey|324|C||Land||| +Timberland Ruins|Odyssey|330|C||Land||| +Mystic Penitent|Odyssey|34|U|{W}|Creature — Human Nomad Mystic|1|1| +Aven Flock|Odyssey|8|C|{4}{W}|Creature — Bird Soldier|2|3| +Sacred Rites|Odyssey|44|C|{W}|Instant||| +Confessor|Odyssey|15|C|{W}|Creature — Human Cleric|1|1| +Lithatog|Odyssey|289|U|{1}{R}{G}|Creature — Atog|1|2| +Dedicated Martyr|Odyssey|16|C|{W}|Creature — Human Cleric|1|1| +Mystic Enforcer|Odyssey|290|R|{2}{G}{W}|Creature — Human Nomad Mystic|3|3| +Thought Nibbler|Odyssey|107|C|{U}|Creature — Beast|1|1| +Fledgling Imp|Odyssey|137|C|{2}{B}|Creature — Imp|2|2| +Last Rites|Odyssey|146|C|{2}{B}|Sorcery||| +Words of Wisdom|Odyssey|114|C|{1}{U}|Instant||| +Minotaur Explorer|Odyssey|206|U|{1}{R}|Creature — Minotaur Scout|3|3| +Impulsive Maneuvers|Odyssey|197|R|{2}{R}{R}|Enchantment||| +Grand Melee|Onslaught|211|R|{3}{R}|Enchantment||| +Dogged Hunter|Odyssey|20|R|{2}{W}|Creature — Human Nomad|1|1| +Pianna, Nomad Captain|Odyssey|39|R|{1}{W}{W}|Legendary Creature — Human Nomad|2|2| +Psionic Gift|Odyssey|95|C|{1}{U}|Enchantment — Aura||| +Phantatog|Odyssey|291|U|{1}{W}{U}|Creature — Atog|1|2| +Sarcatog|Odyssey|293|U|{1}{B}{R}|Creature — Atog|1|2| +Decompose|Odyssey|128|U|{1}{B}|Sorcery||| +Tremble|Odyssey|225|C|{1}{R}|Sorcery||| +Dwarven Strike Force|Odyssey|188|U|{4}{R}|Creature — Dwarf Berserker|4|3| +Burning Sands|Odyssey|180|R|{3}{R}{R}|Enchantment||| +Decimate|Odyssey|287|R|{2}{R}{G}|Sorcery||| +Iridescent Angel|Odyssey|288|R|{5}{W}{U}|Creature — Angel|4|4| +Spellbane Centaur|Odyssey|271|R|{2}{G}|Creature — Centaur|3|2| +Mirari|Odyssey|303|R|{5}|Legendary Artifact||| +Dreamwinder|Odyssey|83|C|{3}{U}|Creature — Serpent|4|3| +Thought Eater|Odyssey|106|U|{1}{U}|Creature — Beast|2|2| +Filthy Cur|Odyssey|136|C|{1}{B}|Creature — Hound|2|2| +Petravark|Torment|109|C|{3}{R}|Creature — Nightmare Beast|2|2| +Dusk Imp|Odyssey|131|C|{2}{B}|Creature — Imp|2|1| +Infected Vermin|Odyssey|144|U|{2}{B}|Creature — Rat|1|1| +Sadistic Hypnotist|Odyssey|159|U|{3}{B}{B}|Creature — Human Minion|2|2| +Engulfing Flames|Odyssey|191|U|{R}|Instant||| +Moment's Peace|Odyssey|251|C|{1}{G}|Instant||| +Primal Frenzy|Odyssey|262|C|{G}|Enchantment — Aura||| +Escape Artist|Odyssey|84|C|{1}{U}|Creature — Human Wizard|1|1| +Phantom Whelp|Odyssey|93|C|{1}{U}|Creature — Illusion Hound|2|2| +Aven Fisher|Odyssey|63|C|{3}{U}|Creature — Bird Soldier|2|2| +Deluge|Odyssey|80|U|{2}{U}|Instant||| +Thought Devourer|Odyssey|105|R|{2}{U}{U}|Creature — Beast|4|4| +Mad Dog|Odyssey|202|C|{1}{R}|Creature — Hound|2|2| +Balancing Act|Odyssey|10|R|{2}{W}{W}|Sorcery||| +Lieutenant Kirtar|Odyssey|29|R|{1}{W}{W}|Legendary Creature — Bird Soldier|2|2| +Aboshan, Cephalid Emperor|Odyssey|58|R|{4}{U}{U}|Legendary Creature — Cephalid|3|3| +Shambling Swarm|Torment|82|R|{1}{B}{B}{B}|Creature — Horror|3|3| +Shifty Doppelganger|Odyssey|101|R|{2}{U}|Creature — Shapeshifter|1|1| +Divert|Odyssey|82|R|{U}|Instant||| +Psychatog|Odyssey|292|U|{1}{U}{B}|Creature — Atog|1|2| +Druid's Call|Odyssey|239|U|{1}{G}|Enchantment — Aura||| +Millikin|Odyssey|302|U|{2}|Artifact Creature — Construct|0|1| +Hypnox|Torment|64|R|{8}{B}{B}{B}|Creature — Nightmare Horror|8|8| +Patchwork Gnomes|Odyssey|306|U|{3}|Artifact Creature — Gnome|2|1| +Slithery Stalker|Torment|84|U|{1}{B}{B}|Creature — Nightmare Horror|1|1| +Atogatog|Odyssey|286|R|{W}{U}{B}{R}{G}|Legendary Creature — Atog|5|5| +Thaumatog|Odyssey|295|U|{1}{G}{W}|Creature — Atog|1|2| +Squirrel Nest|Odyssey|274|U|{1}{G}{G}|Enchantment — Aura||| +Caustic Tar|Odyssey|122|U|{4}{B}{B}|Enchantment — Aura||| +Steam Vines|Odyssey|223|U|{1}{R}{R}|Enchantment — Aura||| +Animal Boneyard|Odyssey|4|U|{2}{W}|Enchantment — Aura||| +Cephalid Snitch|Torment|30|C|{1}{U}|Creature — Cephalid Wizard|1|1| +Nantuko Calmer|Torment|132|C|{2}{G}{G}|Creature — Insect Druid|2|3| +Upheaval|Odyssey|113|R|{4}{U}{U}|Sorcery||| +Traveling Plague|Odyssey|166|R|{3}{B}{B}|Enchantment — Aura||| +New Frontiers|Odyssey|257|R|{X}{G}|Sorcery||| +Soulcatcher|Odyssey|47|U|{1}{W}|Creature — Bird Soldier|1|1| +Hint of Insanity|Odyssey|143|R|{2}{B}|Sorcery||| +Chamber of Manipulation|Odyssey|76|U|{2}{U}{U}|Enchantment — Aura||| +Laquatus's Champion|Torment|67|R|{4}{B}{B}|Creature — Nightmare Horror|6|3| +Cephalid Retainer|Odyssey|73|R|{2}{U}{U}|Creature — Cephalid|2|3| +Karmic Justice|Odyssey|26|R|{2}{W}|Enchantment||| +Tattoo Ward|Odyssey|54|U|{2}{W}|Enchantment — Aura||| +Waste Away|Torment|88|C|{4}{B}|Instant||| +Teroh's Vanguard|Torment|19|U|{3}{W}|Creature — Human Nomad|2|3| +Nostalgic Dreams|Torment|135|R|{G}{G}|Sorcery||| +Stitch Together|Judgment|72|U|{B}{B}|Sorcery||| +Gravegouger|Torment|62|C|{2}{B}|Creature — Nightmare Horror|2|2| +Mesmeric Fiend|Torment|69|C|{1}{B}|Creature — Nightmare Horror|1|1| +Pardic Arsonist|Torment|105|U|{2}{R}{R}|Creature — Human Barbarian|3|3| +Symbiotic Elf|Onslaught|288|C|{3}{G}|Creature — Elf|2|2| +Centaur Chieftain|Torment|122|U|{3}{G}|Creature — Centaur|3|3| +Gurzigost|Torment|126|R|{3}{G}{G}|Creature — Beast|6|8| +Grotesque Hybrid|Torment|63|U|{4}{B}|Creature — Zombie|3|3| +Cabal Surgeon|Torment|52|C|{2}{B}{B}|Creature — Human Minion|2|1| +Boneshard Slasher|Torment|50|U|{1}{B}|Creature — Horror|1|1| +Cabal Torturer|Torment|53|C|{1}{B}{B}|Creature — Human Minion|1|1| +Kamahl's Sledge|Torment|102|C|{5}{R}{R}|Sorcery||| +Possessed Barbarian|Torment|111|R|{2}{R}{R}|Creature — Human Barbarian Horror|3|3| +Pay No Heed|Torment|12|C|{W}|Instant||| +Angel of Retribution|Torment|1|R|{6}{W}|Creature — Angel|5|5| +Ghostly Wings|Torment|38|C|{1}{U}|Enchantment — Aura||| +Temporary Insanity|Torment|116|U|{3}{R}|Instant||| +Deep Analysis|Torment|36|C|{3}{U}|Sorcery||| +Organ Grinder|Torment|75|C|{2}{B}|Creature — Zombie|3|1| +Pardic Lancer|Torment|107|C|{4}{R}|Creature — Human Barbarian|3|2| +Nantuko Blightcutter|Torment|131|R|{2}{G}|Creature — Insect Druid|2|2| +Seton's Scout|Torment|138|U|{1}{G}|Creature — Centaur Druid Scout Archer|2|1| +Floating Shield|Torment|5|C|{2}{W}|Enchantment — Aura||| +Balshan Collaborator|Torment|25|U|{3}{U}|Creature — Bird Soldier|2|2| +Chainer, Dementia Master|Torment|56|R|{3}{B}{B}|Legendary Creature — Human Minion|3|3| +Enslaved Dwarf|Torment|96|C|{R}|Creature — Dwarf|1|1| +Fiery Temper|Torment|97|C|{1}{R}{R}|Instant||| +Elephant Ambush|Odyssey|240|C|{2}{G}{G}|Instant||| +Flaming Gambit|Torment|98|U|{X}{R}|Instant||| +Shadowmage Infiltrator|Odyssey|294|R|{1}{U}{B}|Creature — Human Wizard|1|3| +Hydromorph Guardian|Torment|39|C|{2}{U}|Creature — Elemental|2|2| +Anurid Scavenger|Torment|119|U|{2}{G}|Creature — Frog Beast|3|3| +Cephalid Sage|Torment|29|U|{3}{U}|Creature — Cephalid|2|3| +Psychotic Haze|Torment|76|C|{2}{B}{B}|Instant||| +Oversold Cemetery|Onslaught|160|R|{1}{B}|Enchantment||| +Goblin Sharpshooter|Onslaught|207|R|{2}{R}|Creature — Goblin|1|1| +Epic Struggle|Judgment|112|R|{2}{G}{G}|Enchantment||| +Retraced Image|Torment|46|R|{U}|Sorcery||| +Gluttonous Zombie|Onslaught|151|U|{4}{B}|Creature — Zombie|3|3| +Anger|Judgment|77|U|{3}{R}|Creature — Incarnation|2|2| +Valor|Judgment|32|U|{3}{W}|Creature — Incarnation|2|2| +Wonder|Judgment|54|U|{3}{U}|Creature — Incarnation|2|2| +Brawn|Judgment|107|U|{3}{G}|Creature — Incarnation|3|3| +Filth|Judgment|66|U|{3}{B}|Creature — Incarnation|2|2| +Barkhide Mauler|Onslaught|246|C|{4}{G}|Creature — Beast|4|4| +Ray of Revelation|Judgment|20|C|{1}{W}|Instant||| +Border Patrol|Judgment|6|C|{4}{W}|Creature — Human Nomad|1|6| +Seedtime|Judgment|130|R|{1}{G}|Instant||| +Suntail Hawk|Judgment|28|C|{W}|Creature — Bird|1|1| +Lightning Surge|Judgment|96|R|{3}{R}{R}|Sorcery||| +Grizzly Fate|Judgment|119|U|{3}{G}{G}|Sorcery||| +Flaring Pain|Judgment|89|C|{1}{R}|Instant||| +Strength of Lunacy|Torment|86|U|{1}{B}|Enchantment — Aura||| +Crippling Fatigue|Torment|58|C|{1}{B}{B}|Sorcery||| +Kamahl's Summons|Onslaught|269|U|{3}{G}|Sorcery||| +Nantuko Cultivator|Torment|133|R|{3}{G}|Creature — Insect Druid|2|2| +Prismatic Strands|Judgment|18|C|{2}{W}|Instant||| +Morningtide|Torment|10|R|{1}{W}|Sorcery||| +Nomad Mythmaker|Judgment|15|R|{2}{W}|Creature — Human Nomad Cleric|2|2| +Spurnmage Advocate|Judgment|27|U|{W}|Creature — Human Nomad|1|1| +Ancestor's Chosen|Judgment|1|U|{5}{W}{W}|Creature — Human Cleric|4|4| +Forcemage Advocate|Judgment|116|U|{1}{G}|Creature — Centaur Shaman|2|1| +Nullmage Advocate|Judgment|126|C|{2}{G}|Creature — Insect Druid|2|3| +Reborn Hero|Torment|14|R|{2}{W}|Creature — Human Soldier|2|2| +Radiate|Torment|113|R|{3}{R}{R}|Instant||| +Violent Eruption|Torment|117|U|{1}{R}{R}{R}|Instant||| +Feral Throwback|Legions|126|R|{4}{G}{G}|Creature — Beast|3|3| +Crackling Club|Torment|93|C|{R}|Enchantment — Aura||| +Circular Logic|Torment|33|U|{2}{U}|Instant||| +Ambassador Laquatus|Torment|23|R|{1}{U}{U}|Legendary Creature — Merfolk Wizard|1|3| +Skullscorch|Torment|114|R|{R}{R}|Sorcery||| +Hell-Bent Raider|Torment|101|R|{1}{R}{R}|Creature — Human Barbarian|2|2| +Pyromania|Torment|112|U|{2}{R}|Enchantment||| +Overwhelming Instinct|Onslaught|276|U|{2}{G}|Enchantment||| +Commando Raid|Onslaught|195|U|{2}{R}|Instant||| +Riftstone Portal|Judgment|143|U||Land||| +Golden Wish|Judgment|12|R|{3}{W}{W}|Sorcery||| +Cunning Wish|Judgment|37|R|{2}{U}|Instant||| +Nantuko Monastery|Judgment|142|U||Land||| +Death Wish|Judgment|64|R|{1}{B}{B}|Sorcery||| +Burning Wish|Judgment|83|R|{1}{R}|Sorcery||| +Living Wish|Judgment|124|R|{1}{G}|Sorcery||| +Foothill Guide|Onslaught|29|C|{W}|Creature — Human Cleric|1|1| +Battlewise Aven|Judgment|4|C|{3}{W}|Creature — Bird Soldier|2|2| +Aquamoeba|Torment|24|C|{1}{U}|Creature — Elemental Beast|1|3| +Last Laugh|Torment|68|R|{2}{B}{B}|Enchantment||| +Putrid Imp|Torment|77|C|{B}|Creature — Zombie Imp|1|1| +Compulsion|Torment|34|U|{1}{U}|Enchantment||| +Purge|Darksteel|12|U|{1}{W}|Instant||| +Masked Gorgon|Judgment|69|R|{4}{B}|Creature — Gorgon|5|5| +Mythic Proportions|Onslaught|274|R|{4}{G}{G}{G}|Enchantment — Aura||| +Liquify|Torment|41|C|{2}{U}|Instant||| +Ironshell Beetle|Judgment|121|C|{1}{G}|Creature — Insect|1|1| +Elvish Guidance|Onslaught|255|C|{2}{G}|Enchantment — Aura||| +Wirewood Lodge|Onslaught|329|U||Land||| +Lead Astray|Judgment|14|C|{1}{W}|Instant||| +Solitary Confinement|Judgment|24|R|{2}{W}|Enchantment||| +Lost in Thought|Judgment|45|C|{1}{U}|Enchantment — Aura||| +Cephalid Illusionist|Torment|28|U|{1}{U}|Creature — Cephalid Wizard|1|1| +Mist of Stagnation|Judgment|48|R|{3}{U}{U}|Enchantment||| +Strength of Isolation|Torment|17|U|{1}{W}|Enchantment — Aura||| +Cephalid Inkshrouder|Judgment|36|U|{2}{U}|Creature — Cephalid|2|1| +Treacherous Vampire|Judgment|75|U|{4}{B}|Creature — Vampire|4|4| +Cabal Therapy|Judgment|62|U|{B}|Sorcery||| +Shaman's Trance|Judgment|98|R|{2}{R}|Instant||| +Grip of Amnesia|Judgment|41|C|{1}{U}|Instant||| +Wormfang Newt|Judgment|59|C|{1}{U}|Creature — Nightmare Salamander Beast|2|2| +Wormfang Behemoth|Judgment|55|R|{3}{U}{U}|Creature — Nightmare Fish Beast|5|5| +Barbarian Bully|Judgment|79|C|{2}{R}|Creature — Human Barbarian|2|2| +Zombie Trailblazer|Torment|89|U|{B}{B}{B}|Creature — Zombie Scout|2|2| +Glory|Judgment|11|R|{3}{W}{W}|Creature — Incarnation|3|3| +Web of Inertia|Judgment|53|U|{2}{U}|Enchantment||| +Alter Reality|Torment|22|R|{1}{U}|Instant||| +Genesis|Judgment|117|R|{4}{G}|Creature — Incarnation|4|4| +Aven Warcraft|Judgment|2|U|{2}{W}|Instant||| +Funeral Pyre|Judgment|10|C|{W}|Instant||| +Phantom Nomad|Judgment|17|C|{1}{W}|Creature — Spirit Nomad|0|0| +Selfless Exorcist|Judgment|21|R|{3}{W}{W}|Creature — Human Cleric|3|4| +Spirit Cairn|Judgment|26|U|{2}{W}|Enchantment||| +Oblivion Stone|Mirrodin|222|R|{3}|Artifact||| +Goretusk Firebeast|Judgment|91|C|{5}{R}|Creature — Elemental Boar Beast|2|2| +Wormfang Crab|Judgment|56|U|{3}{U}|Creature — Nightmare Crab|3|6| +Firecat Blitz|Judgment|88|U|{X}{R}{R}|Sorcery||| +Fledgling Dragon|Judgment|90|R|{2}{R}{R}|Creature — Dragon|2|2| +Phantom Flock|Judgment|16|U|{3}{W}{W}|Creature — Bird Soldier Spirit|0|0| +Phantom Tiger|Judgment|129|C|{2}{G}|Creature — Cat Spirit|1|0| +Wormfang Manta|Judgment|58|R|{5}{U}{U}|Creature — Nightmare Fish Beast|6|1| +Soulgorger Orgg|Judgment|99|U|{3}{R}{R}|Creature — Nightmare Orgg|6|6| +Seething Song|Mirrodin|104|C|{2}{R}|Instant||| +Phantom Nantuko|Judgment|128|R|{2}{G}|Creature — Insect Spirit|0|0| +Dwarven Driller|Judgment|85|U|{3}{R}|Creature — Dwarf|2|2| +Hystrodon|Onslaught|266|R|{4}{G}|Creature — Beast|3|4| +Wormfang Turtle|Judgment|60|U|{2}{U}|Creature — Nightmare Turtle Beast|2|4| +Chastise|Judgment|8|U|{3}{W}|Instant||| +Nantuko Shade|Torment|74|R|{B}{B}|Creature — Insect Shade|2|1| +Pardic Collaborator|Torment|106|U|{3}{R}|Creature — Human Barbarian|2|2| +Worldgorger Dragon|Judgment|103|R|{3}{R}{R}{R}|Creature — Nightmare Dragon|7|7| +Mirari's Wake|Judgment|139|R|{3}{G}{W}|Enchantment||| +Anurid Brushhopper|Judgment|137|R|{1}{G}{W}|Creature — Frog Beast|3|4| +Sylvan Safekeeper|Judgment|133|R|{G}|Creature — Human Wizard|1|1| +Sickening Dreams|Torment|83|U|{1}{B}|Sorcery||| +Shieldmage Advocate|Judgment|22|C|{2}{W}|Creature — Human Cleric|1|3| +Trained Pronghorn|Judgment|30|C|{1}{W}|Creature — Antelope|1|1| +Krosan Wayfarer|Judgment|123|C|{G}|Creature — Human Druid|1|1| +Folk Medicine|Judgment|115|C|{2}{G}|Instant||| +Basking Rootwalla|Torment|121|C|{G}|Creature — Lizard|1|1| +Phantom Centaur|Judgment|127|U|{2}{G}{G}|Creature — Centaur Spirit|2|0| +Dwarven Bloodboiler|Judgment|84|R|{R}{R}{R}|Creature — Dwarf|2|2| +Defy Gravity|Judgment|38|C|{U}|Instant||| +Battle Screech|Judgment|3|U|{2}{W}{W}|Sorcery||| +Earsplitting Rats|Judgment|65|C|{3}{B}|Creature — Rat|2|1| +Stern Judge|Torment|16|U|{2}{W}|Creature — Human Cleric|2|2| +Liberated Dwarf|Judgment|95|C|{R}|Creature — Dwarf|1|1| +Sengir Vampire|Torment|80|R|{3}{B}{B}|Creature — Vampire|4|4| +Infectious Rage|Judgment|92|U|{1}{R}|Enchantment — Aura||| +Planar Chaos|Judgment|97|U|{2}{R}|Enchantment||| +Soulcatchers' Aerie|Judgment|25|U|{1}{W}|Enchantment||| +Sudden Strength|Judgment|132|C|{3}{G}|Instant||| +Grave Consequences|Judgment|67|U|{1}{B}|Instant||| +Menacing Ogre|Onslaught|219|R|{3}{R}{R}|Creature — Ogre|3|3| +Sonic Seizure|Torment|115|C|{R}|Instant||| +Krosan Cloudscraper|Legions|130|R|{7}{G}{G}{G}|Creature — Beast Mutant|13|13| +Hunting Grounds|Judgment|138|R|{G}{W}|Enchantment||| +Keep Watch|Judgment|43|C|{2}{U}|Instant||| +Spelljack|Judgment|51|R|{3}{U}{U}{U}|Instant||| +Crush of Wurms|Judgment|110|R|{6}{G}{G}{G}|Sorcery||| +Morality Shift|Judgment|70|R|{5}{B}{B}|Sorcery||| +Mutilate|Torment|73|R|{2}{B}{B}|Sorcery||| +Deathmark Prelate|Legions|65|U|{3}{B}|Creature — Human Cleric|2|3| +Wirewood Channeler|Legions|144|U|{3}{G}|Creature — Elf Druid|2|2| +Aura Extraction|Onslaught|5|U|{1}{W}|Instant||| +Keeneye Aven|Legions|41|C|{3}{U}|Creature — Bird Soldier|2|3| +Dispersal Shield|Scourge|33|C|{1}{U}|Instant||| +Searing Flesh|Onslaught|225|U|{6}{R}|Sorcery||| +Alpha Status|Scourge|110|U|{2}{G}|Enchantment — Aura||| +Naturalize|Onslaught|275|C|{1}{G}|Instant||| +Insurrection|Onslaught|213|R|{5}{R}{R}{R}|Sorcery||| +Tower of Fortunes|Mirrodin|267|R|{4}|Artifact||| +Enchantress's Presence|Onslaught|261|R|{2}{G}|Enchantment||| +Erhnam Djinn|Judgment|113|R|{3}{G}|Creature — Djinn|4|5| +Pulsemage Advocate|Judgment|19|R|{2}{W}|Creature — Human Cleric|1|3| +Book Burning|Judgment|80|C|{1}{R}|Sorcery||| +Commander Eesha|Judgment|9|R|{2}{W}{W}|Legendary Creature — Bird Soldier|2|4| +Unhinge|Torment|87|C|{2}{B}|Sorcery||| +Ichorid|Torment|65|R|{3}{B}|Creature — Horror|3|1| +Dawn of the Dead|Torment|59|R|{2}{B}{B}{B}|Enchantment||| +Cephalid Vandal|Torment|31|R|{1}{U}|Creature — Cephalid Rogue|1|1| +Vigilant Sentry|Judgment|33|C|{1}{W}{W}|Creature — Human Nomad|2|2| +Silver Seraph|Judgment|23|R|{5}{W}{W}{W}|Creature — Angel|6|6| +Treacherous Werewolf|Judgment|76|C|{2}{B}|Creature — Human Wolf Minion|2|2| +Browbeat|Judgment|82|U|{2}{R}|Sorcery||| +Anurid Barkripper|Judgment|104|C|{1}{G}{G}|Creature — Frog Beast|2|2| +Battlefield Scrounger|Judgment|106|C|{3}{G}{G}|Creature — Centaur|3|3| +Grim Lavamancer|Torment|100|R|{R}|Creature — Human Wizard|1|1| +Giant Warthog|Judgment|118|C|{5}{G}|Creature — Boar Beast|5|5| +Krosan Reclamation|Judgment|122|U|{1}{G}|Instant||| +Mental Note|Judgment|46|C|{U}|Instant||| +Hapless Researcher|Judgment|42|C|{U}|Creature — Human Wizard|1|1| +Dwarven Scorcher|Judgment|86|C|{R}|Creature — Dwarf|1|1| +Cabal Trainee|Judgment|63|C|{B}|Creature — Human Minion|1|1| +Benevolent Bodyguard|Judgment|5|C|{W}|Creature — Human Cleric|1|1| +Swelter|Judgment|101|U|{3}{R}|Sorcery||| +Venomous Vines|Judgment|136|C|{2}{G}{G}|Sorcery||| +Canopy Claws|Judgment|108|C|{G}|Instant||| +Harvester Druid|Judgment|120|C|{1}{G}|Creature — Human Druid|1|1| +Rats' Feast|Judgment|71|C|{X}{B}|Sorcery||| +Mirror Wall|Judgment|47|C|{3}{U}|Creature — Wall|3|4| +Envelop|Judgment|39|C|{U}|Instant||| +Stupefying Touch|Torment|48|U|{1}{U}|Enchantment — Aura||| +Toxic Stench|Judgment|74|C|{1}{B}|Instant||| +Cagemail|Judgment|7|C|{1}{W}|Enchantment — Aura||| +Arcane Teachings|Judgment|78|C|{2}{R}|Enchantment — Aura||| +Guided Strike|Judgment|13|C|{1}{W}|Instant||| +Pitchstone Wall|Torment|110|U|{2}{R}|Creature — Wall|2|5| +Mortiphobia|Torment|72|U|{1}{B}{B}|Enchantment||| +Jeska, Warrior Adept|Judgment|93|R|{2}{R}{R}|Legendary Creature — Human Barbarian Warrior|3|1| +Anurid Swarmsnapper|Judgment|105|U|{2}{G}|Creature — Frog Beast|1|4| +Serene Sunset|Judgment|131|U|{X}{G}|Instant||| +Thriss, Nantuko Primus|Judgment|134|R|{5}{G}{G}|Legendary Creature — Insect Druid|5|5| +Nantuko Tracer|Judgment|125|C|{1}{G}|Creature — Insect Druid|2|1| +Phantom Nishoba|Judgment|140|R|{5}{G}{W}|Creature — Cat Beast Spirit|0|0| +Centaur Rootcaster|Judgment|109|C|{3}{G}|Creature — Centaur Druid|2|2| +Branchsnap Lorian|Legions|118|U|{1}{G}{G}|Creature — Beast|4|1| +Murderous Spoils|Darksteel|48|U|{5}{B}|Instant||| +Pulse of the Forge|Darksteel|66|R|{1}{R}{R}|Instant||| +Aphetto Grifter|Onslaught|65|U|{2}{U}|Creature — Human Wizard|1|1| +Gustcloak Runner|Onslaught|35|C|{W}|Creature — Human Soldier|1|1| +Mirrodin's Core|Darksteel|165|U||Land||| +Glarecaster|Onslaught|30|R|{4}{W}{W}|Creature — Bird Cleric|3|3| +Crude Rampart|Onslaught|17|U|{3}{W}|Creature — Wall|4|5| +Unified Strike|Onslaught|58|C|{W}|Instant||| +Battlefield Medic|Onslaught|9|C|{1}{W}|Creature — Human Cleric|1|1| +Crown of Awe|Onslaught|16|C|{1}{W}|Enchantment — Aura||| +Gustcloak Harrier|Onslaught|34|C|{1}{W}{W}|Creature — Bird Soldier|2|2| +Piety Charm|Onslaught|49|C|{W}|Instant||| +Mistform Dreamer|Onslaught|93|C|{2}{U}|Creature — Illusion|2|1| +Information Dealer|Onslaught|88|C|{1}{U}|Creature — Human Wizard|1|1| +Blinkmoth Nexus|Darksteel|163|R||Land||| +Sage Aven|Onslaught|111|C|{3}{U}|Creature — Bird Wizard|1|3| +Mistform Stalker|Onslaught|98|U|{1}{U}|Creature — Illusion|1|1| +Discombobulate|Onslaught|79|U|{2}{U}{U}|Instant||| +Spy Network|Onslaught|115|C|{U}|Instant||| +Screaming Seahawk|Onslaught|112|C|{4}{U}|Creature — Bird|2|2| +Sea's Claim|Onslaught|113|C|{U}|Enchantment — Aura||| +Mistform Mask|Onslaught|94|C|{1}{U}|Enchantment — Aura||| +Trickery Charm|Onslaught|119|C|{U}|Instant||| +Meddle|Onslaught|92|U|{1}{U}|Instant||| +Screeching Buzzard|Onslaught|165|C|{3}{B}|Creature — Bird|2|2| +Shepherd of Rot|Onslaught|168|C|{1}{B}|Creature — Zombie Cleric|1|1| +Misery Charm|Onslaught|158|C|{B}|Instant||| +Cabal Slaver|Onslaught|131|U|{2}{B}|Creature — Human Cleric|2|1| +Syphon Soul|Onslaught|176|C|{2}{B}|Sorcery||| +Charging Slateback|Onslaught|194|C|{4}{R}|Creature — Beast|4|3| +Sparksmith|Onslaught|235|C|{1}{R}|Creature — Goblin|1|1| +Goblin Sky Raider|Onslaught|208|C|{2}{R}|Creature — Goblin Warrior|1|2| +Karstoderm|Darksteel|77|U|{2}{G}{G}|Creature — Beast|0|0| +Lavamancer's Skill|Onslaught|215|C|{1}{R}|Enchantment — Aura||| +Shock|Onslaught|227|C|{R}|Instant||| +Wave of Indifference|Onslaught|243|C|{X}{R}|Sorcery||| +Fever Charm|Onslaught|202|C|{R}|Instant||| +Darksteel Pendant|Darksteel|113|C|{2}|Artifact||| +Battering Craghorn|Onslaught|188|C|{2}{R}{R}|Creature — Goat Beast|3|1| +Snarling Undorak|Onslaught|283|C|{2}{G}{G}|Creature — Beast|3|3| +Elvish Pathcutter|Onslaught|256|C|{3}{G}|Creature — Elf Scout|1|2| +Wall of Mulch|Onslaught|298|U|{1}{G}|Creature — Wall|0|4| +Wellwisher|Onslaught|300|C|{1}{G}|Creature — Elf|1|1| +Vitality Charm|Onslaught|296|C|{G}|Instant||| +Flooded Strand|Onslaught|316|R||Land||| +Polluted Delta|Onslaught|321|R||Land||| +Bloodstained Mire|Onslaught|313|R||Land||| +Wooded Foothills|Onslaught|330|R||Land||| +Windswept Heath|Onslaught|328|R||Land||| +Gustcloak Sentinel|Onslaught|37|U|{2}{W}{W}|Creature — Human Soldier|3|3| +Weathered Wayfarer|Onslaught|59|R|{W}|Creature — Human Nomad Cleric|1|1| +Nameless One|Onslaught|100|U|{3}{U}|Creature — Wizard Avatar|*|*| +Ironfist Crusher|Onslaught|42|U|{4}{W}|Creature — Human Soldier|2|4| +Aven Soulgazer|Onslaught|8|U|{3}{W}{W}|Creature — Bird Cleric|3|3| +Daru Cavalier|Onslaught|18|C|{3}{W}|Creature — Human Soldier|2|2| +Mistform Shrieker|Onslaught|96|U|{3}{U}{U}|Creature — Illusion|3|3| +Mistform Wall|Onslaught|99|C|{2}{U}|Creature — Illusion Wall|1|4| +Disruptive Pitmage|Onslaught|81|C|{2}{U}|Creature — Human Wizard|1|1| +Thoughtbound Primoc|Onslaught|240|U|{2}{R}|Creature — Bird Beast|2|3| +Mistform Mutant|Onslaught|95|U|{4}{U}{U}|Creature — Illusion Mutant|3|4| +Aphetto Alchemist|Onslaught|64|U|{1}{U}|Creature — Human Wizard|1|2| +Clone|Onslaught|75|R|{3}{U}|Creature — Shapeshifter|0|0| +Trade Secrets|Onslaught|118|R|{1}{U}{U}|Sorcery||| +Quicksilver Dragon|Onslaught|103|R|{4}{U}{U}|Creature — Dragon|5|5| +Cabal Archon|Onslaught|129|U|{2}{B}|Creature — Human Cleric|2|2| +Boneknitter|Onslaught|128|U|{1}{B}|Creature — Zombie Cleric|1|1| +Doomed Necromancer|Onslaught|140|R|{2}{B}|Creature — Human Cleric Mercenary|2|2| +Walking Desecration|Onslaught|180|U|{2}{B}|Creature — Zombie|1|1| +Death Match|Onslaught|136|R|{3}{B}|Enchantment||| +Kaboom!|Onslaught|214|R|{4}{R}|Sorcery||| +Loxodon Mystic|Darksteel|7|C|{3}{W}{W}|Creature — Elephant Cleric|3|3| +Skirk Prospector|Onslaught|230|C|{R}|Creature — Goblin|1|1| +Ridgetop Raptor|Legions|108|U|{3}{R}|Creature — Lizard Beast|2|1| +Mana Echoes|Onslaught|218|R|{2}{R}{R}|Enchantment||| +Gigapede|Onslaught|264|R|{3}{G}{G}|Creature — Insect|6|1| +Venomspout Brackus|Onslaught|295|U|{6}{G}|Creature — Beast|5|5| +Embermage Goblin|Onslaught|200|U|{3}{R}|Creature — Goblin Wizard|1|1| +Flamestick Courier|Onslaught|203|U|{2}{R}|Creature — Goblin|2|1| +Everglove Courier|Onslaught|262|U|{2}{G}|Creature — Elf|2|1| +Frightshroud Courier|Onslaught|149|U|{2}{B}|Creature — Zombie|2|1| +Ghosthelm Courier|Onslaught|85|U|{2}{U}|Creature — Human Wizard|2|1| +Pearlspear Courier|Onslaught|48|U|{2}{W}|Creature — Human Soldier|2|1| +Talisman of Progress|Mirrodin|256|U|{2}|Artifact||| +Talisman of Dominance|Mirrodin|253|U|{2}|Artifact||| +Talisman of Indulgence|Mirrodin|255|U|{2}|Artifact||| +Talisman of Impulse|Mirrodin|254|U|{2}|Artifact||| +Talisman of Unity|Mirrodin|257|U|{2}|Artifact||| +Gustcloak Savior|Onslaught|36|R|{4}{W}|Creature — Bird Soldier|3|4| +Liege of the Axe|Legions|16|U|{3}{W}|Creature — Human Soldier|2|3| +Sigil of the New Dawn|Onslaught|55|R|{3}{W}|Enchantment||| +True Believer|Onslaught|57|R|{W}{W}|Creature — Human Cleric|2|2| +Gangrenous Goliath|Onslaught|150|R|{3}{B}{B}|Creature — Zombie Giant|4|4| +Endemic Plague|Onslaught|142|R|{3}{B}|Sorcery||| +Harsh Mercy|Onslaught|39|R|{2}{W}|Sorcery||| +Circle of Solace|Onslaught|13|R|{3}{W}|Enchantment||| +Mistform Skyreaver|Onslaught|97|R|{5}{U}{U}|Creature — Illusion|6|6| +Callous Oppressor|Onslaught|72|R|{1}{U}{U}|Creature — Cephalid|1|2| +Future Sight|Onslaught|84|R|{2}{U}{U}{U}|Enchantment||| +Peer Pressure|Onslaught|101|R|{3}{U}|Sorcery||| +Arcbound Overseer|Darksteel|99|R|{8}|Artifact Creature — Golem|0|0| +Rotlung Reanimator|Onslaught|164|R|{2}{B}|Creature — Zombie Cleric|2|2| +Ebonblade Reaper|Onslaught|141|R|{2}{B}|Creature — Human Cleric|1|1| +Grand Coliseum|Onslaught|319|R||Land||| +Kilnmouth Dragon|Legions|104|R|{5}{R}{R}|Creature — Dragon|5|5| +Spitfire Handler|Onslaught|236|U|{1}{R}|Creature — Goblin|1|1| +Shaleskin Bruiser|Onslaught|226|U|{6}{R}|Creature — Beast|4|4| +Butcher Orgg|Onslaught|192|R|{4}{R}{R}{R}|Creature — Orgg|6|6| +Tephraderm|Onslaught|239|R|{4}{R}|Creature — Beast|4|5| +Risky Move|Onslaught|223|R|{3}{R}{R}{R}|Enchantment||| +Dragon Roost|Onslaught|198|R|{4}{R}{R}|Enchantment||| +Gratuitous Violence|Onslaught|212|R|{2}{R}{R}{R}|Enchantment||| +Avarice Totem|Fifth Dawn|104|U|{1}|Artifact||| +Krosan Colossus|Onslaught|270|R|{6}{G}{G}{G}|Creature — Beast|9|9| +Leery Fogbeast|Onslaught|273|C|{2}{G}|Creature — Beast|4|2| +Stag Beetle|Onslaught|285|R|{3}{G}{G}|Creature — Insect|0|0| +Tribal Unity|Onslaught|294|U|{X}{2}{G}|Instant||| +Centaur Glade|Onslaught|251|U|{3}{G}{G}|Enchantment||| +Weird Harvest|Onslaught|299|R|{X}{G}{G}|Sorcery||| +Words of Wilding|Onslaught|305|R|{2}{G}|Enchantment||| +Silklash Spider|Onslaught|281|R|{3}{G}{G}|Creature — Spider|2|7| +Pulse of the Tangle|Darksteel|80|R|{1}{G}{G}|Sorcery||| +Pulse of the Dross|Darksteel|50|R|{1}{B}{B}|Sorcery||| +Slate of Ancestry|Onslaught|310|R|{4}|Artifact||| +Pulse of the Fields|Darksteel|11|R|{1}{W}{W}|Instant||| +Mobilization|Onslaught|44|R|{2}{W}|Enchantment||| +Cryptic Gateway|Onslaught|306|R|{5}|Artifact||| +Catapult Squad|Onslaught|11|U|{1}{W}|Creature — Human Soldier|2|1| +Wirewood Savage|Onslaught|304|C|{2}{G}|Creature — Elf|2|2| +Aphetto Dredging|Onslaught|125|C|{3}{B}|Sorcery||| +Daru Lancer|Onslaught|20|C|{4}{W}{W}|Creature — Human Soldier|3|4| +Slipstream Eel|Onslaught|114|C|{5}{U}{U}|Creature — Fish Beast|6|6| +Defiant Elf|Legions|123|C|{G}|Creature — Elf|1|1| +Blackmail|Onslaught|127|U|{B}|Sorcery||| +Nosy Goblin|Onslaught|220|C|{2}{R}|Creature — Goblin|2|1| +Dawning Purist|Onslaught|22|U|{2}{W}|Creature — Human Cleric|2|2| +Glory Seeker|Onslaught|31|C|{1}{W}|Creature — Human Soldier|2|2| +Dragonstalker|Scourge|11|U|{4}{W}|Creature — Bird Soldier|3|3| +Grassland Crusader|Onslaught|32|C|{5}{W}|Creature — Human Cleric Soldier|2|4| +Gravel Slinger|Onslaught|33|C|{3}{W}|Creature — Human Soldier|1|3| +Daru Healer|Onslaught|19|C|{2}{W}|Creature — Human Cleric|1|2| +Exalted Angel|Onslaught|28|R|{4}{W}{W}|Creature — Angel|4|5| +Spitting Gourna|Onslaught|284|C|{3}{G}{G}|Creature — Beast|3|4| +Treespring Lorian|Onslaught|293|C|{5}{G}|Creature — Beast|5|4| +Goblin Taskmaster|Onslaught|210|C|{R}|Creature — Goblin|1|1| +Spined Basher|Onslaught|172|C|{2}{B}|Creature — Zombie Beast|3|1| +Headhunter|Onslaught|156|U|{1}{B}|Creature — Human Cleric|1|1| +Riptide Entrancer|Onslaught|108|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Snapping Thragg|Onslaught|233|U|{4}{R}|Creature — Beast|3|3| +Serpentine Basilisk|Onslaught|280|U|{2}{G}{G}|Creature — Basilisk|2|3| +Nova Cleric|Onslaught|45|U|{W}|Creature — Human Cleric|1|2| +Riptide Director|Legions|50|R|{2}{U}{U}|Creature — Human Wizard|2|3| +Grinning Demon|Onslaught|153|R|{2}{B}{B}|Creature — Demon|6|6| +Rockshard Elemental|Legions|109|R|{5}{R}{R}|Creature — Elemental|4|3| +Blistering Firecat|Onslaught|189|R|{1}{R}{R}{R}|Creature — Elemental Cat|7|1| +Brood Sliver|Legions|120|R|{4}{G}|Creature — Sliver|3|3| +Towering Baloth|Onslaught|292|U|{6}{G}{G}|Creature — Beast|7|6| +Broodhatch Nantuko|Onslaught|250|U|{1}{G}|Creature — Insect Druid|1|1| +Doubtless One|Onslaught|27|U|{3}{W}|Creature — Cleric Avatar|*|*| +Heedless One|Onslaught|265|U|{3}{G}|Creature — Elf Avatar|*|*| +Soulless One|Onslaught|171|U|{3}{B}|Creature — Zombie Avatar|*|*| +Reckless One|Onslaught|222|U|{3}{R}|Creature — Goblin Avatar|*|*| +Cabal Interrogator|Scourge|57|U|{1}{B}|Creature — Zombie Wizard|1|1| +Skittish Valesk|Onslaught|231|U|{6}{R}|Creature — Beast|5|5| +Airdrop Condor|Onslaught|186|U|{4}{R}|Creature — Bird|2|2| +Defensive Maneuvers|Onslaught|23|C|{3}{W}|Instant||| +Syphon Mind|Onslaught|175|C|{3}{B}|Sorcery||| +Goblin Sledder|Onslaught|209|C|{R}|Creature — Goblin|1|1| +Wirewood Elf|Onslaught|301|C|{1}{G}|Creature — Elf Druid|1|2| +Spurred Wolverine|Onslaught|237|C|{4}{R}|Creature — Wolverine Beast|3|2| +Birchlore Rangers|Onslaught|248|C|{G}|Creature — Elf Druid|1|1| +Gustcloak Skirmisher|Onslaught|38|U|{3}{W}|Creature — Bird Soldier|2|3| +Goblin Pyromancer|Onslaught|206|R|{3}{R}|Creature — Goblin Wizard|2|2| +Wirewood Pride|Onslaught|303|C|{G}|Instant||| +Ixidor's Will|Onslaught|90|C|{2}{U}|Instant||| +Profane Prayers|Onslaught|162|C|{2}{B}{B}|Sorcery||| +Brightstone Ritual|Onslaught|191|C|{R}|Instant||| +Thunder of Hooves|Onslaught|242|U|{3}{R}|Sorcery||| +Riptide Biologist|Onslaught|106|C|{1}{U}|Creature — Human Wizard|1|2| +Fallen Cleric|Onslaught|145|C|{4}{B}|Creature — Zombie Cleric|4|2| +Wall of Deceit|Legions|55|U|{1}{U}|Creature — Wall|0|5| +Cabal Executioner|Onslaught|130|U|{2}{B}{B}|Creature — Human Cleric|2|2| +Haunted Cadaver|Onslaught|154|C|{3}{B}|Creature — Zombie|2|2| +Thrashing Mudspawn|Onslaught|177|U|{3}{B}{B}|Creature — Beast|4|4| +Rorix Bladewing|Onslaught|224|R|{3}{R}{R}{R}|Legendary Creature — Dragon|6|5| +Silvos, Rogue Elemental|Onslaught|282|R|{3}{G}{G}{G}|Legendary Creature — Elemental|8|5| +Jareth, Leonine Titan|Onslaught|43|R|{3}{W}{W}{W}|Legendary Creature — Cat Giant|4|7| +Supreme Inquisitor|Onslaught|117|R|{3}{U}{U}|Creature — Human Wizard|1|3| +Visara the Dreadful|Onslaught|179|R|{3}{B}{B}{B}|Legendary Creature — Gorgon|5|5| +Break Open|Onslaught|190|C|{1}{R}|Instant||| +Dwarven Blastminer|Onslaught|199|U|{1}{R}|Creature — Dwarf|1|1| +Dive Bomber|Onslaught|26|C|{3}{W}|Creature — Bird Soldier|2|2| +Shieldmage Elder|Onslaught|54|U|{5}{W}|Creature — Human Cleric Wizard|2|3| +Ancestor's Prophet|Onslaught|3|R|{4}{W}|Creature — Human Cleric|1|5| +Crown of Ascension|Onslaught|78|C|{1}{U}|Enchantment — Aura||| +Imagecrafter|Onslaught|87|C|{U}|Creature — Human Wizard|1|1| +Riptide Chronologist|Onslaught|107|U|{3}{U}{U}|Creature — Human Wizard|1|3| +Goblin Goon|Legions|99|R|{3}{R}|Creature — Goblin Mutant|6|6| +Airborne Aid|Onslaught|62|C|{3}{U}|Sorcery||| +Taunting Elf|Onslaught|290|C|{G}|Creature — Elf|0|1| +Aurification|Onslaught|6|R|{2}{W}{W}|Enchantment||| +Bloodline Shaman|Onslaught|249|U|{1}{G}|Creature — Elf Wizard Shaman|1|1| +Festering Goblin|Onslaught|148|C|{B}|Creature — Zombie Goblin|1|1| +Aphetto Vulture|Onslaught|126|U|{4}{B}{B}|Creature — Zombie Bird|3|2| +Wirewood Herald|Onslaught|302|C|{1}{G}|Creature — Elf|1|1| +Biorhythm|Onslaught|247|R|{6}{G}{G}|Sorcery||| +Riptide Mangler|Legions|51|R|{1}{U}|Creature — Beast|0|3| +Custody Battle|Onslaught|197|U|{1}{R}|Enchantment — Aura||| +Artificial Evolution|Onslaught|67|R|{U}|Instant||| +Symbiotic Beast|Onslaught|287|U|{4}{G}{G}|Creature — Insect Beast|4|4| +Symbiotic Wurm|Onslaught|289|R|{5}{G}{G}{G}|Creature — Wurm|7|7| +Crown of Vigor|Onslaught|253|C|{1}{G}|Enchantment — Aura||| +Elvish Warrior|Onslaught|260|C|{G}{G}|Creature — Elf Warrior|2|3| +Tempting Wurm|Onslaught|291|R|{1}{G}|Creature — Wurm|5|5| +Arcanis the Omnipotent|Onslaught|66|R|{3}{U}{U}{U}|Legendary Creature — Wizard|3|4| +Oblation|Onslaught|46|R|{2}{W}|Instant||| +Goblin Machinist|Onslaught|204|U|{4}{R}|Creature — Goblin|0|5| +Elven Riders|Onslaught|254|U|{3}{G}{G}|Creature — Elf|3|3| +Crown of Fury|Onslaught|196|C|{1}{R}|Enchantment — Aura||| +Crown of Suspicion|Onslaught|134|C|{1}{B}|Enchantment — Aura||| +Crafty Pathmage|Onslaught|77|C|{2}{U}|Creature — Human Wizard|1|1| +Voidmage Prodigy|Onslaught|120|R|{U}{U}|Creature — Human Wizard|2|1| +Forest|Onslaught|350|L||Basic Land — Forest||| +Forest|Onslaught|349|L||Basic Land — Forest||| +Mountain|Onslaught|346|L||Basic Land — Mountain||| +Mountain|Onslaught|345|L||Basic Land — Mountain||| +Mountain|Onslaught|344|L||Basic Land — Mountain||| +Mountain|Onslaught|343|L||Basic Land — Mountain||| +Swamp|Onslaught|342|L||Basic Land — Swamp||| +Swamp|Onslaught|341|L||Basic Land — Swamp||| +Swamp|Onslaught|340|L||Basic Land — Swamp||| +Swamp|Onslaught|339|L||Basic Land — Swamp||| +Forest|Onslaught|348|L||Basic Land — Forest||| +Forest|Onslaught|347|L||Basic Land — Forest||| +Island|Onslaught|338|L||Basic Land — Island||| +Island|Onslaught|337|L||Basic Land — Island||| +Island|Onslaught|336|L||Basic Land — Island||| +Island|Onslaught|335|L||Basic Land — Island||| +Plains|Onslaught|334|L||Basic Land — Plains||| +Plains|Onslaught|333|L||Basic Land — Plains||| +Plains|Onslaught|332|L||Basic Land — Plains||| +Plains|Onslaught|331|L||Basic Land — Plains||| +Shared Triumph|Onslaught|53|R|{1}{W}|Enchantment||| +Dispersing Orb|Onslaught|80|U|{3}{U}{U}|Enchantment||| +Cover of Darkness|Onslaught|133|R|{1}{B}|Enchantment||| +Steely Resolve|Onslaught|286|R|{1}{G}|Enchantment||| +Aven Brigadier|Onslaught|7|R|{3}{W}{W}{W}|Creature — Bird Soldier|3|5| +Psychic Trance|Onslaught|102|R|{2}{U}{U}|Instant||| +Voice of the Woods|Onslaught|297|R|{3}{G}{G}|Creature — Elf|2|2| +Words of Wind|Onslaught|122|R|{2}{U}|Enchantment||| +Words of Worship|Onslaught|61|R|{2}{W}|Enchantment||| +Words of Waste|Onslaught|182|R|{2}{B}|Enchantment||| +Words of War|Onslaught|244|R|{2}{R}|Enchantment||| +Goblin Piledriver|Onslaught|205|R|{1}{R}|Creature — Goblin Warrior|1|2| +Skirk Fire Marshal|Onslaught|229|R|{3}{R}{R}|Creature — Goblin|2|2| +Aggravated Assault|Onslaught|185|R|{2}{R}|Enchantment||| +Dream Chisel|Onslaught|308|R|{2}|Artifact||| +Doom Cannon|Onslaught|307|R|{6}|Artifact||| +Riptide Replicator|Onslaught|309|R|{X}{4}|Artifact||| +Standardize|Onslaught|116|R|{U}{U}|Instant||| +Pinpoint Avalanche|Onslaught|221|C|{3}{R}{R}|Instant||| +Kamahl, Fist of Krosa|Onslaught|268|R|{4}{G}{G}|Legendary Creature — Human Druid|4|3| +Seaside Haven|Onslaught|323|U||Land||| +Contested Cliffs|Onslaught|314|R||Land||| +Unholy Grotto|Onslaught|327|R||Land||| +Starlit Sanctum|Onslaught|325|U||Land||| +Phage the Untouchable|Legions|78|R|{3}{B}{B}{B}{B}|Legendary Creature — Zombie Minion|4|4| +Ixidor, Reality Sculptor|Onslaught|89|R|{3}{U}{U}|Legendary Creature — Human Wizard|3|4| +Rummaging Wizard|Onslaught|110|U|{3}{U}|Creature — Human Wizard|2|2| +Exiled Doomsayer|Scourge|13|R|{1}{W}|Creature — Human Cleric|1|2| +Crowd Favorites|Onslaught|15|U|{6}{W}|Creature — Human Soldier|4|4| +Aven Fateshaper|Onslaught|69|U|{6}{U}|Creature — Bird Wizard|4|5| +Righteous Cause|Onslaught|51|U|{3}{W}{W}|Enchantment||| +Smother|Onslaught|170|U|{1}{B}|Instant||| +Whipcorder|Onslaught|60|U|{W}{W}|Creature — Human Soldier Rebel|2|2| +Krosan Groundshaker|Onslaught|271|U|{4}{G}{G}{G}|Creature — Beast|6|6| +Head Games|Onslaught|155|R|{3}{B}{B}|Sorcery||| +Disciple of Grace|Onslaught|25|C|{1}{W}|Creature — Human Cleric|1|2| +Disciple of Malice|Onslaught|139|C|{1}{B}|Creature — Human Cleric|1|2| +Essence Fracture|Onslaught|82|U|{3}{U}{U}|Sorcery||| +Swat|Onslaught|174|C|{1}{B}{B}|Instant||| +Secluded Steppe|Onslaught|324|C||Land||| +Lonely Sandbar|Onslaught|320|C||Land||| +Barren Moor|Onslaught|312|C||Land||| +Forgotten Cave|Onslaught|317|C||Land||| +Tranquil Thicket|Onslaught|326|C||Land||| +Death Pulse|Onslaught|137|U|{2}{B}{B}|Instant||| +Solar Blast|Onslaught|234|C|{3}{R}|Instant||| +Sunfire Balm|Onslaught|56|U|{2}{W}|Instant||| +Primal Boost|Onslaught|277|U|{2}{G}|Instant||| +Complicate|Onslaught|76|U|{2}{U}|Instant||| +Lightning Rift|Onslaught|217|U|{1}{R}|Enchantment||| +Astral Slide|Onslaught|4|U|{2}{W}|Enchantment||| +Fleeting Aven|Onslaught|83|U|{1}{U}{U}|Creature — Bird Wizard|2|2| +Withering Hex|Onslaught|181|U|{B}|Enchantment — Aura||| +Invigorating Boon|Onslaught|267|U|{1}{G}|Enchantment||| +Demystify|Onslaught|24|C|{W}|Instant||| +Renewed Faith|Onslaught|50|C|{2}{W}|Instant||| +Inspirit|Onslaught|41|U|{2}{W}|Instant||| +Mage's Guile|Onslaught|91|C|{1}{U}|Instant||| +Blatant Thievery|Onslaught|71|R|{4}{U}{U}{U}|Sorcery||| +Dirge of Dread|Onslaught|138|C|{2}{B}|Sorcery||| +Lay Waste|Onslaught|216|C|{3}{R}|Sorcery||| +Run Wild|Onslaught|279|U|{G}|Instant||| +Choking Tethers|Onslaught|74|C|{3}{U}|Instant||| +Akroma's Blessing|Onslaught|1|U|{2}{W}|Instant||| +Improvised Armor|Onslaught|40|U|{3}{W}|Enchantment — Aura||| +Unburden|Scourge|77|C|{1}{B}{B}|Sorcery||| +Fade from Memory|Onslaught|144|U|{B}|Instant||| +Undead Gladiator|Onslaught|178|R|{1}{B}{B}|Creature — Zombie Barbarian|3|1| +Starstorm|Onslaught|238|R|{X}{R}{R}|Instant||| +Akroma's Vengeance|Onslaught|2|R|{4}{W}{W}|Sorcery||| +Feeding Frenzy|Onslaught|147|U|{2}{B}|Instant||| +Sandskin|Onslaught|52|C|{2}{W}|Enchantment — Aura||| +Slice and Dice|Onslaught|232|U|{4}{R}{R}|Sorcery||| +Explosive Vegetation|Onslaught|263|U|{3}{G}|Sorcery||| +Shade's Breath|Onslaught|167|U|{1}{B}|Instant||| +Silent Specter|Onslaught|169|R|{4}{B}{B}|Creature — Specter|4|4| +Reminisce|Onslaught|105|U|{2}{U}|Sorcery||| +Annex|Onslaught|63|U|{2}{U}{U}|Enchantment — Aura||| +Blade Sliver|Legions|88|U|{2}{R}|Creature — Sliver|2|2| +Plated Sliver|Legions|19|C|{W}|Creature — Sliver|1|1| +Bladewing the Risen|Scourge|136|R|{3}{B}{B}{R}{R}|Legendary Creature — Zombie Dragon|4|4| +Essence Sliver|Legions|13|R|{3}{W}|Creature — Sliver|3|3| +Synapse Sliver|Legions|53|R|{4}{U}|Creature — Sliver|3|3| +Frenetic Raptor|Legions|93|U|{5}{R}|Creature — Lizard Beast|6|6| +Quick Sliver|Legions|136|C|{1}{G}|Creature — Sliver|1|1| +Crypt Sliver|Legions|63|C|{1}{B}|Creature — Sliver|1|1| +Mistform Sliver|Legions|46|C|{1}{U}|Creature — Illusion Sliver|1|1| +Toxin Sliver|Legions|84|R|{3}{B}|Creature — Sliver|3|3| +Needleshot Gourna|Legions|133|C|{4}{G}{G}|Creature — Beast|3|6| +Zealous Inquisitor|Scourge|27|C|{2}{W}|Creature — Human Cleric|2|2| +Magma Sliver|Legions|107|R|{3}{R}|Creature — Sliver|3|3| +Akroma, Angel of Wrath|Legions|1|R|{5}{W}{W}{W}|Legendary Creature — Angel|6|6| +Scion of Darkness|Legions|79|R|{5}{B}{B}{B}|Creature — Avatar|6|6| +Daru Mender|Legions|8|U|{W}|Creature — Human Cleric|1|1| +Willbender|Legions|58|U|{1}{U}|Creature — Human Wizard|1|2| +Skinthinner|Legions|80|C|{1}{B}|Creature — Zombie|2|1| +Skirk Marauder|Legions|113|C|{1}{R}|Creature — Goblin|2|1| +Patron of the Wild|Legions|134|C|{G}|Creature — Elf|1|1| +Wingbeat Warrior|Legions|29|C|{2}{W}|Creature — Bird Soldier Warrior|2|1| +Echo Tracer|Legions|37|C|{2}{U}|Creature — Human Wizard|2|2| +Aphetto Exterminator|Legions|59|U|{2}{B}|Creature — Human Wizard|3|1| +Gempalm Sorcerer|Legions|39|U|{2}{U}|Creature — Human Wizard|2|2| +Gempalm Polluter|Legions|70|C|{5}{B}|Creature — Zombie|4|3| +Gempalm Incinerator|Legions|94|U|{2}{R}|Creature — Goblin|2|1| +Gempalm Strider|Legions|127|U|{1}{G}|Creature — Elf|2|2| +Master of the Veil|Legions|43|U|{2}{U}{U}|Creature — Human Wizard|2|3| +Voidmage Apprentice|Legions|54|C|{1}{U}|Creature — Human Wizard|1|1| +Glowrider|Legions|15|R|{2}{W}|Creature — Human Cleric|2|1| +Dark Supplicant|Legions|64|U|{B}|Creature — Human Cleric|1|1| +Shifting Sliver|Legions|52|U|{3}{U}|Creature — Sliver|2|2| +Skirk Outrider|Legions|114|C|{3}{R}|Creature — Goblin|2|2| +Elvish Soultiller|Legions|124|R|{3}{G}{G}|Creature — Elf Mutant|5|4| +Sundering Titan|Darksteel|146|R|{8}|Artifact Creature — Golem|7|10| +Weaver of Lies|Legions|57|R|{5}{U}{U}|Creature — Beast|4|4| +Fugitive Wizard|Legions|38|C|{U}|Creature — Human Wizard|1|1| +Mistform Wakecaster|Legions|48|U|{4}{U}|Creature — Illusion|2|3| +Tribal Forcemage|Legions|142|R|{1}{G}|Creature — Elf Wizard|1|1| +Earthblighter|Legions|68|U|{1}{B}|Creature — Human Cleric|1|1| +Crookclaw Elder|Legions|34|U|{5}{U}|Creature — Bird Wizard|3|2| +Ghastly Remains|Legions|71|R|{B}{B}{B}|Creature — Zombie|0|0| +Wheel and Deal|Onslaught|121|R|{3}{U}|Instant||| +Nantuko Husk|Onslaught|159|C|{2}{B}|Creature — Zombie Insect|2|2| +Caller of the Claw|Legions|121|R|{2}{G}|Creature — Elf|2|2| +Animal Magnetism|Onslaught|245|R|{4}{G}|Sorcery||| +Hundroog|Legions|129|C|{6}{G}|Creature — Beast|4|7| +Stoic Champion|Legions|21|U|{W}{W}|Creature — Human Soldier|2|2| +Zombie Brute|Legions|87|U|{6}{B}|Creature — Zombie|5|4| +Celestial Gatekeeper|Legions|6|R|{3}{W}{W}|Creature — Bird Cleric|2|2| +Primal Whisperer|Legions|135|R|{4}{G}|Creature — Elf Soldier|2|2| +Goblin Dynamo|Legions|97|U|{5}{R}{R}|Creature — Goblin Mutant|4|4| +Clickslither|Legions|90|R|{1}{R}{R}{R}|Creature — Insect|3|3| +Daru Stinger|Legions|10|C|{3}{W}|Creature — Human Soldier|1|1| +Primoc Escapee|Legions|49|U|{6}{U}|Creature — Bird Beast|4|4| +Macetail Hystrodon|Legions|106|C|{6}{R}|Creature — Beast|4|4| +Avarax|Onslaught|187|U|{3}{R}{R}|Creature — Beast|3|3| +Krosan Tusker|Onslaught|272|C|{5}{G}{G}|Creature — Boar Beast|6|5| +Krark-Clan Stoker|Darksteel|65|C|{2}{R}|Creature — Goblin Shaman|2|2| +Frontline Strategist|Scourge|15|C|{W}|Creature — Human Soldier|1|1| +Aven Redeemer|Legions|3|C|{3}{W}|Creature — Bird Cleric|2|2| +Frozen Solid|Scourge|36|C|{1}{U}{U}|Enchantment — Aura||| +Treetop Scout|Scourge|130|C|{G}|Creature — Elf Scout|1|1| +Nim Abomination|Darksteel|49|U|{2}{B}|Creature — Zombie|3|4| +Reap and Sow|Darksteel|81|C|{3}{G}|Sorcery||| +Savage Beating|Darksteel|67|R|{3}{R}{R}|Instant||| +Second Sight|Darksteel|33|U|{2}{U}|Instant||| +Soulscour|Darksteel|14|R|{7}{W}{W}{W}|Sorcery||| +Carrion Feeder|Scourge|59|C|{B}|Creature — Zombie|1|1| +Edgewalker|Scourge|137|U|{1}{W}{B}|Creature — Human Cleric|2|2| +Zombie Cutthroat|Scourge|81|C|{3}{B}{B}|Creature — Zombie|3|4| +Screams from Within|Darksteel|52|U|{1}{B}{B}|Enchantment — Aura||| +Decree of Pain|Scourge|64|R|{6}{B}{B}|Sorcery||| +Flamewave Invoker|Legions|92|C|{2}{R}|Creature — Goblin Mutant|2|2| +Goblin Brigand|Scourge|94|C|{1}{R}|Creature — Goblin Warrior|2|2| +Cosmic Larva|Fifth Dawn|63|R|{1}{R}{R}|Creature — Beast|7|6| +Torrent of Fire|Scourge|107|C|{3}{R}{R}|Sorcery||| +Dragon Breath|Scourge|86|C|{1}{R}|Enchantment — Aura||| +Stonewood Invoker|Legions|139|C|{1}{G}|Creature — Elf Mutant|2|2| +Krosan Warchief|Scourge|123|U|{2}{G}|Creature — Beast|2|2| +Wirewood Guardian|Scourge|132|C|{5}{G}{G}|Creature — Elf Mutant|6|6| +Elvish Aberration|Scourge|118|U|{5}{G}|Creature — Elf Mutant|4|5| +Accelerated Mutation|Scourge|109|C|{3}{G}{G}|Instant||| +Dismantle|Darksteel|57|U|{2}{R}|Sorcery||| +Claws of Wirewood|Scourge|114|U|{3}{G}|Sorcery||| +One with Nature|Scourge|125|U|{G}|Enchantment — Aura||| +Trinisphere|Darksteel|154|R|{3}|Artifact||| +Tanglewalker|Darksteel|86|U|{2}{G}|Creature — Dryad|2|2| +Darksteel Reactor|Darksteel|114|R|{4}|Artifact||| +Siege-Gang Commander|Scourge|103|R|{3}{R}{R}|Creature — Goblin|2|2| +Misguided Rage|Scourge|99|C|{2}{R}|Sorcery||| +Auriok Siege Sled|Darksteel|105|U|{6}|Artifact Creature — Juggernaut|3|5| +Burden of Greed|Darksteel|38|C|{3}{B}|Instant||| +Upwelling|Scourge|131|R|{3}{G}|Enchantment||| +Magnetic Flux|Darksteel|25|C|{2}{U}|Instant||| +Darksteel Brute|Darksteel|108|U|{2}|Artifact||| +Xantid Swarm|Scourge|135|R|{G}|Creature — Insect|0|1| +Form of the Dragon|Scourge|93|R|{4}{R}{R}{R}|Enchantment||| +Goblin Psychopath|Scourge|95|U|{3}{R}|Creature — Goblin Mutant|5|5| +Dragon Mage|Scourge|87|R|{5}{R}{R}|Creature — Dragon Wizard|5|5| +Dimensional Breach|Scourge|9|R|{5}{W}{W}|Sorcery||| +Relic Barrier|Fifth Dawn|147|U|{2}|Artifact||| +Trap Digger|Scourge|24|R|{3}{W}|Creature — Human Soldier|1|3| +Riptide Survivor|Scourge|48|U|{2}{U}|Creature — Human Wizard|2|1| +Juggernaut|Darksteel|125|U|{4}|Artifact Creature — Juggernaut|5|3| +Pemmin's Aura|Scourge|45|U|{1}{U}{U}|Enchantment — Aura||| +Raven Guild Master|Scourge|47|R|{1}{U}{U}|Creature — Human Wizard Mutant|1|1| +Undead Warchief|Scourge|78|U|{2}{B}{B}|Creature — Zombie|1|1| +Test of Faith|Darksteel|17|U|{1}{W}|Instant||| +Skirk Volcanist|Scourge|104|U|{3}{R}|Creature — Goblin|3|1| +Goblin Warchief|Scourge|97|U|{1}{R}{R}|Creature — Goblin|2|2| +Echoing Calm|Darksteel|2|C|{1}{W}|Instant||| +Extra Arms|Scourge|92|U|{4}{R}|Enchantment — Aura||| +Woodcloaker|Scourge|134|C|{5}{G}|Creature — Elf|3|3| +Ambush Commander|Scourge|111|R|{3}{G}{G}|Creature — Elf|2|2| +Day of the Dragons|Scourge|31|R|{4}{U}{U}{U}|Enchantment||| +Parallel Thoughts|Scourge|44|R|{3}{U}{U}|Enchantment||| +Long-Term Plans|Scourge|38|U|{2}{U}|Instant||| +Thundercloud Elemental|Scourge|54|U|{5}{U}{U}|Creature — Elemental|3|4| +Seedborn Muse|Legions|138|R|{3}{G}{G}|Creature — Spirit|2|4| +Final Punishment|Scourge|67|R|{3}{B}{B}|Sorcery||| +War Elemental|Mirrodin|112|R|{R}{R}{R}|Creature — Elemental|1|1| +Soul Collector|Scourge|74|R|{3}{B}{B}|Creature — Vampire|3|4| +Nefashu|Scourge|70|R|{4}{B}{B}|Creature — Zombie Mutant|5|3| +Rain of Blades|Scourge|20|U|{W}|Instant||| +Gilded Light|Scourge|16|U|{1}{W}|Instant||| +Daru Warchief|Scourge|6|U|{2}{W}{W}|Creature — Human Soldier|1|1| +Aven Liberator|Scourge|4|C|{2}{W}{W}|Creature — Bird Soldier|2|3| +Anurid Murkdiver|Onslaught|124|C|{4}{B}{B}|Creature — Zombie Frog Beast|4|3| +Dragon Tyrant|Scourge|88|R|{8}{R}{R}|Creature — Dragon|6|6| +Ageless Sentinels|Scourge|1|R|{3}{W}|Creature — Wall|4|4| +Smokespew Invoker|Legions|81|C|{2}{B}|Creature — Zombie Mutant|3|1| +Twisted Abomination|Scourge|76|C|{5}{B}|Creature — Zombie Mutant|5|3| +Mistform Seaswift|Legions|45|C|{3}{U}|Creature — Illusion|3|1| +Glowering Rogon|Legions|128|C|{5}{G}|Creature — Beast|4|4| +Embalmed Brawler|Legions|69|C|{2}{B}|Creature — Zombie|2|2| +Call to the Grave|Scourge|58|R|{4}{B}|Enchantment||| +Lingering Death|Scourge|69|C|{1}{B}|Enchantment — Aura||| +Rush of Knowledge|Scourge|49|C|{4}{U}|Sorcery||| +Metamorphose|Scourge|40|U|{1}{U}|Instant||| +Skulltap|Scourge|73|C|{1}{B}|Sorcery||| +Threaten|Onslaught|241|U|{2}{R}|Sorcery||| +Gempalm Avenger|Legions|14|C|{5}{W}|Creature — Human Soldier|3|5| +Starlight Invoker|Legions|20|C|{1}{W}|Creature — Human Cleric Mutant|1|3| +Wirewood Hivemaster|Legions|145|U|{1}{G}|Creature — Elf|1|1| +Glintwing Invoker|Legions|40|C|{4}{U}|Creature — Human Wizard Mutant|3|3| +Chromeshell Crab|Legions|32|R|{4}{U}|Creature — Crab Beast|3|3| +Blood Celebrant|Legions|61|C|{B}|Creature — Human Cleric|1|1| +Sootfeather Flock|Legions|82|C|{4}{B}|Creature — Bird|3|2| +Bloodstoke Howler|Legions|89|C|{5}{R}|Creature — Beast|3|4| +Nantuko Vigilante|Legions|132|C|{3}{G}|Creature — Insect Druid Mutant|3|2| +White Knight|Legions|27|U|{W}{W}|Creature — Human Knight|2|2| +Fierce Empath|Scourge|119|C|{2}{G}|Creature — Elf|1|1| +Forgotten Ancient|Scourge|120|R|{3}{G}|Creature — Elemental|0|3| +Fatal Mutation|Scourge|66|U|{B}|Enchantment — Aura||| +Karona, False God|Scourge|138|R|{1}{W}{U}{B}{R}{G}|Legendary Creature — Avatar|5|5| +Clutch of Undeath|Scourge|61|C|{3}{B}{B}|Enchantment — Aura||| +Root Sliver|Legions|137|U|{3}{G}|Creature — Sliver|2|2| +Warped Researcher|Legions|56|U|{4}{U}|Creature — Human Wizard Mutant|3|4| +Noxious Ghoul|Legions|77|U|{3}{B}{B}|Creature — Zombie|3|3| +Spectral Sliver|Legions|83|U|{2}{B}|Creature — Sliver Spirit|2|2| +Corpse Harvester|Legions|62|U|{3}{B}{B}|Creature — Zombie Wizard|3|3| +Chartooth Cougar|Scourge|84|C|{5}{R}|Creature — Cat Beast|4|4| +Shaleskin Plower|Legions|110|C|{3}{R}|Creature — Beast|3|2| +Goblin Firebug|Legions|98|C|{1}{R}|Creature — Goblin|2|2| +Pyrostatic Pillar|Scourge|100|U|{1}{R}|Enchantment||| +Goblin War Strike|Scourge|96|C|{R}|Sorcery||| +Goblin Turncoat|Legions|72|C|{1}{B}|Creature — Goblin Mercenary|2|1| +Ward Sliver|Legions|25|U|{4}{W}|Creature — Sliver|2|2| +Havoc Demon|Legions|74|R|{5}{B}{B}|Creature — Demon|5|5| +Dermoplasm|Legions|35|R|{2}{U}|Creature — Shapeshifter|1|1| +Skirk Alarmist|Legions|111|R|{1}{R}|Creature — Human Wizard|1|2| +Leonin Battlemage|Darksteel|5|U|{3}{W}|Creature — Cat Wizard|2|3| +Dawn Elemental|Scourge|7|R|{W}{W}{W}{W}|Creature — Elemental|3|3| +Silver Knight|Scourge|23|U|{W}{W}|Creature — Human Knight|2|2| +Dripping Dead|Legions|67|C|{4}{B}{B}|Creature — Zombie|4|1| +Goblin Clearcutter|Legions|96|U|{3}{R}|Creature — Goblin|3|3| +Krosan Drover|Scourge|122|C|{3}{G}|Creature — Elf|2|2| +Planar Guide|Legions|18|R|{W}|Creature — Human Cleric|1|1| +Wall of Hope|Legions|24|C|{W}|Creature — Wall|0|3| +Aven Envoy|Legions|30|C|{U}|Creature — Bird Soldier|0|2| +Vexing Beetle|Legions|143|R|{4}{G}|Creature — Insect|3|3| +Sunstrike Legionnaire|Legions|22|R|{1}{W}|Creature — Human Soldier|1|2| +Defender of the Order|Legions|11|R|{3}{W}|Creature — Human Cleric|2|4| +Root Elemental|Scourge|127|R|{4}{G}{G}|Creature — Elemental|6|5| +Berserk Murlodont|Legions|117|C|{4}{G}|Creature — Beast|3|3| +Decree of Annihilation|Scourge|85|R|{8}{R}{R}|Sorcery||| +Temple of the False God|Scourge|143|U||Land||| +Raven Guild Initiate|Scourge|46|C|{2}{U}|Creature — Human Wizard|1|4| +Aphetto Runecaster|Scourge|28|U|{3}{U}|Creature — Human Wizard|2|3| +Bonethorn Valesk|Scourge|82|C|{4}{R}|Creature — Beast|4|2| +Aven Farseer|Scourge|3|C|{1}{W}|Creature — Bird Soldier|1|1| +Eternal Dragon|Scourge|12|R|{5}{W}{W}|Creature — Dragon Spirit|5|5| +Dragon Scales|Scourge|10|C|{1}{W}|Enchantment — Aura||| +Reward the Faithful|Scourge|22|U|{W}|Instant||| +Mischievous Quanar|Scourge|42|R|{4}{U}|Creature — Beast|3|3| +Unstable Hulk|Legions|115|R|{1}{R}{R}|Creature — Goblin Mutant|2|2| +Infernal Caretaker|Legions|76|C|{3}{B}|Creature — Human Cleric|2|2| +Spark Spray|Scourge|105|C|{R}|Instant||| +Cabal Conditioning|Scourge|56|R|{6}{B}|Sorcery||| +Drinker of Sorrow|Legions|66|R|{2}{B}|Creature — Horror|5|3| +Bane of the Living|Legions|60|R|{2}{B}{B}|Creature — Insect|4|3| +Beacon of Destiny|Legions|5|R|{1}{W}|Creature — Human Cleric|1|3| +Enormous Baloth|Legions|125|U|{6}{G}|Creature — Beast|7|7| +Merchant of Secrets|Legions|44|C|{2}{U}|Creature — Human Wizard|1|1| +Daru Sanctifier|Legions|9|C|{3}{W}|Creature — Human Cleric|1|4| +Iron-Barb Hellion|Fifth Dawn|69|U|{5}{R}|Creature — Hellion Beast|5|4| +Imperial Hellkite|Legions|103|R|{5}{R}{R}|Creature — Dragon|6|6| +Keeper of the Nine Gales|Legions|42|R|{2}{U}|Creature — Bird Wizard|1|2| +Goblin Assassin|Legions|95|U|{3}{R}{R}|Creature — Goblin Assassin|2|2| +Akroma's Devoted|Legions|2|U|{3}{W}|Creature — Human Cleric|2|4| +Hunter Sliver|Legions|102|C|{1}{R}|Creature — Sliver|1|1| +Windborn Muse|Legions|28|R|{3}{W}|Creature — Spirit|2|3| +Dreamborn Muse|Legions|36|R|{2}{U}{U}|Creature — Spirit|2|2| +Graveborn Muse|Legions|73|R|{2}{B}{B}|Creature — Zombie Spirit|3|3| +Lavaborn Muse|Legions|105|R|{3}{R}|Creature — Spirit|3|3| +Timberwatch Elf|Legions|140|C|{2}{G}|Creature — Elf|1|2| +Whipgrass Entangler|Legions|26|C|{2}{W}|Creature — Human Cleric|1|3| +Goblin Lookout|Legions|101|C|{1}{R}|Creature — Goblin|1|2| +Totem Speaker|Legions|141|U|{4}{G}|Creature — Elf Druid|3|3| +Goblin Grappler|Legions|100|C|{R}|Creature — Goblin|1|1| +Swooping Talon|Legions|23|U|{4}{W}{W}|Creature — Bird Soldier|2|6| +Crested Craghorn|Legions|91|C|{4}{R}|Creature — Goat Beast|4|1| +Warbreak Trumpeter|Legions|116|U|{R}|Creature — Goblin|1|1| +Lowland Tracker|Legions|17|C|{4}{W}|Creature — Human Soldier|2|2| +Deftblade Elite|Legions|12|C|{W}|Creature — Human Soldier|1|1| +Brontotherium|Legions|119|U|{4}{G}{G}|Creature — Beast|5|3| +Krosan Vorine|Legions|131|C|{3}{G}|Creature — Cat Beast|3|2| +Force Bubble|Scourge|14|R|{2}{W}{W}|Enchantment||| +Daru Spiritualist|Scourge|5|C|{1}{W}|Creature — Human Cleric|1|1| +Decree of Justice|Scourge|8|R|{X}{X}{2}{W}{W}|Sorcery||| +Vile Deacon|Legions|85|C|{2}{B}{B}|Creature — Human Cleric|2|2| +Dragon Shadow|Scourge|65|C|{1}{B}|Enchantment — Aura||| +Ancient Ooze|Scourge|112|R|{5}{G}{G}|Creature — Ooze|*|*| +Kurgadon|Scourge|124|U|{4}{G}|Creature — Beast|3|3| +Sliver Overlord|Scourge|139|R|{W}{U}{B}{R}{G}|Legendary Creature — Sliver Mutant|7|7| +Tundra Wolves|Eighth Edition|54|C|{W}|Creature — Wolf|1|1| +Honor Guard|Eighth Edition|25|C|{W}|Creature — Human Soldier|1|1| +Master Decoy|Eighth Edition|29|C|{1}{W}|Creature — Human Soldier|1|2| +Samite Healer|Eighth Edition|41|C|{1}{W}|Creature — Human Cleric|1|1| +Crossbow Infantry|Eighth Edition|15|C|{1}{W}|Creature — Human Soldier Archer|1|1| +Angelic Page|Eighth Edition|2|C|{1}{W}|Creature — Angel Spirit|1|1| +Glory Seeker|Eighth Edition|21|C|{1}{W}|Creature — Human Soldier|2|2| +Standing Troops|Eighth Edition|48|C|{2}{W}|Creature — Human Soldier|1|4| +Venerable Monk|Eighth Edition|55|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Diving Griffin|Eighth Edition|17|C|{1}{W}{W}|Creature — Griffin|2|2| +Aven Cloudchaser|Eighth Edition|5|C|{3}{W}|Creature — Bird Soldier|2|2| +Razorfoot Griffin|Eighth Edition|36|C|{3}{W}|Creature — Griffin|2|2| +Aven Flock|Eighth Edition|6|C|{4}{W}|Creature — Bird Soldier|2|3| +Healing Salve|Eighth Edition|22|C|{W}|Instant||| +Holy Day|Eighth Edition|23|C|{W}|Instant||| +Holy Strength|Eighth Edition|24|C|{W}|Enchantment — Aura||| +Spirit Link|Eighth Edition|47|U|{W}|Enchantment — Aura||| +Redeem|Eighth Edition|37|C|{1}{W}|Instant||| +Demystify|Eighth Edition|16|C|{W}|Instant||| +Pacifism|Eighth Edition|33|C|{1}{W}|Enchantment — Aura||| +Sacred Nectar|Eighth Edition|40|C|{1}{W}|Sorcery||| +Solidarity|Eighth Edition|46|C|{3}{W}|Instant||| +Suntail Hawk|Eighth Edition|51|C|{W}|Creature — Bird|1|1| +Sword Dancer|Eighth Edition|53|U|{1}{W}|Creature — Human Rebel|1|2| +Metal Fatigue|Darksteel|8|C|{2}{W}|Instant||| +Wall of Swords|Eighth Edition|56|U|{3}{W}|Creature — Wall|3|5| +Seasoned Marshal|Eighth Edition|44|U|{2}{W}{W}|Creature — Human Soldier|2|2| +Ardent Militia|Eighth Edition|3|U|{4}{W}|Creature — Human Soldier|2|5| +Angel of Mercy|Eighth Edition|1|U|{4}{W}|Creature — Angel|3|3| +Staunch Defenders|Eighth Edition|49|U|{3}{W}{W}|Creature — Human Soldier|3|4| +Sanctimony|Eighth Edition|42|U|{1}{W}|Enchantment||| +Rain of Blades|Eighth Edition|35|U|{W}|Instant||| +Elite Javelineer|Eighth Edition|19|U|{2}{W}|Creature — Human Soldier|2|2| +Chastise|Eighth Edition|9|U|{3}{W}|Instant||| +Peach Garden Oath|Eighth Edition|34|U|{W}|Sorcery||| +Circle of Protection: White|Eighth Edition|14|U|{1}{W}|Enchantment||| +Circle of Protection: Blue|Eighth Edition|11|U|{1}{W}|Enchantment||| +Circle of Protection: Black|Eighth Edition|10|U|{1}{W}|Enchantment||| +Circle of Protection: Red|Eighth Edition|13|U|{1}{W}|Enchantment||| +Circle of Protection: Green|Eighth Edition|12|U|{1}{W}|Enchantment||| +Savannah Lions|Eighth Edition|43|R|{W}|Creature — Cat|2|1| +Intrepid Hero|Eighth Edition|26|R|{2}{W}|Creature — Human Soldier|1|1| +Sunweb|Eighth Edition|52|R|{3}{W}|Creature — Wall|5|6| +Oracle's Attendants|Eighth Edition|32|R|{3}{W}|Creature — Human Soldier|1|5| +Blinding Angel|Eighth Edition|8|R|{3}{W}{W}|Creature — Angel|2|4| +Serra Angel|Eighth Edition|45|R|{3}{W}{W}|Creature — Angel|4|4| +Master Healer|Eighth Edition|30|R|{4}{W}|Creature — Human Cleric|1|4| +Elite Archers|Eighth Edition|18|R|{5}{W}|Creature — Human Soldier Archer|3|3| +Sacred Ground|Eighth Edition|39|R|{1}{W}|Enchantment||| +Blessed Reversal|Eighth Edition|7|R|{1}{W}|Instant||| +Rolling Stones|Eighth Edition|38|R|{1}{W}|Enchantment||| +Glorious Anthem|Eighth Edition|20|R|{1}{W}{W}|Enchantment||| +Worship|Eighth Edition|57|R|{3}{W}|Enchantment||| +Story Circle|Eighth Edition|50|R|{1}{W}{W}|Enchantment||| +Wrath of God|Eighth Edition|58|R|{2}{W}{W}|Sorcery||| +Ivory Mask|Eighth Edition|27|R|{2}{W}{W}|Enchantment||| +Noble Purpose|Eighth Edition|31|R|{3}{W}{W}|Enchantment||| +Fugitive Wizard|Eighth Edition|81|C|{U}|Creature — Human Wizard|1|1| +Sage Owl|Eighth Edition|98|C|{1}{U}|Creature — Bird|1|1| +Storm Crow|Eighth Edition|104|C|{1}{U}|Creature — Bird|1|2| +Sneaky Homunculus|Eighth Edition|101|C|{1}{U}|Creature — Homunculus Illusion|1|1| +Horned Turtle|Eighth Edition|83|C|{2}{U}|Creature — Turtle|1|4| +Wind Drake|Eighth Edition|114|C|{2}{U}|Creature — Drake|2|2| +Merchant of Secrets|Eighth Edition|90|C|{2}{U}|Creature — Human Wizard|1|1| +Spiketail Hatchling|Eighth Edition|102|U|{1}{U}|Creature — Drake|1|1| +Coastal Hornclaw|Eighth Edition|66|C|{4}{U}|Creature — Bird|3|3| +Sea Monster|Eighth Edition|99|C|{4}{U}{U}|Creature — Serpent|6|6| +Twiddle|Eighth Edition|111|C|{U}|Instant||| +Flight|Eighth Edition|80|C|{U}|Enchantment — Aura||| +Invisibility|Eighth Edition|87|U|{U}{U}|Enchantment — Aura||| +Flash Counter|Eighth Edition|78|C|{1}{U}|Instant||| +Unsummon|Eighth Edition|112|C|{U}|Instant||| +Curiosity|Eighth Edition|72|U|{U}|Enchantment — Aura||| +Remove Soul|Eighth Edition|95|C|{1}{U}|Instant||| +Mana Leak|Eighth Edition|89|C|{1}{U}|Instant||| +Boomerang|Eighth Edition|63|C|{U}{U}|Instant||| +Dehydration|Eighth Edition|75|C|{3}{U}|Enchantment — Aura||| +Catalog|Eighth Edition|65|C|{2}{U}|Instant||| +Inspiration|Eighth Edition|85|C|{3}{U}|Instant||| +Coral Eel|Eighth Edition|70|C|{1}{U}|Creature — Fish|2|1| +Puppeteer|Eighth Edition|94|U|{2}{U}|Creature — Human Wizard|1|2| +Phantom Warrior|Eighth Edition|93|U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Wall of Air|Eighth Edition|113|U|{1}{U}{U}|Creature — Wall|1|5| +Thieving Magpie|Eighth Edition|107|U|{2}{U}{U}|Creature — Bird|1|3| +Fighting Drake|Eighth Edition|77|U|{2}{U}{U}|Creature — Drake|2|4| +Wrath of Marit Lage|Eighth Edition|115|U|{3}{U}{U}|Enchantment||| +Air Elemental|Eighth Edition|59|U|{3}{U}{U}|Creature — Elemental|4|4| +Telepathy|Eighth Edition|105|U|{U}|Enchantment||| +Shifting Sky|Eighth Edition|100|R|{2}{U}|Enchantment||| +Intruder Alarm|Eighth Edition|86|R|{2}{U}|Enchantment||| +Index|Eighth Edition|84|C|{U}|Sorcery||| +Treasure Trove|Eighth Edition|110|U|{2}{U}{U}|Enchantment||| +Aven Fisher|Eighth Edition|61|C|{3}{U}|Creature — Bird Soldier|2|2| +Concentrate|Eighth Edition|68|U|{2}{U}{U}|Sorcery||| +Steal Artifact|Eighth Edition|103|U|{2}{U}{U}|Enchantment — Aura||| +Rewind|Eighth Edition|96|U|{2}{U}{U}|Instant||| +Fleeting Image|Eighth Edition|79|R|{2}{U}|Creature — Illusion|2|1| +Temporal Adept|Eighth Edition|106|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Daring Apprentice|Eighth Edition|73|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Archivist|Eighth Edition|60|R|{2}{U}{U}|Creature — Human Wizard|1|1| +Sage of Lat-Nam|Eighth Edition|97|R|{1}{U}|Creature — Human Artificer|1|2| +Mahamoti Djinn|Eighth Edition|88|R|{4}{U}{U}|Creature — Djinn|5|6| +Tidal Kraken|Eighth Edition|108|R|{5}{U}{U}{U}|Creature — Kraken|6|6| +Trade Routes|Eighth Edition|109|R|{1}{U}|Enchantment||| +Confiscate|Eighth Edition|69|U|{4}{U}{U}|Enchantment — Aura||| +Mind Bend|Eighth Edition|92|R|{U}|Instant||| +Merchant Scroll|Eighth Edition|91|U|{1}{U}|Sorcery||| +Balance of Power|Eighth Edition|62|R|{3}{U}{U}|Sorcery||| +Deflection|Eighth Edition|74|R|{3}{U}|Instant||| +Zur's Weirding|Eighth Edition|116|R|{3}{U}|Enchantment||| +Bribery|Eighth Edition|64|R|{3}{U}{U}|Sorcery||| +Cowardice|Eighth Edition|71|R|{3}{U}{U}|Enchantment||| +Evacuation|Eighth Edition|76|R|{3}{U}{U}|Instant||| +Maggot Carrier|Eighth Edition|142|C|{B}|Creature — Zombie|1|1| +Bog Imp|Eighth Edition|119|C|{1}{B}|Creature — Imp|1|1| +Deepwood Ghoul|Eighth Edition|127|C|{2}{B}|Creature — Zombie|2|1| +Ravenous Rats|Eighth Edition|158|C|{1}{B}|Creature — Rat|1|1| +Spineless Thug|Eighth Edition|166|C|{1}{B}|Creature — Zombie Mercenary|2|2| +Dusk Imp|Eighth Edition|130|C|{2}{B}|Creature — Imp|2|1| +Looming Shade|Eighth Edition|140|C|{2}{B}|Creature — Shade|1|1| +Severed Legion|Eighth Edition|163|C|{1}{B}{B}|Creature — Zombie|2|2| +Plague Beetle|Eighth Edition|154|C|{B}|Creature — Insect|1|1| +Giant Cockroach|Eighth Edition|135|C|{3}{B}|Creature — Insect|4|2| +Gravedigger|Eighth Edition|138|C|{3}{B}|Creature — Zombie|2|2| +Scathe Zombies|Eighth Edition|160|C|{2}{B}|Creature — Zombie|2|2| +Raise Dead|Eighth Edition|157|C|{B}|Sorcery||| +Unholy Strength|Eighth Edition|169|C|{B}|Enchantment — Aura||| +Coercion|Eighth Edition|122|C|{2}{B}|Sorcery||| +Nausea|Eighth Edition|148|C|{1}{B}|Sorcery||| +Fear|Eighth Edition|134|C|{B}{B}|Enchantment — Aura||| +Vicious Hunger|Eighth Edition|171|C|{B}{B}|Sorcery||| +Dark Banishing|Eighth Edition|123|C|{2}{B}|Instant||| +Mind Rot|Eighth Edition|144|C|{2}{B}|Sorcery||| +Serpent Warrior|Eighth Edition|161|C|{2}{B}|Creature — Snake Warrior|3|3| +Mind Slash|Eighth Edition|145|U|{1}{B}{B}|Enchantment||| +Swarm of Rats|Eighth Edition|167|U|{1}{B}|Creature — Rat|*|1| +Carrion Wall|Eighth Edition|121|U|{1}{B}{B}|Creature — Wall|3|2| +Abyssal Specter|Eighth Edition|117|U|{2}{B}{B}|Creature — Specter|2|3| +Bog Wraith|Eighth Edition|120|U|{3}{B}|Creature — Wraith|3|3| +Deathgazer|Eighth Edition|126|U|{3}{B}|Creature — Lizard|2|2| +Nekrataal|Eighth Edition|149|U|{2}{B}{B}|Creature — Human Assassin|2|1| +Drudge Skeletons|Eighth Edition|129|C|{1}{B}|Creature — Skeleton|1|1| +Primeval Shambler|Eighth Edition|156|U|{4}{B}|Creature — Horror Mercenary|3|3| +Ambition's Cost|Eighth Edition|118|U|{3}{B}|Sorcery||| +Slay|Eighth Edition|164|U|{2}{B}|Instant||| +Execute|Eighth Edition|132|U|{2}{B}|Instant||| +Megrim|Eighth Edition|143|U|{2}{B}|Enchantment||| +Sever Soul|Eighth Edition|162|U|{3}{B}{B}|Sorcery||| +Zombify|Eighth Edition|174|U|{3}{B}|Sorcery||| +Diabolic Tutor|Eighth Edition|128|U|{2}{B}{B}|Sorcery||| +Mind Sludge|Eighth Edition|146|U|{4}{B}|Sorcery||| +Soul Feast|Eighth Edition|165|U|{3}{B}{B}|Sorcery||| +Royal Assassin|Eighth Edition|159|R|{1}{B}{B}|Creature — Human Assassin|1|1| +Lord of the Undead|Eighth Edition|141|R|{1}{B}{B}|Creature — Zombie|2|2| +Eastern Paladin|Eighth Edition|131|R|{2}{B}{B}|Creature — Zombie Knight|3|3| +Western Paladin|Eighth Edition|173|R|{2}{B}{B}|Creature — Zombie Knight|3|3| +Phyrexian Plaguelord|Eighth Edition|153|R|{3}{B}{B}|Creature — Carrier|4|4| +Vampiric Spirit|Eighth Edition|170|R|{2}{B}{B}|Creature — Spirit|4|3| +Death Pits of Rath|Eighth Edition|125|R|{3}{B}{B}|Enchantment||| +Fallen Angel|Eighth Edition|133|R|{3}{B}{B}|Creature — Angel|3|3| +Nightmare|Eighth Edition|150|R|{5}{B}|Creature — Nightmare Horse|*|*| +Larceny|Eighth Edition|139|R|{3}{B}{B}|Enchantment||| +Warped Devotion|Eighth Edition|172|R|{2}{B}|Enchantment||| +Underworld Dreams|Eighth Edition|168|R|{B}{B}{B}|Enchantment||| +Murderous Betrayal|Eighth Edition|147|R|{B}{B}{B}|Enchantment||| +Grave Pact|Eighth Edition|137|R|{1}{B}{B}{B}|Enchantment||| +Persecute|Eighth Edition|151|R|{2}{B}{B}|Sorcery||| +Death Pit Offering|Eighth Edition|124|R|{2}{B}{B}|Enchantment||| +Phyrexian Arena|Eighth Edition|152|R|{1}{B}{B}|Enchantment||| +Plague Wind|Eighth Edition|155|R|{7}{B}{B}|Sorcery||| +Cinder Wall|Eighth Edition|182|C|{R}|Creature — Wall|3|3| +Raging Goblin|Eighth Edition|212|C|{R}|Creature — Goblin Berserker|1|1| +Goblin Raider|Eighth Edition|191|C|{1}{R}|Creature — Goblin Warrior|2|2| +Goblin Chariot|Eighth Edition|188|C|{2}{R}|Creature — Goblin Warrior|2|2| +Balduvian Barbarians|Eighth Edition|176|C|{1}{R}{R}|Creature — Human Barbarian|3|2| +Ridgeline Rager|Eighth Edition|215|C|{2}{R}|Creature — Beast|1|2| +Sabretooth Tiger|Eighth Edition|217|C|{2}{R}|Creature — Cat|2|1| +Hill Giant|Eighth Edition|194|C|{3}{R}|Creature — Giant|3|3| +Lightning Elemental|Eighth Edition|201|C|{3}{R}|Creature — Elemental|4|1| +Shock Troops|Eighth Edition|223|C|{3}{R}|Creature — Human Soldier|2|2| +Orcish Spy|Eighth Edition|208|C|{R}|Creature — Orc Rogue|1|1| +Shock|Eighth Edition|222|C|{R}|Instant||| +Canyon Wildcat|Eighth Edition|181|C|{1}{R}|Creature — Cat|2|1| +Reflexes|Eighth Edition|213|C|{R}|Enchantment — Aura||| +Shatter|Eighth Edition|220|C|{1}{R}|Instant||| +Volcanic Hammer|Eighth Edition|231|C|{1}{R}|Sorcery||| +Enrage|Eighth Edition|185|U|{X}{R}|Instant||| +Sizzle|Eighth Edition|224|C|{2}{R}|Sorcery||| +Panic Attack|Eighth Edition|209|C|{2}{R}|Sorcery||| +Stone Rain|Eighth Edition|225|C|{2}{R}|Sorcery||| +Lightning Blast|Eighth Edition|200|U|{3}{R}|Instant||| +Lava Axe|Eighth Edition|197|C|{4}{R}|Sorcery||| +Goblin Glider|Eighth Edition|189|U|{1}{R}|Creature — Goblin|1|1| +Anaba Shaman|Eighth Edition|175|C|{3}{R}|Creature — Minotaur Shaman|2|2| +Viashino Sandstalker|Eighth Edition|230|U|{1}{R}{R}|Creature — Viashino Warrior|4|2| +Orcish Artillery|Eighth Edition|207|U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Dwarven Demolition Team|Eighth Edition|184|U|{2}{R}|Creature — Dwarf|1|1| +Wall of Stone|Eighth Edition|232|U|{1}{R}{R}|Creature — Wall|0|8| +Ogre Taskmaster|Eighth Edition|205|U|{3}{R}|Creature — Ogre|4|3| +Lesser Gargadon|Eighth Edition|199|U|{2}{R}{R}|Creature — Beast|6|4| +Hulking Cyclops|Eighth Edition|195|U|{3}{R}{R}|Creature — Cyclops|5|5| +Flashfires|Eighth Edition|186|U|{3}{R}|Sorcery||| +Boil|Eighth Edition|180|U|{3}{R}|Instant||| +Pyroclasm|Eighth Edition|210|U|{1}{R}|Sorcery||| +Demolish|Eighth Edition|183|U|{3}{R}|Sorcery||| +Guerrilla Tactics|Eighth Edition|192|U|{1}{R}|Instant||| +Tremor|Eighth Edition|228|C|{R}|Sorcery||| +Pyrotechnics|Eighth Edition|211|U|{4}{R}|Sorcery||| +Blaze|Eighth Edition|177|U|{X}{R}|Sorcery||| +Sudden Impact|Eighth Edition|226|U|{3}{R}|Instant||| +Mogg Sentry|Eighth Edition|203|R|{R}|Creature — Goblin Warrior|1|1| +Okk|Eighth Edition|206|R|{1}{R}|Creature — Goblin|4|4| +Lava Hounds|Eighth Edition|198|R|{2}{R}{R}|Creature — Hound|4|4| +Goblin King|Eighth Edition|190|R|{1}{R}{R}|Creature — Goblin|2|2| +Blood Moon|Eighth Edition|178|R|{2}{R}|Enchantment||| +Bloodshot Cyclops|Eighth Edition|179|R|{5}{R}|Creature — Cyclops Giant|4|4| +Shivan Dragon|Eighth Edition|221|R|{4}{R}{R}|Creature — Dragon|5|5| +Two-Headed Dragon|Eighth Edition|229|R|{4}{R}{R}|Creature — Dragon|4|4| +Rukh Egg|Eighth Edition|216|R|{3}{R}|Creature — Bird|0|3| +Mana Clash|Eighth Edition|202|R|{R}|Sorcery||| +Seismic Assault|Eighth Edition|219|R|{R}{R}{R}|Enchantment||| +Relentless Assault|Eighth Edition|214|R|{2}{R}{R}|Sorcery||| +Inferno|Eighth Edition|196|R|{5}{R}{R}|Instant||| +Thieves' Auction|Eighth Edition|227|R|{4}{R}{R}{R}|Sorcery||| +Obliterate|Eighth Edition|204|R|{6}{R}{R}|Sorcery||| +Searing Wind|Eighth Edition|218|R|{8}{R}|Instant||| +Furnace of Rath|Eighth Edition|187|R|{1}{R}{R}{R}|Enchantment||| +Vine Trellis|Eighth Edition|287|C|{1}{G}|Creature — Plant Wall|0|4| +Wood Elves|Eighth Edition|289|C|{2}{G}|Creature — Elf Scout|1|1| +Canopy Spider|Eighth Edition|236|C|{1}{G}|Creature — Spider|1|3| +Grizzly Bears|Eighth Edition|256|C|{1}{G}|Creature — Bear|2|2| +Rushwood Dryad|Eighth Edition|278|C|{1}{G}|Creature — Dryad|2|1| +Horned Troll|Eighth Edition|257|C|{2}{G}|Creature — Troll|2|2| +Lone Wolf|Eighth Edition|262|C|{2}{G}|Creature — Wolf|2|2| +Trained Armodon|Eighth Edition|284|C|{1}{G}{G}|Creature — Elephant|3|3| +Nantuko Disciple|Eighth Edition|268|C|{3}{G}|Creature — Insect Druid|2|2| +Giant Spider|Eighth Edition|255|C|{3}{G}|Creature — Spider|2|4| +Norwood Ranger|Eighth Edition|271|C|{G}|Creature — Elf Scout|1|2| +Spined Wurm|Eighth Edition|279|C|{4}{G}|Creature — Wurm|5|4| +Moss Monster|Eighth Edition|267|C|{3}{G}{G}|Creature — Elemental|3|6| +Monstrous Growth|Eighth Edition|266|C|{1}{G}|Sorcery||| +Elvish Pioneer|Eighth Edition|243|C|{G}|Creature — Elf Druid|1|1| +Giant Growth|Eighth Edition|254|C|{G}|Instant||| +Darksteel Citadel|Darksteel|164|C||Artifact Land||| +Fertile Ground|Eighth Edition|248|C|{1}{G}|Enchantment — Aura||| +Rampant Growth|Eighth Edition|274|C|{1}{G}|Sorcery||| +Regeneration|Eighth Edition|275|C|{1}{G}|Enchantment — Aura||| +Stream of Life|Eighth Edition|282|U|{X}{G}|Sorcery||| +Naturalize|Eighth Edition|270|C|{1}{G}|Instant||| +Elvish Lyrist|Eighth Edition|242|U|{G}|Creature — Elf|1|1| +Elvish Scrapper|Eighth Edition|245|U|{G}|Creature — Elf|1|1| +Fyndhorn Elder|Eighth Edition|251|U|{2}{G}|Creature — Elf Druid|1|1| +Foratog|Eighth Edition|249|U|{2}{G}|Creature — Atog|1|2| +Giant Badger|Eighth Edition|253|C|{1}{G}{G}|Creature — Badger|2|2| +Hunted Wumpus|Eighth Edition|258|U|{3}{G}|Creature — Beast|6|6| +Spitting Spider|Eighth Edition|280|U|{3}{G}{G}|Creature — Spider|3|5| +Myr Landshaper|Darksteel|131|C|{3}|Artifact Creature — Myr|1|1| +Llanowar Behemoth|Eighth Edition|261|U|{3}{G}{G}|Creature — Elemental|4|4| +Living Terrain|Eighth Edition|260|U|{2}{G}{G}|Enchantment — Aura||| +Choke|Eighth Edition|237|U|{2}{G}|Enchantment||| +Spreading Algae|Eighth Edition|281|U|{G}|Enchantment — Aura||| +Revive|Eighth Edition|276|U|{1}{G}|Sorcery||| +Blanchwood Armor|Eighth Edition|234|U|{2}{G}|Enchantment — Aura||| +Wing Snare|Eighth Edition|288|U|{2}{G}|Sorcery||| +Lure|Eighth Edition|263|U|{1}{G}{G}|Enchantment — Aura||| +Creeping Mold|Eighth Edition|240|U|{2}{G}{G}|Sorcery||| +Birds of Paradise|Eighth Edition|233|R|{G}|Creature — Bird|0|1| +Gaea's Herald|Eighth Edition|252|R|{1}{G}|Creature — Elf|1|1| +Fungusaur|Eighth Edition|250|R|{3}{G}|Creature — Fungus Lizard|2|2| +Elvish Champion|Eighth Edition|241|R|{1}{G}{G}|Creature — Elf|2|2| +Verduran Enchantress|Eighth Edition|285|R|{1}{G}{G}|Creature — Human Druid|0|2| +Elvish Piper|Eighth Edition|244|R|{3}{G}|Creature — Elf Shaman|1|1| +Maro|Eighth Edition|264|R|{2}{G}{G}|Creature — Elemental|*|*| +Emperor Crocodile|Eighth Edition|246|R|{3}{G}|Creature — Crocodile|5|5| +Thorn Elemental|Eighth Edition|283|R|{5}{G}{G}|Creature — Elemental|7|7| +Natural Affinity|Eighth Edition|269|R|{2}{G}|Instant||| +Plow Under|Eighth Edition|272|R|{3}{G}{G}|Sorcery||| +Fecundity|Eighth Edition|247|U|{2}{G}|Enchantment||| +Might of Oaks|Eighth Edition|265|R|{3}{G}|Instant||| +Primeval Force|Eighth Edition|273|R|{2}{G}{G}{G}|Creature — Elemental|8|8| +Vernal Bloom|Eighth Edition|286|R|{3}{G}|Enchantment||| +Vulshok War Boar|Darksteel|72|U|{2}{R}{R}|Creature — Boar Beast|5|5| +Collective Unconscious|Eighth Edition|238|R|{4}{G}{G}|Sorcery||| +Spellbook|Eighth Edition|314|U|{0}|Artifact||| +Ivory Cup|Eighth Edition|305|U|{1}|Artifact||| +Crystal Rod|Eighth Edition|295|U|{1}|Artifact||| +Throne of Bone|Eighth Edition|317|U|{1}|Artifact||| +Iron Star|Eighth Edition|304|U|{1}|Artifact||| +Wooden Sphere|Eighth Edition|321|U|{1}|Artifact||| +Star Compass|Eighth Edition|315|U|{2}|Artifact||| +Urza's Mine|Eighth Edition|328|U||Land — Urza’s Mine||| +Patagia Golem|Eighth Edition|308|U|{4}|Artifact Creature — Golem|2|3| +Rod of Ruin|Eighth Edition|312|U|{4}|Artifact||| +Fodder Cannon|Eighth Edition|302|U|{4}|Artifact||| +Urza's Tower|Eighth Edition|330|U||Land — Urza’s Tower||| +Emissary of Despair|Darksteel|42|U|{1}{B}{B}|Creature — Spirit|2|1| +Urza's Power Plant|Eighth Edition|329|U||Land — Urza’s Power-Plant||| +Phyrexian Hulk|Eighth Edition|310|U|{6}|Artifact Creature — Golem|5|4| +Brass Herald|Eighth Edition|293|R|{6}|Artifact Creature — Golem|2|2| +Distorting Lens|Eighth Edition|299|R|{2}|Artifact||| +Howling Mine|Eighth Edition|303|R|{2}|Artifact||| +Millstone|Eighth Edition|307|R|{2}|Artifact||| +Disrupting Scepter|Eighth Edition|298|R|{3}|Artifact||| +Skull of Orm|Eighth Edition|313|R|{3}|Artifact||| +Ensnaring Bridge|Eighth Edition|300|R|{3}|Artifact||| +Vexing Arcanix|Eighth Edition|319|R|{4}|Artifact||| +Dingus Egg|Eighth Edition|297|R|{4}|Artifact||| +Defense Grid|Eighth Edition|296|R|{2}|Artifact||| +Jayemdae Tome|Eighth Edition|306|R|{4}|Artifact||| +Teferi's Puzzle Box|Eighth Edition|316|R|{4}|Artifact||| +Urza's Armor|Eighth Edition|318|R|{6}|Artifact||| +Coat of Arms|Eighth Edition|294|R|{5}|Artifact||| +Planar Portal|Eighth Edition|311|R|{6}|Artifact||| +Aladdin's Ring|Eighth Edition|291|R|{8}|Artifact||| +Beast of Burden|Eighth Edition|292|R|{6}|Artifact Creature — Golem|*|*| +Flying Carpet|Eighth Edition|301|R|{4}|Artifact||| +Phyrexian Colossus|Eighth Edition|309|R|{7}|Artifact Creature — Golem|8|8| +Coastal Tower|Eighth Edition|323|U||Land||| +Salt Marsh|Eighth Edition|325|U||Land||| +Urborg Volcano|Eighth Edition|327|U||Land||| +Shivan Oasis|Eighth Edition|326|U||Land||| +Elfhame Palace|Eighth Edition|324|U||Land||| +City of Brass|Eighth Edition|322|R||Land||| +Astral Steel|Scourge|2|C|{2}{W}|Instant||| +Noble Templar|Scourge|19|C|{5}{W}|Creature — Human Cleric Soldier|3|6| +Wing Shards|Scourge|25|U|{1}{W}{W}|Instant||| +Temporal Fissure|Scourge|53|C|{4}{U}|Sorcery||| +Hindering Touch|Scourge|37|C|{3}{U}|Instant||| +Aven Warhawk|Legions|4|U|{4}{W}|Creature — Bird Soldier|2|2| +Cloudreach Cavalry|Legions|7|U|{1}{W}|Creature — Human Soldier|1|1| +Mistform Ultimus|Legions|47|R|{3}{U}|Legendary Creature — Illusion|3|3| +Shoreline Ranger|Scourge|51|C|{5}{U}|Creature — Bird Soldier|3|4| +Tendrils of Agony|Scourge|75|U|{2}{B}{B}|Sorcery||| +Scattershot|Scourge|102|C|{2}{R}|Instant||| +Enrage|Scourge|91|U|{X}{R}|Instant||| +Reaping the Graves|Scourge|72|C|{2}{B}|Instant||| +Sprouting Vines|Scourge|128|C|{2}{G}|Instant||| +Hunting Pack|Scourge|121|U|{5}{G}{G}|Instant||| +Canopy Crawler|Legions|122|U|{3}{G}|Creature — Beast|2|2| +Karona's Zealot|Scourge|18|U|{4}{W}|Creature — Human Cleric|2|5| +Wirewood Symbiote|Scourge|133|U|{G}|Creature — Insect|1|1| +Putrid Raptor|Scourge|71|U|{4}{B}{B}|Creature — Zombie Lizard Beast|4|4| +Vengeful Dead|Scourge|80|C|{3}{B}|Creature — Zombie|3|2| +Chill Haunting|Scourge|60|U|{1}{B}|Instant||| +Divergent Growth|Scourge|116|C|{G}|Instant||| +Faces of the Past|Scourge|35|R|{2}{U}|Enchantment||| +Leonin Den-Guard|Mirrodin|9|C|{1}{W}|Creature — Cat Soldier|1|3| +Leonin Skyhunter|Mirrodin|11|U|{W}{W}|Creature — Cat Knight|2|2| +Stir the Pride|Darksteel|16|U|{4}{W}|Instant||| +Auriok Transfixer|Mirrodin|5|C|{W}|Creature — Human Scout|1|1| +Moriok Scavenger|Mirrodin|68|C|{3}{B}|Creature — Human Rogue|2|3| +Sphere of Purity|Mirrodin|26|C|{3}{W}|Enchantment||| +Fatespinner|Mirrodin|36|R|{1}{U}{U}|Creature — Human Wizard|1|2| +Lumengrid Sentinel|Mirrodin|40|U|{2}{U}|Creature — Human Wizard|1|2| +Somber Hoverguard|Mirrodin|51|C|{5}{U}|Creature — Drone|3|2| +Neurok Spy|Mirrodin|44|C|{2}{U}|Creature — Human Rogue|2|2| +Pulse of the Grid|Darksteel|29|R|{1}{U}{U}|Instant||| +Annul|Mirrodin|29|C|{U}|Instant||| +Thirst for Knowledge|Mirrodin|53|U|{2}{U}|Instant||| +Chimney Imp|Mirrodin|59|C|{4}{B}|Creature — Imp|1|2| +Consume Spirit|Mirrodin|60|C|{X}{1}{B}|Sorcery||| +Terror|Mirrodin|79|C|{1}{B}|Instant||| +Wrench Mind|Mirrodin|84|C|{B}{B}|Sorcery||| +Krark-Clan Grunt|Mirrodin|97|C|{2}{R}|Creature — Goblin Warrior|2|2| +Ogre Leadfoot|Mirrodin|102|C|{4}{R}|Creature — Ogre|3|3| +Krark-Clan Shaman|Mirrodin|98|C|{R}|Creature — Goblin Shaman|1|1| +Shatter|Mirrodin|105|C|{1}{R}|Instant||| +Molten Rain|Mirrodin|101|C|{1}{R}{R}|Sorcery||| +Tel-Jilad Outrider|Darksteel|87|C|{3}{G}|Creature — Elf Warrior|3|1| +Tel-Jilad Chosen|Mirrodin|132|C|{1}{G}|Creature — Elf Warrior|2|1| +Tel-Jilad Archers|Mirrodin|131|C|{4}{G}|Creature — Elf Archer|2|4| +Tel-Jilad Wolf|Darksteel|88|C|{2}{G}|Creature — Wolf|2|2| +Brown Ouphe|Mirrodin|115|U|{G}|Creature — Ouphe|1|1| +Oxidize|Darksteel|79|U|{G}|Instant||| +Myr Adapter|Mirrodin|210|C|{3}|Artifact Creature — Myr|1|1| +Duskworker|Mirrodin|166|U|{4}|Artifact Creature — Construct|2|2| +Myr Enforcer|Mirrodin|211|C|{7}|Artifact Creature — Myr|4|4| +Ornithopter|Mirrodin|224|U|{0}|Artifact Creature — Thopter|0|2| +Bottle Gnomes|Mirrodin|148|U|{3}|Artifact Creature — Gnome|1|3| +Viridian Longbow|Mirrodin|270|C|{1}|Artifact — Equipment||| +Lightning Greaves|Mirrodin|199|U|{2}|Artifact — Equipment||| +Death-Mask Duplicant|Darksteel|115|U|{7}|Artifact Creature — Shapeshifter|5|5| +Gold Myr|Mirrodin|180|C|{2}|Artifact Creature — Myr|1|1| +Soldier Replica|Mirrodin|244|C|{3}|Artifact Creature — Soldier|1|3| +Yotian Soldier|Mirrodin|277|C|{3}|Artifact Creature — Soldier|1|4| +Pearl Shard|Mirrodin|225|U|{3}|Artifact||| +Slagwurm Armor|Mirrodin|243|C|{1}|Artifact — Equipment||| +Leonin Scimitar|Mirrodin|193|C|{1}|Artifact — Equipment||| +Whispersilk Cloak|Darksteel|160|C|{3}|Artifact — Equipment||| +Silver Myr|Mirrodin|241|C|{2}|Artifact Creature — Myr|1|1| +Wizard Replica|Mirrodin|275|C|{3}|Artifact Creature — Wizard|1|3| +Crystal Shard|Mirrodin|159|U|{3}|Artifact||| +Neurok Hoversail|Mirrodin|218|C|{1}|Artifact — Equipment||| +Leaden Myr|Mirrodin|191|C|{2}|Artifact Creature — Myr|1|1| +Nim Replica|Mirrodin|220|C|{3}|Artifact Creature — Zombie|3|1| +Goblin War Wagon|Mirrodin|179|C|{4}|Artifact Creature — Juggernaut|3|3| +Chromatic Sphere|Mirrodin|151|C|{1}|Artifact||| +Iron Myr|Mirrodin|187|C|{2}|Artifact Creature — Myr|1|1| +Goblin Replica|Mirrodin|178|C|{3}|Artifact Creature — Goblin|2|2| +Granite Shard|Mirrodin|182|U|{3}|Artifact||| +Vorrac Battlehorns|Mirrodin|271|C|{2}|Artifact — Equipment||| +Necrogen Spellbomb|Mirrodin|216|C|{1}|Artifact||| +Copper Myr|Mirrodin|158|C|{2}|Artifact Creature — Myr|1|1| +Elf Replica|Mirrodin|167|C|{3}|Artifact Creature — Elf|2|2| +Fangren Firstborn|Darksteel|75|R|{1}{G}{G}{G}|Creature — Beast|4|2| +Heartwood Shard|Mirrodin|184|U|{3}|Artifact||| +Furnace Dragon|Darksteel|62|R|{6}{R}{R}{R}|Creature — Dragon|5|5| +Golem-Skin Gauntlets|Mirrodin|181|U|{1}|Artifact — Equipment||| +Ancient Den|Mirrodin|278|C||Artifact Land||| +Seat of the Synod|Mirrodin|283|C||Artifact Land||| +Vault of Whispers|Mirrodin|286|C||Artifact Land||| +Great Furnace|Mirrodin|282|C||Artifact Land||| +Tree of Tales|Mirrodin|285|C||Artifact Land||| +Slith Ascendant|Mirrodin|23|U|{1}{W}{W}|Creature — Slith|1|1| +Loxodon Mender|Mirrodin|12|C|{5}{W}|Creature — Elephant Cleric|3|3| +Leonin Elder|Mirrodin|10|C|{W}|Creature — Cat Cleric|1|1| +Woebearer|Mirrodin|83|U|{4}{B}|Creature — Zombie|2|3| +Tempest of Light|Mirrodin|28|U|{2}{W}|Instant||| +Nourish|Darksteel|78|C|{G}{G}|Instant||| +Crazed Goblin|Darksteel|56|C|{R}|Creature — Goblin Warrior|1|1| +Taj-Nar Swordsmith|Mirrodin|27|U|{3}{W}|Creature — Cat Soldier|2|3| +Slith Strider|Mirrodin|50|U|{1}{U}{U}|Creature — Slith|1|1| +Auriok Steelshaper|Mirrodin|4|R|{1}{W}|Creature — Human Soldier|1|1| +Neurok Familiar|Mirrodin|43|C|{1}{U}|Creature — Bird|1|1| +Roaring Slagwurm|Darksteel|83|R|{5}{G}{G}|Creature — Wurm|6|4| +Disarm|Mirrodin|32|C|{U}|Instant||| +Thoughtcast|Mirrodin|54|C|{4}{U}|Sorcery||| +Hunger of the Nim|Darksteel|46|C|{1}{B}|Sorcery||| +Override|Mirrodin|45|C|{2}{U}|Instant||| +Nim Devourer|Mirrodin|70|R|{3}{B}{B}|Creature — Zombie|4|1| +Slith Bloodletter|Mirrodin|77|U|{B}{B}|Creature — Slith|1|1| +Scavenging Scarab|Darksteel|51|C|{3}{B}|Creature — Insect|3|3| +Flayed Nim|Mirrodin|65|U|{3}{B}|Creature — Skeleton|2|2| +Chittering Rats|Darksteel|39|C|{1}{B}{B}|Creature — Rat|2|2| +Grimclaw Bats|Darksteel|45|C|{1}{B}|Creature — Bat|1|1| +Arcbound Hybrid|Darksteel|97|C|{4}|Artifact Creature — Beast|0|0| +Slith Firewalker|Mirrodin|107|U|{R}{R}|Creature — Slith|1|1| +Spikeshot Goblin|Mirrodin|108|C|{2}{R}|Creature — Goblin Shaman|1|2| +Loxodon Punisher|Mirrodin|14|R|{3}{W}|Creature — Elephant Soldier|2|2| +Atog|Mirrodin|86|U|{1}{R}|Creature — Atog|1|2| +Feedback Bolt|Fifth Dawn|64|U|{4}{R}|Instant||| +Lightning Coils|Mirrodin|198|R|{3}|Artifact||| +Detonate|Mirrodin|88|U|{X}{R}|Sorcery||| +Talon of Pain|Darksteel|150|U|{4}|Artifact||| +Myr Moonvessel|Darksteel|133|C|{1}|Artifact Creature — Myr|1|1| +Slith Predator|Mirrodin|129|U|{G}{G}|Creature — Slith|1|1| +Viridian Joiner|Mirrodin|138|C|{2}{G}|Creature — Elf Druid|1|2| +Fangren Hunter|Mirrodin|119|C|{3}{G}{G}|Creature — Beast|4|4| +Neurok Prodigy|Darksteel|26|C|{2}{U}|Creature — Human Wizard|2|1| +Trolls of Tel-Jilad|Mirrodin|136|U|{5}{G}{G}|Creature — Troll Shaman|5|6| +Rustmouth Ogre|Mirrodin|103|U|{4}{R}{R}|Creature — Ogre|5|4| +Viridian Shaman|Mirrodin|139|U|{2}{G}|Creature — Elf Shaman|2|2| +Clockwork Vorrac|Mirrodin|156|U|{5}|Artifact Creature — Boar Beast|0|0| +Clockwork Condor|Mirrodin|154|C|{4}|Artifact Creature — Bird|0|0| +Myr Retriever|Mirrodin|215|U|{2}|Artifact Creature — Myr|1|1| +Lodestone Myr|Mirrodin|200|R|{4}|Artifact Creature — Myr|2|2| +Arcbound Bruiser|Darksteel|94|C|{5}|Artifact Creature — Golem|0|0| +Arcbound Lancer|Darksteel|98|U|{7}|Artifact Creature — Beast|0|0| +Arcbound Stinger|Darksteel|103|C|{2}|Artifact Creature — Insect|0|0| +Lich's Tomb|Darksteel|128|R|{4}|Artifact||| +Farsight Mask|Mirrodin|170|U|{5}|Artifact||| +Darksteel Gargoyle|Darksteel|111|U|{7}|Artifact Creature — Gargoyle|3|3| +Rustspore Ram|Mirrodin|235|U|{4}|Artifact Creature — Sheep|1|3| +Leonin Bola|Darksteel|127|C|{1}|Artifact — Equipment||| +Razor Golem|Darksteel|137|C|{6}|Artifact Creature — Golem|3|4| +Ageless Entity|Darksteel|73|R|{3}{G}{G}|Creature — Elemental|4|4| +Spire Golem|Darksteel|145|C|{6}|Artifact Creature — Golem|2|4| +Mask of Memory|Mirrodin|203|U|{2}|Artifact — Equipment||| +Mephitic Ooze|Darksteel|47|R|{4}{B}|Creature — Ooze|0|5| +Echoing Ruin|Darksteel|59|C|{1}{R}|Sorcery||| +Serum Tank|Mirrodin|240|U|{3}|Artifact||| +Dross Golem|Darksteel|119|C|{5}|Artifact Creature — Golem|3|2| +Surestrike Trident|Darksteel|147|U|{2}|Artifact — Equipment||| +Fill with Fright|Fifth Dawn|50|C|{3}{B}|Sorcery||| +Genesis Chamber|Darksteel|122|U|{2}|Artifact||| +Echoing Truth|Darksteel|21|C|{1}{U}|Instant||| +Oxidda Golem|Darksteel|135|C|{6}|Artifact Creature — Golem|3|2| +Eater of Days|Darksteel|120|R|{4}|Artifact Creature — Leviathan|9|8| +Gemini Engine|Darksteel|121|R|{6}|Artifact Creature — Construct|3|4| +Echoing Courage|Darksteel|74|C|{1}{G}|Instant||| +Tangle Golem|Darksteel|151|C|{7}|Artifact Creature — Golem|5|4| +Nemesis Mask|Darksteel|134|U|{3}|Artifact — Equipment||| +Auriok Windwalker|Fifth Dawn|5|R|{3}{W}|Creature — Human Wizard|2|3| +Echoing Decay|Darksteel|41|C|{1}{B}|Instant||| +Unspeakable Symbol|Scourge|79|U|{1}{B}{B}|Enchantment||| +Decree of Savagery|Scourge|115|R|{7}{G}{G}|Instant||| +Mind's Desire|Scourge|41|R|{4}{U}{U}|Sorcery||| +Dragonstorm|Scourge|90|R|{8}{R}|Sorcery||| +Dragon Wings|Scourge|34|C|{1}{U}|Enchantment — Aura||| +Sword of Fire and Ice|Darksteel|148|R|{3}|Artifact — Equipment||| +Decree of Silence|Scourge|32|R|{6}{U}{U}|Enchantment||| +Dross Scorpion|Mirrodin|164|C|{4}|Artifact Creature — Scorpion|3|1| +Plains|Eighth Edition|331|L||Basic Land — Plains||| +Plains|Eighth Edition|332|L||Basic Land — Plains||| +Plains|Eighth Edition|333|L||Basic Land — Plains||| +Plains|Eighth Edition|334|L||Basic Land — Plains||| +Island|Eighth Edition|335|L||Basic Land — Island||| +Island|Eighth Edition|336|L||Basic Land — Island||| +Island|Eighth Edition|337|L||Basic Land — Island||| +Island|Eighth Edition|338|L||Basic Land — Island||| +Swamp|Eighth Edition|339|L||Basic Land — Swamp||| +Swamp|Eighth Edition|340|L||Basic Land — Swamp||| +Swamp|Eighth Edition|341|L||Basic Land — Swamp||| +Swamp|Eighth Edition|342|L||Basic Land — Swamp||| +Mountain|Eighth Edition|343|L||Basic Land — Mountain||| +Mountain|Eighth Edition|344|L||Basic Land — Mountain||| +Mountain|Eighth Edition|345|L||Basic Land — Mountain||| +Mountain|Eighth Edition|346|L||Basic Land — Mountain||| +Forest|Eighth Edition|347|L||Basic Land — Forest||| +Forest|Eighth Edition|348|L||Basic Land — Forest||| +Forest|Eighth Edition|349|L||Basic Land — Forest||| +Forest|Eighth Edition|350|L||Basic Land — Forest||| +Skirk Drill Sergeant|Legions|112|U|{1}{R}|Creature — Goblin|2|1| +Guilty Conscience|Scourge|17|C|{W}|Enchantment — Aura||| +Primitive Etchings|Scourge|126|R|{2}{G}{G}|Enchantment||| +Stabilizer|Scourge|142|R|{2}|Artifact||| +Scornful Egotist|Scourge|50|C|{7}{U}|Creature — Human Wizard|1|1| +Withered Wretch|Legions|86|U|{B}{B}|Creature — Zombie Cleric|2|2| +Luminous Angel|Mirrodin|15|R|{4}{W}{W}{W}|Creature — Angel|4|4| +Viridian Zealot|Darksteel|90|R|{G}{G}|Creature — Elf Warrior|2|1| +Tangle Spider|Darksteel|85|C|{4}{G}{G}|Creature — Spider|3|4| +Leonin Abunas|Mirrodin|8|R|{3}{W}|Creature — Cat Cleric|2|5| +Broodstar|Mirrodin|31|R|{8}{U}{U}|Creature — Beast|*|*| +Vedalken Archmage|Mirrodin|55|R|{2}{U}{U}|Creature — Vedalken Wizard|0|2| +Stifle|Scourge|52|R|{U}|Instant||| +Quicksilver Elemental|Mirrodin|47|R|{3}{U}{U}|Creature — Elemental|3|4| +Scrounge|Darksteel|53|U|{2}{B}|Sorcery||| +Spoils of the Vault|Mirrodin|78|R|{B}|Instant||| +Forge Armor|Mirrodin|92|U|{4}{R}|Instant||| +Megatog|Mirrodin|100|R|{4}{R}{R}|Creature — Atog|3|4| +Psychogenic Probe|Mirrodin|231|R|{2}|Artifact||| +Uncontrolled Infestation|Scourge|108|C|{1}{R}|Enchantment — Aura||| +Dragonspeaker Shaman|Scourge|89|U|{1}{R}{R}|Creature — Human Barbarian Shaman|2|2| +Wall of Spears|Eighth Edition|320|U|{3}|Artifact Creature — Wall|2|3| +Avatar of Hope|Eighth Edition|4|R|{6}{W}{W}|Creature — Avatar|4|9| +Coastal Piracy|Eighth Edition|67|R|{2}{U}{U}|Enchantment||| +Call of the Wild|Eighth Edition|235|R|{2}{G}{G}|Enchantment||| +Lhurgoyf|Eighth Edition|259|R|{2}{G}{G}|Creature — Lhurgoyf|*|1+*| +Titanic Bulvox|Scourge|129|C|{6}{G}{G}|Creature — Beast|7|4| +Living Hive|Mirrodin|124|R|{6}{G}{G}|Creature — Elemental Insect|6|6| +March of the Machines|Mirrodin|42|R|{3}{U}|Enchantment||| +Triskelion|Mirrodin|269|R|{6}|Artifact Creature — Construct|1|1| +Pentavus|Mirrodin|226|R|{7}|Artifact Creature — Construct|0|0| +Clockwork Dragon|Mirrodin|155|R|{7}|Artifact Creature — Dragon|0|0| +Proteus Machine|Scourge|141|U|{3}|Artifact Creature — Shapeshifter|2|2| +Leveler|Mirrodin|195|R|{5}|Artifact Creature — Juggernaut|10|10| +Blinkmoth Urn|Mirrodin|145|R|{5}|Artifact||| +Mindstorm Crown|Mirrodin|207|U|{3}|Artifact||| +Synod Sanctum|Mirrodin|252|U|{1}|Artifact||| +Sculpting Steel|Mirrodin|238|R|{3}|Artifact||| +Gate to the Ζther|Mirrodin|174|R|{6}|Artifact||| +Soul Foundry|Mirrodin|246|R|{4}|Artifact||| +Mindslaver|Mirrodin|206|R|{6}|Legendary Artifact||| +Damping Matrix|Mirrodin|161|R|{3}|Artifact||| +Icy Manipulator|Mirrodin|186|U|{4}|Artifact||| +Tel-Jilad Stylus|Mirrodin|260|U|{1}|Artifact||| +Tower of Murmurs|Mirrodin|268|R|{4}|Artifact||| +Liar's Pendulum|Mirrodin|196|R|{1}|Artifact||| +Goblin Archaeologist|Darksteel|63|U|{1}{R}|Creature — Goblin Artificer|1|2| +Isochron Scepter|Mirrodin|188|U|{2}|Artifact||| +Jinxed Choker|Mirrodin|189|R|{3}|Artifact||| +Fireball|Darksteel|60|U|{X}{R}|Sorcery||| +Worldslayer|Mirrodin|276|R|{5}|Artifact — Equipment||| +Consumptive Goo|Scourge|62|R|{B}{B}|Creature — Ooze|1|1| +Dragon Fangs|Scourge|117|C|{1}{G}|Enchantment — Aura||| +Mistform Warchief|Scourge|43|U|{2}{U}|Creature — Illusion|1|3| +Break Asunder|Scourge|113|C|{2}{G}{G}|Sorcery||| +Wipe Clean|Scourge|26|C|{1}{W}|Instant||| +Mercurial Kite|Scourge|39|C|{3}{U}|Creature — Bird|2|2| +Death's-Head Buzzard|Scourge|63|C|{1}{B}{B}|Creature — Bird|2|1| +Bladewing's Thrall|Scourge|55|U|{2}{B}{B}|Creature — Zombie|3|3| +Carbonize|Scourge|83|U|{2}{R}|Instant||| +Coast Watcher|Scourge|30|C|{1}{U}|Creature — Bird Soldier|1|1| +Grip of Chaos|Scourge|98|R|{4}{R}{R}|Enchantment||| +Craw Wurm|Eighth Edition|239|C|{4}{G}{G}|Creature — Wurm|6|4| +Ark of Blight|Scourge|140|U|{2}|Artifact||| +Gluttonous Zombie|Eighth Edition|136|U|{4}{B}|Creature — Zombie|3|3| +Energy Chamber|Fifth Dawn|117|U|{2}|Artifact||| +Bonesplitter|Mirrodin|146|C|{1}|Artifact — Equipment||| +Culling Scales|Mirrodin|160|R|{3}|Artifact||| +Chrome Mox|Mirrodin|152|R|{0}|Artifact||| +Helm of Kaldra|Fifth Dawn|131|R|{3}|Legendary Artifact — Equipment||| +Myr Incubator|Mirrodin|212|R|{6}|Artifact||| +Sword of Light and Shadow|Darksteel|149|R|{3}|Artifact — Equipment||| +Sulfuric Vortex|Scourge|106|R|{1}{R}{R}|Enchantment||| +Lethal Vapors|Scourge|68|R|{2}{B}{B}|Enchantment||| +Pristine Angel|Darksteel|9|R|{4}{W}{W}|Creature — Angel|4|4| +Recuperate|Scourge|21|C|{3}{W}|Instant||| +Brain Freeze|Scourge|29|U|{1}{U}|Instant||| +Hibernation|Eighth Edition|82|U|{2}{U}|Instant||| +Yavimaya Enchantress|Eighth Edition|290|U|{2}{G}|Creature — Human Druid|2|2| +Plated Slagwurm|Mirrodin|127|R|{4}{G}{G}{G}|Creature — Wurm|8|8| +Eager Cadet|Eighth Edition|1|C|{W}|Creature — Human Soldier|1|1| +Giant Octopus|Eighth Edition|3|C|{3}{U}|Creature — Octopus|3|3| +Sea Eagle|Eighth Edition|4|C|{1}{U}|Creature — Bird|1|1| +Enormous Baloth|Eighth Edition|6|U|{6}{G}|Creature — Beast|7|7| +Vengeance|Eighth Edition|2|U|{3}{W}|Sorcery||| +Vizzerdrix|Eighth Edition|5|R|{6}{U}|Creature — Rabbit Beast|6|6| +Lumengrid Augur|Mirrodin|39|R|{3}{U}|Creature — Vedalken Wizard|2|2| +Shriveling Rot|Darksteel|54|R|{2}{B}{B}|Instant||| +Quicksilver Behemoth|Darksteel|30|C|{6}{U}|Creature — Beast|4|5| +Qumulox|Fifth Dawn|35|U|{6}{U}{U}|Creature — Beast|5|4| +Panoptic Mirror|Darksteel|136|R|{5}|Artifact||| +Razor Barrier|Mirrodin|17|C|{1}{W}|Instant||| +Vermiculos|Mirrodin|80|R|{4}{B}|Creature — Horror|1|1| +Skyhunter Cub|Mirrodin|21|C|{2}{W}|Creature — Cat Knight|2|2| +Spellweaver Helix|Mirrodin|247|R|{3}|Artifact||| +Darksteel Ingot|Darksteel|112|C|{3}|Artifact||| +Myr Matrix|Darksteel|132|R|{5}|Artifact||| +Titanium Golem|Mirrodin|263|C|{5}|Artifact Creature — Golem|3|3| +Cobalt Golem|Mirrodin|157|C|{4}|Artifact Creature — Golem|2|3| +Pewter Golem|Mirrodin|227|C|{5}|Artifact Creature — Golem|4|2| +Hematite Golem|Mirrodin|185|C|{4}|Artifact Creature — Golem|1|4| +Malachite Golem|Mirrodin|202|C|{6}|Artifact Creature — Golem|5|3| +Darksteel Forge|Darksteel|110|R|{9}|Artifact||| +Fiery Gambit|Mirrodin|90|R|{2}{R}|Sorcery||| +Awe Strike|Mirrodin|6|C|{W}|Instant||| +Goblin Dirigible|Mirrodin|177|U|{6}|Artifact Creature — Construct|4|4| +Hum of the Radix|Mirrodin|122|R|{2}{G}{G}|Enchantment||| +Molder Slug|Mirrodin|125|R|{3}{G}{G}|Creature — Slug Beast|4|6| +Roar of the Kha|Mirrodin|18|U|{1}{W}|Instant||| +Promise of Power|Mirrodin|74|R|{2}{B}{B}{B}|Sorcery||| +Blinding Beam|Mirrodin|7|C|{2}{W}|Instant||| +Soul Nova|Mirrodin|25|U|{3}{W}{W}|Instant||| +Raise the Alarm|Mirrodin|16|C|{1}{W}|Instant||| +Wail of the Nim|Mirrodin|81|C|{2}{B}|Instant||| +Lifespark Spellbomb|Mirrodin|197|C|{1}|Artifact||| +Pyrite Spellbomb|Mirrodin|232|C|{1}|Artifact||| +Rule of Law|Mirrodin|19|R|{2}{W}|Enchantment||| +Ζther Spellbomb|Mirrodin|141|C|{1}|Artifact||| +Looming Hoverguard|Mirrodin|38|U|{4}{U}{U}|Creature — Drone|3|3| +Battlegrowth|Mirrodin|113|C|{G}|Instant||| +Clockwork Beetle|Mirrodin|153|C|{1}|Artifact Creature — Insect|0|0| +Inflame|Darksteel|64|C|{R}|Instant||| +Vulshok Battlegear|Mirrodin|272|U|{3}|Artifact — Equipment||| +Tooth and Nail|Mirrodin|134|R|{5}{G}{G}|Sorcery||| +Vulshok Battlemaster|Mirrodin|110|R|{4}{R}|Creature — Human Warrior|2|2| +Nim Shambler|Mirrodin|72|U|{2}{B}{B}|Creature — Zombie|2|1| +Chromescale Drake|Darksteel|20|R|{6}{U}{U}{U}|Creature — Drake|3|4| +Glimmervoid|Mirrodin|281|R||Land||| +Incite War|Mirrodin|96|C|{2}{R}|Instant||| +Dead-Iron Sledge|Mirrodin|162|U|{1}|Artifact — Equipment||| +Voltaic Construct|Darksteel|156|U|{4}|Artifact Creature — Golem Construct|2|2| +Ζther Vial|Darksteel|91|U|{1}|Artifact||| +Reshape|Darksteel|31|R|{X}{U}{U}|Sorcery||| +Vedalken Engineer|Darksteel|35|C|{1}{U}|Creature — Vedalken Artificer|1|1| +Emissary of Hope|Darksteel|3|U|{1}{W}{W}|Creature — Spirit|2|1| +Tower of Champions|Mirrodin|265|R|{4}|Artifact||| +Altar of Shadows|Mirrodin|143|R|{7}|Artifact||| +Darksteel Colossus|Darksteel|109|R|{11}|Artifact Creature — Golem|11|11| +Dream's Grip|Mirrodin|34|C|{U}|Instant||| +Psychic Overload|Darksteel|28|U|{3}{U}|Enchantment — Aura||| +Psychic Membrane|Mirrodin|46|U|{2}{U}|Creature — Wall|0|3| +Rust Elemental|Mirrodin|234|U|{4}|Artifact Creature — Elemental|4|4| +Suncrusher|Fifth Dawn|159|R|{9}|Artifact Creature — Construct|3|3| +Grid Monitor|Mirrodin|183|R|{4}|Artifact Creature — Construct|4|6| +Loxodon Peacekeeper|Mirrodin|13|R|{1}{W}|Creature — Elephant Soldier|4|4| +Wall of Blood|Mirrodin|82|U|{2}{B}|Creature — Wall|0|2| +Gilded Lotus|Mirrodin|175|R|{5}|Artifact||| +Mass Hysteria|Mirrodin|99|R|{R}|Enchantment||| +Banshee's Blade|Mirrodin|144|U|{2}|Artifact — Equipment||| +Cathodion|Mirrodin|149|U|{3}|Artifact Creature — Construct|3|3| +Skullclamp|Darksteel|140|U|{1}|Artifact — Equipment||| +Fireshrieker|Mirrodin|171|U|{3}|Artifact — Equipment||| +Mirror Golem|Mirrodin|208|U|{6}|Artifact Creature — Golem|3|4| +Sunbeam Spellbomb|Mirrodin|250|C|{1}|Artifact||| +Goblin Cannon|Fifth Dawn|125|U|{4}|Artifact||| +Dragon Blood|Mirrodin|163|U|{3}|Artifact||| +Chalice of the Void|Mirrodin|150|R|{X}{X}|Artifact||| +Welding Jar|Mirrodin|274|C|{0}|Artifact||| +Relic Bane|Mirrodin|76|U|{1}{B}{B}|Enchantment — Aura||| +Fists of the Anvil|Mirrodin|91|C|{1}{R}|Instant||| +Leonin Bladetrap|Mirrodin|192|U|{3}|Artifact||| +Altar's Light|Mirrodin|1|U|{2}{W}{W}|Instant||| +One Dozen Eyes|Mirrodin|126|U|{5}{G}|Sorcery||| +Glissa Sunseeker|Mirrodin|120|R|{2}{G}{G}|Legendary Creature — Elf|3|2| +Fractured Loyalty|Mirrodin|93|U|{1}{R}|Enchantment — Aura||| +Vulshok Gauntlets|Mirrodin|273|C|{2}|Artifact — Equipment||| +Galvanic Key|Mirrodin|173|C|{2}|Artifact||| +Scale of Chiss-Goria|Mirrodin|236|C|{3}|Artifact||| +Tooth of Chiss-Goria|Mirrodin|264|C|{3}|Artifact||| +Plains|Mirrodin|287|L||Basic Land — Plains||| +Plains|Mirrodin|288|L||Basic Land — Plains||| +Plains|Mirrodin|289|L||Basic Land — Plains||| +Plains|Mirrodin|290|L||Basic Land — Plains||| +Island|Mirrodin|291|L||Basic Land — Island||| +Island|Mirrodin|292|L||Basic Land — Island||| +Island|Mirrodin|293|L||Basic Land — Island||| +Island|Mirrodin|294|L||Basic Land — Island||| +Swamp|Mirrodin|295|L||Basic Land — Swamp||| +Swamp|Mirrodin|296|L||Basic Land — Swamp||| +Swamp|Mirrodin|297|L||Basic Land — Swamp||| +Mountain|Mirrodin|299|L||Basic Land — Mountain||| +Mountain|Mirrodin|300|L||Basic Land — Mountain||| +Mountain|Mirrodin|301|L||Basic Land — Mountain||| +Mountain|Mirrodin|302|L||Basic Land — Mountain||| +Forest|Mirrodin|303|L||Basic Land — Forest||| +Forest|Mirrodin|304|L||Basic Land — Forest||| +Forest|Mirrodin|305|L||Basic Land — Forest||| +Forest|Mirrodin|306|L||Basic Land — Forest||| +Swamp|Mirrodin|298|L||Basic Land — Swamp||| +Reiver Demon|Mirrodin|75|R|{4}{B}{B}{B}{B}|Creature — Demon|6|6| +Skyhunter Patrol|Mirrodin|22|C|{2}{W}{W}|Creature — Cat Knight|2|3| +Arrest|Mirrodin|2|C|{2}{W}|Enchantment — Aura||| +Auriok Bladewarden|Mirrodin|3|U|{1}{W}|Creature — Human Soldier|1|1| +Arc-Slogger|Mirrodin|85|R|{3}{R}{R}|Creature — Beast|4|5| +Solar Tide|Mirrodin|24|R|{4}{W}{W}|Sorcery||| +Lumengrid Warden|Mirrodin|41|C|{1}{U}|Creature — Human Wizard|1|3| +Wanderguard Sentry|Mirrodin|56|C|{4}{U}|Creature — Drone|3|3| +Fabricate|Mirrodin|35|U|{2}{U}|Sorcery||| +Dross Prowler|Mirrodin|64|C|{2}{B}|Creature — Zombie|2|1| +Domineer|Mirrodin|33|U|{1}{U}{U}|Enchantment — Aura||| +Carry Away|Darksteel|19|U|{U}{U}|Enchantment — Aura||| +Retract|Darksteel|32|R|{U}|Instant||| +Ritual of Restoration|Darksteel|13|C|{W}|Sorcery||| +Leonin Shikari|Darksteel|6|R|{1}{W}|Creature — Cat Soldier|2|2| +Platinum Angel|Mirrodin|228|R|{7}|Artifact Creature — Angel|4|4| +Bosh, Iron Golem|Mirrodin|147|R|{8}|Legendary Artifact Creature — Golem|6|7| +Shield of Kaldra|Darksteel|139|R|{4}|Legendary Artifact — Equipment||| +Sword of Kaldra|Mirrodin|251|R|{4}|Legendary Artifact — Equipment||| +Nim Shrieker|Mirrodin|73|C|{3}{B}|Creature — Zombie|0|1| +Irradiate|Mirrodin|67|C|{3}{B}|Instant||| +Trash for Treasure|Mirrodin|109|R|{2}{R}|Sorcery||| +Betrayal of Flesh|Mirrodin|58|U|{5}{B}|Instant||| +Necrogen Mists|Mirrodin|69|R|{2}{B}|Enchantment||| +Barter in Blood|Mirrodin|57|U|{2}{B}{B}|Sorcery||| +Goblin Striker|Mirrodin|94|C|{1}{R}|Creature — Goblin Berserker|1|1| +Turn to Dust|Mirrodin|137|C|{G}|Instant||| +Predator's Strike|Mirrodin|128|C|{1}{G}|Instant||| +Bloodscent|Mirrodin|114|U|{3}{G}|Instant||| +Infested Roothold|Darksteel|76|U|{4}{G}|Creature — Wall|0|3| +Wurmskin Forger|Mirrodin|140|C|{5}{G}{G}|Creature — Elf Warrior|2|2| +Groffskithur|Mirrodin|121|C|{5}{G}|Creature — Beast|3|3| +Copperhoof Vorrac|Mirrodin|116|R|{3}{G}{G}|Creature — Boar Beast|2|2| +Arcbound Worker|Darksteel|104|C|{1}|Artifact Creature — Construct|0|0| +Omega Myr|Mirrodin|223|C|{2}|Artifact Creature — Myr|1|2| +Steel Wall|Mirrodin|248|C|{1}|Artifact Creature — Wall|0|4| +Tanglebloom|Mirrodin|258|C|{1}|Artifact||| +Tower of Eons|Mirrodin|266|R|{4}|Artifact||| +Thought Prison|Mirrodin|261|U|{5}|Artifact||| +Blinkmoth Well|Mirrodin|279|U||Land||| +Stalking Stones|Mirrodin|284|U||Land||| +Mind's Eye|Mirrodin|205|R|{5}|Artifact||| +Serum Powder|Darksteel|138|R|{3}|Artifact||| +Krark's Thumb|Mirrodin|190|R|{2}|Legendary Artifact||| +Myr Mindservant|Mirrodin|213|U|{1}|Artifact Creature — Myr|1|1| +Needlebug|Mirrodin|217|U|{4}|Artifact Creature — Insect|2|2| +Sun Droplet|Mirrodin|249|U|{2}|Artifact||| +Auriok Glaivemaster|Darksteel|1|C|{W}|Creature — Human Soldier|1|1| +Well of Lost Dreams|Darksteel|159|R|{4}|Artifact||| +Second Sunrise|Mirrodin|20|R|{1}{W}{W}|Instant||| +Karma|Eighth Edition|28|U|{2}{W}{W}|Enchantment||| +Barbed Lightning|Darksteel|55|C|{2}{R}|Instant||| +Coretapper|Darksteel|107|U|{2}|Artifact Creature — Myr|1|1| +Hoverguard Observer|Darksteel|22|U|{2}{U}{U}|Creature — Drone|3|3| +Synod Artificer|Darksteel|34|R|{2}{U}|Creature — Vedalken Artificer|1|2| +Wirefly Hive|Darksteel|161|U|{3}|Artifact||| +Turn the Tables|Darksteel|18|R|{3}{W}{W}|Instant||| +Pteron Ghost|Darksteel|10|C|{1}{W}|Creature — Spirit|1|1| +Rhox|Eighth Edition|277|R|{4}{G}{G}|Creature — Rhino Beast|5|5| +Hammer of Bogardan|Eighth Edition|193|R|{1}{R}{R}|Sorcery||| +Alpha Myr|Mirrodin|142|C|{2}|Artifact Creature — Myr|2|1| +Myr Prototype|Mirrodin|214|U|{5}|Artifact Creature — Myr|2|2| +Power Conduit|Mirrodin|229|U|{2}|Artifact||| +Scythe of the Wretched|Mirrodin|239|R|{2}|Artifact — Equipment||| +Kraken's Eye|Darksteel|126|U|{2}|Artifact||| +Cloudpost|Mirrodin|280|C||Land — Locus||| +Timesifter|Mirrodin|262|R|{5}|Artifact||| +Temporal Cascade|Mirrodin|52|R|{5}{U}{U}|Sorcery||| +Silverback Ape|Eighth Edition|7|U|{3}{G}{G}|Creature — Ape|5|5| +Deconstruct|Mirrodin|118|C|{2}{G}|Sorcery||| +Regress|Mirrodin|48|C|{2}{U}|Instant||| +Assert Authority|Mirrodin|30|U|{5}{U}{U}|Instant||| +Ζther Snap|Darksteel|37|R|{3}{B}{B}|Sorcery||| +Steelshaper Apprentice|Darksteel|15|R|{2}{W}{W}|Creature — Human Soldier|1|3| +Grim Reminder|Mirrodin|66|R|{2}{B}|Instant||| +Vex|Darksteel|36|C|{2}{U}|Instant||| +Drooling Ogre|Darksteel|58|C|{1}{R}|Creature — Ogre|3|3| +Disciple of the Vault|Mirrodin|62|C|{B}|Creature — Human Cleric|1|1| +Specter's Shroud|Darksteel|142|U|{2}|Artifact — Equipment||| +Chimeric Egg|Darksteel|106|U|{3}|Artifact||| +Electrostatic Bolt|Mirrodin|89|C|{R}|Instant||| +Creeping Mold|Mirrodin|117|U|{2}{G}{G}|Sorcery||| +Ur-Golem's Eye|Darksteel|155|C|{4}|Artifact||| +Frogmite|Mirrodin|172|C|{4}|Artifact Creature — Frog|2|2| +Empyrial Plate|Mirrodin|168|R|{2}|Artifact — Equipment||| +Solemn Simulacrum|Mirrodin|245|R|{4}|Artifact Creature — Golem|2|2| +Grab the Reins|Mirrodin|95|U|{3}{R}|Instant||| +Tel-Jilad Exile|Mirrodin|133|C|{3}{G}|Creature — Troll Warrior|2|3| +Journey of Discovery|Mirrodin|123|C|{2}{G}|Sorcery||| +Stand Together|Darksteel|84|U|{3}{G}{G}|Instant||| +Duplicant|Mirrodin|165|R|{6}|Artifact Creature — Shapeshifter|2|4| +Extraplanar Lens|Mirrodin|169|R|{3}|Artifact||| +Inertia Bubble|Mirrodin|37|C|{1}{U}|Enchantment — Aura||| +Contaminated Bond|Mirrodin|61|C|{1}{B}|Enchantment — Aura||| +Confusion in the Ranks|Mirrodin|87|R|{3}{R}{R}|Enchantment||| +Sylvan Scrying|Mirrodin|130|U|{1}{G}|Sorcery||| +Vulshok Morningstar|Darksteel|157|C|{2}|Artifact — Equipment||| +Loxodon Warhammer|Mirrodin|201|U|{3}|Artifact — Equipment||| +Scrabbling Claws|Mirrodin|237|U|{1}|Artifact||| +Shared Fate|Mirrodin|49|R|{4}{U}|Enchantment||| +Tangleroot|Mirrodin|259|R|{3}|Artifact||| +Leonin Sun Standard|Mirrodin|194|R|{2}|Artifact||| +Proteus Staff|Mirrodin|230|R|{3}|Artifact||| +Nightmare Lash|Mirrodin|219|R|{4}|Artifact — Equipment||| +Goblin Charbelcher|Mirrodin|176|R|{4}|Artifact||| +Quicksilver Fountain|Mirrodin|233|R|{3}|Artifact||| +Skeleton Shard|Mirrodin|242|U|{3}|Artifact||| +Wand of the Elements|Darksteel|158|R|{4}|Artifact||| +Troll Ascetic|Mirrodin|135|R|{1}{G}{G}|Creature — Troll Shaman|3|2| +Machinate|Darksteel|24|C|{1}{U}{U}|Instant||| +Shrapnel Blast|Mirrodin|106|U|{1}{R}|Instant||| +Shunt|Darksteel|68|R|{1}{R}{R}|Instant||| +Greater Harvester|Darksteel|44|R|{2}{B}{B}{B}|Creature — Horror|5|6| +Neurok Transmuter|Darksteel|27|U|{2}{U}|Creature — Human Wizard|2|2| +Nuisance Engine|Mirrodin|221|U|{3}|Artifact||| +Fist of Suns|Fifth Dawn|123|R|{3}|Artifact||| +Possessed Portal|Fifth Dawn|144|R|{8}|Artifact||| +Vedalken Shackles|Fifth Dawn|164|R|{3}|Artifact||| +Endless Whispers|Fifth Dawn|49|R|{2}{B}{B}|Enchantment||| +Vedalken Orrery|Fifth Dawn|163|R|{4}|Artifact||| +Skyhunter Prowler|Fifth Dawn|15|C|{2}{W}|Creature — Cat Knight|1|3| +Loxodon Anchorite|Fifth Dawn|10|C|{2}{W}{W}|Creature — Elephant Cleric|2|3| +Stand Firm|Fifth Dawn|17|C|{W}|Instant||| +Engineered Explosives|Fifth Dawn|118|R|{X}|Artifact||| +Beacon of Immortality|Fifth Dawn|6|R|{5}{W}|Instant||| +Advanced Hoverguard|Fifth Dawn|22|C|{3}{U}|Creature — Drone|2|2| +Serum Visions|Fifth Dawn|36|C|{U}|Sorcery||| +Into Thin Air|Fifth Dawn|33|C|{5}{U}|Instant||| +Gemstone Array|Fifth Dawn|124|U|{4}|Artifact||| +Razormane Masticore|Fifth Dawn|146|R|{5}|Artifact Creature — Masticore|5|5| +Chimeric Coils|Fifth Dawn|108|U|{1}|Artifact||| +Opaline Bracers|Fifth Dawn|141|C|{4}|Artifact — Equipment||| +Conjurer's Bauble|Fifth Dawn|112|C|{1}|Artifact||| +Staff of Domination|Fifth Dawn|156|R|{3}|Artifact||| +Trinket Mage|Fifth Dawn|39|C|{2}{U}|Creature — Human Wizard|2|2| +Abuna's Chant|Fifth Dawn|1|C|{3}{W}|Instant||| +Fangren Pathcutter|Fifth Dawn|87|U|{4}{G}{G}|Creature — Beast|4|6| +Artificer's Intuition|Fifth Dawn|23|R|{1}{U}|Enchantment||| +Myr Quadropod|Fifth Dawn|138|C|{4}|Artifact Creature — Myr|1|4| +Thermal Navigator|Fifth Dawn|162|C|{3}|Artifact Creature — Construct|2|2| +Myr Servitor|Fifth Dawn|139|C|{1}|Artifact Creature — Myr|1|1| +Viridian Lorebearers|Fifth Dawn|99|U|{3}{G}|Creature — Elf Shaman|3|3| +Ouphe Vandals|Fifth Dawn|90|U|{2}{G}|Creature — Ouphe Rogue|2|2| +Tel-Jilad Justice|Fifth Dawn|95|U|{1}{G}|Instant||| +Tyrranax|Fifth Dawn|98|C|{4}{G}{G}|Creature — Beast|5|4| +Heliophial|Fifth Dawn|130|C|{5}|Artifact||| +Clearwater Goblet|Fifth Dawn|109|R|{5}|Artifact||| +Krark-Clan Engineers|Fifth Dawn|70|U|{3}{R}|Creature — Goblin Artificer|2|2| +Tangle Asp|Fifth Dawn|94|C|{1}{G}|Creature — Snake|1|2| +Desecration Elemental|Fifth Dawn|45|R|{3}{B}|Creature — Elemental|8|8| +Lose Hope|Fifth Dawn|52|C|{B}|Instant||| +Fleshgrafter|Fifth Dawn|51|C|{2}{B}|Creature — Human Warrior|2|2| +Devour in Shadow|Fifth Dawn|46|U|{B}{B}|Instant||| +Mephidross Vampire|Fifth Dawn|53|R|{4}{B}{B}|Creature — Vampire|3|4| +Blind Creeper|Fifth Dawn|42|C|{1}{B}|Creature — Zombie Beast|3|3| +Retaliate|Fifth Dawn|13|R|{2}{W}{W}|Instant||| +Counsel of the Soratami|Champions of Kamigawa|55|C|{2}{U}|Sorcery||| +Kami of Twisted Reflection|Champions of Kamigawa|71|C|{1}{U}{U}|Creature — Spirit|2|2| +Cage of Hands|Champions of Kamigawa|3|C|{2}{W}|Enchantment — Aura||| +Burning-Eye Zubera|Saviors of Kamigawa|95|U|{2}{R}{R}|Creature — Zubera Spirit|3|3| +Feral Deceiver|Champions of Kamigawa|208|C|{3}{G}|Creature — Spirit|3|2| +Jugan, the Rising Star|Champions of Kamigawa|217|R|{3}{G}{G}{G}|Legendary Creature — Dragon Spirit|5|5| +Marrow-Gnawer|Champions of Kamigawa|124|R|{3}{B}{B}|Legendary Creature — Rat Rogue|2|3| +Petals of Insight|Champions of Kamigawa|79|U|{4}{U}|Sorcery — Arcane||| +Otherworldly Journey|Champions of Kamigawa|37|U|{1}{W}|Instant — Arcane||| +Orbweaver Kumo|Champions of Kamigawa|231|U|{4}{G}{G}|Creature — Spirit|3|4| +Ronin Houndmaster|Champions of Kamigawa|184|C|{2}{R}|Creature — Human Samurai|2|2| +Pain Kami|Champions of Kamigawa|183|U|{2}{R}|Creature — Spirit|2|2| +Wear Away|Champions of Kamigawa|250|C|{G}{G}|Instant — Arcane||| +Field of Reality|Champions of Kamigawa|60|C|{2}{U}|Enchantment — Aura||| +Frostwielder|Champions of Kamigawa|167|C|{2}{R}{R}|Creature — Human Shaman|1|2| +Soulless Revival|Champions of Kamigawa|144|C|{1}{B}|Instant — Arcane||| +Befoul|Champions of Kamigawa|102|C|{2}{B}{B}|Sorcery||| +Yamabushi's Flame|Champions of Kamigawa|198|C|{2}{R}|Instant||| +Rend Spirit|Champions of Kamigawa|141|C|{2}{B}|Instant||| +Eight-and-a-Half-Tails|Champions of Kamigawa|8|R|{W}{W}|Legendary Creature — Fox Cleric|2|2| +Kodama's Reach|Champions of Kamigawa|225|C|{2}{G}|Sorcery — Arcane||| +Imi Statue|Champions of Kamigawa|255|R|{3}|Artifact||| +Soratami Cloudskater|Champions of Kamigawa|86|C|{1}{U}|Creature — Moonfolk Rogue|1|1| +Burr Grafter|Champions of Kamigawa|203|C|{3}{G}|Creature — Spirit|2|2| +Orochi Ranger|Champions of Kamigawa|235|C|{1}{G}|Creature — Snake Warrior|2|1| +Kami of the Waning Moon|Champions of Kamigawa|120|C|{2}{B}|Creature — Spirit|1|1| +Quiet Purity|Champions of Kamigawa|39|C|{W}|Instant — Arcane||| +Uncontrollable Anger|Champions of Kamigawa|195|C|{2}{R}{R}|Enchantment — Aura||| +Shimatsu the Bloodcloaked|Champions of Kamigawa|186|R|{3}{R}|Legendary Creature — Demon Spirit|0|0| +Orochi Leafcaller|Champions of Kamigawa|234|C|{G}|Creature — Snake Shaman|1|1| +Lifted by Clouds|Champions of Kamigawa|73|C|{2}{U}|Instant — Arcane||| +Kiki-Jiki, Mirror Breaker|Champions of Kamigawa|175|R|{2}{R}{R}{R}|Legendary Creature — Goblin Shaman|2|2| +Akki Coalflinger|Champions of Kamigawa|152|U|{1}{R}{R}|Creature — Goblin Shaman|2|2| +Kashi-Tribe Warriors|Champions of Kamigawa|221|C|{3}{G}{G}|Creature — Snake Warrior|2|4| +Harsh Deceiver|Champions of Kamigawa|11|C|{3}{W}|Creature — Spirit|1|4| +Wandering Ones|Champions of Kamigawa|100|C|{U}|Creature — Spirit|1|1| +Yamabushi's Storm|Champions of Kamigawa|199|C|{1}{R}|Sorcery||| +Kami of Ancient Law|Champions of Kamigawa|21|C|{1}{W}|Creature — Spirit|2|2| +Kami of the Palace Fields|Champions of Kamigawa|24|U|{5}{W}|Creature — Spirit|3|2| +Unearthly Blizzard|Champions of Kamigawa|196|C|{2}{R}|Sorcery — Arcane||| +Battle-Mad Ronin|Champions of Kamigawa|156|C|{1}{R}|Creature — Human Samurai|1|1| +Mothrider Samurai|Champions of Kamigawa|34|C|{3}{W}|Creature — Human Samurai|2|2| +Oni Possession|Champions of Kamigawa|135|U|{2}{B}|Enchantment — Aura||| +Sensei's Divining Top|Champions of Kamigawa|268|U|{1}|Artifact||| +Reciprocate|Champions of Kamigawa|40|U|{W}|Instant||| +Samurai Enforcers|Champions of Kamigawa|42|U|{4}{W}{W}|Creature — Human Samurai|4|4| +Kitsune Riftwalker|Champions of Kamigawa|29|C|{1}{W}{W}|Creature — Fox Wizard|2|1| +Nine-Ringed Bo|Champions of Kamigawa|263|U|{3}|Artifact||| +Vigilance|Champions of Kamigawa|49|C|{W}|Enchantment — Aura||| +Hinder|Champions of Kamigawa|65|U|{1}{U}{U}|Instant||| +Rushing-Tide Zubera|Saviors of Kamigawa|52|U|{2}{U}{U}|Creature — Zubera Spirit|3|3| +Numai Outcast|Champions of Kamigawa|134|U|{3}{B}|Creature — Human Samurai|1|1| +Wicked Akuba|Champions of Kamigawa|150|C|{B}{B}|Creature — Spirit|2|2| +Thoughtbind|Champions of Kamigawa|96|C|{2}{U}|Instant||| +Kitsune Healer|Champions of Kamigawa|27|C|{3}{W}|Creature — Fox Cleric|2|2| +Thousand-legged Kami|Champions of Kamigawa|246|U|{6}{G}{G}|Creature — Spirit|6|6| +Hisoka's Defiance|Champions of Kamigawa|67|C|{1}{U}|Instant||| +Devoted Retainer|Champions of Kamigawa|7|C|{W}|Creature — Human Samurai|1|1| +Kitsune Blademaster|Champions of Kamigawa|25|C|{2}{W}|Creature — Fox Samurai|2|2| +Sire of the Storm|Champions of Kamigawa|85|U|{4}{U}{U}|Creature — Spirit|3|3| +Kokusho, the Evening Star|Champions of Kamigawa|122|R|{4}{B}{B}|Legendary Creature — Dragon Spirit|5|5| +Midnight Covenant|Champions of Kamigawa|125|C|{1}{B}|Enchantment — Aura||| +Blessed Breath|Champions of Kamigawa|1|C|{W}|Instant — Arcane||| +Sift Through Sands|Champions of Kamigawa|84|C|{1}{U}{U}|Instant — Arcane||| +Heartbeat of Spring|Champions of Kamigawa|212|R|{2}{G}|Enchantment||| +Hankyu|Champions of Kamigawa|253|U|{1}|Artifact — Equipment||| +Hisoka, Minamo Sensei|Champions of Kamigawa|66|R|{2}{U}{U}|Legendary Creature — Human Wizard|1|3| +Oathkeeper, Takeno's Daisho|Champions of Kamigawa|265|R|{3}|Legendary Artifact — Equipment||| +Order of the Sacred Bell|Champions of Kamigawa|232|C|{3}{G}|Creature — Human Monk|4|3| +Kodama of the North Tree|Champions of Kamigawa|222|R|{2}{G}{G}{G}|Legendary Creature — Spirit|6|4| +Indomitable Will|Champions of Kamigawa|17|C|{1}{W}|Enchantment — Aura||| +Blood Rites|Champions of Kamigawa|159|U|{3}{R}{R}|Enchantment||| +Sakura-Tribe Elder|Champions of Kamigawa|239|C|{1}{G}|Creature — Snake Shaman|1|1| +Nezumi Ronin|Champions of Kamigawa|130|C|{2}{B}|Creature — Rat Samurai|3|1| +Crushing Pain|Champions of Kamigawa|162|C|{1}{R}|Instant — Arcane||| +Thought Dissector|Darksteel|152|R|{4}|Artifact||| +Mycosynth Lattice|Darksteel|130|R|{6}|Artifact||| +Arcbound Reclaimer|Darksteel|101|R|{4}|Artifact Creature — Golem|0|0| +Spincrusher|Darksteel|144|U|{2}|Artifact Creature — Construct|0|2| +Thunderstaff|Darksteel|153|U|{3}|Artifact||| +Rebuking Ceremony|Darksteel|82|R|{3}{G}{G}|Sorcery||| +Essence Drain|Darksteel|43|C|{4}{B}|Sorcery||| +Dross Harvester|Mirrodin|63|R|{1}{B}{B}|Creature — Horror|4|4| +Mourner's Shield|Mirrodin|209|U|{4}|Artifact||| +Flamebreak|Darksteel|61|R|{R}{R}{R}|Sorcery||| +Spellbinder|Darksteel|143|R|{3}|Artifact — Equipment||| +Death Cloud|Darksteel|40|R|{X}{B}{B}{B}|Sorcery||| +Vedalken Mastermind|Fifth Dawn|40|U|{U}{U}|Creature — Vedalken Wizard|1|2| +Grafted Wargear|Fifth Dawn|126|U|{3}|Artifact — Equipment||| +Last Word|Darksteel|23|R|{2}{U}{U}|Instant||| +Arcbound Crusher|Darksteel|95|U|{4}|Artifact Creature — Juggernaut|0|0| +Arcbound Fiend|Darksteel|96|U|{6}|Artifact Creature — Horror|0|0| +Arcbound Slith|Darksteel|102|U|{2}|Artifact Creature — Slith|0|0| +Arcbound Ravager|Darksteel|100|R|{2}|Artifact Creature — Beast|0|0| +Memnarch|Darksteel|129|R|{7}|Legendary Artifact Creature — Wizard|4|5| +Slobad, Goblin Tinkerer|Darksteel|69|R|{1}{R}|Legendary Creature — Goblin Artificer|1|2| +Drill-Skimmer|Darksteel|118|C|{4}|Artifact Creature — Thopter|2|1| +Geth's Grimoire|Darksteel|123|U|{4}|Artifact||| +Heartseeker|Darksteel|124|R|{4}|Artifact — Equipment||| +Summoner's Egg|Fifth Dawn|157|R|{4}|Artifact Creature — Construct|0|4| +Steelshaper's Gift|Fifth Dawn|19|U|{W}|Sorcery||| +Roar of Reclamation|Fifth Dawn|14|R|{5}{W}{W}|Sorcery||| +Hoverguard Sweepers|Fifth Dawn|32|R|{6}{U}{U}|Creature — Drone|5|6| +Acquire|Fifth Dawn|21|R|{3}{U}{U}|Sorcery||| +Moriok Rigger|Fifth Dawn|54|R|{2}{B}|Creature — Human Rogue Rigger|2|2| +Shattered Dreams|Fifth Dawn|59|U|{B}|Sorcery||| +Ebon Drake|Fifth Dawn|48|U|{2}{B}|Creature — Drake|3|3| +Krark-Clan Ogre|Fifth Dawn|71|C|{3}{R}{R}|Creature — Ogre|3|3| +Magnetic Theft|Fifth Dawn|74|U|{R}|Instant||| +Magma Giant|Fifth Dawn|72|R|{5}{R}{R}|Creature — Giant|5|5| +Suntouched Myr|Fifth Dawn|160|C|{3}|Artifact Creature — Myr|0|0| +Wayfarer's Bauble|Fifth Dawn|165|C|{1}|Artifact||| +Ferropede|Fifth Dawn|122|U|{3}|Artifact Creature — Insect|1|1| +Ensouled Scimitar|Fifth Dawn|119|U|{3}|Artifact — Equipment||| +Anodet Lurker|Fifth Dawn|101|C|{5}|Artifact Creature — Construct|3|3| +Sylvok Explorer|Fifth Dawn|93|C|{1}{G}|Creature — Human Druid|1|1| +Clock of Omens|Fifth Dawn|110|U|{4}|Artifact||| +Blasting Station|Fifth Dawn|107|U|{3}|Artifact||| +Salvaging Station|Fifth Dawn|148|R|{6}|Artifact||| +Crucible of Worlds|Fifth Dawn|114|R|{3}|Artifact||| +Doubling Cube|Fifth Dawn|116|R|{2}|Artifact||| +Mycosynth Golem|Fifth Dawn|137|R|{11}|Artifact Creature — Golem|4|5| +Guardian Idol|Fifth Dawn|128|U|{2}|Artifact||| +Sawtooth Thresher|Fifth Dawn|149|C|{6}|Artifact Creature — Construct|1|1| +Infused Arrows|Fifth Dawn|133|U|{4}|Artifact||| +Vanquish|Fifth Dawn|20|U|{2}{W}|Instant||| +Screaming Fury|Fifth Dawn|78|C|{2}{R}|Sorcery||| +Eon Hub|Fifth Dawn|120|R|{5}|Artifact||| +Tornado Elemental|Fifth Dawn|97|R|{5}{G}{G}|Creature — Elemental|6|6| +Rite of Passage|Fifth Dawn|91|R|{2}{G}|Enchantment||| +Auriok Salvagers|Fifth Dawn|4|U|{3}{W}|Creature — Human Soldier|2|4| +Goblin Brawler|Fifth Dawn|66|C|{2}{R}|Creature — Goblin Warrior|2|2| +Vulshok Sorcerer|Fifth Dawn|80|C|{1}{R}{R}|Creature — Human Shaman|1|1| +Night's Whisper|Fifth Dawn|55|U|{1}{B}|Sorcery||| +Magma Jet|Fifth Dawn|73|U|{1}{R}|Instant||| +Healer's Headdress|Fifth Dawn|129|C|{2}|Artifact — Equipment||| +Neurok Stealthsuit|Fifth Dawn|140|C|{2}|Artifact — Equipment||| +Cranial Plating|Fifth Dawn|113|C|{2}|Artifact — Equipment||| +Sparring Collar|Fifth Dawn|154|C|{2}|Artifact — Equipment||| +Horned Helm|Fifth Dawn|132|C|{2}|Artifact — Equipment||| +Dross Crocodile|Fifth Dawn|47|C|{3}{B}|Creature — Zombie Crocodile|5|1| +Rain of Rust|Fifth Dawn|76|C|{3}{R}{R}|Instant||| +Skyhunter Skirmisher|Fifth Dawn|16|U|{1}{W}{W}|Creature — Cat Knight|1|1| +All Suns' Dawn|Fifth Dawn|81|R|{4}{G}|Sorcery||| +Dawn's Reflection|Fifth Dawn|85|C|{3}{G}|Enchantment — Aura||| +Condescend|Fifth Dawn|27|C|{X}{U}|Instant||| +Grinding Station|Fifth Dawn|127|U|{2}|Artifact||| +Arachnoid|Fifth Dawn|102|U|{6}|Artifact Creature — Spider|2|6| +Skyreach Manta|Fifth Dawn|152|C|{5}|Artifact Creature — Fish|0|0| +Baton of Courage|Fifth Dawn|105|C|{3}|Artifact||| +Stasis Cocoon|Fifth Dawn|18|C|{1}{W}|Enchantment — Aura||| +Beacon of Tomorrows|Fifth Dawn|24|R|{6}{U}{U}|Sorcery||| +Beacon of Unrest|Fifth Dawn|41|R|{3}{B}{B}|Sorcery||| +Beacon of Destruction|Fifth Dawn|61|R|{3}{R}{R}|Instant||| +Beacon of Creation|Fifth Dawn|82|R|{3}{G}|Sorcery||| +Unforge|Darksteel|71|C|{2}{R}|Instant||| +Ferocious Charge|Fifth Dawn|88|C|{2}{G}|Instant||| +Eternal Witness|Fifth Dawn|86|U|{1}{G}{G}|Creature — Human Shaman|2|1| +Solarion|Fifth Dawn|153|R|{7}|Artifact Creature — Construct|0|0| +Fold into Ζther|Fifth Dawn|31|U|{2}{U}{U}|Instant||| +Krark-Clan Ironworks|Fifth Dawn|134|U|{4}|Artifact||| +Blinkmoth Infusion|Fifth Dawn|25|R|{12}{U}{U}|Instant||| +Plunge into Darkness|Fifth Dawn|57|R|{1}{B}|Instant||| +Demon's Horn|Darksteel|116|U|{2}|Artifact||| +Dragon's Claw|Darksteel|117|U|{2}|Artifact||| +Wurm's Tooth|Darksteel|162|U|{2}|Artifact||| +Angel's Feather|Darksteel|92|U|{2}|Artifact||| +Arcbound Wanderer|Fifth Dawn|103|U|{6}|Artifact Creature — Golem|0|0| +Granulate|Fifth Dawn|67|R|{2}{R}{R}|Sorcery||| +Leonin Squire|Fifth Dawn|9|C|{1}{W}|Creature — Cat Soldier|2|2| +Etched Oracle|Fifth Dawn|121|U|{4}|Artifact Creature — Wizard|0|0| +Mana Geyser|Fifth Dawn|75|C|{3}{R}{R}|Sorcery||| +Summoning Station|Fifth Dawn|158|R|{7}|Artifact||| +Pentad Prism|Fifth Dawn|143|C|{2}|Artifact||| +Lunar Avenger|Fifth Dawn|136|U|{7}|Artifact Creature — Golem|2|2| +Auriok Champion|Fifth Dawn|3|R|{W}{W}|Creature — Human Cleric|1|1| +Ion Storm|Fifth Dawn|68|R|{2}{R}|Enchantment||| +Joiner Adept|Fifth Dawn|89|R|{1}{G}|Creature — Elf Druid|2|1| +Razorgrass Screen|Fifth Dawn|145|C|{1}|Artifact Creature — Wall|2|1| +Bringer of the Green Dawn|Fifth Dawn|83|R|{7}{G}{G}|Creature — Bringer|5|5| +Bringer of the Red Dawn|Fifth Dawn|62|R|{7}{R}{R}|Creature — Bringer|5|5| +Bringer of the Blue Dawn|Fifth Dawn|26|R|{7}{U}{U}|Creature — Bringer|5|5| +Bringer of the Black Dawn|Fifth Dawn|43|R|{7}{B}{B}|Creature — Bringer|5|5| +Bringer of the White Dawn|Fifth Dawn|7|R|{7}{W}{W}|Creature — Bringer|5|5| +Composite Golem|Fifth Dawn|111|U|{6}|Artifact Creature — Golem|4|4| +Paradise Mantle|Fifth Dawn|142|U|{0}|Artifact — Equipment||| +Door to Nothingness|Fifth Dawn|115|R|{5}|Artifact||| +Circle of Protection: Artifacts|Fifth Dawn|8|U|{1}{W}|Enchantment||| +Plasma Elemental|Fifth Dawn|34|U|{5}{U}|Creature — Elemental|4|1| +Reversal of Fortune|Fifth Dawn|77|R|{4}{R}{R}|Sorcery||| +Channel the Suns|Fifth Dawn|84|U|{3}{G}|Sorcery||| +Armed Response|Fifth Dawn|2|C|{2}{W}|Instant||| +Loxodon Stalwart|Fifth Dawn|11|U|{3}{W}{W}|Creature — Elephant Soldier|3|3| +Raksha Golden Cub|Fifth Dawn|12|R|{5}{W}{W}|Legendary Creature — Cat Soldier|3|4| +Thought Courier|Fifth Dawn|38|C|{1}{U}|Creature — Human Wizard|1|1| +Early Frost|Fifth Dawn|29|C|{1}{U}|Instant||| +Spectral Shift|Fifth Dawn|37|R|{1}{U}|Instant||| +Relentless Rats|Fifth Dawn|58|U|{1}{B}{B}|Creature — Rat|2|2| +Nim Grotesque|Fifth Dawn|56|U|{6}{B}|Creature — Zombie|3|6| +Vicious Betrayal|Fifth Dawn|60|C|{3}{B}{B}|Sorcery||| +Furnace Whelp|Fifth Dawn|65|U|{2}{R}{R}|Creature — Dragon|2|2| +Spark Elemental|Fifth Dawn|79|C|{R}|Creature — Elemental|3|1| +Tel-Jilad Lifebreather|Fifth Dawn|96|C|{4}{G}|Creature — Troll Shaman|3|2| +Viridian Scout|Fifth Dawn|100|C|{3}{G}|Creature — Elf Warrior Scout|1|2| +Rude Awakening|Fifth Dawn|92|R|{4}{G}|Sorcery||| +Cackling Imp|Fifth Dawn|44|C|{2}{B}{B}|Creature — Imp|2|2| +Silent Arbiter|Fifth Dawn|150|R|{4}|Artifact Creature — Construct|1|5| +Moonring Mirror|Champions of Kamigawa|262|R|{5}|Artifact||| +Eyes of the Watcher|Fifth Dawn|30|U|{2}{U}|Enchantment||| +Skullcage|Fifth Dawn|151|U|{4}|Artifact||| +Lantern of Insight|Fifth Dawn|135|U|{1}|Artifact||| +Spinal Parasite|Fifth Dawn|155|U|{5}|Artifact Creature — Insect|-1|-1| +Synod Centurion|Fifth Dawn|161|U|{4}|Artifact Creature — Construct|4|4| +Battered Golem|Fifth Dawn|106|C|{3}|Artifact Creature — Golem|3|2| +Forest|Unhinged|140|L||Basic Land — Forest||| +Island|Unhinged|137|L||Basic Land — Island||| +Mountain|Unhinged|139|L||Basic Land — Mountain||| +Plains|Unhinged|136|L||Basic Land — Plains||| +Swamp|Unhinged|138|L||Basic Land — Swamp||| +Dreamcatcher|Saviors of Kamigawa|34|C|{U}|Creature — Spirit|1|1| +Matsu-Tribe Birdstalker|Saviors of Kamigawa|137|C|{2}{G}{G}|Creature — Snake Warrior Archer|2|2| +Soratami Mindsweeper|Betrayers of Kamigawa|52|U|{3}{U}|Creature — Moonfolk Wizard|1|4| +Ghost-Lit Warder|Saviors of Kamigawa|39|U|{1}{U}|Creature — Spirit|1|1| +Stream of Consciousness|Betrayers of Kamigawa|53|U|{1}{U}|Instant — Arcane||| +Inner-Chamber Guard|Saviors of Kamigawa|13|U|{1}{W}|Creature — Human Samurai|0|2| +Deathknell Kami|Saviors of Kamigawa|65|C|{1}{B}|Creature — Spirit|0|1| +Mark of the Oni|Betrayers of Kamigawa|73|U|{2}{B}|Enchantment — Aura||| +Godo's Irregulars|Saviors of Kamigawa|101|U|{R}|Creature — Human Warrior|1|1| +Kagemaro, First to Suffer|Saviors of Kamigawa|73|R|{3}{B}{B}|Legendary Creature — Demon Spirit|*|*| +Shinen of Life's Roar|Saviors of Kamigawa|149|C|{1}{G}|Creature — Spirit|1|2| +Promised Kannushi|Saviors of Kamigawa|141|C|{G}|Creature — Human Druid|1|1| +Twist Allegiance|Betrayers of Kamigawa|120|R|{6}{R}|Sorcery||| +Oyobi, Who Split the Heavens|Betrayers of Kamigawa|18|R|{6}{W}|Legendary Creature — Spirit|3|6| +Moonlit Strider|Betrayers of Kamigawa|16|C|{3}{W}|Creature — Spirit|1|4| +Crawling Filth|Betrayers of Kamigawa|64|C|{5}{B}|Creature — Spirit|2|2| +Walker of Secret Ways|Betrayers of Kamigawa|60|U|{2}{U}|Creature — Human Ninja|1|2| +Sway of the Stars|Betrayers of Kamigawa|54|R|{8}{U}{U}|Sorcery||| +Genju of the Fens|Betrayers of Kamigawa|66|U|{B}|Enchantment — Aura||| +Isao, Enlightened Bushi|Betrayers of Kamigawa|129|R|{2}{G}|Legendary Creature — Human Samurai|2|1| +In the Web of War|Betrayers of Kamigawa|108|R|{3}{R}{R}|Enchantment||| +Kitsune Bonesetter|Saviors of Kamigawa|15|C|{2}{W}|Creature — Fox Cleric|0|1| +Jiwari, the Earth Aflame|Saviors of Kamigawa|107|R|{3}{R}{R}|Legendary Creature — Spirit|3|3| +Oni of Wild Places|Saviors of Kamigawa|108|U|{5}{R}|Creature — Demon Spirit|6|5| +Inner Calm, Outer Strength|Saviors of Kamigawa|133|C|{2}{G}|Instant — Arcane||| +Araba Mothrider|Saviors of Kamigawa|2|C|{1}{W}|Creature — Human Samurai|1|1| +Kiyomaro, First to Stand|Saviors of Kamigawa|18|R|{3}{W}{W}|Legendary Creature — Spirit|*|*| +Kaho, Minamo Historian|Saviors of Kamigawa|41|R|{2}{U}{U}|Legendary Creature — Human Wizard|2|2| +Seek the Horizon|Saviors of Kamigawa|147|U|{3}{G}|Sorcery||| +Haru-Onna|Saviors of Kamigawa|132|U|{3}{G}|Creature — Spirit|2|1| +Hand of Cruelty|Saviors of Kamigawa|71|U|{B}{B}|Creature — Human Samurai|2|2| +Kuro's Taken|Saviors of Kamigawa|79|C|{1}{B}|Creature — Rat Samurai|1|1| +Ghost-Lit Nourisher|Saviors of Kamigawa|131|U|{2}{G}|Creature — Spirit|2|1| +Ghost-Lit Redeemer|Saviors of Kamigawa|10|U|{W}|Creature — Spirit|1|1| +Mistblade Shinobi|Betrayers of Kamigawa|43|C|{2}{U}|Creature — Human Ninja|1|1| +Kodama of the Center Tree|Betrayers of Kamigawa|131|R|{4}{G}|Legendary Creature — Spirit|*|*| +Genju of the Fields|Betrayers of Kamigawa|5|U|{W}|Enchantment — Aura||| +Shinen of Flight's Wings|Saviors of Kamigawa|57|C|{4}{U}|Creature — Spirit|3|3| +Sosuke's Summons|Betrayers of Kamigawa|145|U|{2}{G}|Sorcery||| +Indebted Samurai|Betrayers of Kamigawa|9|U|{3}{W}|Creature — Human Samurai|2|3| +Sakura-Tribe Springcaller|Betrayers of Kamigawa|142|C|{3}{G}|Creature — Snake Shaman|2|4| +Kaiso, Memory of Loyalty|Betrayers of Kamigawa|3|U|{1}{W}{W}|Legendary Creature — Spirit|3|4| +Takenuma Bleeder|Betrayers of Kamigawa|86|C|{2}{B}|Creature — Ogre Shaman|3|3| +Chisei, Heart of Oceans|Betrayers of Kamigawa|32|R|{2}{U}{U}|Legendary Creature — Spirit|4|4| +Kami of False Hope|Betrayers of Kamigawa|10|C|{W}|Creature — Spirit|1|1| +Shinka Gatekeeper|Betrayers of Kamigawa|117|C|{2}{R}|Creature — Ogre Warrior|3|2| +Nourishing Shoal|Betrayers of Kamigawa|137|R|{X}{G}{G}|Instant — Arcane||| +Throat Slitter|Betrayers of Kamigawa|88|U|{4}{B}|Creature — Rat Ninja|2|2| +Patron of the Akki|Betrayers of Kamigawa|115|R|{4}{R}{R}|Legendary Creature — Spirit|5|5| +Reduce to Dreams|Betrayers of Kamigawa|49|R|{3}{U}{U}|Sorcery||| +Toils of Night and Day|Betrayers of Kamigawa|57|C|{2}{U}|Instant — Arcane||| +Three Tragedies|Betrayers of Kamigawa|87|U|{3}{B}{B}|Sorcery — Arcane||| +Descendant of Masumaro|Saviors of Kamigawa|126|U|{2}{G}|Creature — Human Monk|1|1| +Ronin Cliffrider|Betrayers of Kamigawa|116|U|{3}{R}{R}|Creature — Human Samurai|2|2| +Pus Kami|Betrayers of Kamigawa|79|U|{5}{B}{B}|Creature — Spirit|3|3| +Sickening Shoal|Betrayers of Kamigawa|82|R|{X}{B}{B}|Instant — Arcane||| +Disrupting Shoal|Betrayers of Kamigawa|33|R|{X}{U}{U}|Instant — Arcane||| +Wine of Blood and Iron|Saviors of Kamigawa|161|R|{3}|Artifact||| +Cowed by Wisdom|Saviors of Kamigawa|5|C|{W}|Enchantment — Aura||| +Sokenzan Renegade|Saviors of Kamigawa|114|U|{2}{R}|Creature — Ogre Samurai Mercenary|3|3| +Hail of Arrows|Saviors of Kamigawa|11|U|{X}{W}|Instant||| +Evermind|Saviors of Kamigawa|37|U||Instant — Arcane||| +O-Naginata|Saviors of Kamigawa|157|U|{1}|Artifact — Equipment||| +Akuta, Born of Ash|Saviors of Kamigawa|61|R|{2}{B}{B}|Legendary Creature — Spirit|3|2| +Kiku's Shadow|Saviors of Kamigawa|77|U|{B}{B}|Sorcery||| +Manriki-Gusari|Saviors of Kamigawa|156|U|{2}|Artifact — Equipment||| +Briarknit Kami|Saviors of Kamigawa|124|U|{3}{G}{G}|Creature — Spirit|3|3| +Fiddlehead Kami|Saviors of Kamigawa|130|C|{4}{G}|Creature — Spirit|3|3| +Seed the Land|Saviors of Kamigawa|146|R|{2}{G}{G}|Enchantment||| +Soramaro, First to Dream|Saviors of Kamigawa|58|R|{4}{U}{U}|Legendary Creature — Spirit|*|*| +Hand of Honor|Saviors of Kamigawa|12|U|{W}{W}|Creature — Human Samurai|2|2| +Soratami Cloud Chariot|Saviors of Kamigawa|160|U|{5}|Artifact||| +Path of Anger's Flame|Saviors of Kamigawa|109|C|{2}{R}|Instant — Arcane||| +Masumaro, First to Live|Saviors of Kamigawa|136|R|{3}{G}{G}{G}|Legendary Creature — Spirit|*|*| +Charge Across the Araba|Saviors of Kamigawa|4|U|{4}{W}|Instant — Arcane||| +Adamaro, First to Desire|Saviors of Kamigawa|91|R|{1}{R}{R}|Legendary Creature — Spirit|*|*| +Rending Vines|Saviors of Kamigawa|143|C|{1}{G}{G}|Instant — Arcane||| +Kataki, War's Wage|Saviors of Kamigawa|14|R|{1}{W}|Legendary Creature — Spirit|2|1| +Shifting Borders|Saviors of Kamigawa|56|U|{3}{U}|Instant — Arcane||| +Kashi-Tribe Elite|Saviors of Kamigawa|135|U|{1}{G}{G}|Creature — Snake Warrior|2|3| +Okina Nightwatch|Saviors of Kamigawa|140|C|{4}{G}|Creature — Human Monk|4|3| +Moonbow Illusionist|Saviors of Kamigawa|46|C|{2}{U}|Creature — Moonfolk Wizard|2|1| +Ronin Cavekeeper|Saviors of Kamigawa|111|C|{5}{R}|Creature — Human Samurai|4|3| +Barrel Down Sokenzan|Saviors of Kamigawa|94|C|{2}{R}|Instant — Arcane||| +Death of a Thousand Stings|Saviors of Kamigawa|64|C|{4}{B}|Instant — Arcane||| +Elder Pine of Jukai|Saviors of Kamigawa|128|C|{2}{G}|Creature — Spirit|2|1| +Oboro, Palace in the Clouds|Saviors of Kamigawa|164|R||Legendary Land||| +Pithing Needle|Saviors of Kamigawa|158|R|{1}|Artifact||| +Ζther Shockwave|Saviors of Kamigawa|1|U|{3}{W}|Instant||| +Sakura-Tribe Scout|Saviors of Kamigawa|144|C|{G}|Creature — Snake Shaman Scout|1|1| +Oboro Envoy|Saviors of Kamigawa|49|U|{3}{U}|Creature — Moonfolk Wizard|1|3| +Kitsune Loreweaver|Saviors of Kamigawa|17|C|{1}{W}|Creature — Fox Cleric|2|1| +Presence of the Wise|Saviors of Kamigawa|23|U|{2}{W}{W}|Sorcery||| +Kami of the Tended Garden|Saviors of Kamigawa|134|U|{3}{G}|Creature — Spirit|4|4| +Shinen of Stars' Light|Saviors of Kamigawa|28|C|{2}{W}|Creature — Spirit|2|1| +Spiritual Visit|Saviors of Kamigawa|29|C|{W}|Instant — Arcane||| +Eiganjo Free-Riders|Saviors of Kamigawa|8|U|{3}{W}|Creature — Human Soldier|3|4| +Thoughts of Ruin|Saviors of Kamigawa|118|R|{2}{R}{R}|Sorcery||| +Infernal Kirin|Saviors of Kamigawa|72|R|{2}{B}{B}|Legendary Creature — Kirin Spirit|3|3| +Mikokoro, Center of the Sea|Saviors of Kamigawa|162|R||Legendary Land||| +Akki Drillmaster|Saviors of Kamigawa|92|C|{2}{R}|Creature — Goblin Shaman|2|2| +Locust Miser|Saviors of Kamigawa|80|U|{2}{B}{B}|Creature — Rat Shaman|2|2| +Razorjaw Oni|Saviors of Kamigawa|87|U|{3}{B}|Creature — Demon Spirit|4|5| +Sokenzan Spellblade|Saviors of Kamigawa|115|C|{4}{R}|Creature — Ogre Samurai Shaman|2|3| +Exile into Darkness|Saviors of Kamigawa|67|U|{4}{B}|Sorcery||| +Footsteps of the Goryo|Saviors of Kamigawa|68|U|{2}{B}|Sorcery — Arcane||| +Ghost-Lit Stalker|Saviors of Kamigawa|69|U|{B}|Creature — Spirit|1|1| +Stampeding Serow|Saviors of Kamigawa|150|U|{2}{G}{G}|Creature — Antelope Beast|5|4| +Forked-Branch Garami|Betrayers of Kamigawa|125|U|{3}{G}{G}|Creature — Spirit|4|4| +Rally the Horde|Saviors of Kamigawa|110|R|{5}{R}|Sorcery||| +Tallowisp|Betrayers of Kamigawa|25|U|{1}{W}|Creature — Spirit|1|3| +Shuko|Betrayers of Kamigawa|159|U|{1}|Artifact — Equipment||| +Blessing of Leeches|Betrayers of Kamigawa|62|C|{2}{B}|Enchantment — Aura||| +Baku Altar|Betrayers of Kamigawa|152|R|{2}|Artifact||| +Oppressive Will|Saviors of Kamigawa|50|C|{2}{U}|Instant||| +Genju of the Cedars|Betrayers of Kamigawa|126|U|{G}|Enchantment — Aura||| +Bile Urchin|Betrayers of Kamigawa|61|C|{B}|Creature — Spirit|1|1| +Akki Blizzard-Herder|Betrayers of Kamigawa|91|C|{1}{R}|Creature — Goblin Shaman|1|1| +Mark of Sakiko|Betrayers of Kamigawa|135|U|{1}{G}|Enchantment — Aura||| +Toshiro Umezawa|Betrayers of Kamigawa|89|R|{1}{B}{B}|Legendary Creature — Human Samurai|2|2| +Goblin Cohort|Betrayers of Kamigawa|106|C|{R}|Creature — Goblin Warrior|2|2| +Gnarled Mass|Betrayers of Kamigawa|127|C|{1}{G}{G}|Creature — Spirit|3|3| +Shizuko, Caller of Autumn|Betrayers of Kamigawa|144|R|{1}{G}{G}|Legendary Creature — Snake Shaman|2|3| +Blazing Shoal|Betrayers of Kamigawa|96|R|{X}{R}{R}|Instant — Arcane||| +Kaijin of the Vanishing Touch|Betrayers of Kamigawa|39|U|{1}{U}|Creature — Spirit|0|3| +Kira, Great Glass-Spinner|Betrayers of Kamigawa|40|R|{1}{U}{U}|Legendary Creature — Spirit|2|2| +Tomorrow, Azami's Familiar|Betrayers of Kamigawa|58|R|{5}{U}|Legendary Creature — Spirit|1|5| +Higure, the Still Wind|Betrayers of Kamigawa|37|R|{3}{U}{U}|Legendary Creature — Human Ninja|3|4| +First Volley|Betrayers of Kamigawa|100|C|{1}{R}|Instant — Arcane||| +Petalmane Baku|Betrayers of Kamigawa|139|C|{1}{G}|Creature — Spirit|1|2| +Teardrop Kami|Betrayers of Kamigawa|55|C|{U}|Creature — Spirit|1|1| +Kami of Tattered Shoji|Betrayers of Kamigawa|11|C|{4}{W}|Creature — Spirit|2|5| +Child of Thorns|Betrayers of Kamigawa|123|C|{G}|Creature — Spirit|1|1| +Hero's Demise|Betrayers of Kamigawa|68|R|{1}{B}|Instant||| +Nezumi Shadow-Watcher|Betrayers of Kamigawa|74|U|{B}|Creature — Rat Warrior|1|1| +Ashen Monstrosity|Betrayers of Kamigawa|93|U|{5}{R}{R}|Creature — Spirit|7|4| +Sekki, Seasons' Guide|Saviors of Kamigawa|148|R|{5}{G}{G}{G}|Legendary Creature — Spirit|0|0| +Ronin Warclub|Betrayers of Kamigawa|158|U|{3}|Artifact — Equipment||| +Goryo's Vengeance|Betrayers of Kamigawa|67|R|{1}{B}|Instant — Arcane||| +Hired Muscle|Betrayers of Kamigawa|69|U|{1}{B}{B}|Creature — Human Warrior|2|2| +Crack the Earth|Betrayers of Kamigawa|98|C|{R}|Sorcery — Arcane||| +Terashi's Verdict|Betrayers of Kamigawa|27|U|{1}{W}|Instant — Arcane||| +Tendo Ice Bridge|Betrayers of Kamigawa|165|R||Land||| +Scourge of Numai|Betrayers of Kamigawa|80|U|{3}{B}|Creature — Demon Spirit|4|4| +Callow Jushi|Betrayers of Kamigawa|31|U|{1}{U}{U}|Creature — Human Wizard|2|2| +Mannichi, the Fevered Dream|Betrayers of Kamigawa|112|R|{2}{R}|Legendary Creature — Spirit|1|2| +Tomb of Urami|Saviors of Kamigawa|165|R||Legendary Land||| +Split-Tail Miko|Betrayers of Kamigawa|23|C|{1}{W}|Creature — Fox Cleric|1|1| +Phantom Wings|Betrayers of Kamigawa|46|C|{1}{U}|Enchantment — Aura||| +Quash|Betrayers of Kamigawa|47|U|{2}{U}{U}|Instant||| +Spiraling Embers|Saviors of Kamigawa|116|C|{3}{R}|Sorcery — Arcane||| +Iwamori of the Open Fist|Betrayers of Kamigawa|130|R|{2}{G}{G}|Legendary Creature — Human Monk|5|5| +Sakashima the Impostor|Saviors of Kamigawa|53|R|{2}{U}{U}|Legendary Creature — Human Rogue|3|1| +Yukora, the Prisoner|Betrayers of Kamigawa|90|R|{2}{B}{B}|Legendary Creature — Demon Spirit|5|5| +Ornate Kanzashi|Betrayers of Kamigawa|157|R|{5}|Artifact||| +Empty-Shrine Kannushi|Betrayers of Kamigawa|2|U|{W}|Creature — Human Cleric|1|1| +Veil of Secrecy|Betrayers of Kamigawa|59|C|{1}{U}|Instant — Arcane||| +Day of Destiny|Betrayers of Kamigawa|1|R|{3}{W}|Legendary Enchantment||| +Waxmane Baku|Betrayers of Kamigawa|29|C|{2}{W}|Creature — Spirit|2|2| +Shining Shoal|Betrayers of Kamigawa|21|R|{X}{W}{W}|Instant — Arcane||| +Aura Barbs|Betrayers of Kamigawa|94|U|{2}{R}|Instant — Arcane||| +Yomiji, Who Bars the Way|Betrayers of Kamigawa|30|R|{5}{W}{W}|Legendary Creature — Spirit|4|4| +Ribbons of the Reikai|Betrayers of Kamigawa|50|C|{4}{U}|Sorcery — Arcane||| +Fumiko the Lowblood|Betrayers of Kamigawa|104|R|{2}{R}{R}|Legendary Creature — Human Samurai|3|2| +Blademane Baku|Betrayers of Kamigawa|95|C|{1}{R}|Creature — Spirit|1|1| +Budoka Pupil|Betrayers of Kamigawa|122|U|{1}{G}{G}|Creature — Human Monk|2|2| +Mending Hands|Betrayers of Kamigawa|15|C|{W}|Instant||| +Scaled Hulk|Betrayers of Kamigawa|143|C|{5}{G}|Creature — Spirit|4|4| +Patron of the Orochi|Betrayers of Kamigawa|138|R|{6}{G}{G}|Legendary Creature — Spirit|7|7| +Sakiko, Mother of Summer|Betrayers of Kamigawa|141|R|{4}{G}{G}|Legendary Creature — Snake Shaman|3|3| +Silverstorm Samurai|Betrayers of Kamigawa|22|C|{4}{W}{W}|Creature — Fox Samurai|3|3| +Eradicate|Betrayers of Kamigawa|65|U|{2}{B}{B}|Sorcery||| +Kyoki, Sanity's Eclipse|Betrayers of Kamigawa|72|R|{4}{B}{B}|Legendary Creature — Demon Spirit|6|4| +Psychic Spear|Betrayers of Kamigawa|78|C|{B}|Sorcery||| +Mirror Gallery|Betrayers of Kamigawa|154|R|{5}|Artifact||| +Kagemaro's Clutch|Saviors of Kamigawa|74|C|{3}{B}|Enchantment — Aura||| +Uproot|Betrayers of Kamigawa|149|C|{3}{G}|Sorcery — Arcane||| +Lifegift|Betrayers of Kamigawa|132|R|{2}{G}|Enchantment||| +Heartless Hidetsugu|Betrayers of Kamigawa|107|R|{3}{R}{R}|Legendary Creature — Ogre Shaman|4|3| +Kumano's Blessing|Betrayers of Kamigawa|111|C|{2}{R}|Enchantment — Aura||| +Okiba-Gang Shinobi|Betrayers of Kamigawa|76|C|{3}{B}{B}|Creature — Rat Ninja|3|2| +Skullmane Baku|Betrayers of Kamigawa|83|C|{3}{B}{B}|Creature — Spirit|2|1| +Neko-Te|Betrayers of Kamigawa|155|R|{3}|Artifact — Equipment||| +Harbinger of Spring|Betrayers of Kamigawa|128|C|{4}{G}|Creature — Spirit|2|1| +Hundred-Talon Strike|Betrayers of Kamigawa|8|C|{W}|Instant — Arcane||| +Genju of the Falls|Betrayers of Kamigawa|35|U|{U}|Enchantment — Aura||| +Loam Dweller|Betrayers of Kamigawa|134|U|{1}{G}|Creature — Spirit|2|2| +Terashi's Grasp|Betrayers of Kamigawa|26|C|{2}{W}|Sorcery — Arcane||| +Ninja of the Deep Hours|Betrayers of Kamigawa|44|C|{3}{U}|Creature — Human Ninja|2|2| +Frost Ogre|Betrayers of Kamigawa|102|C|{3}{R}{R}|Creature — Ogre Warrior|5|3| +Horobi's Whisper|Betrayers of Kamigawa|70|C|{1}{B}{B}|Instant — Arcane||| +Ogre Marauder|Betrayers of Kamigawa|75|U|{1}{B}{B}|Creature — Ogre Warrior|3|1| +Akki Raider|Betrayers of Kamigawa|92|U|{1}{R}|Creature — Goblin Warrior|2|1| +Takeno's Cavalry|Betrayers of Kamigawa|24|C|{3}{W}|Creature — Human Samurai Archer|1|1| +Clash of Realities|Betrayers of Kamigawa|97|R|{3}{R}|Enchantment||| +Minamo Sightbender|Betrayers of Kamigawa|41|U|{1}{U}|Creature — Human Wizard|1|2| +Kitsune Palliator|Betrayers of Kamigawa|14|U|{2}{W}|Creature — Fox Cleric|0|2| +Reki, the History of Kamigawa|Saviors of Kamigawa|142|R|{2}{G}|Legendary Creature — Human Shaman|1|2| +Orb of Dreams|Betrayers of Kamigawa|156|R|{3}|Artifact||| +Ire of Kaminari|Betrayers of Kamigawa|109|C|{3}{R}|Instant — Arcane||| +Ward of Piety|Betrayers of Kamigawa|28|U|{1}{W}|Enchantment — Aura||| +Vital Surge|Betrayers of Kamigawa|150|C|{1}{G}|Instant — Arcane||| +Body of Jukai|Betrayers of Kamigawa|121|U|{7}{G}{G}|Creature — Spirit|8|5| +Splinter|Betrayers of Kamigawa|146|U|{2}{G}{G}|Sorcery||| +Call for Blood|Betrayers of Kamigawa|63|C|{4}{B}|Instant — Arcane||| +Iname as One|Saviors of Kamigawa|151|R|{8}{B}{B}{G}{G}|Legendary Creature — Spirit|8|8| +Matsu-Tribe Sniper|Betrayers of Kamigawa|136|C|{1}{G}|Creature — Snake Warrior Archer|1|1| +Patron of the Kitsune|Betrayers of Kamigawa|19|R|{4}{W}{W}|Legendary Creature — Spirit|5|6| +Frostling|Betrayers of Kamigawa|103|C|{R}|Creature — Spirit|1|1| +Sowing Salt|Betrayers of Kamigawa|118|U|{2}{R}{R}|Sorcery||| +Flames of the Blood Hand|Betrayers of Kamigawa|101|U|{2}{R}|Instant||| +Ink-Eyes, Servant of Oni|Betrayers of Kamigawa|71|R|{4}{B}{B}|Legendary Creature — Rat Ninja|5|4| +Traproot Kami|Betrayers of Kamigawa|147|C|{G}|Creature — Spirit|0|*| +Slumbering Tora|Betrayers of Kamigawa|161|R|{3}|Artifact||| +Roar of Jukai|Betrayers of Kamigawa|140|C|{2}{G}|Instant — Arcane||| +Ishi-Ishi, Akki Crackshot|Betrayers of Kamigawa|110|R|{1}{R}|Legendary Creature — Goblin Warrior|1|1| +Floodbringer|Betrayers of Kamigawa|34|C|{1}{U}|Creature — Moonfolk Wizard|1|2| +Scour|Betrayers of Kamigawa|20|U|{2}{W}{W}|Instant||| +Lifespinner|Betrayers of Kamigawa|133|U|{3}{G}|Creature — Spirit|3|3| +Stir the Grave|Betrayers of Kamigawa|85|C|{X}{B}|Sorcery||| +That Which Was Taken|Betrayers of Kamigawa|162|R|{5}|Legendary Artifact||| +Ogre Recluse|Betrayers of Kamigawa|113|U|{3}{R}|Creature — Ogre Warrior|5|4| +Patron of the Nezumi|Betrayers of Kamigawa|77|R|{5}{B}{B}|Legendary Creature — Spirit|6|6| +Hokori, Dust Drinker|Betrayers of Kamigawa|7|R|{2}{W}{W}|Legendary Creature — Spirit|2|2| +Threads of Disloyalty|Betrayers of Kamigawa|56|R|{1}{U}{U}|Enchantment — Aura||| +Opal-Eye, Konda's Yojimbo|Betrayers of Kamigawa|17|R|{1}{W}{W}|Legendary Creature — Fox Samurai|1|4| +Quillmane Baku|Betrayers of Kamigawa|48|C|{4}{U}|Creature — Spirit|3|3| +Heed the Mists|Betrayers of Kamigawa|36|U|{3}{U}{U}|Sorcery — Arcane||| +Minamo's Meddling|Betrayers of Kamigawa|42|C|{2}{U}{U}|Instant||| +Genju of the Spires|Betrayers of Kamigawa|105|U|{R}|Enchantment — Aura||| +Gods' Eye, Gate to the Reikai|Betrayers of Kamigawa|164|U||Legendary Land||| +Patron of the Moon|Betrayers of Kamigawa|45|R|{5}{U}{U}|Legendary Creature — Spirit|5|4| +Unchecked Growth|Betrayers of Kamigawa|148|U|{2}{G}|Instant — Arcane||| +Cunning Bandit|Betrayers of Kamigawa|99|U|{1}{R}{R}|Creature — Human Warrior|2|2| +Glimpse of Nature|Champions of Kamigawa|210|R|{G}|Sorcery||| +Matsu-Tribe Decoy|Champions of Kamigawa|227|C|{2}{G}|Creature — Snake Warrior|1|3| +Mindblaze|Champions of Kamigawa|180|R|{5}{R}|Sorcery||| +Uba Mask|Champions of Kamigawa|272|R|{4}|Artifact||| +Cruel Deceiver|Champions of Kamigawa|106|C|{1}{B}|Creature — Spirit|2|1| +Rend Flesh|Champions of Kamigawa|140|C|{2}{B}|Instant — Arcane||| +Cursed Ronin|Champions of Kamigawa|107|C|{3}{B}|Creature — Human Samurai|1|1| +No-Dachi|Champions of Kamigawa|264|U|{2}|Artifact — Equipment||| +Kumano's Pupils|Champions of Kamigawa|177|U|{4}{R}|Creature — Human Shaman|3|3| +Meloku the Clouded Mirror|Champions of Kamigawa|74|R|{4}{U}|Legendary Creature — Moonfolk Wizard|2|4| +Kusari-Gama|Champions of Kamigawa|260|R|{3}|Artifact — Equipment||| +Akki Avalanchers|Champions of Kamigawa|151|C|{R}|Creature — Goblin Warrior|1|1| +Shell of the Last Kappa|Champions of Kamigawa|269|R|{3}|Legendary Artifact||| +Teller of Tales|Champions of Kamigawa|95|C|{3}{U}{U}|Creature — Spirit|3|3| +Keiga, the Tide Star|Champions of Kamigawa|72|R|{5}{U}|Legendary Creature — Dragon Spirit|5|5| +Tatsumasa, the Dragon's Fang|Champions of Kamigawa|270|R|{6}|Legendary Artifact — Equipment||| +Takeno, Samurai General|Champions of Kamigawa|46|R|{5}{W}|Legendary Creature — Human Samurai|3|3| +Boseiju, Who Shelters All|Champions of Kamigawa|273|R||Legendary Land||| +Lantern Kami|Champions of Kamigawa|32|C|{W}|Creature — Spirit|1|1| +Ghostly Prison|Champions of Kamigawa|10|U|{2}{W}|Enchantment||| +Night Dealings|Champions of Kamigawa|132|R|{2}{B}{B}|Enchantment||| +Pain's Reward|Saviors of Kamigawa|85|R|{2}{B}|Sorcery||| +Aura of Dominion|Champions of Kamigawa|51|U|{U}{U}|Enchantment — Aura||| +Hanabi Blast|Champions of Kamigawa|170|U|{1}{R}{R}|Instant||| +Genju of the Realm|Betrayers of Kamigawa|151|R|{W}{U}{B}{R}{G}|Legendary Enchantment — Aura||| +Strength of Cedars|Champions of Kamigawa|245|U|{4}{G}|Instant — Arcane||| +Rootrunner|Champions of Kamigawa|237|U|{2}{G}{G}|Creature — Spirit|3|3| +Samurai of the Pale Curtain|Champions of Kamigawa|43|U|{W}{W}|Creature — Fox Samurai|2|2| +Akki Underminer|Champions of Kamigawa|155|U|{3}{R}|Creature — Goblin Rogue Shaman|1|1| +Devouring Rage|Champions of Kamigawa|164|C|{4}{R}|Instant — Arcane||| +Feast of Worms|Champions of Kamigawa|207|U|{3}{G}{G}|Sorcery — Arcane||| +Orochi Sustainer|Champions of Kamigawa|236|C|{1}{G}|Creature — Snake Shaman|1|2| +Serpent Skin|Champions of Kamigawa|240|C|{2}{G}|Enchantment — Aura||| +Kashi-Tribe Reaver|Champions of Kamigawa|220|U|{3}{G}|Creature — Snake Warrior|3|2| +Innocence Kami|Champions of Kamigawa|18|U|{3}{W}{W}|Creature — Spirit|2|3| +Konda's Banner|Champions of Kamigawa|259|R|{2}|Legendary Artifact — Equipment||| +Brutal Deceiver|Champions of Kamigawa|161|C|{2}{R}|Creature — Spirit|2|2| +Commune with Nature|Champions of Kamigawa|204|C|{G}|Sorcery||| +Moss Kami|Champions of Kamigawa|228|C|{5}{G}|Creature — Spirit|5|5| +Kitsune Diviner|Champions of Kamigawa|26|C|{W}|Creature — Fox Cleric|0|1| +Disruption Aura|Fifth Dawn|28|U|{2}{U}|Enchantment — Aura||| +Kami of the Painted Road|Champions of Kamigawa|23|C|{4}{W}|Creature — Spirit|3|3| +Hana Kami|Champions of Kamigawa|211|U|{G}|Creature — Spirit|1|1| +Hearth Kami|Champions of Kamigawa|171|C|{1}{R}|Creature — Spirit|2|1| +Call to Glory|Champions of Kamigawa|4|C|{1}{W}|Instant||| +Honor-Worn Shaku|Champions of Kamigawa|254|U|{3}|Artifact||| +Akki Rockspeaker|Champions of Kamigawa|154|C|{1}{R}|Creature — Goblin Shaman|1|1| +Thief of Hope|Champions of Kamigawa|147|U|{2}{B}|Creature — Spirit|2|2| +Kami of Lunacy|Champions of Kamigawa|119|U|{4}{B}{B}|Creature — Spirit|4|1| +Scuttling Death|Champions of Kamigawa|142|C|{4}{B}|Creature — Spirit|4|2| +Hall of the Bandit Lord|Champions of Kamigawa|277|R||Legendary Land||| +Blind with Anger|Champions of Kamigawa|158|U|{3}{R}|Instant — Arcane||| +Unnatural Speed|Champions of Kamigawa|197|C|{R}|Instant — Arcane||| +Time Stop|Champions of Kamigawa|97|R|{4}{U}{U}|Instant||| +Callous Deceiver|Champions of Kamigawa|53|C|{2}{U}|Creature — Spirit|1|3| +Godo, Bandit Warlord|Champions of Kamigawa|169|R|{5}{R}|Legendary Creature — Human Barbarian|3|3| +Bounteous Kirin|Saviors of Kamigawa|123|R|{5}{G}{G}|Legendary Creature — Kirin Spirit|4|4| +River Kaijin|Champions of Kamigawa|83|C|{2}{U}|Creature — Spirit|1|4| +Yosei, the Morning Star|Champions of Kamigawa|50|R|{4}{W}{W}|Legendary Creature — Dragon Spirit|5|5| +Konda, Lord of Eiganjo|Champions of Kamigawa|30|R|{5}{W}{W}|Legendary Creature — Human Samurai|3|3| +Kenzo the Hardhearted|Champions of Kamigawa|2|U|{W}|Legendary Creature — Human Samurai|3|4| +He Who Hungers|Champions of Kamigawa|114|R|{4}{B}|Legendary Creature — Spirit|3|2| +Tide of War|Champions of Kamigawa|194|R|{4}{R}{R}|Enchantment||| +Myojin of Seeing Winds|Champions of Kamigawa|75|R|{7}{U}{U}{U}|Legendary Creature — Spirit|3|3| +Nighteyes the Desecrator|Champions of Kamigawa|129|U|{1}{B}|Legendary Creature — Rat Wizard|4|2| +Stabwhisker the Odious|Champions of Kamigawa|131|R|{1}{B}|Legendary Creature — Rat Shaman|3|3| +Myojin of Cleansing Fire|Champions of Kamigawa|35|R|{5}{W}{W}{W}|Legendary Creature — Spirit|4|6| +Sensei Golden-Tail|Champions of Kamigawa|44|R|{1}{W}|Legendary Creature — Fox Samurai|2|1| +Humble Budoka|Champions of Kamigawa|214|C|{1}{G}|Creature — Human Monk|2|2| +Tomoya the Revealer|Champions of Kamigawa|70|R|{1}{U}|Legendary Creature — Human Wizard|2|3| +Dokai, Weaver of Life|Champions of Kamigawa|202|R|{1}{G}|Legendary Creature — Human Monk|3|3| +Goka the Unjust|Champions of Kamigawa|173|U|{3}{R}|Legendary Creature — Ogre Shaman|4|4| +Peer Through Depths|Champions of Kamigawa|78|C|{1}{U}|Instant — Arcane||| +Tobita, Master of Winds|Champions of Kamigawa|93|U|{1}{U}|Legendary Creature — Human Wizard|3|3| +The Unspeakable|Champions of Kamigawa|98|R|{6}{U}{U}{U}|Legendary Creature — Spirit|6|7| +Tok-Tok, Volcano Born|Champions of Kamigawa|153|R|{3}{R}|Legendary Creature — Goblin Shaman|2|2| +Autumn-Tail, Kitsune Sage|Champions of Kamigawa|28|R|{3}{W}|Legendary Creature — Fox Wizard|4|5| +Azami, Lady of Scrolls|Champions of Kamigawa|52|R|{2}{U}{U}{U}|Legendary Creature — Human Wizard|0|2| +Shisato, Whispering Hunter|Champions of Kamigawa|242|R|{3}{G}|Legendary Creature — Snake Warrior|2|2| +Horobi, Death's Wail|Champions of Kamigawa|117|R|{2}{B}{B}|Legendary Creature — Spirit|4|4| +Uyo, Silent Prophet|Champions of Kamigawa|99|R|{4}{U}{U}|Legendary Creature — Moonfolk Wizard|4|4| +Kiku, Night's Flower|Champions of Kamigawa|121|R|{B}{B}|Legendary Creature — Human Assassin|1|1| +Waking Nightmare|Champions of Kamigawa|149|C|{2}{B}|Sorcery — Arcane||| +Kumano, Master Yamabushi|Champions of Kamigawa|176|R|{3}{R}{R}|Legendary Creature — Human Shaman|4|4| +Seizan, Perverter of Truth|Champions of Kamigawa|143|R|{3}{B}{B}|Legendary Creature — Demon Spirit|6|5| +Gibbering Kami|Champions of Kamigawa|112|C|{3}{B}|Creature — Spirit|2|2| +Brothers Yamazaki|Champions of Kamigawa|160|U|{2}{R}|Legendary Creature — Human Samurai|2|1| +Pull Under|Champions of Kamigawa|137|C|{5}{B}|Instant — Arcane||| +Shidako, Broodmistress|Champions of Kamigawa|233|U|{2}{G}|Legendary Creature — Snake Shaman|3|3| +Myojin of Life's Web|Champions of Kamigawa|229|R|{6}{G}{G}{G}|Legendary Creature — Spirit|8|8| +Venerable Kumo|Champions of Kamigawa|248|C|{4}{G}|Creature — Spirit|2|3| +Joyous Respite|Champions of Kamigawa|216|C|{3}{G}|Sorcery — Arcane||| +Ore Gorger|Champions of Kamigawa|182|U|{3}{R}{R}|Creature — Spirit|3|1| +Myojin of Infinite Rage|Champions of Kamigawa|181|R|{7}{R}{R}{R}|Legendary Creature — Spirit|7|4| +Time of Need|Champions of Kamigawa|247|U|{1}{G}|Sorcery||| +Sosuke, Son of Seshiro|Champions of Kamigawa|244|U|{2}{G}{G}|Legendary Creature — Snake Warrior|3|4| +Night of Souls' Betrayal|Champions of Kamigawa|133|R|{2}{B}{B}|Legendary Enchantment||| +Plains|Champions of Kamigawa|287|L||Basic Land — Plains||| +Island|Champions of Kamigawa|291|L||Basic Land — Island||| +Forest|Champions of Kamigawa|303|L||Basic Land — Forest||| +Plains|Champions of Kamigawa|288|L||Basic Land — Plains||| +Mountain|Champions of Kamigawa|299|L||Basic Land — Mountain||| +Swamp|Champions of Kamigawa|295|L||Basic Land — Swamp||| +Swamp|Champions of Kamigawa|296|L||Basic Land — Swamp||| +Swamp|Champions of Kamigawa|297|L||Basic Land — Swamp||| +Forest|Champions of Kamigawa|304|L||Basic Land — Forest||| +Island|Champions of Kamigawa|292|L||Basic Land — Island||| +Mountain|Champions of Kamigawa|300|L||Basic Land — Mountain||| +Island|Champions of Kamigawa|293|L||Basic Land — Island||| +Plains|Champions of Kamigawa|289|L||Basic Land — Plains||| +Swamp|Champions of Kamigawa|298|L||Basic Land — Swamp||| +Island|Champions of Kamigawa|294|L||Basic Land — Island||| +Mountain|Champions of Kamigawa|301|L||Basic Land — Mountain||| +Plains|Champions of Kamigawa|290|L||Basic Land — Plains||| +Mountain|Champions of Kamigawa|302|L||Basic Land — Mountain||| +Forest|Champions of Kamigawa|306|L||Basic Land — Forest||| +Forest|Champions of Kamigawa|305|L||Basic Land — Forest||| +Lantern-Lit Graveyard|Champions of Kamigawa|278|U||Land||| +Lava Spike|Champions of Kamigawa|178|C|{R}|Sorcery — Arcane||| +Gutwrencher Oni|Champions of Kamigawa|113|U|{3}{B}{B}|Creature — Demon Spirit|5|4| +Swallowing Plague|Champions of Kamigawa|146|U|{X}{B}{B}|Sorcery — Arcane||| +Gifts Ungiven|Champions of Kamigawa|62|R|{3}{U}|Instant||| +Dance of Shadows|Champions of Kamigawa|108|U|{3}{B}{B}|Sorcery — Arcane||| +Honden of Night's Reach|Champions of Kamigawa|116|U|{3}{B}|Legendary Enchantment — Shrine||| +Kabuto Moth|Champions of Kamigawa|20|C|{2}{W}|Creature — Spirit|1|2| +Honden of Infinite Rage|Champions of Kamigawa|172|U|{2}{R}|Legendary Enchantment — Shrine||| +Myojin of Night's Reach|Champions of Kamigawa|126|R|{5}{B}{B}{B}|Legendary Creature — Spirit|5|2| +Bloodthirsty Ogre|Champions of Kamigawa|104|U|{2}{B}|Creature — Ogre Warrior Shaman|3|1| +Cloudcrest Lake|Champions of Kamigawa|274|U||Land||| +Painwracker Oni|Champions of Kamigawa|136|U|{3}{B}{B}|Creature — Demon Spirit|5|4| +Shinka, the Bloodsoaked Keep|Champions of Kamigawa|282|R||Legendary Land||| +Reverse the Sands|Champions of Kamigawa|41|R|{6}{W}{W}|Sorcery||| +Distress|Champions of Kamigawa|111|C|{B}{B}|Sorcery||| +Pinecrest Ridge|Champions of Kamigawa|281|U||Land||| +Mana Seism|Champions of Kamigawa|179|U|{1}{R}|Sorcery||| +Nagao, Bound by Honor|Champions of Kamigawa|36|U|{3}{W}|Legendary Creature — Human Samurai|3|3| +Sokenzan Bruiser|Champions of Kamigawa|188|C|{4}{R}|Creature — Ogre Warrior|3|3| +Hold the Line|Champions of Kamigawa|13|R|{1}{W}{W}|Instant||| +Hundred-Talon Kami|Champions of Kamigawa|16|C|{4}{W}|Creature — Spirit|2|3| +Hisoka's Guard|Champions of Kamigawa|68|C|{1}{U}|Creature — Human Wizard|1|1| +Devouring Greed|Champions of Kamigawa|110|C|{2}{B}{B}|Sorcery — Arcane||| +Lure|Champions of Kamigawa|226|U|{1}{G}{G}|Enchantment — Aura||| +Eye of Nowhere|Champions of Kamigawa|59|C|{U}{U}|Sorcery — Arcane||| +Ragged Veins|Champions of Kamigawa|139|C|{1}{B}|Enchantment — Aura||| +Honden of Cleansing Fire|Champions of Kamigawa|14|U|{3}{W}|Legendary Enchantment — Shrine||| +Akki Underling|Saviors of Kamigawa|93|C|{1}{R}|Creature — Goblin Warrior|2|1| +Blood Speaker|Champions of Kamigawa|103|U|{3}{B}|Creature — Ogre Shaman|3|2| +Struggle for Sanity|Champions of Kamigawa|145|U|{2}{B}{B}|Sorcery||| +Honden of Seeing Winds|Champions of Kamigawa|69|U|{4}{U}|Legendary Enchantment — Shrine||| +Soilshaper|Champions of Kamigawa|243|U|{1}{G}|Creature — Spirit|1|1| +Minamo, School at Water's Edge|Champions of Kamigawa|279|R||Legendary Land||| +Honden of Life's Web|Champions of Kamigawa|213|U|{4}{G}|Legendary Enchantment — Shrine||| +Shizo, Death's Storehouse|Champions of Kamigawa|283|R||Legendary Land||| +Mystic Restraints|Champions of Kamigawa|76|C|{2}{U}{U}|Enchantment — Aura||| +Waterveil Cavern|Champions of Kamigawa|286|U||Land||| +Guardian of Solitude|Champions of Kamigawa|64|U|{1}{U}|Creature — Spirit|1|2| +Kami of Fire's Roar|Champions of Kamigawa|174|C|{3}{R}|Creature — Spirit|2|3| +Tranquil Garden|Champions of Kamigawa|284|U||Land||| +Kami of the Hunt|Champions of Kamigawa|219|C|{2}{G}|Creature — Spirit|2|2| +Vassal's Duty|Champions of Kamigawa|48|R|{3}{W}|Enchantment||| +Konda's Hatamoto|Champions of Kamigawa|31|U|{1}{W}|Creature — Human Samurai|1|2| +Hideous Laughter|Champions of Kamigawa|115|U|{2}{B}{B}|Instant — Arcane||| +Eiganjo Castle|Champions of Kamigawa|275|R||Legendary Land||| +Earthshaker|Champions of Kamigawa|165|U|{4}{R}{R}|Creature — Spirit|4|5| +Masako the Humorless|Champions of Kamigawa|33|R|{2}{W}|Legendary Creature — Human Advisor|2|1| +Isamaru, Hound of Konda|Champions of Kamigawa|19|R|{W}|Legendary Creature — Hound|2|2| +Untaidake, the Cloud Keeper|Champions of Kamigawa|285|R||Legendary Land||| +Hair-Strung Koto|Champions of Kamigawa|252|R|{6}|Artifact||| +Hikari, Twilight Guardian|Champions of Kamigawa|12|R|{3}{W}{W}|Legendary Creature — Spirit|4|4| +Stone Rain|Champions of Kamigawa|191|C|{2}{R}|Sorcery||| +Horizon Seed|Champions of Kamigawa|15|U|{4}{W}|Creature — Spirit|2|1| +Cut the Tethers|Champions of Kamigawa|56|U|{2}{U}{U}|Sorcery||| +Graceful Adept|Champions of Kamigawa|63|U|{2}{U}|Creature — Human Wizard|1|3| +Tenza, Godo's Maul|Champions of Kamigawa|271|U|{3}|Legendary Artifact — Equipment||| +Journeyer's Kite|Champions of Kamigawa|257|R|{2}|Artifact||| +Kami of Old Stone|Champions of Kamigawa|22|U|{3}{W}|Creature — Spirit|1|7| +Rag Dealer|Champions of Kamigawa|138|C|{B}|Creature — Human Rogue|1|1| +Ryusei, the Falling Star|Champions of Kamigawa|185|R|{5}{R}|Legendary Creature — Dragon Spirit|5|5| +Gale Force|Champions of Kamigawa|209|U|{4}{G}|Sorcery||| +Reach Through Mists|Champions of Kamigawa|81|C|{U}|Instant — Arcane||| +Ben-Ben, Akki Hermit|Champions of Kamigawa|157|R|{2}{R}{R}|Legendary Creature — Goblin Shaman|1|1| +Forbidden Orchard|Champions of Kamigawa|276|R||Land||| +Soul of Magma|Champions of Kamigawa|189|C|{3}{R}{R}|Creature — Spirit|2|2| +Pious Kitsune|Champions of Kamigawa|38|C|{2}{W}|Creature — Fox Cleric|1|2| +Nezumi Bone-Reader|Champions of Kamigawa|127|U|{1}{B}|Creature — Rat Shaman|1|1| +Iizuka the Ruthless|Saviors of Kamigawa|104|R|{3}{R}{R}|Legendary Creature — Human Samurai|3|3| +General's Kabuto|Champions of Kamigawa|251|R|{4}|Artifact — Equipment||| +Reweave|Champions of Kamigawa|82|R|{5}{U}|Instant — Arcane||| +Orochi Hatchery|Champions of Kamigawa|266|R|{X}{X}|Artifact||| +Psychic Puppetry|Champions of Kamigawa|80|C|{1}{U}|Instant — Arcane||| +Eerie Procession|Champions of Kamigawa|58|U|{2}{U}|Sorcery — Arcane||| +Glacial Ray|Champions of Kamigawa|168|C|{1}{R}|Instant — Arcane||| +Soulblast|Champions of Kamigawa|190|R|{3}{R}{R}{R}|Instant||| +Through the Breach|Champions of Kamigawa|193|R|{4}{R}|Instant — Arcane||| +Okina, Temple to the Grandfathers|Champions of Kamigawa|280|R||Legendary Land||| +Sachi, Daughter of Seshiro|Champions of Kamigawa|238|U|{2}{G}{G}|Legendary Creature — Snake Shaman|1|3| +Consuming Vortex|Champions of Kamigawa|54|C|{1}{U}|Instant — Arcane||| +Seshiro the Anointed|Champions of Kamigawa|241|R|{4}{G}{G}|Legendary Creature — Snake Monk|3|4| +Reito Lantern|Champions of Kamigawa|267|U|{2}|Artifact||| +Zo-Zu the Punisher|Champions of Kamigawa|200|R|{1}{R}{R}|Legendary Creature — Goblin Warrior|2|2| +Desperate Ritual|Champions of Kamigawa|163|C|{1}{R}|Instant — Arcane||| +Swirl the Mists|Champions of Kamigawa|94|R|{2}{U}{U}|Enchantment||| +Iname, Death Aspect|Champions of Kamigawa|118|R|{4}{B}{B}|Legendary Creature — Spirit|4|4| +Junkyo Bell|Champions of Kamigawa|258|R|{4}|Artifact||| +Cranial Extraction|Champions of Kamigawa|105|R|{3}{B}|Sorcery — Arcane||| +Iname, Life Aspect|Champions of Kamigawa|215|R|{4}{G}{G}|Legendary Creature — Spirit|4|4| +Azusa, Lost but Seeking|Champions of Kamigawa|201|R|{2}{G}|Legendary Creature — Human Monk|1|2| +Dampen Thought|Champions of Kamigawa|57|U|{1}{U}|Instant — Arcane||| +Terashi's Cry|Champions of Kamigawa|47|C|{3}{W}|Sorcery — Arcane||| +Kodama of the South Tree|Champions of Kamigawa|223|R|{2}{G}{G}|Legendary Creature — Spirit|4|4| +Squelch|Champions of Kamigawa|92|U|{1}{U}|Instant||| +Part the Veil|Champions of Kamigawa|77|R|{3}{U}|Instant — Arcane||| +Candles' Glow|Champions of Kamigawa|5|U|{1}{W}|Instant — Arcane||| +Soratami Mirror-Mage|Champions of Kamigawa|88|U|{3}{U}|Creature — Moonfolk Wizard|2|1| +Twincast|Saviors of Kamigawa|60|R|{U}{U}|Instant||| +Soratami Rainshaper|Champions of Kamigawa|89|C|{2}{U}|Creature — Moonfolk Wizard|2|1| +Soratami Mirror-Guard|Champions of Kamigawa|87|C|{3}{U}|Creature — Moonfolk Wizard|3|1| +Soratami Seer|Champions of Kamigawa|91|U|{4}{U}|Creature — Moonfolk Wizard|2|3| +Soratami Savant|Champions of Kamigawa|90|U|{2}{U}{U}|Creature — Moonfolk Wizard|2|2| +Cleanfall|Champions of Kamigawa|6|U|{2}{W}|Sorcery — Arcane||| +Floating-Dream Zubera|Champions of Kamigawa|61|C|{1}{U}|Creature — Zubera Spirit|1|2| +Ember-Fist Zubera|Champions of Kamigawa|166|C|{1}{R}|Creature — Zubera Spirit|1|2| +Ashen-Skin Zubera|Champions of Kamigawa|101|C|{1}{B}|Creature — Zubera Spirit|1|2| +Silent-Chant Zubera|Champions of Kamigawa|45|C|{1}{W}|Creature — Zubera Spirit|1|2| +Dripping-Tongue Zubera|Champions of Kamigawa|206|C|{1}{G}|Creature — Zubera Spirit|1|2| +Villainous Ogre|Champions of Kamigawa|148|C|{2}{B}|Creature — Ogre Warrior|3|2| +Nezumi Cutthroat|Champions of Kamigawa|128|C|{1}{B}|Creature — Rat Warrior|2|1| +Deathcurse Ogre|Champions of Kamigawa|109|C|{5}{B}|Creature — Ogre Warrior|3|3| +Sideswipe|Champions of Kamigawa|187|U|{1}{R}|Instant||| +Dosan the Falling Leaf|Champions of Kamigawa|205|R|{1}{G}{G}|Legendary Creature — Human Monk|2|2| +Jukai Messenger|Champions of Kamigawa|218|C|{G}|Creature — Human Monk|1|1| +Ethereal Haze|Champions of Kamigawa|9|C|{W}|Instant — Arcane||| +Nature's Will|Champions of Kamigawa|230|R|{2}{G}{G}|Enchantment||| +Kitsune Dawnblade|Saviors of Kamigawa|16|C|{4}{W}|Creature — Fox Samurai|2|3| +Jade Idol|Champions of Kamigawa|256|U|{4}|Artifact||| +Long-Forgotten Gohei|Champions of Kamigawa|261|R|{3}|Artifact||| +Kodama's Might|Champions of Kamigawa|224|C|{G}|Instant — Arcane||| +Kentaro, the Smiling Cat|Betrayers of Kamigawa|13|R|{1}{W}|Legendary Creature — Human Samurai|2|1| +Jetting Glasskite|Betrayers of Kamigawa|38|U|{4}{U}{U}|Creature — Spirit|4|4| +Kami of the Honored Dead|Betrayers of Kamigawa|12|U|{5}{W}{W}|Creature — Spirit|3|5| +Shimmering Glasskite|Betrayers of Kamigawa|51|C|{3}{U}|Creature — Spirit|2|3| +Umezawa's Jitte|Betrayers of Kamigawa|163|R|{2}|Legendary Artifact — Equipment||| +Heart of Light|Betrayers of Kamigawa|6|C|{2}{W}|Enchantment — Aura||| +Skullsnatcher|Betrayers of Kamigawa|84|C|{1}{B}|Creature — Rat Ninja|2|1| +Overblaze|Betrayers of Kamigawa|114|U|{3}{R}|Instant — Arcane||| +Shirei, Shizo's Caretaker|Betrayers of Kamigawa|81|R|{4}{B}|Legendary Creature — Spirit|2|2| +Blinding Powder|Betrayers of Kamigawa|153|U|{1}|Artifact — Equipment||| +Torrent of Stone|Betrayers of Kamigawa|119|C|{3}{R}|Instant — Arcane||| +Final Judgment|Betrayers of Kamigawa|4|R|{4}{W}{W}|Sorcery||| +Shuriken|Betrayers of Kamigawa|160|U|{1}|Artifact — Equipment||| +Enshrined Memories|Betrayers of Kamigawa|124|R|{X}{G}|Sorcery||| +Strange Inversion|Champions of Kamigawa|192|U|{2}{R}|Instant — Arcane||| +Vine Kami|Champions of Kamigawa|249|C|{6}{G}|Creature — Spirit|4|4| +Kuro, Pitlord|Champions of Kamigawa|123|R|{6}{B}{B}{B}|Legendary Creature — Demon Spirit|9|9| +Daring Apprentice|Ninth Edition|72|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Order of the Sacred Bell|Ninth Edition|261|C|{3}{G}|Creature — Human Monk|4|3| +Ancient Silverback|Ninth Edition|230|R|{4}{G}{G}|Creature — Ape|6|5| +Paladin en-Vec|Ninth Edition|32|R|{1}{W}{W}|Creature — Human Knight|2|2| +Karplusan Yeti|Ninth Edition|198|R|{3}{R}{R}|Creature — Yeti|3|3| +Goblin Piker|Ninth Edition|194|C|{1}{R}|Creature — Goblin Warrior|2|1| +Elvish Bard|Ninth Edition|236|U|{3}{G}{G}|Creature — Elf Shaman|2|4| +Serra's Blessing|Ninth Edition|44|U|{1}{W}|Enchantment||| +Pegasus Charger|Ninth Edition|34|C|{2}{W}|Creature — Pegasus|2|1| +Lumengrid Warden|Ninth Edition|84|C|{1}{U}|Creature — Human Wizard|1|3| +Enfeeblement|Ninth Edition|127|C|{B}{B}|Enchantment — Aura||| +Tempest of Light|Ninth Edition|50|U|{2}{W}|Instant||| +Infantry Veteran|Ninth Edition|21|C|{W}|Creature — Human Soldier|1|1| +Thought Courier|Ninth Edition|104|U|{1}{U}|Creature — Human Wizard|1|1| +Firebreathing|Ninth Edition|181|C|{R}|Enchantment — Aura||| +Air Elemental|Ninth Edition|58|U|{3}{U}{U}|Creature — Elemental|4|4| +Aladdin's Ring|Ninth Edition|286|R|{8}|Artifact||| +Anaba Shaman|Ninth Edition|172|C|{3}{R}|Creature — Minotaur Shaman|2|2| +Angel of Mercy|Ninth Edition|1|U|{4}{W}|Creature — Angel|3|3| +Archivist|Ninth Edition|60|R|{2}{U}{U}|Creature — Human Wizard|1|1| +Aven Fisher|Ninth Edition|61|C|{3}{U}|Creature — Bird Soldier|2|2| +Aven Flock|Ninth Edition|4|C|{4}{W}|Creature — Bird Soldier|2|3| +Balduvian Barbarians|Ninth Edition|174|C|{1}{R}{R}|Creature — Human Barbarian|3|2| +Beast of Burden|Ninth Edition|288|R|{6}|Artifact Creature — Golem|*|*| +Blanchwood Armor|Ninth Edition|232|U|{2}{G}|Enchantment — Aura||| +Blaze|Ninth Edition|175|U|{X}{R}|Sorcery||| +Blinding Angel|Ninth Edition|7|R|{3}{W}{W}|Creature — Angel|2|4| +Blood Moon|Ninth Edition|176|R|{2}{R}|Enchantment||| +Bog Imp|Ninth Edition|116|C|{1}{B}|Creature — Imp|1|1| +Bog Wraith|Ninth Edition|117|U|{3}{B}|Creature — Wraith|3|3| +Boiling Seas|Ninth Edition|178|U|{3}{R}|Sorcery||| +Boomerang|Ninth Edition|66|C|{U}{U}|Instant||| +Goblin Mountaineer|Ninth Edition|193|C|{R}|Creature — Goblin Scout|1|1| +Chastise|Ninth Edition|9|U|{3}{W}|Instant||| +River Bear|Ninth Edition|266|U|{3}{G}|Creature — Bear|3|3| +Circle of Protection: Black|Ninth Edition|10|U|{1}{W}|Enchantment||| +Circle of Protection: Red|Ninth Edition|11|U|{1}{W}|Enchantment||| +Coat of Arms|Ninth Edition|291|R|{5}|Artifact||| +Coercion|Ninth Edition|118|C|{2}{B}|Sorcery||| +Greater Good|Ninth Edition|245|R|{2}{G}{G}|Enchantment||| +Tidings|Ninth Edition|106|U|{3}{U}{U}|Sorcery||| +Confiscate|Ninth Edition|68|U|{4}{U}{U}|Enchantment — Aura||| +Cowardice|Ninth Edition|70|R|{3}{U}{U}|Enchantment||| +Craw Wurm|Ninth Edition|233|C|{4}{G}{G}|Creature — Wurm|6|4| +Crossbow Infantry|Ninth Edition|12|C|{1}{W}|Creature — Human Soldier Archer|1|1| +Dark Banishing|Ninth Edition|122|C|{2}{B}|Instant||| +Defense Grid|Ninth Edition|293|R|{2}|Artifact||| +Dehydration|Ninth Edition|73|C|{3}{U}|Enchantment — Aura||| +Demolish|Ninth Edition|179|U|{3}{R}|Sorcery||| +Demystify|Ninth Edition|13|C|{W}|Instant||| +Diabolic Tutor|Ninth Edition|125|U|{2}{B}{B}|Sorcery||| +Disrupting Scepter|Ninth Edition|295|R|{3}|Artifact||| +Drudge Skeletons|Ninth Edition|126|U|{1}{B}|Creature — Skeleton|1|1| +Eager Cadet|Ninth Edition|1|C|{W}|Creature — Human Soldier|1|1| +Elvish Champion|Ninth Edition|238|R|{1}{G}{G}|Creature — Elf|2|2| +Elvish Piper|Ninth Edition|239|R|{3}{G}|Creature — Elf Shaman|1|1| +Viridian Shaman|Ninth Edition|280|U|{2}{G}|Creature — Elf Shaman|2|2| +Emperor Crocodile|Ninth Edition|241|R|{3}{G}|Creature — Crocodile|5|5| +Enormous Baloth|Ninth Edition|9|U|{6}{G}|Creature — Beast|7|7| +Enrage|Ninth Edition|180|U|{X}{R}|Instant||| +Evacuation|Ninth Edition|75|R|{3}{U}{U}|Instant||| +Execute|Ninth Edition|128|U|{2}{B}|Instant||| +Fear|Ninth Edition|129|C|{B}{B}|Enchantment — Aura||| +Azure Drake|Ninth Edition|63|U|{3}{U}|Creature — Drake|2|4| +Flashfires|Ninth Edition|183|U|{3}{R}|Sorcery||| +Fleeting Image|Ninth Edition|78|R|{2}{U}|Creature — Illusion|2|1| +Flight|Ninth Edition|79|C|{U}|Enchantment — Aura||| +Quicksand|Ninth Edition|323|U||Land||| +Forest|Ninth Edition|347|L||Basic Land — Forest||| +Forest|Ninth Edition|348|L||Basic Land — Forest||| +Forest|Ninth Edition|349|L||Basic Land — Forest||| +Forest|Ninth Edition|350|L||Basic Land — Forest||| +Fugitive Wizard|Ninth Edition|80|C|{U}|Creature — Human Wizard|1|1| +Furnace of Rath|Ninth Edition|188|R|{1}{R}{R}{R}|Enchantment||| +Ley Druid|Ninth Edition|251|U|{2}{G}|Creature — Human Druid|1|1| +Giant Cockroach|Ninth Edition|133|C|{3}{B}|Creature — Insect|4|2| +Giant Growth|Ninth Edition|243|C|{G}|Instant||| +Giant Octopus|Ninth Edition|4|C|{3}{U}|Creature — Octopus|3|3| +Giant Spider|Ninth Edition|244|C|{3}{G}|Creature — Spider|2|4| +Glorious Anthem|Ninth Edition|16|R|{1}{W}{W}|Enchantment||| +Glory Seeker|Ninth Edition|17|C|{1}{W}|Creature — Human Soldier|2|2| +Goblin Chariot|Ninth Edition|191|C|{2}{R}|Creature — Goblin Warrior|2|2| +Goblin King|Ninth Edition|192|R|{1}{R}{R}|Creature — Goblin|2|2| +Grave Pact|Ninth Edition|135|R|{1}{B}{B}{B}|Enchantment||| +Gravedigger|Ninth Edition|136|C|{3}{B}|Creature — Zombie|2|2| +Grizzly Bears|Ninth Edition|246|C|{1}{G}|Creature — Bear|2|2| +Hill Giant|Ninth Edition|197|C|{3}{R}|Creature — Giant|3|3| +Holy Day|Ninth Edition|18|C|{W}|Instant||| +Holy Strength|Ninth Edition|19|C|{W}|Enchantment — Aura||| +Honor Guard|Ninth Edition|20|C|{W}|Creature — Human Soldier|1|1| +Horned Turtle|Ninth Edition|81|C|{2}{U}|Creature — Turtle|1|4| +Howling Mine|Ninth Edition|298|R|{2}|Artifact||| +Hunted Wumpus|Ninth Edition|248|U|{3}{G}|Creature — Beast|6|6| +Sleight of Hand|Ninth Edition|99|C|{U}|Sorcery||| +Reverse Damage|Ninth Edition|35|R|{1}{W}{W}|Instant||| +Battle of Wits|Ninth Edition|65|R|{3}{U}{U}|Enchantment||| +Island|Ninth Edition|335|L||Basic Land — Island||| +Island|Ninth Edition|336|L||Basic Land — Island||| +Island|Ninth Edition|337|L||Basic Land — Island||| +Island|Ninth Edition|338|L||Basic Land — Island||| +Booby Trap|Ninth Edition|289|R|{6}|Artifact||| +Lava Axe|Ninth Edition|200|C|{4}{R}|Sorcery||| +Lightning Elemental|Ninth Edition|201|C|{3}{R}|Creature — Elemental|4|1| +Rootbreaker Wurm|Ninth Edition|267|U|{5}{G}{G}|Creature — Wurm|6|6| +Llanowar Behemoth|Ninth Edition|252|U|{3}{G}{G}|Creature — Elemental|4|4| +Looming Shade|Ninth Edition|142|C|{2}{B}|Creature — Shade|1|1| +Lord of the Undead|Ninth Edition|143|R|{1}{B}{B}|Creature — Zombie|2|2| +Creeping Mold|Ninth Edition|234|U|{2}{G}{G}|Sorcery||| +Festering Goblin|Ninth Edition|130|C|{B}|Creature — Zombie Goblin|1|1| +Mahamoti Djinn|Ninth Edition|85|R|{4}{U}{U}|Creature — Djinn|5|6| +Mana Clash|Ninth Edition|203|R|{R}|Sorcery||| +Mana Leak|Ninth Edition|86|C|{1}{U}|Instant||| +Maro|Ninth Edition|254|R|{2}{G}{G}|Creature — Elemental|*|*| +Master Decoy|Ninth Edition|27|C|{1}{W}|Creature — Human Soldier|1|2| +Master Healer|Ninth Edition|28|R|{4}{W}|Creature — Human Cleric|1|4| +Megrim|Ninth Edition|144|U|{2}{B}|Enchantment||| +Crafty Pathmage|Ninth Edition|71|C|{2}{U}|Creature — Human Wizard|1|1| +Withering Gaze|Ninth Edition|113|U|{2}{U}|Sorcery||| +Might of Oaks|Ninth Edition|255|R|{3}{G}|Instant||| +Millstone|Ninth Edition|304|R|{2}|Artifact||| +Mind Bend|Ninth Edition|87|R|{U}|Instant||| +Mind Rot|Ninth Edition|145|C|{2}{B}|Sorcery||| +Mogg Sentry|Ninth Edition|204|R|{R}|Creature — Goblin Warrior|1|1| +Kavu Climber|Ninth Edition|249|C|{3}{G}{G}|Creature — Kavu|3|3| +Mountain|Ninth Edition|343|L||Basic Land — Mountain||| +Mountain|Ninth Edition|344|L||Basic Land — Mountain||| +Mountain|Ninth Edition|345|L||Basic Land — Mountain||| +Mountain|Ninth Edition|346|L||Basic Land — Mountain||| +Natural Affinity|Ninth Edition|256|R|{2}{G}|Instant||| +Naturalize|Ninth Edition|258|C|{1}{G}|Instant||| +Nekrataal|Ninth Edition|149|U|{2}{B}{B}|Creature — Human Assassin|2|1| +Nightmare|Ninth Edition|150|R|{5}{B}|Creature — Nightmare Horse|*|*| +Norwood Ranger|Ninth Edition|260|C|{G}|Creature — Elf Scout|1|2| +Ogre Taskmaster|Ninth Edition|205|U|{3}{R}|Creature — Ogre|4|3| +Oracle's Attendants|Ninth Edition|30|R|{3}{W}|Creature — Human Soldier|1|5| +Orcish Artillery|Ninth Edition|206|U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Pacifism|Ninth Edition|31|C|{1}{W}|Enchantment — Aura||| +Panic Attack|Ninth Edition|207|C|{2}{R}|Sorcery||| +Persecute|Ninth Edition|151|R|{2}{B}{B}|Sorcery||| +Phantom Warrior|Ninth Edition|88|U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Phyrexian Arena|Ninth Edition|152|R|{1}{B}{B}|Enchantment||| +Thran Golem|Ninth Edition|313|R|{5}|Artifact Creature — Golem|3|3| +Phyrexian Hulk|Ninth Edition|306|U|{6}|Artifact Creature — Golem|5|4| +Death Pits of Rath|Ninth Edition|123|R|{3}{B}{B}|Enchantment||| +Plague Beetle|Ninth Edition|154|C|{B}|Creature — Insect|1|1| +Plague Wind|Ninth Edition|155|R|{7}{B}{B}|Sorcery||| +Plains|Ninth Edition|331|L||Basic Land — Plains||| +Plains|Ninth Edition|332|L||Basic Land — Plains||| +Plains|Ninth Edition|333|L||Basic Land — Plains||| +Plains|Ninth Edition|334|L||Basic Land — Plains||| +Puppeteer|Ninth Edition|91|U|{2}{U}|Creature — Human Wizard|1|2| +Pyroclasm|Ninth Edition|208|U|{1}{R}|Sorcery||| +Guerrilla Tactics|Ninth Edition|196|U|{1}{R}|Instant||| +Raging Goblin|Ninth Edition|209|C|{R}|Creature — Goblin Berserker|1|1| +Warrior's Honor|Ninth Edition|53|C|{2}{W}|Instant||| +Raise Dead|Ninth Edition|156|C|{B}|Sorcery||| +Rampant Growth|Ninth Edition|263|C|{1}{G}|Sorcery||| +Ravenous Rats|Ninth Edition|157|C|{1}{B}|Creature — Rat|1|1| +Reflexes|Ninth Edition|211|C|{R}|Enchantment — Aura||| +Regeneration|Ninth Edition|265|U|{1}{G}|Enchantment — Aura||| +Relentless Assault|Ninth Edition|212|R|{2}{R}{R}|Sorcery||| +Remove Soul|Ninth Edition|93|C|{1}{U}|Instant||| +Reclaim|Ninth Edition|264|C|{G}|Instant||| +Rewind|Ninth Edition|94|U|{2}{U}{U}|Instant||| +Rod of Ruin|Ninth Edition|307|U|{4}|Artifact||| +Royal Assassin|Ninth Edition|159|R|{1}{B}{B}|Creature — Human Assassin|1|1| +Rukh Egg|Ninth Edition|214|R|{3}{R}|Creature — Bird|0|3| +Zodiac Monkey|Ninth Edition|285|C|{1}{G}|Creature — Ape|2|1| +Sacred Ground|Ninth Edition|37|R|{1}{W}|Enchantment||| +Sacred Nectar|Ninth Edition|38|C|{1}{W}|Sorcery||| +Samite Healer|Ninth Edition|39|C|{1}{W}|Creature — Human Cleric|1|1| +Savannah Lions|Ninth Edition|41|R|{W}|Creature — Cat|2|1| +Scathe Zombies|Ninth Edition|160|C|{2}{B}|Creature — Zombie|2|2| +Sea Monster|Ninth Edition|96|C|{4}{U}{U}|Creature — Serpent|6|6| +Serra Angel|Ninth Edition|43|R|{3}{W}{W}|Creature — Angel|4|4| +Shatter|Ninth Edition|218|C|{1}{R}|Instant||| +Dream Prowler|Ninth Edition|74|U|{2}{U}{U}|Creature — Illusion|1|5| +Shivan Dragon|Ninth Edition|219|R|{4}{R}{R}|Creature — Dragon|5|5| +Shock|Ninth Edition|220|C|{R}|Instant||| +Slay|Ninth Edition|163|U|{2}{B}|Instant||| +Soul Feast|Ninth Edition|164|U|{3}{B}{B}|Sorcery||| +Spellbook|Ninth Edition|309|U|{0}|Artifact||| +Scaled Wurm|Ninth Edition|269|C|{7}{G}|Creature — Wurm|7|6| +Spineless Thug|Ninth Edition|165|C|{1}{B}|Creature — Zombie Mercenary|2|2| +Spirit Link|Ninth Edition|47|U|{W}|Enchantment — Aura||| +Anaconda|Ninth Edition|229|U|{3}{G}|Creature — Snake|3|3| +Stone Rain|Ninth Edition|221|C|{2}{R}|Sorcery||| +Storm Crow|Ninth Edition|100|C|{1}{U}|Creature — Bird|1|2| +Story Circle|Ninth Edition|48|R|{1}{W}{W}|Enchantment||| +Stream of Life|Ninth Edition|272|U|{X}{G}|Sorcery||| +Sudden Impact|Ninth Edition|222|U|{3}{R}|Instant||| +Suntail Hawk|Ninth Edition|49|C|{W}|Creature — Bird|1|1| +Swamp|Ninth Edition|339|L||Basic Land — Swamp||| +Swamp|Ninth Edition|340|L||Basic Land — Swamp||| +Swamp|Ninth Edition|341|L||Basic Land — Swamp||| +Swamp|Ninth Edition|342|L||Basic Land — Swamp||| +Swarm of Rats|Ninth Edition|166|U|{1}{B}|Creature — Rat|*|1| +Teferi's Puzzle Box|Ninth Edition|312|R|{4}|Artifact||| +Telepathy|Ninth Edition|101|U|{U}|Enchantment||| +Thieving Magpie|Ninth Edition|103|U|{2}{U}{U}|Creature — Bird|1|3| +Tidal Kraken|Ninth Edition|105|R|{5}{U}{U}{U}|Creature — Kraken|6|6| +Trade Routes|Ninth Edition|108|R|{1}{U}|Enchantment||| +Trained Armodon|Ninth Edition|274|C|{1}{G}{G}|Creature — Elephant|3|3| +Treasure Trove|Ninth Edition|110|U|{2}{U}{U}|Enchantment||| +Goblin Sky Raider|Ninth Edition|195|C|{2}{R}|Creature — Goblin Warrior|1|2| +Sift|Ninth Edition|98|C|{3}{U}|Sorcery||| +Underworld Dreams|Ninth Edition|167|R|{B}{B}{B}|Enchantment||| +Unholy Strength|Ninth Edition|168|C|{B}|Enchantment — Aura||| +Weathered Wayfarer|Ninth Edition|54|R|{W}|Creature — Human Nomad Cleric|1|1| +Urza's Mine|Ninth Edition|327|U||Land — Urza’s Mine||| +Urza's Power Plant|Ninth Edition|328|U||Land — Urza’s Power-Plant||| +Urza's Tower|Ninth Edition|329|U||Land — Urza’s Tower||| +Vengeance|Ninth Edition|2|U|{3}{W}|Sorcery||| +Verduran Enchantress|Ninth Edition|279|R|{1}{G}{G}|Creature — Human Druid|0|2| +Viashino Sandstalker|Ninth Edition|225|U|{1}{R}{R}|Creature — Viashino Warrior|4|2| +Volcanic Hammer|Ninth Edition|226|C|{1}{R}|Sorcery||| +Wind Drake|Ninth Edition|112|C|{2}{U}|Creature — Drake|2|2| +Wood Elves|Ninth Edition|283|C|{2}{G}|Creature — Elf Scout|1|1| +Worship|Ninth Edition|55|R|{3}{W}|Enchantment||| +Wrath of God|Ninth Edition|56|R|{2}{W}{W}|Sorcery||| +Yavimaya Enchantress|Ninth Edition|284|U|{2}{G}|Creature — Human Druid|2|2| +Zombify|Ninth Edition|171|U|{3}{B}|Sorcery||| +Zur's Weirding|Ninth Edition|114|R|{3}{U}|Enchantment||| +Kird Ape|Ninth Edition|199|U|{R}|Creature — Ape|1|1| +Jade Statue|Ninth Edition|300|R|{4}|Artifact||| +Horror of Horrors|Ninth Edition|140|U|{3}{B}{B}|Enchantment||| +Hypnotic Specter|Ninth Edition|141|R|{1}{B}{B}|Creature — Specter|2|2| +Serpent Warrior|Ninth Edition|162|C|{2}{B}|Creature — Snake Warrior|3|3| +Goblin Brigand|Ninth Edition|190|C|{1}{R}|Creature — Goblin Warrior|2|2| +Seething Song|Ninth Edition|216|C|{2}{R}|Instant||| +Verdant Force|Ninth Edition|278|R|{5}{G}{G}{G}|Creature — Elemental|7|7| +Bottle Gnomes|Ninth Edition|290|U|{3}|Artifact Creature — Gnome|1|3| +Counsel of the Soratami|Ninth Edition|69|C|{2}{U}|Sorcery||| +Shard Phoenix|Ninth Edition|217|R|{4}{R}|Creature — Phoenix|2|2| +Will-o'-the-Wisp|Ninth Edition|169|R|{B}|Creature — Spirit|0|1| +Skyhunter Prowler|Ninth Edition|45|C|{2}{W}|Creature — Cat Knight|1|3| +Ivory Mask|Ninth Edition|23|R|{2}{W}{W}|Enchantment||| +Icy Manipulator|Ninth Edition|299|U|{4}|Artifact||| +Leonin Skyhunter|Ninth Edition|25|U|{W}{W}|Creature — Cat Knight|2|2| +Razortooth Rats|Ninth Edition|158|C|{2}{B}|Creature — Rat|2|1| +Deathgazer|Ninth Edition|124|U|{3}{B}|Creature — Lizard|2|2| +Whip Sergeant|Ninth Edition|227|U|{2}{R}|Creature — Human Soldier|2|1| +Consume Spirit|Ninth Edition|119|U|{X}{1}{B}|Sorcery||| +Hollow Dogs|Ninth Edition|139|C|{4}{B}|Creature — Zombie Hound|3|3| +Loxodon Warhammer|Ninth Edition|303|R|{3}|Artifact — Equipment||| +Fishliver Oil|Ninth Edition|77|C|{1}{U}|Enchantment — Aura||| +King Cheetah|Ninth Edition|250|U|{3}{G}|Creature — Cat|3|2| +Venerable Monk|Ninth Edition|51|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Sea's Claim|Ninth Edition|97|C|{U}|Enchantment — Aura||| +Vulshok Morningstar|Ninth Edition|315|U|{2}|Artifact — Equipment||| +Magnivore|Ninth Edition|202|R|{2}{R}{R}|Creature — Lhurgoyf|*|*| +Angel's Feather|Ninth Edition|287|U|{2}|Artifact||| +Elvish Warrior|Ninth Edition|240|C|{G}{G}|Creature — Elf Warrior|2|3| +Kami of Old Stone|Ninth Edition|24|U|{3}{W}|Creature — Spirit|1|7| +Silklash Spider|Ninth Edition|271|R|{3}{G}{G}|Creature — Spider|2|7| +Mortivore|Ninth Edition|147|R|{2}{B}{B}|Creature — Lhurgoyf|*|*| +Wurm's Tooth|Ninth Edition|316|U|{2}|Artifact||| +Blackmail|Ninth Edition|115|U|{B}|Sorcery||| +Threaten|Ninth Edition|223|U|{2}{R}|Sorcery||| +Demon's Horn|Ninth Edition|294|U|{2}|Artifact||| +Wildfire|Ninth Edition|228|R|{4}{R}{R}|Sorcery||| +Fellwar Stone|Ninth Edition|297|U|{2}|Artifact||| +Kraken's Eye|Ninth Edition|302|U|{2}|Artifact||| +Dragon's Claw|Ninth Edition|296|U|{2}|Artifact||| +Ur-Golem's Eye|Ninth Edition|314|U|{4}|Artifact||| +Llanowar Elves|Ninth Edition|253|C|{G}|Creature — Elf Druid|1|1| +Contaminated Bond|Ninth Edition|120|C|{1}{B}|Enchantment — Aura||| +Clone|Ninth Edition|67|R|{3}{U}|Creature — Shapeshifter|0|0| +Biorhythm|Ninth Edition|231|R|{6}{G}{G}|Sorcery||| +Slate of Ancestry|Ninth Edition|308|R|{4}|Artifact||| +Teysa, Orzhov Scion|Guildpact|134|R|{1}{W}{B}|Legendary Creature — Human Advisor|2|3| +Plague Boiler|Ravnica: City of Guilds|269|R|{3}|Artifact||| +Vinelasher Kudzu|Ravnica: City of Guilds|189|R|{1}{G}|Creature — Plant|1|1| +Flame-Kin Zealot|Ravnica: City of Guilds|206|U|{1}{R}{R}{W}|Creature — Elemental Berserker|2|2| +Cleansing Beam|Ravnica: City of Guilds|118|U|{4}{R}|Instant||| +Master Warcraft|Ravnica: City of Guilds|250|R|{2}{RW}{RW}|Instant||| +Hunted Phantasm|Ravnica: City of Guilds|55|R|{1}{U}{U}|Creature — Spirit|4|6| +Thoughtpicker Witch|Ravnica: City of Guilds|109|C|{B}|Creature — Human Wizard|1|1| +Civic Wayfinder|Ravnica: City of Guilds|157|C|{2}{G}|Creature — Elf Warrior Druid|2|2| +Boros Swiftblade|Ravnica: City of Guilds|193|U|{R}{W}|Creature — Human Soldier|1|2| +Glimpse the Unthinkable|Ravnica: City of Guilds|208|R|{U}{B}|Sorcery||| +Keening Banshee|Ravnica: City of Guilds|92|U|{2}{B}{B}|Creature — Spirit|2|2| +Flickerform|Ravnica: City of Guilds|18|R|{1}{W}|Enchantment — Aura||| +Viashino Slasher|Ravnica: City of Guilds|149|C|{1}{R}|Creature — Viashino Warrior|1|2| +Faith's Fetters|Ravnica: City of Guilds|16|C|{3}{W}|Enchantment — Aura||| +Thundersong Trumpeter|Ravnica: City of Guilds|235|C|{R}{W}|Creature — Human Soldier|2|1| +Caregiver|Ravnica: City of Guilds|6|C|{W}|Creature — Human Cleric|1|1| +Suppression Field|Ravnica: City of Guilds|31|U|{1}{W}|Enchantment||| +Sunforger|Ravnica: City of Guilds|272|R|{3}|Artifact — Equipment||| +Grifter's Blade|Ravnica: City of Guilds|263|U|{3}|Artifact — Equipment||| +Fiery Conclusion|Ravnica: City of Guilds|122|C|{1}{R}|Instant||| +Watchwolf|Ravnica: City of Guilds|239|U|{G}{W}|Creature — Wolf|3|3| +Terrarion|Ravnica: City of Guilds|273|C|{1}|Artifact||| +Invoke the Firemind|Guildpact|118|R|{X}{U}{U}{R}|Sorcery||| +Moroii|Ravnica: City of Guilds|216|U|{2}{U}{B}|Creature — Vampire|4|4| +Ribbons of Night|Ravnica: City of Guilds|101|U|{4}{B}|Sorcery||| +Smash|Ravnica: City of Guilds|143|C|{2}{R}|Instant||| +Scion of the Wild|Ravnica: City of Guilds|182|R|{1}{G}{G}|Creature — Avatar|*|*| +Sins of the Past|Ravnica: City of Guilds|106|R|{4}{B}{B}|Sorcery||| +Loxodon Gatekeeper|Ravnica: City of Guilds|25|R|{2}{W}{W}|Creature — Elephant Soldier|2|3| +Fists of Ironwood|Ravnica: City of Guilds|164|C|{1}{G}|Enchantment — Aura||| +Flight of Fancy|Ravnica: City of Guilds|49|C|{3}{U}|Enchantment — Aura||| +Tidewater Minion|Ravnica: City of Guilds|71|C|{3}{U}{U}|Creature — Elemental Minion|4|4| +Rally the Righteous|Ravnica: City of Guilds|222|C|{1}{R}{W}|Instant||| +Birds of Paradise|Ravnica: City of Guilds|153|R|{G}|Creature — Bird|0|1| +Followed Footsteps|Ravnica: City of Guilds|51|R|{3}{U}{U}|Enchantment — Aura||| +Gleancrawler|Ravnica: City of Guilds|247|R|{3}{BG}{BG}{BG}|Creature — Insect Horror|6|6| +Hammerfist Giant|Ravnica: City of Guilds|130|R|{4}{R}{R}|Creature — Giant Warrior|5|4| +Glass Golem|Ravnica: City of Guilds|261|U|{5}|Artifact Creature — Golem|6|2| +Privileged Position|Ravnica: City of Guilds|251|R|{2}{GW}{GW}{GW}|Enchantment||| +Nullstone Gargoyle|Ravnica: City of Guilds|266|R|{9}|Artifact Creature — Gargoyle|4|5| +Pariah's Shield|Ravnica: City of Guilds|267|R|{5}|Artifact — Equipment||| +Watery Grave|Ravnica: City of Guilds|286|R||Land — Island Swamp||| +Crystal Seer|Guildpact|23|C|{4}{U}|Creature — Vedalken Wizard|2|2| +Omnibian|Dissension|119|R|{1}{G}{G}{U}|Creature — Frog|3|3| +Loxodon Hierarch|Ravnica: City of Guilds|214|R|{2}{G}{W}|Creature — Elephant Cleric|4|4| +To Arms!|Guildpact|20|U|{1}{W}|Instant||| +Perilous Forays|Ravnica: City of Guilds|176|U|{3}{G}{G}|Enchantment||| +Sadistic Augermage|Ravnica: City of Guilds|103|C|{2}{B}|Creature — Human Wizard|3|1| +Sisters of Stone Death|Ravnica: City of Guilds|231|R|{4}{B}{B}{G}{G}|Legendary Creature — Gorgon|7|5| +Woodwraith Corrupter|Ravnica: City of Guilds|240|R|{3}{B}{B}{G}|Creature — Elemental Horror|3|6| +Spawnbroker|Ravnica: City of Guilds|65|R|{2}{U}|Creature — Human Wizard|1|1| +Blazing Archon|Ravnica: City of Guilds|4|R|{6}{W}{W}{W}|Creature — Archon|5|6| +Halcyon Glaze|Ravnica: City of Guilds|54|U|{1}{U}{U}|Enchantment||| +Dark Confidant|Ravnica: City of Guilds|81|R|{1}{B}|Creature — Human Wizard|2|1| +Eye of the Storm|Ravnica: City of Guilds|48|R|{5}{U}{U}|Enchantment||| +Sunhome, Fortress of the Legion|Ravnica: City of Guilds|282|U||Land||| +Goblin Spelunkers|Ravnica: City of Guilds|128|C|{2}{R}|Creature — Goblin Warrior|2|2| +Copy Enchantment|Ravnica: City of Guilds|42|R|{2}{U}|Enchantment||| +Evil Eye of Urborg|Time Spiral|107|U|{4}{B}|Creature — Eye|6|3| +Strands of Undeath|Ravnica: City of Guilds|108|C|{3}{B}|Enchantment — Aura||| +Clinging Darkness|Ravnica: City of Guilds|80|C|{1}{B}|Enchantment — Aura||| +Shadow of Doubt|Ravnica: City of Guilds|253|R|{UB}{UB}|Instant||| +Seismic Spike|Ravnica: City of Guilds|141|C|{2}{R}{R}|Sorcery||| +Grozoth|Ravnica: City of Guilds|53|R|{6}{U}{U}{U}|Creature — Leviathan|9|9| +Elves of Deep Shadow|Ravnica: City of Guilds|161|C|{G}|Creature — Elf Druid|1|1| +Lurking Informant|Ravnica: City of Guilds|249|C|{1}{UB}|Creature — Human Rogue|1|2| +Golgari Guildmage|Ravnica: City of Guilds|248|U|{BG}{BG}|Creature — Elf Shaman|2|2| +Dimir Doppelganger|Ravnica: City of Guilds|202|R|{1}{U}{B}|Creature — Shapeshifter|0|2| +Angel of Despair|Guildpact|101|R|{3}{W}{W}{B}{B}|Creature — Angel|5|5| +Selesnya Sagittars|Ravnica: City of Guilds|229|U|{3}{G}{W}|Creature — Elf Archer|2|5| +Festival of the Guildpact|Ravnica: City of Guilds|17|U|{X}{W}|Instant||| +Mausoleum Turnkey|Ravnica: City of Guilds|94|U|{3}{B}|Creature — Ogre Rogue|3|2| +Boros Garrison|Ravnica: City of Guilds|275|C||Land||| +Crown of Convergence|Ravnica: City of Guilds|258|R|{2}|Artifact||| +Three Dreams|Ravnica: City of Guilds|32|R|{4}{W}|Sorcery||| +Woodwraith Strangler|Ravnica: City of Guilds|241|C|{2}{B}{G}|Creature — Plant Zombie|2|2| +Flame Fusillade|Ravnica: City of Guilds|123|R|{3}{R}|Sorcery||| +Nullmage Shepherd|Ravnica: City of Guilds|174|U|{3}{G}|Creature — Elf Shaman|2|4| +Mark of Eviction|Ravnica: City of Guilds|58|U|{U}|Enchantment — Aura||| +Bloodletter Quill|Ravnica: City of Guilds|254|R|{3}|Artifact||| +Gaze of the Gorgon|Ravnica: City of Guilds|246|C|{3}{BG}|Instant||| +Reminisce|Ninth Edition|92|U|{2}{U}|Sorcery||| +Blinking Spirit|Ninth Edition|8|R|{3}{W}|Creature — Spirit|2|2| +Rathi Dragon|Ninth Edition|210|R|{2}{R}{R}|Creature — Dragon|5|5| +Weird Harvest|Ninth Edition|282|R|{X}{G}{G}|Sorcery||| +Force of Nature|Ninth Edition|242|R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Sage Aven|Ninth Edition|95|C|{3}{U}|Creature — Bird Wizard|1|3| +Web|Ninth Edition|281|U|{G}|Enchantment — Aura||| +Treetop Bracers|Ninth Edition|276|C|{1}{G}|Enchantment — Aura||| +Sandstone Warrior|Ninth Edition|215|C|{2}{R}{R}|Creature — Human Soldier Warrior|1|3| +Blessed Orator|Ninth Edition|6|U|{3}{W}|Creature — Human Cleric|1|4| +Gluttonous Zombie|Ninth Edition|134|U|{4}{B}|Creature — Zombie|3|3| +Exhaustion|Ninth Edition|76|U|{2}{U}|Sorcery||| +Final Punishment|Ninth Edition|131|R|{3}{B}{B}|Sorcery||| +Form of the Dragon|Ninth Edition|187|R|{4}{R}{R}{R}|Enchantment||| +Aven Windreader|Ninth Edition|62|C|{3}{U}{U}|Creature — Bird Soldier Wizard|3|3| +Anarchist|Ninth Edition|173|U|{4}{R}|Creature — Human Wizard|2|2| +Coral Eel|Ninth Edition|3|C|{1}{U}|Creature — Fish|2|1| +Seedborn Muse|Ninth Edition|270|R|{3}{G}{G}|Creature — Spirit|2|4| +Mindslicer|Ninth Edition|146|R|{2}{B}{B}|Creature — Horror|4|3| +Soul Warden|Ninth Edition|46|U|{W}|Creature — Human Cleric|1|1| +Dancing Scimitar|Ninth Edition|292|U|{4}|Artifact Creature — Spirit|1|5| +Traumatize|Ninth Edition|109|R|{3}{U}{U}|Sorcery||| +Flowstone Shambler|Ninth Edition|185|C|{2}{R}|Creature — Beast|2|2| +Zealous Inquisitor|Ninth Edition|57|U|{2}{W}|Creature — Human Cleric|2|2| +Flowstone Crusher|Ninth Edition|184|U|{3}{R}{R}|Creature — Beast|4|4| +Groundskeeper|Ninth Edition|247|U|{G}|Creature — Human Druid|1|1| +Temporal Adept|Ninth Edition|102|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Michiko Konda, Truth Seeker|Saviors of Kamigawa|19|R|{3}{W}|Legendary Creature — Human Advisor|2|2| +Kami of the Crescent Moon|Saviors of Kamigawa|42|R|{U}{U}|Legendary Creature — Spirit|1|3| +Ayumi, the Last Visitor|Saviors of Kamigawa|122|R|{3}{G}{G}|Legendary Creature — Spirit|7|3| +Reverence|Saviors of Kamigawa|26|R|{2}{W}{W}|Enchantment||| +Feral Lightning|Saviors of Kamigawa|97|U|{3}{R}{R}{R}|Sorcery||| +Promise of Bunrei|Saviors of Kamigawa|24|R|{2}{W}|Enchantment||| +Celestial Kirin|Saviors of Kamigawa|3|R|{2}{W}{W}|Legendary Creature — Kirin Spirit|3|3| +Phyrexian Gargantua|Ninth Edition|153|U|{4}{B}{B}|Creature — Horror|4|4| +Natural Spring|Ninth Edition|257|C|{3}{G}{G}|Sorcery||| +Plagiarize|Ninth Edition|89|R|{3}{U}|Instant||| +Baleful Stare|Ninth Edition|64|U|{2}{U}|Sorcery||| +Utopia Tree|Ninth Edition|277|R|{1}{G}|Creature — Plant|0|2| +Llanowar Wastes|Ninth Edition|322|R||Land||| +Battlefield Forge|Ninth Edition|318|R||Land||| +Bloodfire Colossus|Ninth Edition|177|R|{6}{R}{R}|Creature — Giant|6|6| +Shivan Reef|Ninth Edition|324|R||Land||| +Caves of Koilos|Ninth Edition|320|R||Land||| +Yavimaya Coast|Ninth Edition|330|R||Land||| +Rogue Kavu|Ninth Edition|213|C|{1}{R}|Creature — Kavu|1|1| +Thundermare|Ninth Edition|224|R|{5}{R}|Creature — Elemental Horse|5|5| +Levitation|Ninth Edition|83|U|{2}{U}{U}|Enchantment||| +Gift of Estates|Ninth Edition|15|U|{1}{W}|Sorcery||| +Highway Robber|Ninth Edition|138|C|{2}{B}{B}|Creature — Human Rogue Mercenary|2|2| +Time Ebb|Ninth Edition|107|C|{2}{U}|Sorcery||| +Ballista Squad|Ninth Edition|5|U|{3}{W}|Creature — Human Rebel|2|2| +Aven Cloudchaser|Ninth Edition|3|C|{3}{W}|Creature — Bird Soldier|2|2| +Rootwalla|Ninth Edition|268|C|{2}{G}|Creature — Lizard|2|2| +Marble Titan|Ninth Edition|26|R|{3}{W}|Creature — Giant|3|3| +Flowstone Slide|Ninth Edition|186|R|{X}{2}{R}{R}|Sorcery||| +Goblin Balloon Brigade|Ninth Edition|189|U|{R}|Creature — Goblin Warrior|1|1| +Early Harvest|Ninth Edition|235|R|{1}{G}{G}|Instant||| +Sulfurous Springs|Ninth Edition|325|R||Land||| +Inspirit|Ninth Edition|22|U|{2}{W}|Instant||| +Karplusan Forest|Ninth Edition|321|R||Land||| +Wanderguard Sentry|Ninth Edition|111|C|{4}{U}|Creature — Drone|3|3| +Annex|Ninth Edition|59|U|{2}{U}{U}|Enchantment — Aura||| +Polymorph|Ninth Edition|90|R|{3}{U}|Sorcery||| +Underground River|Ninth Edition|326|R||Land||| +Yawgmoth Demon|Ninth Edition|170|R|{4}{B}{B}|Creature — Demon|6|6| +Angelic Blessing|Ninth Edition|2|C|{2}{W}|Sorcery||| +Hell's Caretaker|Ninth Edition|137|R|{3}{B}|Creature — Horror|1|1| +Jester's Cap|Ninth Edition|301|R|{4}|Artifact||| +Righteousness|Ninth Edition|36|R|{W}|Instant||| +Brushland|Ninth Edition|319|R||Land||| +Foot Soldiers|Ninth Edition|14|C|{3}{W}|Creature — Human Soldier|2|4| +Needle Storm|Ninth Edition|259|U|{2}{G}|Sorcery||| +Imaginary Pet|Ninth Edition|82|R|{1}{U}|Creature — Illusion|4|4| +Veteran Cavalier|Ninth Edition|52|C|{W}{W}|Creature — Human Knight|2|2| +Adarkar Wastes|Ninth Edition|317|R||Land||| +Nikko-Onna|Saviors of Kamigawa|21|U|{2}{W}|Creature — Spirit|2|2| +Moonwing Moth|Saviors of Kamigawa|20|C|{1}{W}{W}|Creature — Insect|2|1| +Descendant of Soramaro|Saviors of Kamigawa|33|C|{3}{U}|Creature — Human Wizard|2|3| +Storage Matrix|Ninth Edition|310|R|{3}|Artifact||| +Cruel Edict|Ninth Edition|121|U|{1}{B}|Sorcery||| +Elvish Berserker|Ninth Edition|237|C|{G}|Creature — Elf Berserker|1|1| +Nantuko Husk|Ninth Edition|148|U|{2}{B}|Creature — Zombie Insect|2|2| +Tree Monkey|Ninth Edition|275|C|{G}|Creature — Ape|1|1| +Mending Hands|Ninth Edition|29|C|{W}|Instant||| +Flame Wave|Ninth Edition|182|U|{3}{R}{R}{R}{R}|Sorcery||| +Foul Imp|Ninth Edition|132|C|{B}{B}|Creature — Imp|2|2| +Overgrowth|Ninth Edition|262|C|{2}{G}|Enchantment — Aura||| +Sengir Vampire|Ninth Edition|161|R|{3}{B}{B}|Creature — Vampire|4|4| +Summer Bloom|Ninth Edition|273|U|{1}{G}|Sorcery||| +Peace of Mind|Ninth Edition|33|U|{1}{W}|Enchantment||| +Deathmask Nezumi|Saviors of Kamigawa|66|C|{2}{B}|Creature — Rat Shaman|2|2| +Kiri-Onna|Saviors of Kamigawa|43|U|{4}{U}|Creature — Spirit|2|2| +Kemuri-Onna|Saviors of Kamigawa|76|U|{4}{B}|Creature — Spirit|3|3| +Blood Clock|Saviors of Kamigawa|153|R|{4}|Artifact||| +Inner Fire|Saviors of Kamigawa|105|C|{3}{R}|Sorcery||| +Yuki-Onna|Saviors of Kamigawa|120|U|{3}{R}|Creature — Spirit|3|1| +Homura's Essence|Saviors of Kamigawa|103|R|{4}{R}{R}|Legendary Enchantment|2|2| +Sink into Takenuma|Saviors of Kamigawa|89|C|{3}{B}|Sorcery — Arcane||| +Brothers Yamazaki|Champions of Kamigawa|160|U|{2}{R}|Legendary Creature — Human Samurai|2|1| +Curtain of Light|Saviors of Kamigawa|6|C|{1}{W}|Instant||| +Murmurs from Beyond|Saviors of Kamigawa|47|C|{2}{U}|Instant — Arcane||| +Molting Skin|Saviors of Kamigawa|138|U|{2}{G}|Enchantment||| +Dosan's Oldest Chant|Saviors of Kamigawa|127|C|{4}{G}|Sorcery||| +Arashi, the Sky Asunder|Saviors of Kamigawa|121|R|{3}{G}{G}|Legendary Creature — Spirit|5|5| +Ashes of the Fallen|Saviors of Kamigawa|152|R|{2}|Artifact||| +Kami of Empty Graves|Saviors of Kamigawa|75|C|{3}{B}|Creature — Spirit|4|1| +Freed from the Real|Saviors of Kamigawa|38|C|{2}{U}|Enchantment — Aura||| +Death Denied|Saviors of Kamigawa|63|C|{X}{B}{B}|Instant — Arcane||| +Shinen of Fury's Fire|Saviors of Kamigawa|112|C|{2}{R}|Creature — Spirit|2|1| +Ghost-Lit Raider|Saviors of Kamigawa|99|U|{2}{R}|Creature — Spirit|2|1| +Torii Watchward|Saviors of Kamigawa|30|C|{4}{W}|Creature — Spirit|3|3| +Sanctum Guardian|Ninth Edition|40|U|{1}{W}{W}|Creature — Human Cleric|1|4| +Seasoned Marshal|Ninth Edition|42|U|{2}{W}{W}|Creature — Human Soldier|2|2| +Eternal Dominion|Saviors of Kamigawa|36|R|{7}{U}{U}{U}|Sorcery||| +Endless Swarm|Saviors of Kamigawa|129|R|{5}{G}{G}{G}|Sorcery||| +Sasaya, Orochi Ascendant|Saviors of Kamigawa|145|R|{1}{G}{G}|Legendary Creature — Snake Monk|2|3| +Kuon's Essence|Saviors of Kamigawa|78|R|{B}{B}{B}|Legendary Enchantment|2|4| +Enduring Ideal|Saviors of Kamigawa|9|R|{5}{W}{W}|Sorcery||| +Erayo's Essence|Saviors of Kamigawa|35|R|{1}{U}|Legendary Enchantment|1|1| +Rune-Tail's Essence|Saviors of Kamigawa|27|R|{2}{W}|Legendary Enchantment|2|2| +Neverending Torment|Saviors of Kamigawa|83|R|{4}{B}{B}|Sorcery||| +Undying Flames|Saviors of Kamigawa|119|R|{4}{R}{R}|Sorcery||| +Wojek Siren|Ravnica: City of Guilds|37|C|{W}|Instant||| +Indentured Oaf|Ravnica: City of Guilds|133|U|{3}{R}|Creature — Ogre Warrior|4|3| +Vedalken Dismisser|Ravnica: City of Guilds|73|C|{5}{U}|Creature — Vedalken Wizard|2|2| +Greater Mossdog|Ravnica: City of Guilds|169|C|{3}{G}|Creature — Plant Hound|3|3| +Excruciator|Ravnica: City of Guilds|121|R|{6}{R}{R}|Creature — Avatar|7|7| +Ordruun Commando|Ravnica: City of Guilds|137|C|{3}{R}|Creature — Minotaur Soldier|4|1| +Surveilling Sprite|Ravnica: City of Guilds|67|C|{1}{U}|Creature — Faerie Rogue|1|1| +Terraformer|Ravnica: City of Guilds|70|C|{2}{U}|Creature — Human Wizard|2|2| +Dimir Cutpurse|Ravnica: City of Guilds|201|R|{1}{U}{B}|Creature — Spirit|2|2| +Screeching Griffin|Ravnica: City of Guilds|29|C|{3}{W}|Creature — Griffin|2|2| +Lightning Helix|Ravnica: City of Guilds|213|U|{R}{W}|Instant||| +Sell-Sword Brute|Ravnica: City of Guilds|142|C|{1}{R}|Creature — Human Mercenary|2|2| +Bathe in Light|Ravnica: City of Guilds|2|U|{1}{W}|Instant||| +Dromad Purebred|Ravnica: City of Guilds|15|C|{4}{W}|Creature — Camel Beast|1|5| +Courier Hawk|Ravnica: City of Guilds|12|C|{1}{W}|Creature — Bird|1|2| +Grayscaled Gharial|Ravnica: City of Guilds|52|C|{U}|Creature — Crocodile|1|1| +Conclave Equenaut|Ravnica: City of Guilds|9|C|{4}{W}{W}|Creature — Human Soldier|3|3| +Ivy Dancer|Ravnica: City of Guilds|171|U|{2}{G}|Creature — Dryad Shaman|1|2| +Disembowel|Ravnica: City of Guilds|85|C|{X}{B}|Instant||| +Boros Guildmage|Ravnica: City of Guilds|242|U|{RW}{RW}|Creature — Human Wizard|2|2| +Remand|Ravnica: City of Guilds|63|U|{1}{U}|Instant||| +Dogpile|Ravnica: City of Guilds|120|C|{3}{R}|Instant||| +Darkblast|Ravnica: City of Guilds|82|U|{B}|Instant||| +Consult the Necrosages|Ravnica: City of Guilds|199|C|{1}{U}{B}|Sorcery||| +Induce Paranoia|Ravnica: City of Guilds|56|C|{2}{U}{U}|Instant||| +Dizzy Spell|Ravnica: City of Guilds|43|C|{U}|Instant||| +Dimir House Guard|Ravnica: City of Guilds|83|C|{3}{B}|Creature — Skeleton|2|3| +Sundering Vitae|Ravnica: City of Guilds|185|C|{2}{G}|Instant||| +Elvish Skysweeper|Ravnica: City of Guilds|162|C|{G}|Creature — Elf Warrior|1|1| +Dimir Aqueduct|Ravnica: City of Guilds|276|C||Land||| +Tattered Drake|Ravnica: City of Guilds|68|C|{4}{U}|Creature — Zombie Drake|2|2| +Scatter the Seeds|Ravnica: City of Guilds|181|C|{3}{G}{G}|Instant||| +Siege Wurm|Ravnica: City of Guilds|183|C|{5}{G}{G}|Creature — Wurm|5|5| +Greater Forgeling|Ravnica: City of Guilds|129|U|{3}{R}{R}|Creature — Elemental|3|4| +Selesnya Evangel|Ravnica: City of Guilds|228|C|{G}{W}|Creature — Elf Shaman|1|2| +Sabertooth Alley Cat|Ravnica: City of Guilds|140|C|{1}{R}{R}|Creature — Cat|2|1| +Golgari Rot Farm|Ravnica: City of Guilds|278|C||Land||| +Gather Courage|Ravnica: City of Guilds|165|C|{G}|Instant||| +Lore Broker|Ravnica: City of Guilds|57|U|{1}{U}|Creature — Human Rogue|1|2| +Char|Ravnica: City of Guilds|117|R|{2}{R}|Instant||| +Rain of Embers|Ravnica: City of Guilds|138|C|{1}{R}|Sorcery||| +Roofstalker Wight|Ravnica: City of Guilds|102|C|{1}{B}|Creature — Zombie|2|1| +Transluminant|Ravnica: City of Guilds|186|C|{1}{G}|Creature — Dryad Shaman|2|2| +Frenzied Goblin|Ravnica: City of Guilds|125|U|{R}|Creature — Goblin Berserker|1|1| +Votary of the Conclave|Ravnica: City of Guilds|35|C|{W}|Creature — Human Soldier|1|1| +Coalhauler Swine|Ravnica: City of Guilds|119|C|{4}{R}{R}|Creature — Boar Beast|4|4| +Veteran Armorer|Ravnica: City of Guilds|34|C|{1}{W}|Creature — Human Soldier|2|2| +Peel from Reality|Ravnica: City of Guilds|61|C|{1}{U}|Instant||| +Auratouched Mage|Ravnica: City of Guilds|1|U|{5}{W}|Creature — Human Wizard|3|3| +Flash Conscription|Ravnica: City of Guilds|124|U|{5}{R}|Instant||| +Leave No Trace|Ravnica: City of Guilds|23|C|{1}{W}|Instant||| +Mortipede|Ravnica: City of Guilds|96|C|{3}{B}|Creature — Insect|4|1| +Surge of Zeal|Ravnica: City of Guilds|146|C|{R}|Instant||| +Chant of Vitu-Ghazi|Ravnica: City of Guilds|7|U|{6}{W}{W}|Instant||| +Dryad's Caress|Ravnica: City of Guilds|160|C|{4}{G}{G}|Instant||| +Centaur Safeguard|Ravnica: City of Guilds|244|C|{2}{GW}|Creature — Centaur Warrior|3|1| +Drake Familiar|Ravnica: City of Guilds|44|C|{1}{U}|Creature — Drake|2|1| +Shred Memory|Ravnica: City of Guilds|105|C|{1}{B}|Instant||| +Selesnya Sanctuary|Ravnica: City of Guilds|281|C||Land||| +Bramble Elemental|Ravnica: City of Guilds|154|C|{3}{G}{G}|Creature — Elemental|4|4| +Goblin Fire Fiend|Ravnica: City of Guilds|127|C|{3}{R}|Creature — Goblin Berserker|1|1| +Infectious Host|Ravnica: City of Guilds|91|C|{2}{B}|Creature — Zombie|1|1| +Sparkmage Apprentice|Ravnica: City of Guilds|144|C|{1}{R}|Creature — Human Wizard|1|1| +Galvanic Arc|Ravnica: City of Guilds|126|C|{2}{R}|Enchantment — Aura||| +Conclave's Blessing|Ravnica: City of Guilds|11|C|{3}{W}|Enchantment — Aura||| +Farseek|Ravnica: City of Guilds|163|C|{1}{G}|Sorcery||| +War-Torch Goblin|Ravnica: City of Guilds|151|C|{R}|Creature — Goblin Warrior|1|1| +Barbarian Riftcutter|Ravnica: City of Guilds|114|C|{4}{R}|Creature — Human Barbarian|3|3| +Viashino Fangtail|Ravnica: City of Guilds|148|C|{2}{R}{R}|Creature — Viashino Warrior|3|3| +Nightguard Patrol|Ravnica: City of Guilds|26|C|{2}{W}|Creature — Human Soldier|2|1| +Blockbuster|Ravnica: City of Guilds|115|U|{3}{R}{R}|Enchantment||| +Flow of Ideas|Ravnica: City of Guilds|50|U|{5}{U}|Sorcery||| +Quickchange|Ravnica: City of Guilds|62|C|{1}{U}|Instant||| +Dimir Machinations|Ravnica: City of Guilds|84|U|{2}{B}|Sorcery||| +Gate Hound|Ravnica: City of Guilds|19|C|{2}{W}|Creature — Hound|1|1| +Stinkweed Imp|Ravnica: City of Guilds|107|C|{2}{B}|Creature — Imp|1|2| +Necromantic Thirst|Ravnica: City of Guilds|97|C|{2}{B}{B}|Enchantment — Aura||| +Snapping Drake|Ravnica: City of Guilds|64|C|{3}{U}|Creature — Drake|3|2| +Dimir Infiltrator|Ravnica: City of Guilds|203|C|{U}{B}|Creature — Spirit|1|3| +Selesnya Guildmage|Ravnica: City of Guilds|252|U|{GW}{GW}|Creature — Elf Wizard|2|2| +Drooling Groodion|Ravnica: City of Guilds|204|U|{3}{B}{B}{G}|Creature — Beast|4|3| +Dimir Guildmage|Ravnica: City of Guilds|245|U|{UB}{UB}|Creature — Human Wizard|2|2| +Compulsive Research|Ravnica: City of Guilds|40|C|{2}{U}|Sorcery||| +Perplex|Ravnica: City of Guilds|217|C|{1}{U}{B}|Instant||| +Incite Hysteria|Ravnica: City of Guilds|132|C|{2}{R}|Sorcery||| +Drift of Phantasms|Ravnica: City of Guilds|46|C|{2}{U}|Creature — Spirit|0|5| +Congregation at Dawn|Ravnica: City of Guilds|198|U|{G}{G}{W}|Instant||| +Oboro Breezecaller|Saviors of Kamigawa|48|C|{1}{U}|Creature — Moonfolk Wizard|1|1| +Pure Intentions|Saviors of Kamigawa|25|R|{W}|Instant — Arcane||| +Cut the Earthly Bond|Saviors of Kamigawa|32|C|{U}|Instant — Arcane||| +Raving Oni-Slave|Saviors of Kamigawa|86|C|{1}{B}|Creature — Ogre Warrior|3|3| +Ideas Unbound|Saviors of Kamigawa|40|C|{U}{U}|Sorcery — Arcane||| +Minamo Scrollkeeper|Saviors of Kamigawa|45|C|{1}{U}|Creature — Human Wizard|2|3| +Skyfire Kirin|Saviors of Kamigawa|113|R|{2}{R}{R}|Legendary Creature — Kirin Spirit|3|3| +Gnat Miser|Saviors of Kamigawa|70|C|{B}|Creature — Rat Shaman|1|1| +Ivory Crane Netsuke|Saviors of Kamigawa|155|U|{2}|Artifact||| +Skull Collector|Saviors of Kamigawa|90|U|{1}{B}{B}|Creature — Ogre Warrior|3|3| +Ebony Owl Netsuke|Saviors of Kamigawa|154|U|{2}|Artifact||| +Maga, Traitor to Mortals|Saviors of Kamigawa|81|R|{X}{B}{B}{B}|Legendary Creature — Human Wizard|0|0| +Choice of Damnations|Saviors of Kamigawa|62|R|{5}{B}|Sorcery — Arcane||| +Trusted Advisor|Saviors of Kamigawa|59|U|{U}|Creature — Human Advisor|1|2| +Miren, the Moaning Well|Saviors of Kamigawa|163|R||Legendary Land||| +Sunder from Within|Saviors of Kamigawa|117|U|{2}{R}{R}|Sorcery — Arcane||| +Captive Flame|Saviors of Kamigawa|96|U|{2}{R}|Enchantment||| +Scroll of Origins|Saviors of Kamigawa|159|R|{2}|Artifact||| +Shinen of Fear's Chill|Saviors of Kamigawa|88|C|{4}{B}|Creature — Spirit|3|2| +Into the Fray|Saviors of Kamigawa|106|C|{R}|Instant — Arcane||| +Nightsoil Kami|Saviors of Kamigawa|139|C|{4}{G}{G}|Creature — Spirit|6|4| +Dense Canopy|Saviors of Kamigawa|125|U|{1}{G}|Enchantment||| +One with Nothing|Saviors of Kamigawa|84|R|{B}|Instant||| +Hidetsugu's Second Rite|Saviors of Kamigawa|102|R|{3}{R}|Instant||| +Measure of Wickedness|Saviors of Kamigawa|82|U|{3}{B}|Enchantment||| +Shape Stealer|Saviors of Kamigawa|55|U|{U}{U}|Creature — Shapeshifter Spirit|1|1| +Duskmantle, House of Shadow|Ravnica: City of Guilds|277|U||Land||| +Stasis Cell|Ravnica: City of Guilds|66|C|{4}{U}|Enchantment — Aura||| +Dream Leash|Ravnica: City of Guilds|45|R|{3}{U}{U}|Enchantment — Aura||| +Wojek Embermage|Ravnica: City of Guilds|152|U|{3}{R}|Creature — Human Wizard|1|2| +Undercity Shade|Ravnica: City of Guilds|110|U|{4}{B}|Creature — Shade|1|1| +Light of Sanction|Ravnica: City of Guilds|24|R|{1}{W}{W}|Enchantment||| +Muddle the Mixture|Ravnica: City of Guilds|60|C|{U}{U}|Instant||| +Necroplasm|Ravnica: City of Guilds|98|R|{1}{B}{B}|Creature — Ooze|1|1| +Goliath Spider|Ravnica: City of Guilds|168|U|{6}{G}{G}|Creature — Spider|7|6| +Golgari Grave-Troll|Ravnica: City of Guilds|167|R|{4}{G}|Creature — Skeleton Troll|0|0| +Zephyr Spirit|Ravnica: City of Guilds|76|C|{5}{U}|Creature — Spirit|0|6| +Mnemonic Nexus|Ravnica: City of Guilds|59|U|{3}{U}|Instant||| +Brainspoil|Ravnica: City of Guilds|78|C|{3}{B}{B}|Sorcery||| +Recollect|Ravnica: City of Guilds|178|U|{2}{G}|Sorcery||| +Dowsing Shaman|Ravnica: City of Guilds|159|U|{4}{G}|Creature — Centaur Shaman|3|4| +Phytohydra|Ravnica: City of Guilds|218|R|{2}{G}{W}{W}|Creature — Plant Hydra|1|1| +Wizened Snitches|Ravnica: City of Guilds|75|U|{3}{U}|Creature — Faerie Rogue|1|3| +Netherborn Phalanx|Ravnica: City of Guilds|99|U|{5}{B}|Creature — Horror|2|4| +Twilight Drover|Ravnica: City of Guilds|33|R|{2}{W}|Creature — Spirit|1|1| +Carrion Howler|Ravnica: City of Guilds|79|U|{3}{B}|Creature — Zombie Wolf|2|2| +Divebomber Griffin|Ravnica: City of Guilds|14|U|{3}{W}{W}|Creature — Griffin|3|2| +Junktroller|Ravnica: City of Guilds|264|U|{4}|Artifact Creature — Golem|0|6| +Ursapine|Ravnica: City of Guilds|188|R|{3}{G}{G}|Creature — Beast|3|3| +Belltower Sphinx|Ravnica: City of Guilds|38|U|{4}{U}|Creature — Sphinx|2|5| +Mindmoil|Ravnica: City of Guilds|135|R|{4}{R}|Enchantment||| +Sandsower|Ravnica: City of Guilds|28|U|{3}{W}|Creature — Spirit|1|3| +Seed Spark|Ravnica: City of Guilds|30|U|{3}{W}|Instant||| +Hour of Reckoning|Ravnica: City of Guilds|21|R|{4}{W}{W}{W}|Sorcery||| +Vigor Mortis|Ravnica: City of Guilds|111|U|{2}{B}{B}|Sorcery||| +Telling Time|Ravnica: City of Guilds|69|U|{1}{U}|Instant||| +Helldozer|Ravnica: City of Guilds|88|R|{3}{B}{B}{B}|Creature — Zombie Giant|6|5| +Voyager Staff|Ravnica: City of Guilds|274|U|{1}|Artifact||| +Boros Recruit|Ravnica: City of Guilds|243|C|{RW}|Creature — Goblin Soldier|1|1| +Wojek Apothecary|Ravnica: City of Guilds|36|U|{2}{W}{W}|Creature — Human Cleric|1|1| +Golgari Thug|Ravnica: City of Guilds|87|U|{1}{B}|Creature — Human Warrior|1|1| +Sewerdreg|Ravnica: City of Guilds|104|C|{3}{B}{B}|Creature — Spirit|3|3| +Instill Furor|Ravnica: City of Guilds|134|U|{1}{R}|Enchantment — Aura||| +Convolute|Ravnica: City of Guilds|41|C|{2}{U}|Instant||| +Bloodbond March|Ravnica: City of Guilds|192|R|{2}{B}{G}|Enchantment||| +Life from the Loam|Ravnica: City of Guilds|172|R|{1}{G}|Sorcery||| +Vindictive Mob|Ravnica: City of Guilds|112|U|{4}{B}{B}|Creature — Human Berserker|5|5| +Spectral Searchlight|Ravnica: City of Guilds|271|U|{3}|Artifact||| +Torpid Moloch|Ravnica: City of Guilds|147|C|{R}|Creature — Lizard|3|2| +Hunted Horror|Ravnica: City of Guilds|90|R|{B}{B}|Creature — Horror|7|7| +Boros Fury-Shield|Ravnica: City of Guilds|5|C|{2}{W}|Instant||| +Leashling|Ravnica: City of Guilds|265|U|{6}|Artifact Creature — Hound|3|3| +Moldervine Cloak|Ravnica: City of Guilds|173|U|{2}{G}|Enchantment — Aura||| +Conclave Phalanx|Ravnica: City of Guilds|10|U|{4}{W}|Creature — Human Soldier|2|4| +Pollenbright Wings|Ravnica: City of Guilds|219|U|{4}{G}{W}|Enchantment — Aura||| +Oathsworn Giant|Ravnica: City of Guilds|27|U|{4}{W}{W}|Creature — Giant Soldier|3|4| +Empty the Catacombs|Ravnica: City of Guilds|86|R|{3}{B}|Sorcery||| +Vitu-Ghazi, the City-Tree|Ravnica: City of Guilds|285|U||Land||| +Dark Heart of the Wood|Ravnica: City of Guilds|200|U|{B}{G}|Enchantment||| +Bottled Cloister|Ravnica: City of Guilds|256|R|{4}|Artifact||| +Golgari Brownscale|Ravnica: City of Guilds|166|C|{1}{G}{G}|Creature — Lizard|2|3| +Shambling Shell|Ravnica: City of Guilds|230|C|{1}{B}{G}|Creature — Plant Zombie|3|1| +Tunnel Vision|Ravnica: City of Guilds|72|R|{5}{U}|Sorcery||| +Ethereal Usher|Ravnica: City of Guilds|47|U|{5}{U}|Creature — Spirit|2|3| +Rolling Spoil|Ravnica: City of Guilds|179|U|{2}{G}{G}|Sorcery||| +Root-Kin Ally|Ravnica: City of Guilds|180|U|{4}{G}{G}|Creature — Elemental Warrior|3|3| +Glare of Subdual|Ravnica: City of Guilds|207|R|{2}{G}{W}|Enchantment||| +Vedalken Entrancer|Ravnica: City of Guilds|74|C|{3}{U}|Creature — Vedalken Wizard|1|4| +Guardian of Vitu-Ghazi|Ravnica: City of Guilds|212|C|{6}{G}{W}|Creature — Elemental|4|7| +Cyclopean Snare|Ravnica: City of Guilds|259|U|{2}|Artifact||| +Clutch of the Undercity|Ravnica: City of Guilds|197|U|{1}{U}{U}{B}|Instant||| +Golgari Rotwurm|Ravnica: City of Guilds|210|C|{3}{B}{G}|Creature — Zombie Wurm|5|4| +Devouring Light|Ravnica: City of Guilds|13|U|{1}{W}{W}|Instant||| +Stone-Seeder Hierophant|Ravnica: City of Guilds|184|C|{2}{G}{G}|Creature — Human Druid|1|1| +Ghosts of the Innocent|Ravnica: City of Guilds|20|R|{5}{W}{W}|Creature — Spirit|4|5| +Overwhelm|Ravnica: City of Guilds|175|U|{5}{G}{G}|Sorcery||| +Svogthos, the Restless Tomb|Ravnica: City of Guilds|283|U||Land||| +Benevolent Ancestor|Ravnica: City of Guilds|3|C|{2}{W}|Creature — Spirit|0|4| +Carven Caryatid|Ravnica: City of Guilds|155|U|{1}{G}{G}|Creature — Spirit|2|5| +Woebringer Demon|Ravnica: City of Guilds|113|R|{3}{B}{B}|Creature — Demon|4|4| +Hunted Lammasu|Ravnica: City of Guilds|22|R|{2}{W}{W}|Creature — Lammasu|5|5| +Twisted Justice|Ravnica: City of Guilds|237|U|{4}{U}{B}|Sorcery||| +Chorus of the Conclave|Ravnica: City of Guilds|195|R|{4}{G}{G}{W}{W}|Legendary Creature — Dryad|3|8| +Mindleech Mass|Ravnica: City of Guilds|215|R|{5}{U}{B}{B}|Creature — Horror|6|6| +Last Gasp|Ravnica: City of Guilds|93|C|{1}{B}|Instant||| +Hex|Ravnica: City of Guilds|89|R|{4}{B}{B}|Sorcery||| +Razia, Boros Archangel|Ravnica: City of Guilds|223|R|{4}{R}{R}{W}{W}|Legendary Creature — Angel|6|3| +Nightmare Void|Ravnica: City of Guilds|100|U|{3}{B}|Sorcery||| +Putrefy|Ravnica: City of Guilds|221|U|{1}{B}{G}|Instant||| +Chord of Calling|Ravnica: City of Guilds|156|R|{X}{G}{G}{G}|Instant||| +Sacred Foundry|Ravnica: City of Guilds|280|R||Land — Mountain Plains||| +Brightflame|Ravnica: City of Guilds|194|R|{X}{R}{R}{W}{W}|Sorcery||| +Golgari Germination|Ravnica: City of Guilds|209|U|{1}{B}{G}|Enchantment||| +Sunhome Enforcer|Ravnica: City of Guilds|233|U|{2}{R}{W}|Creature — Giant Soldier|2|4| +Overgrown Tomb|Ravnica: City of Guilds|279|R||Land — Swamp Forest||| +Grave-Shell Scarab|Ravnica: City of Guilds|211|R|{2}{B}{G}{G}|Creature — Insect|4|4| +Firemane Angel|Ravnica: City of Guilds|205|R|{3}{R}{W}{W}|Creature — Angel|4|3| +Seeds of Strength|Ravnica: City of Guilds|227|C|{G}{W}|Instant||| +Hunted Troll|Ravnica: City of Guilds|170|R|{2}{G}{G}|Creature — Troll Warrior|8|4| +Molten Sentry|Ravnica: City of Guilds|136|R|{3}{R}|Creature — Elemental|*|*| +Vulturous Zombie|Ravnica: City of Guilds|238|R|{3}{B}{G}|Creature — Plant Zombie|3|3| +Primordial Sage|Ravnica: City of Guilds|177|R|{4}{G}{G}|Creature — Spirit|4|5| +Warp World|Ravnica: City of Guilds|150|R|{5}{R}{R}{R}|Sorcery||| +Hunted Dragon|Ravnica: City of Guilds|131|R|{3}{R}{R}|Creature — Dragon|6|6| +Reroute|Ravnica: City of Guilds|139|U|{1}{R}|Instant||| +Moonlight Bargain|Ravnica: City of Guilds|95|R|{3}{B}{B}|Instant||| +Cloudstone Curio|Ravnica: City of Guilds|257|R|{3}|Artifact||| +Peregrine Mask|Ravnica: City of Guilds|268|U|{1}|Artifact — Equipment||| +Szadek, Lord of Secrets|Ravnica: City of Guilds|234|R|{3}{U}{U}{B}{B}|Legendary Creature — Vampire|5|5| +Temple Garden|Ravnica: City of Guilds|284|R||Land — Forest Plains||| +Cerulean Sphinx|Ravnica: City of Guilds|39|R|{4}{U}{U}|Creature — Sphinx|5|5| +Autochthon Wurm|Ravnica: City of Guilds|191|R|{10}{G}{G}{G}{W}{W}|Creature — Wurm|9|14| +Breath of Fury|Ravnica: City of Guilds|116|R|{2}{R}{R}|Enchantment — Aura||| +Agrus Kos, Wojek Veteran|Ravnica: City of Guilds|190|R|{3}{R}{W}|Legendary Creature — Human Soldier|3|3| +Blood Funnel|Ravnica: City of Guilds|77|R|{1}{B}|Enchantment||| +Stoneshaker Shaman|Ravnica: City of Guilds|145|U|{2}{R}|Creature — Human Shaman|1|1| +Trophy Hunter|Ravnica: City of Guilds|187|U|{2}{G}|Creature — Human Archer|2|3| +Concerted Effort|Ravnica: City of Guilds|8|R|{2}{W}{W}|Enchantment||| +Tolsimir Wolfblood|Ravnica: City of Guilds|236|R|{4}{G}{W}|Legendary Creature — Elf Warrior|3|4| +Circu, Dimir Lobotomist|Ravnica: City of Guilds|196|R|{2}{U}{B}|Legendary Creature — Human Wizard|2|3| +Savra, Queen of the Golgari|Ravnica: City of Guilds|225|R|{2}{B}{G}|Legendary Creature — Elf Shaman|2|2| +Psychic Drain|Ravnica: City of Guilds|220|U|{X}{U}{B}|Sorcery||| +Razia's Purification|Ravnica: City of Guilds|224|R|{4}{R}{W}|Sorcery||| +Doubling Season|Ravnica: City of Guilds|158|R|{4}{G}|Enchantment||| +Searing Meditation|Ravnica: City of Guilds|226|R|{1}{R}{W}|Enchantment||| +Plow Through Reito|Saviors of Kamigawa|22|C|{1}{W}|Instant — Arcane||| +Secretkeeper|Saviors of Kamigawa|54|U|{3}{U}|Creature — Spirit|2|2| +Cloudhoof Kirin|Saviors of Kamigawa|31|R|{3}{U}{U}|Legendary Creature — Kirin Spirit|4|4| +Descendant of Kiyomaro|Saviors of Kamigawa|7|U|{1}{W}{W}|Creature — Human Soldier|2|3| +Gaze of Adamaro|Saviors of Kamigawa|98|U|{2}{R}{R}|Instant — Arcane||| +Glitterfang|Saviors of Kamigawa|100|C|{R}|Creature — Spirit|1|1| +Overwhelming Intellect|Saviors of Kamigawa|51|U|{4}{U}{U}|Instant||| +Meishin, the Mind Cage|Saviors of Kamigawa|44|R|{4}{U}{U}{U}|Legendary Enchantment||| +Goblin Raider|Ninth Edition|8|C|{1}{R}|Creature — Goblin Warrior|2|2| +Vizzerdrix|Ninth Edition|7|R|{6}{U}|Creature — Rabbit Beast|6|6| +Index|Ninth Edition|5|C|{U}|Sorcery||| +Spined Wurm|Ninth Edition|10|C|{4}{G}|Creature — Wurm|5|4| +Mountain|Ravnica: City of Guilds|299|L||Basic Land — Mountain||| +Forest|Ravnica: City of Guilds|303|L||Basic Land — Forest||| +Forest|Ravnica: City of Guilds|305|L||Basic Land — Forest||| +Forest|Ravnica: City of Guilds|304|L||Basic Land — Forest||| +Island|Ravnica: City of Guilds|293|L||Basic Land — Island||| +Swamp|Ravnica: City of Guilds|297|L||Basic Land — Swamp||| +Mountain|Ravnica: City of Guilds|301|L||Basic Land — Mountain||| +Island|Ravnica: City of Guilds|291|L||Basic Land — Island||| +Mountain|Ravnica: City of Guilds|300|L||Basic Land — Mountain||| +Plains|Ravnica: City of Guilds|289|L||Basic Land — Plains||| +Forest|Ravnica: City of Guilds|306|L||Basic Land — Forest||| +Island|Ravnica: City of Guilds|292|L||Basic Land — Island||| +Plains|Ravnica: City of Guilds|287|L||Basic Land — Plains||| +Mountain|Ravnica: City of Guilds|302|L||Basic Land — Mountain||| +Swamp|Ravnica: City of Guilds|296|L||Basic Land — Swamp||| +Swamp|Ravnica: City of Guilds|295|L||Basic Land — Swamp||| +Plains|Ravnica: City of Guilds|288|L||Basic Land — Plains||| +Island|Ravnica: City of Guilds|294|L||Basic Land — Island||| +Swamp|Ravnica: City of Guilds|298|L||Basic Land — Swamp||| +Plains|Ravnica: City of Guilds|290|L||Basic Land — Plains||| +Ornithopter|Ninth Edition|305|U|{0}|Artifact Creature — Thopter|0|2| +Tanglebloom|Ninth Edition|311|U|{1}|Artifact||| +Dimir Signet|Ravnica: City of Guilds|260|C|{2}|Artifact||| +Golgari Signet|Ravnica: City of Guilds|262|C|{2}|Artifact||| +Boros Signet|Ravnica: City of Guilds|255|C|{2}|Artifact||| +Selesnya Signet|Ravnica: City of Guilds|270|C|{2}|Artifact||| +Silhana Ledgewalker|Guildpact|94|C|{1}{G}|Creature — Elf Rogue|1|1| +Quicken|Guildpact|31|R|{U}|Instant||| +Repeal|Guildpact|32|C|{X}{U}|Instant||| +Electrolyze|Guildpact|111|U|{1}{U}{R}|Instant||| +Gristleback|Guildpact|87|U|{2}{G}|Creature — Boar Beast|2|2| +Ghor-Clan Bloodscale|Guildpact|66|U|{3}{R}|Creature — Viashino Warrior|2|1| +Sky Swallower|Guildpact|34|R|{3}{U}{U}|Creature — Leviathan|8|8| +Bloodscale Prowler|Guildpact|64|C|{2}{R}|Creature — Viashino Warrior|3|1| +Gruul Guildmage|Guildpact|144|U|{RG}{RG}|Creature — Human Shaman|2|2| +Skyrider Trainee|Guildpact|17|C|{4}{W}|Creature — Human Soldier|3|3| +Hypervolt Grasp|Guildpact|67|U|{2}{R}|Enchantment — Aura||| +Lionheart Maverick|Guildpact|11|C|{W}|Creature — Human Knight|1|1| +Ghostway|Guildpact|6|R|{2}{W}|Instant||| +Harrier Griffin|Guildpact|9|U|{5}{W}|Creature — Griffin|3|3| +Orzhov Pontiff|Guildpact|124|R|{1}{W}{B}|Creature — Human Cleric|1|1| +Pyromatics|Guildpact|72|C|{1}{R}|Instant||| +Dryad Sophisticate|Guildpact|83|U|{1}{G}|Creature — Dryad|2|1| +Ghor-Clan Savage|Guildpact|86|C|{3}{G}{G}|Creature — Centaur Berserker|2|3| +Vacuumelt|Guildpact|40|U|{2}{U}|Sorcery||| +Petrified Wood-Kin|Guildpact|91|R|{6}{G}|Creature — Elemental Warrior|3|3| +Restless Bones|Guildpact|58|C|{2}{B}|Creature — Skeleton|1|1| +Bioplasm|Guildpact|81|R|{3}{G}{G}|Creature — Ooze|4|4| +Abyssal Nocturnus|Guildpact|43|R|{1}{B}{B}|Creature — Horror|2|2| +Gruul Signet|Guildpact|150|C|{2}|Artifact||| +Vertigo Spawn|Guildpact|42|U|{1}{U}|Creature — Illusion|0|3| +Silhana Starfletcher|Guildpact|95|C|{2}{G}|Creature — Elf Druid Archer|1|3| +Gigadrowse|Guildpact|26|C|{U}|Instant||| +Spelltithe Enforcer|Guildpact|18|R|{3}{W}{W}|Creature — Elephant Wizard|3|3| +Izzet Signet|Guildpact|152|C|{2}|Artifact||| +Orzhov Signet|Guildpact|155|C|{2}|Artifact||| +Orzhov Basilica|Guildpact|161|C||Land||| +Hatching Plans|Guildpact|27|R|{1}{U}|Enchantment||| +Living Inferno|Guildpact|69|R|{6}{R}{R}|Creature — Elemental|8|5| +Cryptwailing|Guildpact|47|U|{3}{B}|Enchantment||| +Gatherer of Graces|Guildpact|85|U|{1}{G}|Creature — Human Druid|1|2| +Pillory of the Sleepless|Guildpact|125|C|{1}{W}{B}|Enchantment — Aura||| +Gruul Scrapper|Guildpact|89|C|{3}{G}|Creature — Human Berserker|3|2| +Seize the Soul|Guildpact|61|R|{2}{B}{B}|Instant||| +Sinstriker's Will|Guildpact|16|U|{3}{W}|Enchantment — Aura||| +Frazzle|Guildpact|25|U|{3}{U}|Instant||| +Gelectrode|Guildpact|113|U|{1}{U}{R}|Creature — Weird|0|1| +Agent of Masks|Guildpact|100|U|{3}{W}{B}|Creature — Human Advisor|2|3| +Orzhov Euthanist|Guildpact|54|C|{2}{B}|Creature — Human Assassin|2|2| +Stomping Ground|Guildpact|165|R||Land — Mountain Forest||| +Petrahydrox|Guildpact|148|C|{3}{UR}|Creature — Weird|3|3| +Burning-Tree Bloodscale|Guildpact|104|C|{2}{R}{G}|Creature — Viashino Berserker|2|2| +Skeletal Vampire|Guildpact|62|R|{4}{B}{B}|Creature — Vampire Skeleton|3|3| +Ghost Warden|Guildpact|5|C|{1}{W}|Creature — Spirit|1|1| +Wee Dragonauts|Guildpact|137|C|{1}{U}{R}|Creature — Faerie Wizard|1|3| +Scab-Clan Mauler|Guildpact|128|C|{R}{G}|Creature — Human Berserker|1|1| +Train of Thought|Guildpact|39|C|{1}{U}|Sorcery||| +Cerebral Vortex|Guildpact|107|R|{1}{U}{R}|Instant||| +Ghost Council of Orzhova|Guildpact|114|R|{W}{W}{B}{B}|Legendary Creature — Spirit|4|4| +Mourning Thrull|Guildpact|146|C|{1}{WB}|Creature — Thrull|1|1| +Runeboggle|Guildpact|33|C|{2}{U}|Instant||| +Crash Landing|Guildpact|82|U|{2}{G}|Instant||| +Vedalken Plotter|Guildpact|41|U|{2}{U}|Creature — Vedalken Wizard|1|1| +Orzhov Guildmage|Guildpact|147|U|{WB}{WB}|Creature — Human Wizard|2|2| +Hissing Miasma|Guildpact|51|U|{1}{B}{B}|Enchantment||| +Steam Vents|Guildpact|164|R||Land — Island Mountain||| +Ζtherplasm|Guildpact|22|U|{2}{U}{U}|Creature — Illusion|1|1| +Stratozeppelid|Guildpact|36|U|{4}{U}|Creature — Beast|4|4| +Stitch in Time|Guildpact|132|R|{1}{U}{R}|Sorcery||| +Droning Bureaucrats|Guildpact|4|U|{3}{W}|Creature — Human Advisor|1|4| +Mortify|Guildpact|122|U|{1}{W}{B}|Instant||| +Predatory Focus|Guildpact|92|U|{3}{G}{G}|Sorcery||| +Smogsteed Rider|Guildpact|63|U|{2}{B}{B}|Creature — Human Wizard|2|2| +Wild Cantor|Guildpact|149|C|{RG}|Creature — Human Druid|1|1| +Godless Shrine|Guildpact|157|R||Land — Plains Swamp||| +Cremate|Guildpact|45|C|{B}|Instant||| +Nivix, Aerie of the Firemind|Guildpact|160|U||Land||| +Order of the Stars|Guildpact|13|U|{W}|Creature — Human Cleric|0|1| +Skarrgan Pit-Skulk|Guildpact|96|C|{G}|Creature — Human Warrior|1|1| +Shadow Lance|Guildpact|14|U|{W}|Enchantment — Aura||| +Feral Animist|Guildpact|112|U|{1}{R}{G}|Creature — Goblin Shaman|2|1| +Thunderheads|Guildpact|37|U|{2}{U}|Instant||| +Daggerclaw Imp|Guildpact|48|U|{2}{B}|Creature — Imp|3|1| +Benediction of Moons|Guildpact|3|C|{W}|Sorcery||| +Niv-Mizzet, the Firemind|Guildpact|123|R|{2}{U}{U}{R}{R}|Legendary Creature — Dragon Wizard|4|4| +Absolver Thrull|Guildpact|1|C|{3}{W}|Creature — Thrull Cleric|2|3| +Shrieking Grotesque|Guildpact|15|C|{2}{W}|Creature — Gargoyle|2|1| +Skarrgan Firebird|Guildpact|77|R|{4}{R}{R}|Creature — Phoenix|3|3| +Tin Street Hooligan|Guildpact|78|C|{1}{R}|Creature — Goblin Rogue|2|1| +Cry of Contrition|Guildpact|46|C|{B}|Sorcery||| +Belfry Spirit|Guildpact|2|U|{3}{W}{W}|Creature — Spirit|1|1| +Battering Wurm|Guildpact|79|U|{6}{G}|Creature — Wurm|4|3| +Izzet Guildmage|Guildpact|145|U|{UR}{UR}|Creature — Human Wizard|2|2| +Storm Herd|Guildpact|19|R|{8}{W}{W}|Sorcery||| +Caustic Rain|Guildpact|44|U|{2}{B}{B}|Sorcery||| +Skarrg, the Rage Pits|Guildpact|163|U||Land||| +Revenant Patriarch|Guildpact|59|U|{4}{B}|Creature — Spirit|4|3| +Ostiary Thrull|Guildpact|55|C|{3}{B}|Creature — Thrull|2|2| +Arena|Promo set for Gatherer||Special||Land||| +Dirtcowl Wurm|Promo set for Gatherer||R|{4}{G}|Creature — Wurm|3|4| +False Prophet|Promo set for Gatherer|6|R|{2}{W}{W}|Creature — Human Cleric|2|2| +Giant Badger|Promo set for Gatherer||Special|{1}{G}{G}|Creature — Badger|2|2| +Helm of Kaldra|Promo set for Gatherer|131|R|{3}|Legendary Artifact — Equipment||| +Lightning Dragon|Promo set for Gatherer|202|R|{2}{R}{R}|Creature — Dragon|4|4| +Mana Crypt|Promo set for Gatherer||Special|{0}|Artifact||| +Monstrous Hound|Promo set for Gatherer|89|R|{3}{R}|Creature — Hound|4|4| +Nalathni Dragon|Promo set for Gatherer||Special|{2}{R}{R}|Creature — Dragon|1|1| +Overtaker|Promo set for Gatherer|89|R|{1}{U}|Creature — Merfolk Spellshaper|1|1| +Questing Phelddagrif|Promo set for Gatherer|119|R|{1}{G}{W}{U}|Creature — Phelddagrif|4|4| +Revenant|Promo set for Gatherer||R|{4}{B}|Creature — Spirit|*|*| +Sewers of Estark|Promo set for Gatherer||Special|{2}{B}{B}|Instant||| +Shield of Kaldra|Promo set for Gatherer|139||{4}|Legendary Artifact — Equipment||| +Sword of Kaldra|Promo set for Gatherer|251|R|{4}|Legendary Artifact — Equipment||| +Windseeker Centaur|Promo set for Gatherer||Special|{1}{R}{R}|Creature — Centaur|2|2| +Beast of Burden|Promo set for Gatherer|122|R|{6}|Artifact Creature — Golem|*|*| +Rathi Assassin|Promo set for Gatherer|67|R|{2}{B}{B}|Creature — Zombie Mercenary Assassin|2|2| +Avatar of Hope|Promo set for Gatherer|3|R|{6}{W}{W}|Creature — Avatar|4|9| +Raging Kavu|Promo set for Gatherer|262|R|{1}{R}{G}|Creature — Kavu|3|1| +Fungal Shambler|Promo set for Gatherer|100|R|{4}{G}{U}{B}|Creature — Fungus Beast|6|4| +Laquatus's Champion|Promo set for Gatherer|67|R|{4}{B}{B}|Creature — Nightmare Horror|6|3| +Glory|Promo set for Gatherer|11|R|{3}{W}{W}|Creature — Incarnation|3|3| +Silent Specter|Promo set for Gatherer|169|R|{4}{B}{B}|Creature — Specter|4|4| +Feral Throwback|Promo set for Gatherer|126|R|{4}{G}{G}|Creature — Beast|3|3| +Soul Collector|Promo set for Gatherer|74|R|{3}{B}{B}|Creature — Vampire|3|4| +Ryusei, the Falling Star|Promo set for Gatherer|185|R|{5}{R}|Legendary Creature — Dragon Spirit|5|5| +Hallowed Fountain|Dissension|174|R||Land — Plains Island||| +Rix Maadi, Dungeon Palace|Dissension|179|U||Land||| +Slaughterhouse Bouncer|Dissension|54|C|{4}{B}|Creature — Ogre Warrior|3|3| +Rakdos Ickspitter|Dissension|128|C|{1}{B}{R}|Creature — Thrull|1|1| +Whiptail Moloch|Dissension|79|C|{4}{R}|Creature — Lizard|6|3| +Riot Spikes|Dissension|146|C|{BR}|Enchantment — Aura||| +Azorius Guildmage|Dissension|141|U|{WU}{WU}|Creature — Vedalken Wizard|2|2| +Simic Guildmage|Dissension|148|U|{GU}{GU}|Creature — Elf Wizard|2|2| +Simic Signet|Dissension|166|C|{2}|Artifact||| +Rakdos Carnarium|Dissension|178|C||Land||| +Minister of Impediments|Dissension|144|C|{2}{WU}|Creature — Human Advisor|1|1| +Shielding Plax|Dissension|147|C|{2}{GU}|Enchantment — Aura||| +Azorius Signet|Dissension|159|C|{2}|Artifact||| +Jagged Poppet|Dissension|115|U|{1}{B}{R}|Creature — Ogre Warrior|3|4| +Azorius Chancery|Dissension|170|C||Land||| +Breeding Pool|Dissension|172|R||Land — Forest Island||| +Simic Growth Chamber|Dissension|180|C||Land||| +Novijen Sages|Dissension|27|R|{4}{U}{U}|Creature — Human Advisor Mutant|0|0| +Walking Archive|Dissension|169|R|{3}|Artifact Creature — Golem|1|1| +Evolution Vat|Dissension|161|R|{3}|Artifact||| +Windreaver|Dissension|138|R|{3}{W}{U}|Creature — Elemental|1|3| +Voidslime|Dissension|137|R|{G}{U}{U}|Instant||| +Pride of the Clouds|Dissension|125|R|{W}{U}|Creature — Elemental Cat|1|1| +Rakdos Signet|Dissension|165|C|{2}|Artifact||| +Novijen, Heart of Progress|Dissension|175|U||Land||| +Hellhole Rats|Dissension|113|U|{2}{B}{R}|Creature — Rat|2|2| +Azorius First-Wing|Dissension|105|C|{W}{U}|Creature — Griffin|2|2| +Blood Crypt|Dissension|171|R||Land — Swamp Mountain||| +Plaxcaster Frogling|Dissension|123|U|{1}{G}{U}|Creature — Frog Mutant|0|0| +Pain Magnification|Dissension|121|U|{1}{B}{R}|Enchantment||| +Coiling Oracle|Dissension|107|C|{G}{U}|Creature — Snake Elf Druid|1|1| +Assault Zeppelid|Dissension|103|C|{2}{G}{U}|Creature — Beast|3|3| +Rakdos Guildmage|Dissension|145|U|{BR}{BR}|Creature — Zombie Shaman|2|2| +Sky Hussar|Dissension|131|U|{3}{W}{U}|Creature — Human Knight|4|3| +Anthem of Rakdos|Dissension|102|R|{2}{B}{R}{R}|Enchantment||| +Overrule|Dissension|120|C|{X}{W}{U}|Instant||| +Trygon Predator|Dissension|133|U|{1}{G}{U}|Creature — Beast|2|3| +Twinstrike|Dissension|134|U|{3}{B}{R}|Instant||| +Steeling Stance|Dissension|18|C|{1}{W}{W}|Instant||| +Macabre Waltz|Dissension|47|C|{1}{B}|Sorcery||| +Prahv, Spires of Order|Dissension|177|U||Land||| +Palliation Accord|Dissension|122|U|{3}{W}{U}|Enchantment||| +Rakdos Riteknife|Dissension|164|R|{2}|Artifact — Equipment||| +Vigean Intuition|Dissension|136|U|{3}{G}{U}|Instant||| +Sanguine Praetor|Guildpact|60|R|{6}{B}{B}|Creature — Praetor|7|5| +Moratorium Stone|Guildpact|154|R|{1}|Artifact||| +Debtors' Knell|Guildpact|141|R|{4}{WB}{WB}{WB}|Enchantment||| +Conjurer's Ban|Guildpact|108|U|{W}{B}|Sorcery||| +Djinn Illuminatus|Guildpact|142|R|{5}{UR}{UR}|Creature — Djinn|3|5| +Rumbling Slum|Guildpact|126|R|{1}{R}{G}{G}|Creature — Elemental|5|5| +Rabble-Rouser|Guildpact|73|U|{3}{R}|Creature — Goblin Shaman|1|1| +Steamcore Weird|Guildpact|35|C|{3}{U}|Creature — Weird|1|3| +Izzet Chronarch|Guildpact|119|C|{3}{U}{R}|Creature — Human Wizard|2|2| +Withstand|Guildpact|21|C|{2}{W}|Instant||| +Schismotivate|Guildpact|129|U|{1}{U}{R}|Instant||| +Burning-Tree Shaman|Guildpact|105|R|{1}{R}{G}|Creature — Centaur Shaman|3|4| +Orzhova, the Church of Deals|Guildpact|162|U||Land||| +Killer Instinct|Guildpact|120|R|{4}{R}{G}|Enchantment||| +Tibor and Lumia|Guildpact|135|R|{2}{U}{R}|Legendary Creature — Human Wizard|3|3| +Goblin Flectomancer|Guildpact|116|U|{U}{R}{R}|Creature — Goblin Wizard|2|2| +Ulasht, the Hate Seed|Guildpact|136|R|{2}{R}{G}|Legendary Creature — Hellion Hydra|0|0| +Culling Sun|Guildpact|109|R|{2}{W}{W}{B}|Sorcery||| +Savage Twister|Guildpact|127|U|{X}{R}{G}|Sorcery||| +Parallectric Feedback|Guildpact|71|R|{3}{R}|Instant||| +Torch Drake|Guildpact|38|C|{3}{U}|Creature — Drake|2|2| +Castigate|Guildpact|106|C|{W}{B}|Sorcery||| +Izzet Boilerworks|Guildpact|159|C||Land||| +Douse in Gloom|Guildpact|49|C|{2}{B}|Instant||| +Skarrgan Skybreaker|Guildpact|130|U|{4}{R}{R}{G}|Creature — Giant Shaman|3|3| +Gruul Turf|Guildpact|158|C||Land||| +Exhumer Thrull|Guildpact|50|U|{5}{B}|Creature — Thrull|3|3| +Blind Hunter|Guildpact|102|C|{2}{W}{B}|Creature — Bat|2|2| +Graven Dominator|Guildpact|7|R|{4}{W}{W}|Creature — Gargoyle|4|4| +Borborygmos|Guildpact|103|R|{3}{R}{R}{G}{G}|Legendary Creature — Cyclops|6|7| +Wurmweaver Coil|Guildpact|99|R|{4}{G}{G}|Enchantment — Aura||| +Souls of the Faultless|Guildpact|131|U|{W}{B}{B}|Creature — Spirit|0|4| +Shattering Spree|Guildpact|75|U|{R}|Sorcery||| +Siege of Towers|Guildpact|76|R|{1}{R}|Sorcery||| +Ogre Savant|Guildpact|70|C|{4}{R}|Creature — Ogre Wizard|3|2| +Earth Surge|Guildpact|84|R|{3}{G}|Enchantment||| +Molimo, Maro-Sorcerer|Tenth Edition|280|R|{4}{G}{G}{G}|Legendary Creature — Elemental|*|*| +Reya Dawnbringer|Tenth Edition|35|R|{6}{W}{W}{W}|Legendary Creature — Angel|4|6| +Kamahl, Pit Fighter|Tenth Edition|214|R|{4}{R}{R}|Legendary Creature — Human Barbarian|6|1| +Mirri, Cat Warrior|Tenth Edition|279|R|{1}{G}{G}|Legendary Creature — Cat Warrior|2|3| +Arcanis the Omnipotent|Tenth Edition|66|R|{3}{U}{U}{U}|Legendary Creature — Wizard|3|4| +Phage the Untouchable|Tenth Edition|166|R|{3}{B}{B}{B}{B}|Legendary Creature — Zombie Minion|4|4| +Forbidding Watchtower|Tenth Edition|352|U||Land||| +Treetop Village|Tenth Edition|361|U||Land||| +Squee, Goblin Nabob|Tenth Edition|239|R|{2}{R}|Legendary Creature — Goblin|1|1| +Jayemdae Tome|Tenth Edition|327|R|{4}|Artifact||| +Rhox|Tenth Edition|291|R|{4}{G}{G}|Creature — Rhino Beast|5|5| +Ascendant Evincar|Tenth Edition|127|R|{4}{B}{B}|Legendary Creature — Vampire|3|3| +Faerie Conclave|Tenth Edition|351|U||Land||| +Platinum Angel|Tenth Edition|339|R|{7}|Artifact Creature — Angel|4|4| +Razormane Masticore|Tenth Edition|340|R|{5}|Artifact Creature — Masticore|5|5| +March of the Machines|Tenth Edition|91|R|{3}{U}|Enchantment||| +Spawning Pool|Tenth Edition|358|U||Land||| +Ghitu Encampment|Tenth Edition|353|U||Land||| +Mimeofacture|Guildpact|30|R|{3}{U}|Sorcery||| +Streetbreaker Wurm|Guildpact|133|C|{3}{R}{G}|Creature — Wurm|6|4| +Giant Solifuge|Guildpact|143|R|{2}{RG}{RG}|Creature — Insect|4|1| +Sacred Mesa|Time Spiral "Timeshifted"|13|Special|{2}{W}|Enchantment||| +Valor|Time Spiral "Timeshifted"|16|Special|{3}{W}|Creature — Incarnation|2|2| +Chronatog Totem|Time Spiral|252|U|{3}|Artifact||| +Dandβn|Time Spiral "Timeshifted"|19|Special|{U}{U}|Creature — Fish|4|1| +Tendrils of Corruption|Time Spiral|136|C|{3}{B}|Instant||| +Disintegrate|Time Spiral "Timeshifted"|58|Special|{X}{R}|Sorcery||| +Stormscape Familiar|Time Spiral "Timeshifted"|32|Special|{1}{U}|Creature — Bird|1|1| +Sengir Autocrat|Time Spiral "Timeshifted"|45|Special|{3}{B}|Creature — Human|2|2| +Celestial Dawn|Time Spiral "Timeshifted"|3|Special|{1}{W}{W}|Enchantment||| +Lord of Atlantis|Time Spiral "Timeshifted"|24|Special|{U}{U}|Creature — Merfolk|2|2| +Savage Thallid|Time Spiral|213|C|{3}{G}{G}|Creature — Fungus|5|2| +Soul Collector|Time Spiral "Timeshifted"|47|Special|{3}{B}{B}|Creature — Vampire|3|4| +Akroma, Angel of Wrath|Time Spiral "Timeshifted"|1|Special|{5}{W}{W}{W}|Legendary Creature — Angel|6|6| +Orgg|Time Spiral "Timeshifted"|67|Special|{3}{R}{R}|Creature — Orgg|6|6| +Essence Sliver|Time Spiral "Timeshifted"|8|Special|{3}{W}|Creature — Sliver|3|3| +Watcher Sliver|Time Spiral|45|C|{3}{W}|Creature — Sliver|2|2| +Scragnoth|Time Spiral "Timeshifted"|83|Special|{4}{G}|Creature — Beast|3|4| +Whispers of the Muse|Time Spiral "Timeshifted"|35|Special|{U}|Instant||| +Foriysian Interceptor|Time Spiral|18|C|{3}{W}|Creature — Human Soldier|0|5| +Flowstone Channeler|Time Spiral|155|C|{2}{R}|Creature — Human Spellshaper|2|2| +Temporal Isolation|Time Spiral|43|C|{1}{W}|Enchantment — Aura||| +Swamp Mosquito|Time Spiral "Timeshifted"|49|Special|{1}{B}|Creature — Insect|0|1| +Pull from Eternity|Time Spiral|35|U|{W}|Instant||| +Mana Skimmer|Time Spiral|117|C|{3}{B}|Creature — Leech|2|2| +Wall of Roots|Time Spiral "Timeshifted"|89|Special|{1}{G}|Creature — Plant Wall|0|5| +Kobold Taskmaster|Time Spiral "Timeshifted"|65|Special|{1}{R}|Creature — Kobold|1|2| +Auratog|Time Spiral "Timeshifted"|2|Special|{1}{W}|Creature — Atog|1|2| +Crookclaw Transmuter|Time Spiral|55|C|{3}{U}|Creature — Bird Wizard|3|1| +Witch-Maw Nephilim|Guildpact|138|R|{G}{W}{U}{B}|Creature — Nephilim|1|1| +Dune-Brood Nephilim|Guildpact|110|R|{B}{R}{G}{W}|Creature — Nephilim|3|3| +Ink-Treader Nephilim|Guildpact|117|R|{R}{G}{W}{U}|Creature — Nephilim|3|3| +Yore-Tiller Nephilim|Guildpact|140|R|{W}{U}{B}{R}|Creature — Nephilim|2|2| +Glint-Eye Nephilim|Guildpact|115|R|{U}{B}{R}{G}|Creature — Nephilim|2|2| +Sword of the Paruns|Guildpact|156|R|{4}|Artifact — Equipment||| +Mizzium Transreliquat|Guildpact|153|R|{3}|Artifact||| +Wildsize|Guildpact|98|C|{2}{G}|Instant||| +Gruul War Plow|Guildpact|151|R|{4}|Artifact||| +Poisonbelly Ogre|Guildpact|57|C|{4}{B}|Creature — Ogre Warrior|3|3| +Demonfire|Dissension|60|R|{X}{R}|Sorcery||| +Freewind Equenaut|Dissension|9|C|{2}{W}|Creature — Human Archer|2|2| +Psychic Possession|Dissension|30|R|{2}{U}{U}|Enchantment — Aura||| +Cackling Flames|Dissension|59|C|{3}{R}|Instant||| +Error|Dissension|158|U|{U}{B}|Instant||| +Mistral Charger|Dissension|13|U|{1}{W}|Creature — Pegasus|2|1| +Sporeback Troll|Dissension|94|C|{3}{G}|Creature — Troll Mutant|0|0| +Flash Foliage|Dissension|85|U|{2}{G}|Instant||| +Court Hussar|Dissension|22|U|{2}{U}|Creature — Vedalken Knight|1|3| +Haazda Shield Mate|Dissension|12|R|{2}{W}|Creature — Human Soldier|1|1| +Ratcatcher|Dissension|52|R|{4}{B}{B}|Creature — Ogre Rogue|4|4| +Safe Haven|Time Spiral "Timeshifted"|121|Special||Land||| +Utvara Scalper|Dissension|76|C|{1}{R}|Creature — Goblin Scout|1|2| +Biomantic Mastery|Dissension|142|R|{4}{GU}{GU}{GU}|Sorcery||| +Evil Eye of Orms-by-Gore|Time Spiral "Timeshifted"|42|Special|{4}{B}|Creature — Eye|3|6| +Pillar of the Paruns|Dissension|176|R||Land||| +Goblin Snowman|Time Spiral "Timeshifted"|64|Special|{3}{R}|Creature — Goblin|1|1| +Spell Snare|Dissension|33|U|{U}|Instant||| +Hunting Moa|Time Spiral "Timeshifted"|80|Special|{2}{G}|Creature — Bird Beast|3|2| +Icatian Javelineers|Time Spiral "Timeshifted"|10|Special|{W}|Creature — Human Soldier|1|1| +Swift Silence|Dissension|132|R|{2}{W}{U}{U}|Instant||| +Punishment|Dissension|150|R|{X}{B}{G}|Sorcery||| +Plaxmanta|Dissension|29|U|{1}{U}|Creature — Beast|2|2| +Dauthi Slayer|Time Spiral "Timeshifted"|41|Special|{B}{B}|Creature — Dauthi Soldier|2|2| +Flying Men|Time Spiral "Timeshifted"|20|Special|{U}|Creature — Human|1|1| +Vigean Hydropon|Dissension|135|C|{1}{G}{U}|Creature — Plant Mutant|0|0| +Ghost Ship|Time Spiral "Timeshifted"|21|Special|{2}{U}{U}|Creature — Spirit|2|4| +Hail Storm|Time Spiral "Timeshifted"|79|Special|{1}{G}{G}|Instant||| +Browbeat|Time Spiral "Timeshifted"|56|Special|{2}{R}|Sorcery||| +Stormscale Anarch|Dissension|74|R|{2}{R}{R}|Creature — Viashino Shaman|2|2| +Stalking Vengeance|Dissension|73|R|{5}{R}{R}|Creature — Avatar|5|5| +Disenchant|Time Spiral "Timeshifted"|6|Special|{1}{W}|Instant||| +Squealing Devil|Dissension|72|U|{1}{R}|Creature — Devil|2|1| +Bond of Agony|Dissension|38|U|{X}{B}|Sorcery||| +Blessing of the Nephilim|Dissension|4|U|{W}|Enchantment — Aura||| +Infernal Tutor|Dissension|46|R|{1}{B}|Sorcery||| +Carom|Dissension|6|C|{1}{W}|Instant||| +Cytospawn Shambler|Dissension|82|C|{6}{G}|Creature — Elemental Mutant|0|0| +Silkwing Scout|Dissension|31|C|{2}{U}|Creature — Faerie Scout|2|1| +Seek|Dissension|151|R|{W}{B}|Instant||| +Celestial Ancient|Dissension|7|R|{3}{W}{W}|Creature — Elemental|3|3| +Might of the Nephilim|Dissension|88|U|{1}{G}|Instant||| +Vigean Graftmage|Dissension|35|U|{2}{U}|Creature — Vedalken Wizard Mutant|0|0| +Dread Slag|Dissension|109|R|{3}{B}{R}|Creature — Horror|9|9| +Skullmead Cauldron|Dissension|167|U|{4}|Artifact||| +Bronze Bombshell|Dissension|160|R|{4}|Artifact Creature — Construct|4|1| +Ocular Halo|Dissension|28|C|{3}{U}|Enchantment — Aura||| +Grand Arbiter Augustin IV|Dissension|112|R|{2}{W}{U}|Legendary Creature — Human Advisor|2|3| +Crypt Champion|Dissension|40|U|{3}{B}|Creature — Zombie|2|2| +Flame-Kin War Scout|Dissension|61|U|{3}{R}|Creature — Elemental Scout|2|4| +Psychotic Fury|Dissension|68|C|{1}{R}|Instant||| +Brain Pry|Dissension|39|U|{1}{B}|Sorcery||| +Proclamation of Rebirth|Dissension|15|R|{2}{W}|Sorcery||| +Enemy of the Guildpact|Dissension|44|C|{4}{B}|Creature — Spirit|4|2| +Cytoshape|Dissension|108|R|{1}{G}{U}|Instant||| +Simic Basilisk|Dissension|91|U|{4}{G}{G}|Creature — Basilisk Mutant|0|0| +Cytoplast Manipulator|Dissension|23|R|{2}{U}{U}|Creature — Human Wizard Mutant|0|0| +Rain of Gore|Dissension|126|R|{B}{R}|Enchantment||| +Transguild Courier|Dissension|168|U|{4}|Artifact Creature — Golem|3|3| +Lyzolda, the Blood Witch|Dissension|117|R|{1}{B}{R}|Legendary Creature — Human Cleric|3|1| +Elemental Resonance|Dissension|83|R|{2}{G}{G}|Enchantment — Aura||| +Street Savvy|Dissension|97|C|{G}|Enchantment — Aura||| +Determined|Dissension|149|R|{G}{U}|Instant||| +Nettling Curse|Dissension|48|C|{2}{B}|Enchantment — Aura||| +Development|Dissension|155|R|{3}{U}{R}|Instant||| +Indrik Stomphowler|Dissension|86|U|{4}{G}|Creature — Beast|4|4| +Plumes of Peace|Dissension|124|C|{1}{W}{U}|Enchantment — Aura||| +Experiment Kraj|Dissension|110|R|{2}{G}{G}{U}{U}|Legendary Creature — Ooze Mutant|4|6| +Run|Dissension|152|U|{3}{R}{G}|Instant||| +Ogre Gatecrasher|Dissension|67|C|{3}{R}|Creature — Ogre Rogue|3|3| +Thrive|Dissension|98|C|{X}{G}|Sorcery||| +Govern the Guildless|Dissension|25|R|{5}{U}|Sorcery||| +Vision Skeins|Dissension|36|C|{1}{U}|Instant||| +Tidespout Tyrant|Dissension|34|R|{5}{U}{U}{U}|Creature — Djinn|5|5| +Writ of Passage|Dissension|37|C|{U}|Enchantment — Aura||| +Nightcreep|Dissension|49|U|{B}{B}|Instant||| +Rise|Dissension|156|U|{U}{B}|Sorcery||| +Azorius Ploy|Dissension|106|U|{1}{W}{W}{U}|Instant||| +Dovescape|Dissension|143|R|{3}{WU}{WU}{WU}|Enchantment||| +Valor Made Real|Dissension|20|C|{W}|Instant||| +Paladin of Prahv|Dissension|14|U|{4}{W}{W}|Creature — Human Knight|3|4| +Delirium Skeins|Dissension|41|C|{2}{B}|Sorcery||| +Avatar of Discord|Dissension|140|R|{BR}{BR}{BR}|Creature — Avatar|5|3| +Rakdos the Defiler|Dissension|129|R|{2}{B}{B}{R}{R}|Legendary Creature — Demon|7|6| +Soulsworn Jury|Dissension|17|C|{2}{W}|Creature — Spirit|1|4| +Simic Initiate|Dissension|92|C|{G}|Creature — Human Mutant|0|0| +Ends|Dissension|153|R|{3}{R}{W}|Instant||| +Kindle the Carnage|Dissension|66|U|{1}{R}{R}|Sorcery||| +Isperia the Inscrutable|Dissension|114|R|{1}{W}{W}{U}{U}|Legendary Creature — Sphinx|3|6| +Skyscribing|Dissension|32|U|{X}{U}{U}|Sorcery||| +Unliving Psychopath|Dissension|56|R|{2}{B}{B}|Creature — Zombie Assassin|0|4| +Demand|Dissension|157|U|{1}{W}{U}|Sorcery||| +Proper Burial|Dissension|16|R|{3}{W}|Enchantment||| +Haazda Exonerator|Dissension|11|C|{W}|Creature — Human Cleric|1|1| +Aquastrand Spider|Dissension|80|C|{1}{G}|Creature — Spider Mutant|0|0| +Vesper Ghoul|Dissension|57|C|{2}{B}|Creature — Zombie Druid|1|1| +War's Toll|Dissension|77|R|{3}{R}|Enchantment||| +Kill-Suit Cultist|Dissension|65|C|{R}|Creature — Goblin Berserker|1|1| +Condemn|Dissension|8|U|{W}|Instant||| +Ghost Quarter|Dissension|173|U||Land||| +Stomp and Howl|Dissension|96|U|{2}{G}|Sorcery||| +Momir Vig, Simic Visionary|Dissension|118|R|{3}{G}{U}|Legendary Creature — Elf Wizard|2|2| +Cytoplast Root-Kin|Dissension|81|R|{2}{G}{G}|Creature — Elemental Mutant|0|0| +Nihilistic Glee|Dissension|50|R|{2}{B}{B}|Enchantment||| +Gnat Alley Creeper|Dissension|63|U|{2}{R}|Creature — Human Rogue|3|1| +Stoic Ephemera|Dissension|19|U|{2}{W}|Creature — Spirit|5|5| +Seal of Fire|Dissension|71|C|{R}|Enchantment||| +Simple|Dissension|154|U|{1}{G}{W}|Sorcery||| +Seal of Doom|Dissension|53|C|{2}{B}|Enchantment||| +Helium Squirter|Dissension|26|C|{4}{U}|Creature — Beast Mutant|0|0| +Brace for Impact|Dissension|5|U|{4}{W}|Instant||| +Gobhobbler Rats|Dissension|111|C|{B}{R}|Creature — Rat|2|2| +Rakdos Augermage|Dissension|127|R|{B}{B}{R}|Creature — Human Wizard|3|2| +Patagia Viper|Dissension|89|U|{3}{G}|Creature — Snake|2|1| +Weight of Spires|Dissension|78|U|{R}|Instant||| +Muse Vessel|Dissension|163|R|{4}|Artifact||| +Leafdrake Roost|Dissension|116|U|{3}{G}{U}|Enchantment — Aura||| +Wit's End|Dissension|58|R|{5}{B}{B}|Sorcery||| +Simic Ragworm|Dissension|93|C|{3}{G}|Creature — Worm|3|3| +Loaming Shaman|Dissension|87|R|{2}{G}|Creature — Centaur Shaman|3|2| +Utopia Sprawl|Dissension|99|C|{G}|Enchantment — Aura||| +Ragamuffyn|Dissension|51|U|{2}{B}|Creature — Zombie Cleric|2|2| +Azorius Herald|Dissension|2|U|{2}{W}|Creature — Spirit|2|1| +Guardian of the Guildpact|Dissension|10|C|{3}{W}|Creature — Spirit|2|3| +Taste for Mayhem|Dissension|75|C|{R}|Enchantment — Aura||| +Protean Hulk|Dissension|90|R|{5}{G}{G}|Creature — Beast|6|6| +Demon's Jester|Dissension|42|C|{3}{B}|Creature — Imp|2|2| +Leap of Flame|Guildpact|121|C|{U}{R}|Instant||| +Fencer's Magemark|Guildpact|65|C|{2}{R}|Enchantment — Aura||| +Leyline of the Void|Guildpact|52|R|{2}{B}{B}|Enchantment||| +Gruul Nodorog|Guildpact|88|C|{4}{G}{G}|Creature — Beast|4|4| +Infiltrator's Magemark|Guildpact|28|C|{2}{U}|Enchantment — Aura||| +Necromancer's Magemark|Guildpact|53|C|{2}{B}|Enchantment — Aura||| +Leyline of Lightning|Guildpact|68|R|{2}{R}{R}|Enchantment||| +Drowned Rusalka|Guildpact|24|U|{U}|Creature — Spirit|1|1| +Guardian's Magemark|Guildpact|8|C|{2}{W}|Enchantment — Aura||| +Beastmaster's Magemark|Guildpact|80|C|{2}{G}|Enchantment — Aura||| +Plagued Rusalka|Guildpact|56|U|{B}|Creature — Spirit|1|1| +Starved Rusalka|Guildpact|97|U|{G}|Creature — Spirit|1|1| +Wreak Havoc|Guildpact|139|U|{2}{R}{G}|Sorcery||| +Primeval Light|Guildpact|93|U|{3}{G}|Sorcery||| +Leyline of Lifeforce|Guildpact|90|R|{2}{G}{G}|Enchantment||| +Martyred Rusalka|Guildpact|12|U|{W}|Creature — Spirit|1|1| +Leyline of Singularity|Guildpact|29|R|{2}{U}{U}|Enchantment||| +Scorched Rusalka|Guildpact|74|U|{R}|Creature — Spirit|1|1| +Leyline of the Meek|Guildpact|10|R|{2}{W}{W}|Enchantment||| +Jolrael, Empress of Beasts|Time Spiral "Timeshifted"|81|Special|{3}{G}{G}|Legendary Creature — Human Spellshaper|3|3| +Teferi's Moat|Time Spiral "Timeshifted"|103|Special|{3}{W}{U}|Enchantment||| +Eternity Snare|Time Spiral|61|C|{5}{U}|Enchantment — Aura||| +Gaea's Blessing|Time Spiral "Timeshifted"|77|Special|{1}{G}|Sorcery||| +Undertaker|Time Spiral "Timeshifted"|53|Special|{1}{B}|Creature — Human Spellshaper|1|1| +Basal Sliver|Time Spiral|96|C|{2}{B}|Creature — Sliver|2|2| +Witch Hunter|Time Spiral "Timeshifted"|17|Special|{2}{W}{W}|Creature — Human Cleric|1|1| +Ophidian Eye|Time Spiral|70|C|{2}{U}|Enchantment — Aura||| +Fungal Reaches|Time Spiral|273|U||Land||| +Shadow Sliver|Time Spiral|76|C|{2}{U}|Creature — Sliver|1|1| +Urborg Syphon-Mage|Time Spiral|139|C|{2}{B}|Creature — Human Spellshaper|2|2| +Blazing Blade Askari|Time Spiral|146|C|{2}{R}|Creature — Human Knight|2|2| +Consecrate Land|Time Spiral "Timeshifted"|4|Special|{W}|Enchantment — Aura||| +Search for Tomorrow|Time Spiral|216|C|{2}{G}|Sorcery||| +Defiant Vanguard|Time Spiral "Timeshifted"|5|Special|{2}{W}|Creature — Human Rebel|2|2| +Sudden Death|Time Spiral|134|U|{1}{B}{B}|Instant||| +Uncle Istvan|Time Spiral "Timeshifted"|51|Special|{1}{B}{B}{B}|Creature — Human|1|3| +Uthden Troll|Time Spiral "Timeshifted"|71|Special|{2}{R}|Creature — Troll|2|2| +Durkwood Baloth|Time Spiral|193|C|{4}{G}{G}|Creature — Beast|5|5| +Havenwood Wurm|Time Spiral|199|C|{6}{G}|Creature — Wurm|5|6| +Weatherseed Totem|Time Spiral|268|U|{3}|Artifact||| +Dragon Whelp|Time Spiral "Timeshifted"|59|Special|{2}{R}{R}|Creature — Dragon|2|3| +Voidmage Prodigy|Time Spiral "Timeshifted"|34|Special|{U}{U}|Creature — Human Wizard|2|1| +Psionic Blast|Time Spiral "Timeshifted"|30|Special|{2}{U}|Instant||| +Wildfire Emissary|Time Spiral "Timeshifted"|72|Special|{3}{R}|Creature — Efreet|2|4| +Divine Congregation|Time Spiral|13|C|{3}{W}|Sorcery||| +Giant Oyster|Time Spiral "Timeshifted"|22|Special|{2}{U}{U}|Creature — Oyster|0|3| +Dreadship Reef|Time Spiral|271|U||Land||| +Bad Moon|Time Spiral "Timeshifted"|38|Special|{1}{B}|Enchantment||| +Gaze of Justice|Time Spiral|20|C|{W}|Sorcery||| +Merfolk Assassin|Time Spiral "Timeshifted"|25|Special|{U}{U}|Creature — Merfolk Assassin|1|2| +Phyrexian Totem|Time Spiral|261|U|{3}|Artifact||| +Think Twice|Time Spiral|86|C|{1}{U}|Instant||| +Thallid|Time Spiral "Timeshifted"|86|Special|{G}|Creature — Fungus|1|1| +Unstable Mutation|Time Spiral "Timeshifted"|33|Special|{U}|Enchantment — Aura||| +Mystic Enforcer|Time Spiral "Timeshifted"|96|Special|{2}{G}{W}|Creature — Human Nomad Mystic|3|3| +Greenseeker|Time Spiral|198|C|{G}|Creature — Elf Spellshaper|1|1| +Call to the Netherworld|Time Spiral|97|C|{B}|Sorcery||| +Orcish Librarian|Time Spiral "Timeshifted"|66|Special|{1}{R}|Creature — Orc|1|1| +Avalanche Riders|Time Spiral "Timeshifted"|55|Special|{3}{R}|Creature — Human Nomad|2|2| +Ghitu Firebreathing|Time Spiral|158|C|{1}{R}|Enchantment — Aura||| +Saltcrusted Steppe|Time Spiral|277|U||Land||| +Faceless Butcher|Time Spiral "Timeshifted"|43|Special|{2}{B}{B}|Creature — Nightmare Horror|2|3| +Trespasser il-Vec|Time Spiral|138|C|{2}{B}|Creature — Human Rogue|3|1| +Enduring Renewal|Time Spiral "Timeshifted"|7|Special|{2}{W}{W}|Enchantment||| +Dragonstorm|Time Spiral "Timeshifted"|60|Special|{8}{R}|Sorcery||| +Flickering Spirit|Time Spiral|17|C|{3}{W}|Creature — Spirit|2|2| +Twisted Abomination|Time Spiral "Timeshifted"|50|Special|{5}{B}|Creature — Zombie Mutant|5|3| +Moorish Cavalry|Time Spiral "Timeshifted"|11|Special|{2}{W}{W}|Creature — Human Knight|3|3| +Drudge Reavers|Time Spiral|105|C|{3}{B}|Creature — Skeleton|2|1| +Two-Headed Sliver|Time Spiral|183|C|{1}{R}|Creature — Sliver|1|1| +Ζther Web|Time Spiral|189|C|{1}{G}|Enchantment — Aura||| +Spitting Slug|Time Spiral "Timeshifted"|85|Special|{1}{G}{G}|Creature — Slug|2|4| +Soltari Priest|Time Spiral "Timeshifted"|14|Special|{W}{W}|Creature — Soltari Cleric|2|1| +Traitor's Clutch|Time Spiral|137|C|{4}{B}|Instant||| +Dream Stalker|Time Spiral|58|C|{1}{U}|Creature — Illusion|1|5| +Molten Slagheap|Time Spiral|276|U||Land||| +Willbender|Time Spiral "Timeshifted"|36|Special|{1}{U}|Creature — Human Wizard|1|2| +Pandemonium|Time Spiral "Timeshifted"|68|Special|{3}{R}|Enchantment||| +Ovinomancer|Time Spiral "Timeshifted"|27|Special|{2}{U}|Creature — Human Wizard|0|1| +Shadow Guildmage|Time Spiral "Timeshifted"|46|Special|{B}|Creature — Human Wizard|1|1| +Zhalfirin Commander|Time Spiral "Timeshifted"|18|Special|{2}{W}|Creature — Human Knight|2|2| +Undead Warchief|Time Spiral "Timeshifted"|52|Special|{2}{B}{B}|Creature — Zombie|1|1| +Flamecore Elemental|Time Spiral|154|C|{2}{R}{R}|Creature — Elemental|5|4| +Merieke Ri Berit|Time Spiral "Timeshifted"|95|Special|{W}{U}{B}|Legendary Creature — Human|1|1| +Pentarch Ward|Time Spiral|33|C|{2}{W}|Enchantment — Aura||| +Fire Whip|Time Spiral "Timeshifted"|63|Special|{1}{R}|Enchantment — Aura||| +Honorable Passage|Time Spiral "Timeshifted"|9|Special|{1}{W}|Instant||| +Fiery Temper|Time Spiral "Timeshifted"|62|Special|{1}{R}{R}|Instant||| +Suq'Ata Lancer|Time Spiral "Timeshifted"|69|Special|{2}{R}|Creature — Human Knight|2|2| +Premature Burial|Time Spiral|125|U|{1}{B}|Sorcery||| +Resurrection|Time Spiral "Timeshifted"|12|Special|{2}{W}{W}|Sorcery||| +Avoid Fate|Time Spiral "Timeshifted"|73|Special|{G}|Instant||| +Duskrider Peregrine|Time Spiral|14|U|{5}{W}|Creature — Bird|3|3| +Gustcloak Cavalier|Time Spiral|22|U|{3}{W}{W}|Creature — Human Knight|2|2| +Withered Wretch|Time Spiral "Timeshifted"|54|Special|{B}{B}|Creature — Zombie Cleric|2|2| +Keldon Halberdier|Time Spiral|167|C|{4}{R}|Creature — Human Warrior|4|1| +Feebleness|Time Spiral|110|C|{1}{B}|Enchantment — Aura||| +Fiery Justice|Time Spiral "Timeshifted"|92|Special|{R}{G}{W}|Sorcery||| +Mindstab|Time Spiral|119|C|{5}{B}|Sorcery||| +Funeral Charm|Time Spiral "Timeshifted"|44|Special|{B}|Instant||| +Snapback|Time Spiral|78|C|{1}{U}|Instant||| +Zealot il-Vec|Time Spiral|47|C|{2}{W}|Creature — Human Rebel|1|1| +Aven Riftwatcher|Planar Chaos|1|C|{2}{W}|Creature — Bird Rebel Soldier|2|3| +Icatian Crier|Time Spiral|23|C|{2}{W}|Creature — Human Spellshaper|1|1| +Bogardan Rager|Time Spiral|148|C|{5}{R}|Creature — Elemental|3|4| +Cavalry Master|Time Spiral|6|U|{2}{W}{W}|Creature — Human Knight|3|3| +Foriysian Totem|Time Spiral|254|U|{3}|Artifact||| +Ground Rift|Time Spiral|162|C|{R}|Sorcery||| +Prodigal Sorcerer|Time Spiral "Timeshifted"|29|Special|{2}{U}|Creature — Human Wizard|1|1| +Tolarian Sentinel|Time Spiral|87|C|{3}{U}|Creature — Human Spellshaper|1|3| +Squire|Time Spiral "Timeshifted"|15|Special|{1}{W}|Creature — Human Soldier|1|2| +Errant Ephemeron|Time Spiral|60|C|{6}{U}|Creature — Illusion|4|4| +Corpulent Corpse|Time Spiral|98|C|{5}{B}|Creature — Zombie|3|3| +Cockatrice|Time Spiral "Timeshifted"|75|Special|{3}{G}{G}|Creature — Cockatrice|2|4| +Conspiracy|Time Spiral "Timeshifted"|39|Special|{3}{B}{B}|Enchantment||| +Rift Bolt|Time Spiral|176|C|{2}{R}|Sorcery||| +Tribal Flames|Time Spiral "Timeshifted"|70|Special|{1}{R}|Sorcery||| +Desolation Giant|Time Spiral "Timeshifted"|57|Special|{2}{R}{R}|Creature — Giant|3|3| +Drifter il-Dal|Time Spiral|59|C|{U}|Creature — Human Wizard|2|1| +Darkness|Time Spiral "Timeshifted"|40|Special|{B}|Instant||| +Leviathan|Time Spiral "Timeshifted"|23|Special|{5}{U}{U}{U}{U}|Creature — Leviathan|10|10| +Eron the Relentless|Time Spiral "Timeshifted"|61|Special|{3}{R}{R}|Legendary Creature — Human Rogue|5|2| +Stupor|Time Spiral "Timeshifted"|48|Special|{2}{B}|Sorcery||| +Spike Feeder|Time Spiral "Timeshifted"|84|Special|{1}{G}{G}|Creature — Spike|0|0| +Pirate Ship|Time Spiral "Timeshifted"|28|Special|{4}{U}|Creature — Human Pirate|4|3| +Plunder|Time Spiral|174|C|{4}{R}|Sorcery||| +Avatar of Woe|Time Spiral "Timeshifted"|37|Special|{6}{B}{B}|Creature — Avatar|6|5| +Calciform Pools|Time Spiral|270|U||Land||| +Thunder Totem|Time Spiral|265|U|{3}|Artifact||| +Mindless Automaton|Time Spiral "Timeshifted"|111|Special|{4}|Artifact Creature — Construct|0|0| +Sindbad|Time Spiral "Timeshifted"|31|Special|{1}{U}|Creature — Human|1|1| +Skyknight Legionnaire|Ravnica: City of Guilds|232|C|{1}{R}{W}|Creature — Human Knight|2|2| +Dementia Sliver|Time Spiral|236|U|{3}{U}{B}|Creature — Sliver|3|3| +Stronghold Overseer|Time Spiral|133|R|{3}{B}{B}{B}|Creature — Demon|5|5| +Call of the Herd|Time Spiral "Timeshifted"|74|Special|{2}{G}|Sorcery||| +Clockspinning|Time Spiral|53|C|{U}|Instant||| +Stormbind|Time Spiral "Timeshifted"|102|Special|{1}{R}{G}|Enchantment||| +Thrill of the Hunt|Time Spiral|229|C|{G}|Instant||| +Void|Time Spiral "Timeshifted"|105|Special|{3}{B}{R}|Sorcery||| +Spined Sliver|Time Spiral "Timeshifted"|101|Special|{R}{G}|Creature — Sliver|2|2| +Spirit Loop|Time Spiral|42|U|{1}{W}|Enchantment — Aura||| +Whirling Dervish|Time Spiral "Timeshifted"|90|Special|{G}{G}|Creature — Human Monk|1|1| +Krosan Cloudscraper|Time Spiral "Timeshifted"|82|Special|{7}{G}{G}{G}|Creature — Beast Mutant|13|13| +Sulfurous Blast|Time Spiral|180|U|{2}{R}{R}|Instant||| +Pardic Dragon|Time Spiral|173|R|{4}{R}{R}|Creature — Dragon|4|4| +Verdeloth the Ancient|Time Spiral "Timeshifted"|88|Special|{4}{G}{G}|Legendary Creature — Treefolk|4|7| +Spike Tiller|Time Spiral|218|R|{3}{G}{G}|Creature — Spike|0|0| +Claws of Gix|Time Spiral "Timeshifted"|107|Special|{0}|Artifact||| +Careful Consideration|Time Spiral|52|U|{2}{U}{U}|Instant||| +Mystic Snake|Time Spiral "Timeshifted"|97|Special|{1}{G}{U}{U}|Creature — Snake|2|2| +Feldon's Cane|Time Spiral "Timeshifted"|109|Special|{1}|Artifact||| +Bonesplitter Sliver|Time Spiral|149|C|{3}{R}|Creature — Sliver|2|2| +Squall Line|Time Spiral|222|R|{X}{G}{G}|Instant||| +Thick-Skinned Goblin|Time Spiral|182|U|{1}{R}|Creature — Goblin Shaman|2|1| +Battery|Time Spiral "Timeshifted"|106|Special|{3}{G}|Sorcery||| +Harmonic Sliver|Time Spiral|240|U|{1}{G}{W}|Creature — Sliver|1|1| +Spell Burst|Time Spiral|79|U|{X}{U}|Instant||| +Grinning Totem|Time Spiral "Timeshifted"|110|Special|{4}|Artifact||| +Return to Dust|Time Spiral|39|U|{2}{W}{W}|Instant||| +Strangling Soot|Time Spiral|132|C|{2}{B}|Instant||| +Opaline Sliver|Time Spiral|244|U|{1}{W}{U}|Creature — Sliver|2|2| +Desert|Time Spiral "Timeshifted"|118|Special||Land — Desert||| +Riftwing Cloudskate|Time Spiral|73|U|{3}{U}{U}|Creature — Illusion|2|2| +Tormod's Crypt|Time Spiral "Timeshifted"|115|Special|{0}|Artifact||| +Ghostflame Sliver|Time Spiral|239|U|{B}{R}|Creature — Sliver|2|2| +Coalition Victory|Time Spiral "Timeshifted"|91|Special|{3}{W}{U}{B}{R}{G}|Sorcery||| +Faceless Devourer|Time Spiral|108|U|{2}{B}|Creature — Nightmare Horror|2|1| +Paradox Haze|Time Spiral|71|U|{2}{U}|Enchantment — Aura||| +Fury Sliver|Time Spiral|157|U|{5}{R}|Creature — Sliver|3|3| +Sol'kanar the Swamp King|Time Spiral "Timeshifted"|100|Special|{2}{U}{B}{R}|Legendary Creature — Demon|5|5| +Mirari|Time Spiral "Timeshifted"|112|Special|{5}|Legendary Artifact||| +The Rack|Time Spiral "Timeshifted"|113|Special|{1}|Artifact||| +Nantuko Shaman|Time Spiral|208|C|{2}{G}|Creature — Insect Shaman|3|2| +Firewake Sliver|Time Spiral|238|U|{1}{R}{G}|Creature — Sliver|1|1| +Reiterate|Time Spiral|175|R|{1}{R}{R}|Instant||| +Serrated Arrows|Time Spiral "Timeshifted"|114|Special|{4}|Artifact||| +Haunting Hymn|Time Spiral|112|U|{4}{B}{B}|Instant||| +Momentary Blink|Time Spiral|29|C|{1}{W}|Instant||| +Empty the Warrens|Time Spiral|152|C|{3}{R}|Sorcery||| +Dodecapod|Time Spiral "Timeshifted"|108|Special|{4}|Artifact Creature — Golem|3|3| +Arena|Time Spiral "Timeshifted"|117|Special||Land||| +Deadwood Treefolk|Planar Chaos|126|U|{5}{G}|Creature — Treefolk|3|6| +Ivory Giant|Time Spiral|24|C|{5}{W}{W}|Creature — Giant|3|4| +Gaea's Liege|Time Spiral "Timeshifted"|78|Special|{3}{G}{G}{G}|Creature — Avatar|*|*| +Thornscape Battlemage|Time Spiral "Timeshifted"|87|Special|{2}{G}|Creature — Elf Wizard|2|2| +Lightning Angel|Time Spiral "Timeshifted"|94|Special|{1}{R}{W}{U}|Creature — Angel|3|4| +Craw Giant|Time Spiral "Timeshifted"|76|Special|{3}{G}{G}{G}{G}|Creature — Giant|6|4| +Ancient Grudge|Time Spiral|143|C|{1}{R}|Instant||| +Jaya Ballard, Task Mage|Time Spiral|166|R|{1}{R}{R}|Legendary Creature — Human Spellshaper|2|2| +Nicol Bolas|Time Spiral "Timeshifted"|98|Special|{2}{U}{U}{B}{B}{R}{R}|Legendary Creature — Elder Dragon|7|7| +Pendelhaven|Time Spiral "Timeshifted"|120|Special||Legendary Land||| +Ignite Memories|Time Spiral|164|U|{4}{R}|Sorcery||| +War Barge|Time Spiral "Timeshifted"|116|Special|{4}|Artifact||| +Phthisis|Time Spiral|122|U|{3}{B}{B}{B}{B}|Sorcery||| +Vhati il-Dal|Time Spiral "Timeshifted"|104|Special|{2}{B}{G}|Legendary Creature — Human Warrior|3|3| +Gemstone Mine|Time Spiral "Timeshifted"|119|Special||Land||| +Barbed Shocker|Time Spiral|144|U|{3}{R}|Creature — Insect|2|2| +Might of Old Krosa|Time Spiral|204|U|{G}|Instant||| +Jasmine Boreal|Time Spiral "Timeshifted"|93|Special|{3}{G}{W}|Legendary Creature — Human|4|5| +Vesuvan Shapeshifter|Time Spiral|90|R|{3}{U}{U}|Creature — Shapeshifter|0|0| +Verdant Embrace|Time Spiral|232|R|{3}{G}{G}|Enchantment — Aura||| +Trickbind|Time Spiral|88|R|{1}{U}|Instant||| +Dust Corona|Planar Chaos|97|C|{R}|Enchantment — Aura||| +Chronosavant|Time Spiral|9|R|{5}{W}|Creature — Giant|5|5| +Waning Wurm|Planar Chaos|83|U|{3}{B}|Creature — Zombie Wurm|7|6| +Angel's Grace|Time Spiral|3|R|{W}|Instant||| +Evangelize|Time Spiral|16|R|{4}{W}|Sorcery||| +Primal Forcemage|Time Spiral|212|U|{2}{G}|Creature — Elf Shaman|2|2| +Plated Pegasus|Time Spiral|34|U|{2}{W}|Creature — Pegasus|1|2| +Coral Trickster|Time Spiral|54|C|{1}{U}|Creature — Merfolk Rogue|2|1| +Griffin Guide|Time Spiral|21|U|{2}{W}|Enchantment — Aura||| +Walk the Aeons|Time Spiral|93|R|{4}{U}{U}|Sorcery||| +Scarwood Treefolk|Time Spiral|214|C|{3}{G}|Creature — Treefolk|3|5| +Children of Korlis|Time Spiral|8|C|{W}|Creature — Human Rebel Cleric|1|1| +Fledgling Mawcor|Time Spiral|63|U|{3}{U}|Creature — Beast|2|2| +Pentarch Paladin|Time Spiral|32|R|{2}{W}{W}{W}|Creature — Human Knight|3|3| +Cradle to Grave|Planar Chaos|67|C|{1}{B}|Instant||| +Sandstorm Eidolon|Dissension|70|C|{3}{R}|Creature — Spirit|2|2| +Verdant Eidolon|Dissension|100|C|{3}{G}|Creature — Spirit|2|2| +Aurora Eidolon|Dissension|1|C|{3}{W}|Creature — Spirit|2|2| +Enigma Eidolon|Dissension|24|C|{3}{U}|Creature — Spirit|2|2| +Entropic Eidolon|Dissension|45|C|{3}{B}|Creature — Spirit|2|2| +Bogardan Hellkite|Time Spiral|147|R|{6}{R}{R}|Creature — Dragon|5|5| +Might Sliver|Time Spiral|205|U|{4}{G}|Creature — Sliver|2|2| +Deadly Grub|Planar Chaos|69|C|{2}{B}|Creature — Insect|3|1| +Greater Gargadon|Time Spiral|161|R|{9}{R}|Creature — Beast|9|7| +Curse of the Cabal|Time Spiral|99|R|{9}{B}|Sorcery||| +Quilled Sliver|Time Spiral|37|U|{1}{W}|Creature — Sliver|1|1| +Lavacore Elemental|Planar Chaos|103|U|{2}{R}|Creature — Elemental|5|3| +Draining Whelk|Time Spiral|57|R|{4}{U}{U}|Creature — Illusion|1|1| +Mystical Teachings|Time Spiral|69|C|{3}{U}|Instant||| +Mistform Ultimus|Time Spiral "Timeshifted"|26|Special|{3}{U}|Legendary Creature — Illusion|3|3| +Firemaw Kavu|Time Spiral|153|U|{5}{R}|Creature — Kavu|4|2| +Chronozoa|Planar Chaos|37|R|{3}{U}|Creature — Illusion|3|3| +Sporesower Thallid|Time Spiral|220|U|{2}{G}{G}|Creature — Fungus|4|4| +Viashino Bladescout|Time Spiral|185|C|{1}{R}{R}|Creature — Viashino Scout|2|1| +Spinneret Sliver|Time Spiral|219|C|{1}{G}|Creature — Sliver|2|2| +Voidmage Husher|Time Spiral|92|U|{3}{U}|Creature — Human Wizard|2|2| +Nightshade Assassin|Time Spiral|121|U|{2}{B}{B}|Creature — Human Assassin|2|1| +Viscid Lemures|Time Spiral|141|C|{4}{B}|Creature — Spirit|4|3| +Pendelhaven Elder|Time Spiral|209|U|{1}{G}|Creature — Elf Shaman|1|1| +Telekinetic Sliver|Time Spiral|84|U|{2}{U}{U}|Creature — Sliver|2|2| +Rakdos Pit Dragon|Dissension|69|R|{2}{R}{R}|Creature — Dragon|3|3| +Ζthermage's Touch|Dissension|101|R|{2}{W}{U}|Instant||| +Wrecking Ball|Dissension|139|C|{2}{B}{R}|Instant||| +Fertile Imagination|Dissension|84|U|{2}{G}{G}|Sorcery||| +Simic Sky Swallower|Dissension|130|R|{5}{G}{U}|Creature — Leviathan|6|6| +Sprouting Phytohydra|Dissension|95|R|{4}{G}|Creature — Plant Hydra|0|2| +Beacon Hawk|Dissension|3|C|{1}{W}|Creature — Bird|1|1| +Wakestone Gargoyle|Dissension|21|R|{3}{W}|Creature — Gargoyle|3|4| +Flaring Flame-Kin|Dissension|62|U|{2}{R}|Creature — Elemental Warrior|2|2| +Azorius Ζthermage|Dissension|104|U|{1}{W}{U}|Creature — Human Wizard|1|1| +Drekavac|Dissension|43|U|{1}{B}|Creature — Beast|3|3| +Magewright's Stone|Dissension|162|U|{2}|Artifact||| +Ignorant Bliss|Dissension|64|U|{1}{R}|Instant||| +Slithering Shade|Dissension|55|U|{B}|Creature — Shade|0|1| +Ancestral Vision|Time Spiral|48|R||Sorcery||| +Deep-Sea Kraken|Time Spiral|56|R|{7}{U}{U}{U}|Creature — Kraken|6|6| +Cloudchaser Kestrel|Time Spiral|10|C|{1}{W}{W}|Creature — Bird|2|2| +Amrou Seekers|Time Spiral|2|C|{2}{W}|Creature — Kithkin Rebel|2|2| +Norin the Wary|Time Spiral|171|R|{R}|Legendary Creature — Human Warrior|2|1| +Locket of Yesterdays|Time Spiral|258|U|{1}|Artifact||| +D'Avenant Healer|Time Spiral|11|C|{1}{W}{W}|Creature — Human Cleric Archer|1|2| +Serra Avenger|Time Spiral|40|R|{W}{W}|Creature — Angel|3|3| +Restore Balance|Time Spiral|38|R||Sorcery||| +Living End|Time Spiral|115|R||Sorcery||| +Lim-Dϋl the Necromancer|Time Spiral|114|R|{5}{B}{B}|Legendary Creature — Human Wizard|4|4| +Cancel|Time Spiral|51|C|{1}{U}{U}|Instant||| +Sudden Spoiling|Time Spiral|135|R|{1}{B}{B}|Instant||| +Endrek Sahr, Master Breeder|Time Spiral|106|R|{4}{B}|Legendary Creature — Human Wizard|2|2| +Wheel of Fate|Time Spiral|187|R||Sorcery||| +Candles of Leng|Time Spiral|250|R|{2}|Artifact||| +Clockwork Hydra|Time Spiral|253|U|{5}|Artifact Creature — Hydra|0|0| +Smallpox|Time Spiral|131|U|{B}{B}|Sorcery||| +Hypergenesis|Time Spiral|201|R||Sorcery||| +Kaervek the Merciless|Time Spiral|242|R|{5}{B}{R}|Legendary Creature — Human Shaman|5|4| +Glass Asp|Time Spiral|197|C|{1}{G}{G}|Creature — Snake|2|1| +Mishra, Artificer Prodigy|Time Spiral|243|R|{1}{U}{B}{R}|Legendary Creature — Human Artificer|4|4| +Saffi Eriksdotter|Time Spiral|245|R|{G}{W}|Legendary Creature — Human Scout|2|2| +Dralnu, Lich Lord|Time Spiral|237|R|{3}{U}{B}|Legendary Creature — Zombie Wizard|3|3| +Lovisa Coldeyes|Coldsnap|90|R|{3}{R}{R}|Legendary Creature — Human Barbarian|3|3| +Vesuva|Time Spiral|281|R||Land||| +Kher Keep|Time Spiral|275|R||Legendary Land||| +Ζtherflame Wall|Time Spiral|142|C|{1}{R}|Creature — Wall|0|4| +Psionic Sliver|Time Spiral|72|R|{4}{U}|Creature — Sliver|2|2| +Mangara of Corondor|Time Spiral|28|R|{1}{W}{W}|Legendary Creature — Human Wizard|1|1| +Lightning Axe|Time Spiral|168|C|{R}|Instant||| +Jedit's Dragoons|Time Spiral|25|C|{5}{W}|Creature — Cat Soldier|2|5| +Pulmonic Sliver|Time Spiral|36|R|{3}{W}{W}|Creature — Sliver|3|3| +Unyaro Bees|Time Spiral|231|R|{G}{G}{G}|Creature — Insect|0|1| +Wormwood Dryad|Time Spiral|233|C|{2}{G}|Creature — Dryad|3|1| +Subterranean Shambler|Time Spiral|178|C|{3}{R}|Creature — Elemental|2|3| +Castle Raptors|Time Spiral|5|C|{4}{W}|Creature — Bird Soldier|3|3| +Viscerid Deepwalker|Time Spiral|91|C|{4}{U}|Creature — Homarid Warrior|2|3| +Tectonic Fiend|Time Spiral|181|U|{4}{R}{R}|Creature — Elemental|7|7| +Coal Stoker|Time Spiral|150|C|{3}{R}|Creature — Elemental|3|3| +Amrou Scout|Time Spiral|1|C|{1}{W}|Creature — Kithkin Rebel Scout|2|1| +Orcish Cannonade|Time Spiral|172|C|{1}{R}{R}|Instant||| +Ith, High Arcanist|Time Spiral|241|R|{5}{W}{U}|Legendary Creature — Human Wizard|3|5| +Lotus Bloom|Time Spiral|259|R||Artifact||| +Ashcoat Bear|Time Spiral|190|C|{1}{G}|Creature — Bear|2|2| +Fallen Ideal|Time Spiral|109|U|{2}{B}|Enchantment — Aura||| +Conflagrate|Time Spiral|151|U|{X}{X}{R}|Sorcery||| +Sudden Shock|Time Spiral|179|U|{1}{R}|Instant||| +Ib Halfheart, Goblin Tactician|Time Spiral|163|R|{3}{R}|Legendary Creature — Goblin Advisor|3|2| +Swarmyard|Time Spiral|278|R||Land||| +Molder|Time Spiral|206|C|{X}{G}|Instant||| +Cyclopean Giant|Time Spiral|100|C|{2}{B}{B}|Creature — Zombie Giant|4|2| +Assembly-Worker|Time Spiral|248|U|{3}|Artifact Creature — Assembly-Worker|2|2| +Wurmcalling|Time Spiral|234|R|{X}{G}|Sorcery||| +Assassinate|Time Spiral|95|C|{2}{B}|Sorcery||| +Triskelavus|Time Spiral|266|R|{7}|Artifact Creature — Construct|1|1| +Sarpadian Empires, Vol. VII|Time Spiral|263|R|{3}|Artifact||| +Errant Doomsayers|Time Spiral|15|C|{1}{W}|Creature — Human Rebel|1|1| +Thallid Germinator|Time Spiral|225|C|{2}{G}|Creature — Fungus|2|2| +Sengir Nosferatu|Time Spiral|128|R|{3}{B}{B}|Creature — Vampire|4|4| +Urza's Factory|Time Spiral|280|U||Land — Urza’s||| +Slipstream Serpent|Time Spiral|77|C|{7}{U}|Creature — Serpent|6|6| +Sprite Noble|Time Spiral|81|R|{1}{U}{U}|Creature — Faerie|2|2| +Hivestone|Time Spiral|256|R|{2}|Artifact||| +Moonlace|Time Spiral|68|R|{U}|Instant||| +Pit Keeper|Time Spiral|123|C|{1}{B}|Creature — Human Wizard|2|1| +Dread Return|Time Spiral|104|U|{2}{B}{B}|Sorcery||| +Ironclaw Buzzardiers|Time Spiral|165|C|{2}{R}|Creature — Orc Scout|2|2| +Stuffy Doll|Time Spiral|264|R|{5}|Artifact Creature — Construct|0|1| +Academy Ruins|Time Spiral|269|R||Legendary Land||| +Tromp the Domains|Time Spiral|230|U|{5}{G}|Sorcery||| +Psychotic Episode|Time Spiral|126|C|{1}{B}{B}|Sorcery||| +Detainment Spell|Time Spiral|12|C|{W}|Enchantment — Aura||| +Strength in Numbers|Time Spiral|224|C|{1}{G}|Instant||| +Thallid Shell-Dweller|Time Spiral|226|C|{1}{G}|Creature — Fungus|0|5| +Fortify|Time Spiral|19|C|{2}{W}|Instant||| +Flagstones of Trokair|Time Spiral|272|R||Legendary Land||| +Tivadar of Thorn|Time Spiral|44|R|{1}{W}{W}|Legendary Creature — Human Knight|2|2| +Thelon of Havenwood|Time Spiral|227|R|{G}{G}|Legendary Creature — Elf Druid|2|2| +Mogg War Marshal|Time Spiral|170|C|{1}{R}|Creature — Goblin Warrior|1|1| +Aspect of Mongoose|Time Spiral|191|U|{1}{G}|Enchantment — Aura||| +Sangrophage|Time Spiral|127|C|{B}{B}|Creature — Zombie|3|3| +Nether Traitor|Time Spiral|120|R|{B}{B}|Creature — Spirit|1|1| +Deathspore Thallid|Time Spiral|102|C|{1}{B}|Creature — Zombie Fungus|1|1| +Scion of the Ur-Dragon|Time Spiral|246|R|{W}{U}{B}{R}{G}|Legendary Creature — Dragon Avatar|4|4| +Opal Guardian|Time Spiral|30|R|{W}{W}{W}|Enchantment||| +Plague Sliver|Time Spiral|124|R|{2}{B}{B}|Creature — Sliver|5|5| +Mindlash Sliver|Time Spiral|118|C|{B}|Creature — Sliver|1|1| +Phantom Wurm|Time Spiral|211|U|{4}{G}{G}|Creature — Wurm Spirit|2|0| +Word of Seizing|Time Spiral|188|R|{3}{R}{R}|Instant||| +Spectral Force|Time Spiral|217|R|{3}{G}{G}|Creature — Elemental Spirit|8|8| +Demonic Collusion|Time Spiral|103|R|{3}{B}{B}|Sorcery||| +Herd Gnarr|Time Spiral|200|C|{3}{G}|Creature — Beast|2|2| +Terramorphic Expanse|Time Spiral|279|C||Land||| +Brass Gnat|Time Spiral|249|C|{1}|Artifact Creature — Insect|1|1| +Skittering Monstrosity|Time Spiral|129|U|{3}{B}{B}|Creature — Horror|5|5| +Jhoira's Timebug|Time Spiral|257|C|{2}|Artifact Creature — Insect|1|2| +Prismatic Lens|Time Spiral|262|C|{2}|Artifact||| +Fungus Sliver|Time Spiral|195|R|{3}{G}|Creature — Fungus Sliver|2|2| +Grapeshot|Time Spiral|160|C|{1}{R}|Sorcery||| +Basalt Gargoyle|Time Spiral|145|U|{2}{R}|Creature — Gargoyle|3|2| +Yavimaya Dryad|Time Spiral|235|U|{1}{G}{G}|Creature — Dryad|2|1| +Temporal Eddy|Time Spiral|85|C|{2}{U}{U}|Sorcery||| +Mwonvuli Acid-Moss|Time Spiral|207|C|{2}{G}{G}|Sorcery||| +Stonewood Invocation|Time Spiral|223|R|{3}{G}|Instant||| +Chromatic Star|Time Spiral|251|C|{1}|Artifact||| +Dark Withering|Time Spiral|101|C|{4}{B}{B}|Instant||| +Durkwood Tracker|Time Spiral|194|U|{4}{G}|Creature — Giant|4|3| +Stormcloud Djinn|Time Spiral|82|U|{4}{U}|Creature — Djinn|3|3| +Brine Elemental|Time Spiral|50|U|{4}{U}{U}|Creature — Elemental|5|4| +Skulking Knight|Time Spiral|130|C|{2}{B}|Creature — Zombie Knight|3|3| +Penumbra Spider|Time Spiral|210|C|{2}{G}{G}|Creature — Spider|2|4| +Vampiric Sliver|Time Spiral|140|U|{3}{B}|Creature — Sliver|3|3| +Bewilder|Time Spiral|49|C|{2}{U}|Instant||| +Outrider en-Kor|Time Spiral|31|U|{2}{W}|Creature — Kor Rebel Knight|2|2| +Swamp|Time Spiral|293|L||Basic Land — Swamp||| +Swamp|Time Spiral|292|L||Basic Land — Swamp||| +Island|Time Spiral|289|L||Basic Land — Island||| +Forest|Time Spiral|301|L||Basic Land — Forest||| +Knight of the Holy Nimbus|Time Spiral|26|U|{W}{W}|Creature — Human Rebel Knight|2|2| +Sidewinder Sliver|Time Spiral|41|C|{W}|Creature — Sliver|1|1| +Truth or Tale|Time Spiral|89|U|{1}{U}|Instant||| +Wipe Away|Time Spiral|94|U|{1}{U}{U}|Instant||| +Fathom Seer|Time Spiral|62|C|{1}{U}|Creature — Illusion|1|3| +Spiketail Drakeling|Time Spiral|80|C|{1}{U}{U}|Creature — Drake|2|2| +Sage of Epityr|Time Spiral|74|C|{U}|Creature — Human Wizard|1|1| +Stonebrow, Krosan Hero|Time Spiral|247|R|{3}{R}{G}|Legendary Creature — Centaur Warrior|4|4| +Sedge Sliver|Time Spiral|177|R|{2}{R}|Creature — Sliver|2|2| +Looter il-Kor|Time Spiral|66|C|{1}{U}|Creature — Kor Rogue|1|1| +Mountain|Time Spiral|294|L||Basic Land — Mountain||| +Gemhide Sliver|Time Spiral|196|C|{1}{G}|Creature — Sliver|1|1| +Gorgon Recluse|Time Spiral|111|C|{3}{B}{B}|Creature — Gorgon|2|4| +Scryb Ranger|Time Spiral|215|U|{1}{G}|Creature — Faerie|1|1| +Chameleon Blur|Time Spiral|192|C|{3}{G}|Instant||| +Mountain|Time Spiral|297|L||Basic Land — Mountain||| +Forest|Time Spiral|300|L||Basic Land — Forest||| +Deathmark|Coldsnap|54|U|{B}|Sorcery||| +Phyrexian Etchings|Coldsnap|67|R|{B}{B}{B}|Enchantment||| +Coldsteel Heart|Coldsnap|136|U|{2}|Snow Artifact||| +Tresserhorn Sinks|Coldsnap|150|U||Snow Land||| +Garza Zol, Plague Queen|Coldsnap|129|R|{4}{U}{B}{R}|Legendary Creature — Vampire|5|5| +Phyrexian Ironfoot|Coldsnap|139|U|{3}|Snow Artifact Creature — Construct|3|4| +Void Maw|Coldsnap|74|R|{4}{B}{B}|Creature — Horror|4|5| +Snow-Covered Island|Coldsnap|152|C||Basic Snow Land — Island||| +Martyr of Bones|Coldsnap|65|C|{B}|Creature — Human Wizard|1|1| +Frost Raptor|Coldsnap|34|C|{2}{U}|Snow Creature — Bird|2|2| +Gristle Grinner|Coldsnap|59|U|{4}{B}|Creature — Zombie|3|3| +Rimebound Dead|Coldsnap|69|C|{B}|Snow Creature — Skeleton|1|1| +Feast of Flesh|Coldsnap|56|C|{B}|Sorcery||| +Diamond Faerie|Coldsnap|128|R|{2}{G}{W}{U}|Snow Creature — Faerie|3|3| +Hibernation's End|Coldsnap|110|R|{4}{G}|Enchantment||| +Cover of Winter|Coldsnap|3|R|{2}{W}|Snow Enchantment||| +Mystic Melting|Coldsnap|114|U|{3}{G}|Instant||| +Phyrexian Snowcrusher|Coldsnap|140|U|{6}|Snow Artifact Creature — Juggernaut|6|5| +Icefall|Coldsnap|85|C|{2}{R}{R}|Sorcery||| +Ohran Yeti|Coldsnap|93|C|{3}{R}|Snow Creature — Yeti|3|3| +Martyr of Spores|Coldsnap|113|C|{G}|Creature — Human Shaman|1|1| +Phobian Phantasm|Coldsnap|66|U|{1}{B}{B}|Creature — Illusion|3|3| +Heidar, Rimewind Master|Coldsnap|36|R|{4}{U}|Legendary Creature — Human Wizard|3|3| +Kjeldoran War Cry|Coldsnap|13|C|{1}{W}|Instant||| +Ursine Fylgja|Coldsnap|22|U|{4}{W}|Creature — Spirit Bear|3|3| +Blizzard Specter|Coldsnap|126|U|{2}{U}{B}|Snow Creature — Specter|2|3| +Bull Aurochs|Coldsnap|107|C|{1}{G}|Creature — Aurochs|2|1| +Luminesce|Coldsnap|14|U|{W}|Instant||| +Zombie Musher|Coldsnap|75|C|{3}{B}|Snow Creature — Zombie|2|3| +Dark Depths|Coldsnap|145|R||Legendary Snow Land||| +Sound the Call|Coldsnap|123|C|{2}{G}|Sorcery||| +Allosaurus Rider|Coldsnap|101|R|{5}{G}{G}|Creature — Elf Warrior|1+*|1+*| +Arctic Flats|Coldsnap|143|U||Snow Land||| +Counterbalance|Coldsnap|31|U|{U}{U}|Enchantment||| +Phyrexian Soulgorger|Coldsnap|141|R|{3}|Snow Artifact Creature — Construct|8|8| +Zur the Enchanter|Coldsnap|135|R|{1}{W}{U}{B}|Legendary Creature — Human Wizard|1|4| +Magmatic Core|Coldsnap|91|U|{2}{R}{R}|Enchantment||| +Martyr of Frost|Coldsnap|40|C|{U}|Creature — Human Wizard|1|1| +Soul Spike|Coldsnap|70|R|{5}{B}{B}|Instant||| +Cryoclasm|Coldsnap|79|U|{2}{R}|Sorcery||| +Martyr of Ashes|Coldsnap|92|C|{R}|Creature — Human Shaman|1|1| +Juniper Order Ranger|Coldsnap|130|U|{3}{G}{W}|Creature — Human Knight|2|4| +Thermopod|Coldsnap|100|C|{4}{R}|Snow Creature — Slug|4|3| +Drelnoch|Coldsnap|32|C|{4}{U}|Creature — Yeti Mutant|3|3| +Balduvian Frostwaker|Coldsnap|28|U|{2}{U}|Creature — Human Wizard|1|1| +Ronom Serpent|Coldsnap|45|C|{5}{U}|Snow Creature — Serpent|5|6| +Karplusan Wolverine|Coldsnap|87|C|{R}|Snow Creature — Wolverine Beast|1|1| +Fury of the Horde|Coldsnap|81|R|{5}{R}{R}|Sorcery||| +Simian Brawler|Coldsnap|122|C|{3}{G}|Creature — Ape Warrior|3|3| +Rimescale Dragon|Coldsnap|95|R|{5}{R}{R}|Snow Creature — Dragon|5|5| +Goblin Furrier|Coldsnap|82|C|{1}{R}|Creature — Goblin Warrior|2|2| +Vanish into Memory|Coldsnap|133|U|{2}{W}{U}|Instant||| +Kjeldoran Outrider|Coldsnap|12|C|{1}{W}|Creature — Human Soldier|2|2| +Boreal Shelf|Coldsnap|144|U||Snow Land||| +Chill to the Bone|Coldsnap|52|C|{3}{B}|Instant||| +Wilderness Elemental|Coldsnap|134|U|{1}{R}{G}|Creature — Elemental|*|3| +Snow-Covered Forest|Coldsnap|155|C||Basic Snow Land — Forest||| +Boreal Druid|Coldsnap|105|C|{G}|Snow Creature — Elf Druid|1|1| +Gutless Ghoul|Coldsnap|60|C|{2}{B}|Snow Creature — Zombie|2|2| +Tresserhorn Skyknight|Coldsnap|73|U|{5}{B}{B}|Creature — Zombie Knight|5|3| +Adarkar Valkyrie|Coldsnap|1|R|{4}{W}{W}|Snow Creature — Angel|4|5| +Frostweb Spider|Coldsnap|109|C|{2}{G}|Snow Creature — Spider|1|3| +Jokulmorder|Coldsnap|37|R|{4}{U}{U}{U}|Creature — Leviathan|12|12| +Into the North|Coldsnap|111|C|{1}{G}|Sorcery||| +Boreal Centaur|Coldsnap|104|C|{1}{G}|Snow Creature — Centaur Warrior|2|2| +Scrying Sheets|Coldsnap|149|R||Snow Land||| +Surging Might|Coldsnap|125|C|{2}{G}|Enchantment — Aura||| +Volcanic Awakening|Time Spiral|186|U|{4}{R}{R}|Sorcery||| +Kjeldoran Gargoyle|Coldsnap|10|U|{5}{W}|Creature — Gargoyle|3|3| +Greater Stone Spirit|Coldsnap|84|U|{4}{R}{R}|Creature — Elemental Spirit|4|4| +Rimehorn Aurochs|Coldsnap|118|U|{4}{G}|Snow Creature — Aurochs|3|3| +Glacial Plating|Coldsnap|7|U|{2}{W}{W}|Snow Enchantment — Aura||| +Frost Marsh|Coldsnap|146|U||Snow Land||| +Gelid Shackles|Coldsnap|6|C|{W}|Snow Enchantment — Aura||| +Karplusan Strider|Coldsnap|112|U|{3}{G}|Creature — Yeti|3|4| +Rimewind Cryomancer|Coldsnap|43|U|{3}{U}|Creature — Human Wizard|2|3| +White Shield Crusader|Coldsnap|24|U|{W}{W}|Creature — Human Knight|2|1| +Rite of Flame|Coldsnap|96|C|{R}|Sorcery||| +Flashfreeze|Coldsnap|33|U|{1}{U}|Instant||| +Goblin Rimerunner|Coldsnap|83|C|{2}{R}|Snow Creature — Goblin Warrior|2|2| +Lightning Serpent|Coldsnap|88|R|{X}{R}|Creature — Elemental Serpent|2|1| +Disciple of Tevesh Szat|Coldsnap|55|C|{2}{B}{B}|Creature — Human Cleric|3|1| +Resize|Coldsnap|117|U|{1}{G}|Instant||| +Survivor of the Unseen|Coldsnap|48|C|{2}{U}|Creature — Human Wizard|2|1| +Wall of Shards|Coldsnap|23|U|{1}{W}|Snow Creature — Wall|1|8| +Krovikan Scoundrel|Coldsnap|64|C|{1}{B}|Creature — Human Rogue|2|1| +Frozen Solid|Coldsnap|35|C|{1}{U}{U}|Enchantment — Aura||| +Arctic Nishoba|Coldsnap|102|U|{5}{G}|Creature — Cat Warrior|6|6| +Woolly Razorback|Coldsnap|25|R|{2}{W}{W}|Creature — Boar Beast|7|7| +Orcish Bloodpainter|Coldsnap|94|C|{2}{R}|Creature — Orc Shaman|2|1| +Snow-Covered Mountain|Coldsnap|154|C||Basic Snow Land — Mountain||| +Mouth of Ronom|Coldsnap|148|U||Snow Land||| +Kjeldoran Javelineer|Coldsnap|11|C|{W}|Creature — Human Soldier|1|2| +Jφtun Owl Keeper|Coldsnap|9|U|{2}{W}|Creature — Giant|3|3| +Ronom Unicorn|Coldsnap|16|C|{1}{W}|Creature — Unicorn|2|2| +Perilous Research|Coldsnap|41|U|{1}{U}|Instant||| +Rimewind Taskmage|Coldsnap|44|C|{1}{U}|Creature — Human Wizard|1|2| +Steam Spitter|Coldsnap|124|U|{4}{G}|Creature — Spider|1|5| +Commandeer|Coldsnap|29|R|{5}{U}{U}|Instant||| +Boreal Griffin|Coldsnap|2|C|{3}{W}{W}|Snow Creature — Griffin|3|2| +Rune Snag|Coldsnap|46|C|{1}{U}|Instant||| +Balduvian Rage|Coldsnap|76|U|{X}{R}|Instant||| +Herald of Leshrac|Coldsnap|62|R|{6}{B}|Creature — Avatar|2|4| +Sunscour|Coldsnap|19|R|{5}{W}{W}|Sorcery||| +Stromgald Crusader|Coldsnap|71|U|{B}{B}|Creature — Zombie Knight|2|1| +Earthen Goo|Coldsnap|80|U|{2}{R}|Creature — Ooze|2|2| +Swift Maneuver|Coldsnap|21|C|{1}{W}|Instant||| +Snow-Covered Swamp|Coldsnap|153|C||Basic Snow Land — Swamp||| +Rime Transfusion|Coldsnap|68|U|{1}{B}|Snow Enchantment — Aura||| +Chilling Shade|Coldsnap|53|C|{2}{B}|Snow Creature — Shade|1|1| +Highland Weald|Coldsnap|147|U||Snow Land||| +Aurochs Herd|Coldsnap|103|C|{5}{G}|Creature — Aurochs|4|4| +Sek'Kuar, Deathkeeper|Coldsnap|131|R|{2}{B}{R}{G}|Legendary Creature — Orc Shaman|4|3| +Tamanoa|Coldsnap|132|R|{R}{G}{W}|Creature — Spirit|2|4| +Martyr of Sands|Coldsnap|15|C|{W}|Creature — Human Cleric|1|1| +Panglacial Wurm|Coldsnap|116|R|{5}{G}{G}|Creature — Wurm|9|5| +Field Marshal|Coldsnap|5|R|{1}{W}{W}|Creature — Human Soldier|2|2| +Ohran Viper|Coldsnap|115|R|{1}{G}{G}|Snow Creature — Snake|1|3| +Snow-Covered Plains|Coldsnap|151|C||Basic Snow Land — Plains||| +Adarkar Windform|Coldsnap|26|U|{4}{U}|Snow Creature — Illusion|3|3| +Surging Flame|Coldsnap|99|C|{1}{R}|Instant||| +Ronom Hulk|Coldsnap|119|C|{4}{G}|Creature — Beast|5|6| +Teferi, Mage of Zhalfir|Time Spiral|83|R|{2}{U}{U}{U}|Legendary Creature — Human Wizard|3|4| +Balduvian Fallen|Coldsnap|51|U|{3}{B}|Creature — Zombie|3|5| +Squall Drifter|Coldsnap|17|C|{1}{W}|Snow Creature — Elemental|1|1| +Krovikan Whispers|Coldsnap|39|U|{3}{U}|Enchantment — Aura||| +Sun's Bounty|Coldsnap|18|C|{1}{W}|Instant||| +Lightning Storm|Coldsnap|89|U|{1}{R}{R}|Instant||| +Haakon, Stromgald Scourge|Coldsnap|61|R|{1}{B}{B}|Legendary Creature — Zombie Knight|3|3| +Stalking Yeti|Coldsnap|98|U|{2}{R}{R}|Snow Creature — Yeti|3|3| +Krovikan Mist|Coldsnap|38|C|{1}{U}|Creature — Illusion|*|*| +Darien, King of Kjeldor|Coldsnap|4|R|{4}{W}{W}|Legendary Creature — Human Soldier|3|3| +Krovikan Rot|Coldsnap|63|U|{2}{B}|Instant||| +Garza's Assassin|Coldsnap|57|R|{B}{B}{B}|Creature — Human Assassin|2|2| +Surging Ζther|Coldsnap|47|C|{3}{U}|Instant||| +Surging Dementia|Coldsnap|72|C|{1}{B}|Sorcery||| +Brooding Saurian|Coldsnap|106|R|{2}{G}{G}|Creature — Lizard|4|4| +Balduvian Warlord|Coldsnap|77|U|{3}{R}|Creature — Human Barbarian|3|2| +Deepfire Elemental|Coldsnap|127|U|{4}{B}{R}|Creature — Elemental|4|4| +Freyalise's Radiance|Coldsnap|108|U|{1}{G}|Enchantment||| +Jester's Scepter|Coldsnap|137|R|{3}|Artifact||| +Sheltering Ancient|Coldsnap|121|U|{1}{G}|Creature — Treefolk|5|5| +Karplusan Minotaur|Coldsnap|86|R|{2}{R}{R}|Creature — Minotaur Warrior|3|3| +Vexing Sphinx|Coldsnap|50|R|{1}{U}{U}|Creature — Sphinx|4|4| +Shape of the Wiitigo|Coldsnap|120|R|{3}{G}{G}{G}|Enchantment — Aura||| +Jφtun Grunt|Coldsnap|8|U|{1}{W}|Creature — Giant Soldier|4|4| +Swamp|Time Spiral|291|L||Basic Land — Swamp||| +Island|Time Spiral|287|L||Basic Land — Island||| +Swamp|Time Spiral|290|L||Basic Land — Swamp||| +Sprout|Time Spiral|221|C|{G}|Instant||| +Mountain|Time Spiral|296|L||Basic Land — Mountain||| +Benalish Cavalry|Time Spiral|4|C|{1}{W}|Creature — Human Knight|2|2| +Forest|Time Spiral|299|L||Basic Land — Forest||| +Plains|Time Spiral|285|L||Basic Land — Plains||| +Plains|Time Spiral|284|L||Basic Land — Plains||| +Plains|Time Spiral|283|L||Basic Land — Plains||| +Forest|Time Spiral|298|L||Basic Land — Forest||| +Island|Time Spiral|288|L||Basic Land — Island||| +Mountain|Time Spiral|295|L||Basic Land — Mountain||| +Paradise Plume|Time Spiral|260|U|{4}|Artifact||| +Plains|Time Spiral|282|L||Basic Land — Plains||| +Gemstone Caverns|Time Spiral|274|R||Legendary Land||| +Island|Time Spiral|286|L||Basic Land — Island||| +Grim Harvest|Coldsnap|58|C|{1}{B}|Instant||| +Rimefeather Owl|Coldsnap|42|R|{5}{U}{U}|Snow Creature — Bird|*|*| +Surging Sentinels|Coldsnap|20|C|{2}{W}|Creature — Human Soldier|2|1| +Thermal Flux|Coldsnap|49|C|{U}|Instant||| +Skred|Coldsnap|97|C|{R}|Instant||| +Controvert|Coldsnap|30|U|{2}{U}{U}|Instant||| +Mishra's Bauble|Coldsnap|138|U|{0}|Artifact||| +Braid of Fire|Coldsnap|78|R|{1}{R}|Enchantment||| +Arcum Dagsson|Coldsnap|27|R|{3}{U}|Legendary Creature — Human Artificer|2|2| +Needlepeak Spider|Planar Chaos|105|C|{3}{R}|Creature — Spider|4|2| +Gossamer Phantasm|Planar Chaos|55|C|{1}{U}|Creature — Illusion|2|1| +Revered Dead|Planar Chaos|29|C|{1}{W}|Creature — Spirit Soldier|1|1| +Shrouded Lore|Planar Chaos|91|U|{B}|Sorcery||| +Rebuff the Wicked|Planar Chaos|12|U|{W}|Instant||| +Citanul Woodreaders|Planar Chaos|125|C|{2}{G}|Creature — Human Druid|1|4| +Giant Dustwasp|Planar Chaos|129|C|{3}{G}{G}|Creature — Insect|3|3| +Bog Serpent|Planar Chaos|84|C|{5}{B}|Creature — Serpent|5|5| +Pouncing Wurm|Planar Chaos|136|U|{3}{G}|Creature — Wurm|3|3| +Mana Tithe|Planar Chaos|25|C|{W}|Instant||| +Riptide Pilferer|Planar Chaos|60|U|{1}{U}|Creature — Merfolk Rogue|1|1| +Prodigal Pyromancer|Planar Chaos|118|C|{2}{R}|Creature — Human Wizard|1|1| +Mantle of Leadership|Planar Chaos|9|U|{1}{W}|Enchantment — Aura||| +Sunlance|Planar Chaos|31|C|{W}|Sorcery||| +Calciderm|Planar Chaos|23|U|{2}{W}{W}|Creature — Beast|5|5| +Harmonize|Planar Chaos|149|U|{2}{G}{G}|Sorcery||| +Vampiric Link|Planar Chaos|92|C|{B}|Enchantment — Aura||| +Gaea's Anthem|Planar Chaos|147|R|{1}{G}{G}|Enchantment||| +Timebender|Planar Chaos|50|U|{U}|Creature — Human Wizard|1|1| +Healing Leaves|Planar Chaos|150|C|{G}|Instant||| +Brute Force|Planar Chaos|116|C|{R}|Instant||| +Fa'adiyah Seer|Planar Chaos|146|C|{1}{G}|Creature — Human Shaman|1|1| +Shaper Parasite|Planar Chaos|46|C|{1}{U}{U}|Creature — Illusion|2|3| +Screeching Sliver|Time Spiral|75|C|{U}|Creature — Sliver|1|1| +Frozen Ζther|Planar Chaos|54|U|{3}{U}|Enchantment||| +Hedge Troll|Planar Chaos|151|U|{2}{G}|Creature — Troll Cleric|2|2| +Mirri the Cursed|Planar Chaos|75|R|{2}{B}{B}|Legendary Creature — Vampire Cat|3|2| +Benalish Commander|Planar Chaos|2|R|{3}{W}|Creature — Human Soldier|*|*| +Stormfront Riders|Planar Chaos|20|U|{4}{W}|Creature — Human Soldier|4|3| +Enslave|Planar Chaos|70|U|{4}{B}{B}|Enchantment — Aura||| +Sulfur Elemental|Planar Chaos|108|U|{2}{R}|Creature — Elemental|3|2| +Mire Boa|Planar Chaos|135|C|{1}{G}|Creature — Snake|2|1| +Damnation|Planar Chaos|85|R|{2}{B}{B}|Sorcery||| +Essence Warden|Planar Chaos|145|C|{G}|Creature — Elf Shaman|1|1| +Groundbreaker|Planar Chaos|148|R|{G}{G}{G}|Creature — Elemental|6|1| +Roiling Horror|Planar Chaos|79|R|{3}{B}{B}|Creature — Horror|*|*| +Akroma, Angel of Fury|Planar Chaos|94|R|{5}{R}{R}{R}|Legendary Creature — Angel|6|6| +Imp's Mischief|Planar Chaos|72|R|{1}{B}|Instant||| +Saltblast|Planar Chaos|15|U|{3}{W}{W}|Sorcery||| +Pyrohemia|Planar Chaos|119|U|{2}{R}{R}|Enchantment||| +Heroes Remembered|Planar Chaos|7|R|{6}{W}{W}{W}|Sorcery||| +Serendib Sorcerer|Planar Chaos|61|R|{1}{U}{U}|Creature — Human Wizard|1|1| +Aeon Chronicler|Planar Chaos|32|R|{3}{U}{U}|Creature — Avatar|*|*| +Keen Sense|Planar Chaos|152|U|{G}|Enchantment — Aura||| +Dichotomancy|Planar Chaos|38|R|{7}{U}{U}|Sorcery||| +Hunting Wilds|Planar Chaos|130|U|{3}{G}|Sorcery||| +Spellshift|Planar Chaos|47|R|{3}{U}|Instant||| +Wild Pair|Planar Chaos|144|R|{4}{G}{G}|Enchantment||| +Stonecloaker|Planar Chaos|19|U|{2}{W}|Creature — Gargoyle|3|2| +Whitemane Lion|Planar Chaos|22|C|{1}{W}|Creature — Cat|2|2| +Muck Drubb|Planar Chaos|76|U|{3}{B}{B}|Creature — Beast|3|3| +Malach of the Dawn|Planar Chaos|24|U|{2}{W}{W}|Creature — Angel|2|4| +Crovax, Ascendant Hero|Planar Chaos|3|R|{4}{W}{W}|Legendary Creature — Human|4|4| +Mycologist|Planar Chaos|27|U|{1}{W}|Creature — Human Druid|0|2| +Midnight Charm|Planar Chaos|74|C|{B}|Instant||| +Saltfield Recluse|Planar Chaos|16|C|{2}{W}|Creature — Human Rebel Cleric|1|2| +Fury Charm|Planar Chaos|100|C|{1}{R}|Instant||| +Brain Gorgers|Planar Chaos|65|C|{3}{B}|Creature — Zombie|4|2| +Synchronous Sliver|Planar Chaos|48|C|{4}{U}|Creature — Sliver|3|3| +Evolution Charm|Planar Chaos|127|C|{1}{G}|Instant||| +Wistful Thinking|Planar Chaos|53|C|{2}{U}|Sorcery||| +Vorosh, the Hunter|Planar Chaos|164|R|{3}{G}{U}{B}|Legendary Creature — Dragon|6|6| +Numot, the Devastator|Planar Chaos|160|R|{3}{R}{W}{U}|Legendary Creature — Dragon|6|6| +Fungal Behemoth|Planar Chaos|128|R|{3}{G}|Creature — Fungus|*|*| +Piracy Charm|Planar Chaos|58|C|{U}|Instant||| +Intet, the Dreamer|Planar Chaos|158|R|{3}{U}{R}{G}|Legendary Creature — Dragon|6|6| +Teneb, the Harvester|Planar Chaos|163|R|{3}{B}{G}{W}|Legendary Creature — Dragon|6|6| +Dawn Charm|Planar Chaos|4|C|{1}{W}|Instant||| +Gauntlet of Power|Time Spiral|255|R|{5}|Artifact||| +Ixidron|Time Spiral|65|R|{3}{U}{U}|Creature — Illusion|*|*| +Braids, Conjurer Adept|Planar Chaos|36|R|{2}{U}{U}|Legendary Creature — Human Wizard|2|2| +Ana Battlemage|Planar Chaos|124|U|{2}{G}|Creature — Human Wizard|2|2| +Dust Elemental|Planar Chaos|5|R|{2}{W}{W}|Creature — Elemental|6|6| +Jedit Ojanen of Efrava|Planar Chaos|131|R|{3}{G}{G}{G}|Legendary Creature — Cat Warrior|5|5| +Body Double|Planar Chaos|35|R|{4}{U}|Creature — Shapeshifter|0|0| +Shivan Wumpus|Planar Chaos|121|R|{3}{R}|Creature — Beast|6|6| +Thrumming Stone|Coldsnap|142|R|{5}|Legendary Artifact||| +Porphyry Nodes|Planar Chaos|28|R|{W}|Enchantment||| +Life and Limb|Planar Chaos|133|R|{3}{G}|Enchantment||| +Phantasmagorian|Planar Chaos|77|U|{5}{B}{B}|Creature — Horror|6|6| +Simian Spirit Guide|Planar Chaos|122|C|{2}{R}|Creature — Ape Spirit|2|2| +Erratic Mutation|Planar Chaos|41|C|{2}{U}|Instant||| +Timbermare|Planar Chaos|140|R|{3}{G}|Creature — Elemental Horse|5|5| +Jodah's Avenger|Planar Chaos|42|U|{5}{U}|Creature — Shapeshifter|4|4| +Ζther Membrane|Planar Chaos|93|U|{1}{R}{R}|Creature — Wall|0|5| +Sophic Centaur|Planar Chaos|139|U|{3}{G}|Creature — Centaur Spellshaper|1|1| +Blightspeaker|Planar Chaos|64|C|{1}{B}|Creature — Human Rebel Cleric|1|1| +Magus of the Coffers|Planar Chaos|73|R|{4}{B}|Creature — Human Wizard|4|4| +Pallid Mycoderm|Planar Chaos|10|C|{3}{W}|Creature — Fungus|2|4| +Fatal Frenzy|Planar Chaos|98|R|{2}{R}|Instant||| +Primal Plasma|Planar Chaos|59|C|{3}{U}|Creature — Elemental Shapeshifter|*|*| +Goblin Skycutter|Time Spiral|159|C|{1}{R}|Creature — Goblin Warrior|2|1| +Venser's Sliver|Time Spiral|267|C|{5}|Artifact Creature — Sliver|3|3| +Serra Sphinx|Planar Chaos|62|R|{3}{U}{U}|Creature — Sphinx|4|4| +Null Profusion|Planar Chaos|89|R|{4}{B}{B}|Enchantment||| +Merfolk Thaumaturgist|Planar Chaos|56|C|{2}{U}|Creature — Merfolk Wizard|1|2| +Coalition Relic|Future Sight|161|R|{3}|Artifact||| +Sinew Sliver|Planar Chaos|30|C|{1}{W}|Creature — Sliver|1|1| +Reality Acid|Planar Chaos|45|C|{2}{U}|Enchantment — Aura||| +Voidstone Gargoyle|Planar Chaos|21|R|{3}{W}{W}|Creature — Gargoyle|3|3| +Keldon Marauders|Planar Chaos|102|C|{1}{R}|Creature — Human Warrior|3|3| +Frenetic Sliver|Planar Chaos|157|U|{1}{U}{R}|Creature — Sliver|2|2| +Darkheart Sliver|Planar Chaos|155|U|{B}{G}|Creature — Sliver|2|2| +Poultice Sliver|Planar Chaos|11|C|{2}{W}|Creature — Sliver|2|2| +Battering Sliver|Planar Chaos|95|C|{5}{R}|Creature — Sliver|4|4| +Reflex Sliver|Planar Chaos|138|C|{3}{G}|Creature — Sliver|2|2| +Cautery Sliver|Planar Chaos|154|U|{R}{W}|Creature — Sliver|2|2| +Spitting Sliver|Planar Chaos|80|C|{4}{B}|Creature — Sliver|3|3| +Necrotic Sliver|Planar Chaos|159|U|{1}{W}{B}|Creature — Sliver|2|2| +Aquamorph Entity|Planar Chaos|33|C|{2}{U}{U}|Creature — Shapeshifter|*|*| +Dormant Sliver|Planar Chaos|156|U|{2}{G}{U}|Creature — Sliver|2|2| +Festering March|Future Sight|65|U|{3}{B}{B}|Sorcery||| +Edge of Autumn|Future Sight|144|C|{1}{G}|Sorcery||| +Shimian Specter|Future Sight|76|R|{2}{B}{B}|Creature — Specter|2|2| +Leaden Fists|Future Sight|38|C|{2}{U}|Enchantment — Aura||| +Cryptic Annelid|Future Sight|34|U|{3}{U}|Creature — Worm Beast|1|4| +Blind Phantasm|Future Sight|49|C|{2}{U}|Creature — Illusion|2|3| +Lost Auramancers|Future Sight|11|U|{2}{W}{W}|Creature — Human Wizard|3|3| +Llanowar Empath|Future Sight|130|C|{3}{G}|Creature — Elf Shaman|2|2| +Putrid Cyclops|Future Sight|75|C|{2}{B}|Creature — Zombie Cyclops|3|3| +Fomori Nomad|Future Sight|114|C|{4}{R}|Creature — Nomad Giant|4|4| +Logic Knot|Future Sight|52|C|{X}{U}{U}|Instant||| +Reality Strobe|Future Sight|43|U|{4}{U}{U}|Sorcery||| +Mystic Speculation|Future Sight|41|U|{U}|Sorcery||| +Mass of Ghouls|Future Sight|88|C|{3}{B}{B}|Creature — Zombie Warrior|5|3| +Grave Peril|Future Sight|67|C|{1}{B}|Enchantment||| +Phosphorescent Feast|Future Sight|149|U|{2}{G}{G}{G}|Sorcery||| +Bogardan Lancer|Future Sight|95|C|{1}{R}|Creature — Human Knight|1|1| +Homing Sliver|Future Sight|118|C|{2}{R}|Creature — Sliver|2|2| +Judge Unworthy|Future Sight|9|C|{1}{W}|Instant||| +Lymph Sliver|Future Sight|26|C|{4}{W}|Creature — Sliver|3|3| +Llanowar Mentor|Future Sight|131|U|{G}|Creature — Elf Spellshaper|1|1| +Cyclical Evolution|Future Sight|125|U|{3}{G}{G}|Sorcery||| +Cutthroat il-Dal|Future Sight|64|C|{3}{B}|Creature — Human Rogue|4|1| +Whip-Spine Drake|Future Sight|62|C|{3}{U}{U}|Creature — Drake|3|3| +Lumithread Field|Future Sight|25|C|{1}{W}|Enchantment||| +Frenzy Sliver|Future Sight|85|C|{1}{B}|Creature — Sliver|1|1| +Arc Blade|Future Sight|94|U|{3}{R}{R}|Sorcery||| +New Benalia|Future Sight|172|U||Land||| +Riddle of Lightning|Future Sight|105|C|{3}{R}{R}|Instant||| +Scout's Warning|Future Sight|16|R|{W}|Instant||| +Shivan Sand-Mage|Future Sight|108|U|{2}{R}{R}|Creature — Viashino Shaman|3|2| +Chronomantic Escape|Future Sight|4|U|{4}{W}{W}|Sorcery||| +River of Tears|Future Sight|179|R||Land||| +Darksteel Garrison|Future Sight|167|R|{2}|Artifact — Fortification||| +Ovinize|Planar Chaos|57|U|{1}{U}|Instant||| +Soultether Golem|Future Sight|164|U|{2}|Artifact Creature — Golem|3|3| +Mesa Enchantress|Planar Chaos|26|R|{1}{W}{W}|Creature — Human Druid|0|2| +Sword of the Meek|Future Sight|165|U|{2}|Artifact — Equipment||| +Venarian Glimmer|Planar Chaos|52|U|{X}{U}|Instant||| +Boom|Planar Chaos|112|R|{1}{R}|Sorcery||| +Magus of the Candelabra|Time Spiral|203|R|{G}|Creature — Human Wizard|1|2| +Krosan Grip|Time Spiral|202|U|{2}{G}|Instant||| +Thelonite Hermit|Time Spiral|228|R|{3}{G}|Creature — Elf Shaman|1|1| +Magus of the Mirror|Time Spiral|116|R|{4}{B}{B}|Creature — Human Wizard|4|2| +Magus of the Scroll|Time Spiral|169|R|{R}|Creature — Human Wizard|1|1| +Undying Rage|Time Spiral|184|U|{2}{R}|Enchantment — Aura||| +Celestial Crusader|Time Spiral|7|U|{2}{W}{W}|Creature — Spirit|2|2| +Weathered Bodyguards|Time Spiral|46|R|{5}{W}|Creature — Human Soldier|2|5| +Liege of the Pit|Time Spiral|113|R|{5}{B}{B}{B}|Creature — Demon|7|7| +Magus of the Jar|Time Spiral|67|R|{3}{U}{U}|Creature — Human Wizard|3|3| +Fortune Thief|Time Spiral|156|R|{4}{R}|Creature — Human Rogue|0|1| +Fool's Demise|Time Spiral|64|U|{4}{U}|Enchantment — Aura||| +Magus of the Disk|Time Spiral|27|R|{2}{W}{W}|Creature — Human Wizard|2|4| +Volcano Hellion|Planar Chaos|111|R|{2}{R}{R}|Creature — Hellion|6|5| +Uktabi Drake|Planar Chaos|141|C|{G}|Creature — Drake|2|1| +Shadowmage Infiltrator|Time Spiral "Timeshifted"|99|Special|{1}{U}{B}|Creature — Human Wizard|1|3| +Shade of Trokair|Planar Chaos|18|C|{3}{W}|Creature — Shade|1|2| +Gone|Planar Chaos|113|C|{2}{R}|Instant||| +Tumble|Planar Chaos|114|U|{5}{R}|Sorcery||| +Circle of Affliction|Planar Chaos|66|U|{1}{B}|Enchantment||| +Extirpate|Planar Chaos|71|R|{B}|Instant||| +Veiling Oddity|Planar Chaos|51|C|{3}{U}|Creature — Illusion|2|3| +Ghost Tactician|Planar Chaos|6|C|{4}{W}|Creature — Spirit Spellshaper|2|5| +Torchling|Planar Chaos|110|R|{3}{R}{R}|Creature — Shapeshifter|3|3| +Detritivore|Planar Chaos|96|R|{2}{R}{R}|Creature — Lhurgoyf|*|*| +Dash Hopes|Planar Chaos|68|C|{B}{B}|Instant||| +Kavu Predator|Planar Chaos|132|U|{1}{G}|Creature — Kavu|2|2| +Temporal Extortion|Planar Chaos|81|R|{B}{B}{B}{B}|Sorcery||| +Riftmarked Knight|Planar Chaos|14|U|{1}{W}{W}|Creature — Human Rebel Knight|2|2| +Reckless Wurm|Planar Chaos|120|U|{3}{R}{R}|Creature — Wurm|4|4| +Dunerider Outlaw|Planar Chaos|86|U|{B}{B}|Creature — Human Rebel Rogue|1|1| +Vitaspore Thallid|Planar Chaos|143|C|{1}{G}|Creature — Fungus|1|1| +Psychotrope Thallid|Planar Chaos|137|U|{2}{G}|Creature — Fungus|1|1| +Hammerheim Deadeye|Planar Chaos|101|U|{3}{R}|Creature — Giant Warrior|3|3| +Radha, Heir to Keld|Planar Chaos|162|R|{R}{G}|Legendary Creature — Elf Warrior|2|2| +Timecrafting|Planar Chaos|109|U|{X}{R}|Instant||| +Serra's Boon|Planar Chaos|17|U|{2}{W}|Enchantment — Aura||| +Pongify|Planar Chaos|44|U|{U}|Instant||| +Dismal Failure|Planar Chaos|39|U|{2}{U}{U}|Instant||| +Blight Sickle|Shadowmoor|247|C|{2}|Artifact — Equipment||| +Adarkar Wastes|Tenth Edition|347|R||Land||| +Air Elemental|Tenth Edition|64|U|{3}{U}{U}|Creature — Elemental|4|4| +Angel of Mercy|Tenth Edition|2|U|{4}{W}|Creature — Angel|3|3| +Angel's Feather|Tenth Edition|311|U|{2}|Artifact||| +Aven Cloudchaser|Tenth Edition|7|C|{3}{W}|Creature — Bird Soldier|2|2| +Snapping Drake|Tenth Edition|110|C|{3}{U}|Creature — Drake|3|2| +Aven Windreader|Tenth Edition|69|C|{3}{U}{U}|Creature — Bird Soldier Wizard|3|3| +Ballista Squad|Tenth Edition|8|U|{3}{W}|Creature — Human Rebel|2|2| +Battlefield Forge|Tenth Edition|348|R||Land||| +Crucible of Worlds|Tenth Edition|319|R|{3}|Artifact||| +Blaze|Tenth Edition|190|U|{X}{R}|Sorcery||| +Dusk Imp|Tenth Edition|140|C|{2}{B}|Creature — Imp|2|1| +Bog Wraith|Tenth Edition|130|U|{3}{B}|Creature — Wraith|3|3| +Boomerang|Tenth Edition|70|C|{U}{U}|Instant||| +Bottle Gnomes|Tenth Edition|312|U|{3}|Artifact Creature — Gnome|1|3| +Brushland|Tenth Edition|349|R||Land||| +Caves of Koilos|Tenth Edition|350|R||Land||| +Clone|Tenth Edition|73|R|{3}{U}|Creature — Shapeshifter|0|0| +Coat of Arms|Tenth Edition|316|R|{5}|Artifact||| +Consume Spirit|Tenth Edition|131|U|{X}{1}{B}|Sorcery||| +Sunken Hope|Tenth Edition|112|R|{3}{U}{U}|Enchantment||| +Kavu Climber|Tenth Edition|273|C|{3}{G}{G}|Creature — Kavu|3|3| +Creeping Mold|Tenth Edition|258|U|{2}{G}{G}|Sorcery||| +Skyhunter Skirmisher|Tenth Edition|43|U|{1}{W}{W}|Creature — Cat Knight|1|1| +Cruel Edict|Tenth Edition|133|U|{1}{B}|Sorcery||| +Dehydration|Tenth Edition|78|C|{3}{U}|Enchantment — Aura||| +Demolish|Tenth Edition|196|C|{3}{R}|Sorcery||| +Demon's Horn|Tenth Edition|320|U|{2}|Artifact||| +Demystify|Tenth Edition|14|C|{W}|Instant||| +Diabolic Tutor|Tenth Edition|135|U|{2}{B}{B}|Sorcery||| +Pithing Needle|Tenth Edition|338|R|{1}|Artifact||| +Dragon's Claw|Tenth Edition|322|U|{2}|Artifact||| +Drudge Skeletons|Tenth Edition|139|U|{1}{B}|Creature — Skeleton|1|1| +Elvish Berserker|Tenth Edition|260|C|{G}|Creature — Elf Berserker|1|1| +Elvish Champion|Tenth Edition|261|R|{1}{G}{G}|Creature — Elf|2|2| +Elvish Piper|Tenth Edition|262|R|{3}{G}|Creature — Elf Shaman|1|1| +Llanowar Sentinel|Tenth Edition|275|C|{2}{G}|Creature — Elf|2|3| +Evacuation|Tenth Edition|83|R|{3}{U}{U}|Instant||| +Fear|Tenth Edition|142|C|{B}{B}|Enchantment — Aura||| +Festering Goblin|Tenth Edition|143|C|{B}|Creature — Zombie Goblin|1|1| +Firebreathing|Tenth Edition|200|C|{R}|Enchantment — Aura||| +Shimmering Wings|Tenth Edition|107|C|{U}|Enchantment — Aura||| +Earth Elemental|Tenth Edition|199|U|{3}{R}{R}|Creature — Elemental|4|5| +Wild Griffin|Tenth Edition|59|C|{2}{W}|Creature — Griffin|2|2| +Forest|Tenth Edition|380|L||Basic Land — Forest||| +Forest|Tenth Edition|381|L||Basic Land — Forest||| +Forest|Tenth Edition|382|L||Basic Land — Forest||| +Forest|Tenth Edition|383|L||Basic Land — Forest||| +Highway Robber|Tenth Edition|150|C|{2}{B}{B}|Creature — Human Rogue Mercenary|2|2| +Furnace of Rath|Tenth Edition|204|R|{1}{R}{R}{R}|Enchantment||| +Giant Growth|Tenth Edition|266|C|{G}|Instant||| +Giant Spider|Tenth Edition|267|C|{3}{G}|Creature — Spider|2|4| +Glorious Anthem|Tenth Edition|17|R|{1}{W}{W}|Enchantment||| +Knight of Dusk|Tenth Edition|152|U|{1}{B}{B}|Creature — Human Knight|2|2| +Spark Elemental|Tenth Edition|237|U|{R}|Creature — Elemental|3|1| +Goblin King|Tenth Edition|207|R|{1}{R}{R}|Creature — Goblin|2|2| +Duct Crawler|Tenth Edition|198|C|{R}|Creature — Insect|1|1| +Goblin Piker|Tenth Edition|209|C|{1}{R}|Creature — Goblin Warrior|2|1| +Goblin Sky Raider|Tenth Edition|210|C|{2}{R}|Creature — Goblin Warrior|1|2| +Grave Pact|Tenth Edition|144|R|{1}{B}{B}{B}|Enchantment||| +Gravedigger|Tenth Edition|146|C|{3}{B}|Creature — Zombie|2|2| +Grizzly Bears|Tenth Edition|268|C|{1}{G}|Creature — Bear|2|2| +Guerrilla Tactics|Tenth Edition|211|U|{1}{R}|Instant||| +Contaminated Bond|Tenth Edition|132|C|{1}{B}|Enchantment — Aura||| +Hill Giant|Tenth Edition|212|C|{3}{R}|Creature — Giant|3|3| +Holy Day|Tenth Edition|21|C|{W}|Instant||| +Holy Strength|Tenth Edition|22|C|{W}|Enchantment — Aura||| +Honor Guard|Tenth Edition|23|C|{W}|Creature — Human Soldier|1|1| +Horseshoe Crab|Tenth Edition|87|C|{2}{U}|Creature — Crab|1|3| +Howling Mine|Tenth Edition|325|R|{2}|Artifact||| +Hunted Wumpus|Tenth Edition|269|U|{3}{G}|Creature — Beast|6|6| +Hypnotic Specter|Tenth Edition|151|R|{1}{B}{B}|Creature — Specter|2|2| +Icy Manipulator|Tenth Edition|326|U|{4}|Artifact||| +Tundra Wolves|Tenth Edition|54|C|{W}|Creature — Wolf|1|1| +Island|Tenth Edition|368|L||Basic Land — Island||| +Island|Tenth Edition|369|L||Basic Land — Island||| +Island|Tenth Edition|370|L||Basic Land — Island||| +Island|Tenth Edition|371|L||Basic Land — Island||| +True Believer|Tenth Edition|53|R|{W}{W}|Creature — Human Cleric|2|2| +Karplusan Forest|Tenth Edition|354|R||Land||| +Kraken's Eye|Tenth Edition|329|U|{2}|Artifact||| +Lava Axe|Tenth Edition|215|C|{4}{R}|Sorcery||| +Lightning Elemental|Tenth Edition|217|C|{3}{R}|Creature — Elemental|4|1| +Llanowar Elves|Tenth Edition|274|C|{G}|Creature — Elf Druid|1|1| +Llanowar Wastes|Tenth Edition|355|R||Land||| +Looming Shade|Tenth Edition|153|C|{2}{B}|Creature — Shade|1|1| +Lord of the Undead|Tenth Edition|155|R|{1}{B}{B}|Creature — Zombie|2|2| +Loxodon Warhammer|Tenth Edition|332|R|{3}|Artifact — Equipment||| +Lumengrid Warden|Tenth Edition|89|C|{1}{U}|Creature — Human Wizard|1|3| +Mahamoti Djinn|Tenth Edition|90|R|{4}{U}{U}|Creature — Djinn|5|6| +Loxodon Mystic|Tenth Edition|26|C|{3}{W}{W}|Creature — Elephant Cleric|3|3| +Megrim|Tenth Edition|157|U|{2}{B}|Enchantment||| +Might of Oaks|Tenth Edition|277|R|{3}{G}|Instant||| +Millstone|Tenth Edition|334|R|{2}|Artifact||| +Mind Bend|Tenth Edition|93|R|{U}|Instant||| +Mind Rot|Tenth Edition|159|C|{2}{B}|Sorcery||| +Mortivore|Tenth Edition|161|R|{2}{B}{B}|Creature — Lhurgoyf|*|*| +Mountain|Tenth Edition|376|L||Basic Land — Mountain||| +Mountain|Tenth Edition|377|L||Basic Land — Mountain||| +Mountain|Tenth Edition|378|L||Basic Land — Mountain||| +Mountain|Tenth Edition|379|L||Basic Land — Mountain||| +Nantuko Husk|Tenth Edition|162|U|{2}{B}|Creature — Zombie Insect|2|2| +Natural Spring|Tenth Edition|281|C|{3}{G}{G}|Sorcery||| +Naturalize|Tenth Edition|282|C|{1}{G}|Instant||| +Nekrataal|Tenth Edition|163|U|{2}{B}{B}|Creature — Human Assassin|2|1| +Nightmare|Tenth Edition|164|R|{5}{B}|Creature — Nightmare Horse|*|*| +Orcish Artillery|Tenth Edition|220|U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Ornithopter|Tenth Edition|336|U|{0}|Artifact Creature — Thopter|0|2| +Pacifism|Tenth Edition|31|C|{1}{W}|Enchantment — Aura||| +Paladin en-Vec|Tenth Edition|32|R|{1}{W}{W}|Creature — Human Knight|2|2| +Angelic Wall|Tenth Edition|5|C|{1}{W}|Creature — Wall|0|4| +Time Stretch|Tenth Edition|118|R|{8}{U}{U}|Sorcery||| +Plague Beetle|Tenth Edition|168|C|{B}|Creature — Insect|1|1| +Plague Wind|Tenth Edition|169|R|{7}{B}{B}|Sorcery||| +Plains|Tenth Edition|364|L||Basic Land — Plains||| +Plains|Tenth Edition|365|L||Basic Land — Plains||| +Plains|Tenth Edition|366|L||Basic Land — Plains||| +Plains|Tenth Edition|367|L||Basic Land — Plains||| +Puppeteer|Tenth Edition|98|U|{2}{U}|Creature — Human Wizard|1|2| +Quicksand|Tenth Edition|356|U||Land||| +Raging Goblin|Tenth Edition|224|C|{R}|Creature — Goblin Berserker|1|1| +Rampant Growth|Tenth Edition|288|C|{1}{G}|Sorcery||| +Ravenous Rats|Tenth Edition|171|C|{1}{B}|Creature — Rat|1|1| +Severed Legion|Tenth Edition|177|C|{1}{B}{B}|Creature — Zombie|2|2| +Regeneration|Tenth Edition|290|U|{1}{G}|Enchantment — Aura||| +Relentless Assault|Tenth Edition|225|R|{2}{R}{R}|Sorcery||| +Reminisce|Tenth Edition|99|U|{2}{U}|Sorcery||| +Remove Soul|Tenth Edition|100|C|{1}{U}|Instant||| +Rod of Ruin|Tenth Edition|341|U|{4}|Artifact||| +Rootwalla|Tenth Edition|293|C|{2}{G}|Creature — Lizard|2|2| +Royal Assassin|Tenth Edition|174|R|{1}{B}{B}|Creature — Human Assassin|1|1| +Bloodfire Colossus|Tenth Edition|191|R|{6}{R}{R}|Creature — Giant|6|6| +Angelic Chorus|Tenth Edition|4|R|{3}{W}{W}|Enchantment||| +Angelic Blessing|Tenth Edition|3|C|{2}{W}|Sorcery||| +Rock Badger|Tenth Edition|226|C|{4}{R}|Creature — Badger Beast|3|3| +Mobilization|Tenth Edition|29|R|{2}{W}|Enchantment||| +Scathe Zombies|Tenth Edition|175|C|{2}{B}|Creature — Zombie|2|2| +Sea Monster|Tenth Edition|106|C|{4}{U}{U}|Creature — Serpent|6|6| +Seedborn Muse|Tenth Edition|296|R|{3}{G}{G}|Creature — Spirit|2|4| +Sengir Vampire|Tenth Edition|176|R|{3}{B}{B}|Creature — Vampire|4|4| +Serra Angel|Tenth Edition|39|R|{3}{W}{W}|Creature — Angel|4|4| +Shivan Dragon|Tenth Edition|230|R|{4}{R}{R}|Creature — Dragon|5|5| +Shivan Reef|Tenth Edition|357|R||Land||| +Shock|Tenth Edition|232|C|{R}|Instant||| +Rootwater Commando|Tenth Edition|102|C|{2}{U}|Creature — Merfolk|2|2| +Skyhunter Patrol|Tenth Edition|41|C|{2}{W}{W}|Creature — Cat Knight|2|3| +Soul Feast|Tenth Edition|179|U|{3}{B}{B}|Sorcery||| +Soul Warden|Tenth Edition|44|U|{W}|Creature — Human Cleric|1|1| +Spellbook|Tenth Edition|343|U|{0}|Artifact||| +Spined Wurm|Tenth Edition|298|C|{4}{G}|Creature — Wurm|5|4| +Spineless Thug|Tenth Edition|180|C|{1}{B}|Creature — Zombie Mercenary|2|2| +Spirit Link|Tenth Edition|45|U|{W}|Enchantment — Aura||| +Story Circle|Tenth Edition|49|R|{1}{W}{W}|Enchantment||| +Sudden Impact|Tenth Edition|241|U|{3}{R}|Instant||| +Sulfurous Springs|Tenth Edition|359|R||Land||| +Suntail Hawk|Tenth Edition|50|C|{W}|Creature — Bird|1|1| +Swamp|Tenth Edition|372|L||Basic Land — Swamp||| +Swamp|Tenth Edition|373|L||Basic Land — Swamp||| +Swamp|Tenth Edition|374|L||Basic Land — Swamp||| +Swamp|Tenth Edition|375|L||Basic Land — Swamp||| +Telepathy|Tenth Edition|113|U|{U}|Enchantment||| +Thieving Magpie|Tenth Edition|115|U|{2}{U}{U}|Creature — Bird|1|3| +Threaten|Tenth Edition|242|U|{2}{R}|Sorcery||| +Tidings|Tenth Edition|116|U|{3}{U}{U}|Sorcery||| +Wall of Wood|Tenth Edition|309|C|{G}|Creature — Wall|0|3| +Traumatize|Tenth Edition|119|R|{3}{U}{U}|Sorcery||| +Treetop Bracers|Tenth Edition|304|C|{1}{G}|Enchantment — Aura||| +Underground River|Tenth Edition|362|R||Land||| +Underworld Dreams|Tenth Edition|184|R|{B}{B}{B}|Enchantment||| +Unholy Strength|Tenth Edition|185|C|{B}|Enchantment — Aura||| +Venerable Monk|Tenth Edition|55|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Verdant Force|Tenth Edition|307|R|{5}{G}{G}{G}|Creature — Elemental|7|7| +Gaea's Herald|Tenth Edition|265|R|{1}{G}|Creature — Elf|1|1| +Youthful Knight|Tenth Edition|62|C|{1}{W}|Creature — Human Knight|2|1| +Viridian Shaman|Tenth Edition|308|U|{2}{G}|Creature — Elf Shaman|2|2| +Warrior's Honor|Tenth Edition|58|C|{2}{W}|Instant||| +Loyal Sentry|Tenth Edition|27|R|{W}|Creature — Human Soldier|1|1| +Pyroclasm|Tenth Edition|222|U|{1}{R}|Sorcery||| +Sleeper Agent|Tenth Edition|178|R|{B}|Creature — Minion|3|3| +Cloud Elemental|Tenth Edition|74|C|{2}{U}|Creature — Elemental|2|3| +Wrath of God|Tenth Edition|61|R|{2}{W}{W}|Sorcery||| +Wurm's Tooth|Tenth Edition|346|U|{2}|Artifact||| +Yavimaya Coast|Tenth Edition|363|R||Land||| +Doomed Necromancer|Tenth Edition|137|R|{2}{B}|Creature — Human Cleric Mercenary|2|2| +Terramorphic Expanse|Tenth Edition|360|C||Land||| +Cancel|Tenth Edition|71|C|{1}{U}{U}|Instant||| +Plagiarize|Tenth Edition|97|R|{3}{U}|Instant||| +Seismic Assault|Tenth Edition|228|R|{R}{R}{R}|Enchantment||| +Hurricane|Tenth Edition|270|R|{X}{G}|Sorcery||| +Twincast|Tenth Edition|120|R|{U}{U}|Instant||| +Time Stop|Tenth Edition|117|R|{4}{U}{U}|Instant||| +Persuasion|Tenth Edition|95|U|{3}{U}{U}|Enchantment — Aura||| +Spiketail Hatchling|Tenth Edition|111|U|{1}{U}|Creature — Drake|1|1| +Birds of Paradise|Tenth Edition|252|R|{G}|Creature — Bird|0|1| +Flashfreeze|Tenth Edition|84|U|{1}{U}|Instant||| +Cryoclasm|Tenth Edition|195|U|{2}{R}|Sorcery||| +Deathmark|Tenth Edition|134|U|{B}|Sorcery||| +Karplusan Strider|Tenth Edition|272|U|{3}{G}|Creature — Yeti|3|4| +Luminesce|Tenth Edition|28|U|{W}|Instant||| +Ambassador Laquatus|Tenth Edition|65|R|{1}{U}{U}|Legendary Creature — Merfolk Wizard|1|3| +Cloudseeder|Future Sight|33|U|{1}{U}|Creature — Faerie Spellshaper|1|1| +Goldmeadow Lookout|Future Sight|22|U|{3}{W}|Creature — Kithkin Spellshaper|2|2| +Skirk Ridge Exhumer|Future Sight|77|U|{1}{B}|Creature — Zombie Spellshaper|1|1| +Minions' Murmurs|Future Sight|71|U|{2}{B}{B}|Sorcery||| +Saltskitter|Future Sight|14|C|{3}{W}|Creature — Wurm|3|4| +Sporoloth Ancient|Future Sight|152|C|{3}{G}{G}|Creature — Fungus|4|4| +Vedalken Ζthermage|Future Sight|61|C|{1}{U}|Creature — Vedalken Wizard|1|2| +Samite Censer-Bearer|Future Sight|15|C|{W}|Creature — Human Rebel Cleric|1|1| +Haze of Rage|Future Sight|100|U|{1}{R}|Sorcery||| +Sliversmith|Future Sight|163|U|{2}|Artifact Creature — Spellshaper|1|1| +Wrap in Vigor|Future Sight|141|C|{1}{G}|Instant||| +Lost Hours|Future Sight|69|C|{1}{B}|Sorcery||| +Bound in Silence|Future Sight|20|U|{2}{W}|Tribal Enchantment — Rebel Aura||| +Thunderblade Charge|Future Sight|124|R|{1}{R}{R}|Sorcery||| +Ravaging Riftwurm|Future Sight|135|U|{1}{G}{G}|Creature — Wurm|6|6| +Sparkspitter|Future Sight|109|U|{2}{R}|Creature — Elemental Spellshaper|1|3| +Unblinking Bleb|Future Sight|45|C|{3}{U}|Creature — Illusion|1|3| +Spin into Myth|Future Sight|60|U|{4}{U}|Instant||| +Angel of Salvation|Future Sight|1|R|{6}{W}{W}|Creature — Angel|5|5| +Mistmeadow Skulk|Future Sight|27|U|{1}{W}|Creature — Kithkin Rogue|1|1| +Seht's Tiger|Future Sight|31|R|{2}{W}{W}|Creature — Cat|3|3| +Riftsweeper|Future Sight|136|U|{1}{G}|Creature — Elf Shaman|2|2| +Shunt|Tenth Edition|233|R|{1}{R}{R}|Instant||| +Warp World|Tenth Edition|248|R|{5}{R}{R}{R}|Sorcery||| +Manabarbs|Tenth Edition|218|R|{3}{R}|Enchantment||| +Soulblast|Tenth Edition|236|R|{3}{R}{R}{R}|Instant||| +Shatterstorm|Tenth Edition|229|U|{2}{R}{R}|Sorcery||| +Lavaborn Muse|Tenth Edition|216|R|{3}{R}|Creature — Spirit|3|3| +Scoria Wurm|Tenth Edition|227|R|{4}{R}|Creature — Wurm|7|7| +Flamewave Invoker|Tenth Edition|202|U|{2}{R}|Creature — Goblin Mutant|2|2| +Fists of the Anvil|Tenth Edition|201|C|{1}{R}|Instant||| +Goblin Elite Infantry|Tenth Edition|206|C|{1}{R}|Creature — Goblin Warrior|2|2| +Thundering Giant|Tenth Edition|243|U|{3}{R}{R}|Creature — Giant|4|3| +Bloodrock Cyclops|Tenth Edition|192|C|{2}{R}|Creature — Cyclops|3|3| +Starlight Invoker|Tenth Edition|47|U|{1}{W}|Creature — Human Cleric Mutant|1|3| +Furnace Whelp|Tenth Edition|205|U|{2}{R}{R}|Creature — Dragon|2|2| +Viashino Sandscout|Tenth Edition|246|C|{1}{R}|Creature — Viashino Scout|2|1| +Abundance|Tenth Edition|249|R|{2}{G}{G}|Enchantment||| +Quirion Dryad|Tenth Edition|287|R|{1}{G}|Creature — Dryad|1|1| +Upwelling|Tenth Edition|306|R|{3}{G}|Enchantment||| +Troll Ascetic|Tenth Edition|305|R|{1}{G}{G}|Creature — Troll Shaman|3|2| +Joiner Adept|Tenth Edition|271|R|{1}{G}|Creature — Elf Druid|2|1| +Scion of the Wild|Tenth Edition|295|R|{1}{G}{G}|Creature — Avatar|*|*| +Overrun|Tenth Edition|284|U|{2}{G}{G}{G}|Sorcery||| +Recollect|Tenth Edition|289|U|{2}{G}|Sorcery||| +Sylvan Scrying|Tenth Edition|302|U|{1}{G}|Sorcery||| +Yavimaya Enchantress|Tenth Edition|310|U|{2}{G}|Creature — Human Druid|2|2| +Commune with Nature|Tenth Edition|256|C|{G}|Sorcery||| +Civic Wayfinder|Tenth Edition|255|C|{2}{G}|Creature — Elf Warrior Druid|2|2| +Aggressive Urge|Tenth Edition|250|C|{1}{G}|Instant||| +Pincher Beetles|Tenth Edition|285|C|{2}{G}|Creature — Insect|3|1| +Craw Wurm|Tenth Edition|257|C|{4}{G}{G}|Creature — Wurm|6|4| +Condemn|Tenth Edition|13|U|{W}|Instant||| +Arcane Teachings|Tenth Edition|188|U|{2}{R}|Enchantment — Aura||| +Viashino Runner|Tenth Edition|245|C|{3}{R}|Creature — Viashino|3|2| +Smash|Tenth Edition|235|C|{2}{R}|Instant||| +Bogardan Firefiend|Tenth Edition|193|C|{2}{R}|Creature — Elemental Spirit|2|1| +Cone of Flame|Tenth Edition|194|U|{3}{R}{R}|Sorcery||| +Shivan Hellkite|Tenth Edition|231|R|{5}{R}{R}|Creature — Dragon|5|5| +Siege-Gang Commander|Tenth Edition|234|R|{3}{R}{R}|Creature — Goblin|2|2| +Flowstone Slide|Tenth Edition|203|R|{X}{2}{R}{R}|Sorcery||| +Nomad Mythmaker|Tenth Edition|30|R|{2}{W}|Creature — Human Nomad Cleric|2|2| +Windborn Muse|Tenth Edition|60|R|{3}{W}|Creature — Spirit|2|3| +Ancestor's Chosen|Tenth Edition|1|U|{5}{W}{W}|Creature — Human Cleric|4|4| +Kjeldoran Royal Guard|Tenth Edition|25|R|{3}{W}{W}|Creature — Human Soldier|2|5| +Righteousness|Tenth Edition|36|R|{W}|Instant||| +Beacon of Immortality|Tenth Edition|10|R|{5}{W}|Instant||| +Cho-Manno, Revolutionary|Tenth Edition|12|R|{2}{W}{W}|Legendary Creature — Human Rebel|2|2| +Nix|Future Sight|55|R|{U}|Instant||| +Horizon Canopy|Future Sight|177|R||Land||| +Graven Cairns|Future Sight|175|R||Land||| +Char-Rumbler|Future Sight|96|U|{2}{R}{R}|Creature — Elemental|-1|3| +Nacatl War-Pride|Future Sight|147|U|{3}{G}{G}{G}|Creature — Cat Warrior|3|3| +Rift Elemental|Future Sight|106|C|{R}|Creature — Elemental|1|1| +Grove of the Burnwillows|Future Sight|176|R||Land||| +Muraganda Petroglyphs|Future Sight|146|R|{3}{G}|Enchantment||| +Utopia Mycon|Future Sight|140|U|{G}|Creature — Fungus|0|2| +Thornweald Archer|Future Sight|154|C|{1}{G}|Creature — Elf Archer|2|1| +Imperiosaur|Future Sight|145|U|{2}{G}{G}|Creature — Lizard|5|5| +Daybreak Coronet|Future Sight|21|R|{W}{W}|Enchantment — Aura||| +Pact of the Titan|Future Sight|103|R|{0}|Instant||| +Virulent Sliver|Future Sight|155|C|{G}|Creature — Sliver|1|1| +Spellwild Ouphe|Future Sight|151|U|{1}{G}|Creature — Ouphe|1|3| +Foresee|Future Sight|36|C|{3}{U}|Sorcery||| +Rites of Flourishing|Future Sight|137|R|{2}{G}|Enchantment||| +Boldwyr Intimidator|Future Sight|111|U|{5}{R}{R}|Creature — Giant Warrior|5|5| +Storm Entity|Future Sight|122|U|{1}{R}|Creature — Elemental|1|1| +Blade of the Sixth Pride|Future Sight|19|C|{1}{W}|Creature — Cat Rebel|3|1| +Intervention Pact|Future Sight|8|R|{0}|Instant||| +Ichor Slick|Future Sight|68|C|{2}{B}|Sorcery||| +Centaur Omenreader|Future Sight|143|U|{3}{G}|Snow Creature — Centaur Shaman|3|3| +Bloodshot Trainee|Future Sight|110|U|{3}{R}|Creature — Goblin Warrior|2|3| +Marshaling Cry|Future Sight|13|C|{1}{W}{W}|Sorcery||| +Gibbering Descent|Future Sight|66|R|{4}{B}{B}|Enchantment||| +Lucent Liminid|Future Sight|24|C|{3}{W}{W}|Enchantment Creature — Elemental|3|3| +Infiltrator il-Kor|Future Sight|37|C|{4}{U}|Creature — Kor Rogue|3|1| +Henchfiend of Ukor|Future Sight|117|C|{3}{R}|Creature — Ogre|3|2| +Knight of Sursi|Future Sight|10|C|{3}{W}|Creature — Human Knight|2|2| +Fatal Attraction|Future Sight|98|C|{2}{R}|Enchantment — Aura||| +Pact of Negation|Future Sight|42|R|{0}|Instant||| +Yixlid Jailer|Future Sight|93|U|{1}{B}|Creature — Zombie Wizard|2|1| +Slaughter Pact|Future Sight|78|R|{0}|Instant||| +Summoner's Pact|Future Sight|139|R|{0}|Instant||| +Gathan Raiders|Future Sight|99|C|{3}{R}{R}|Creature — Human Warrior|3|3| +Snake Cult Initiation|Future Sight|89|U|{3}{B}|Enchantment — Aura||| +Force of Savagery|Future Sight|126|R|{2}{G}|Creature — Elemental|8|0| +Melancholy|Planar Chaos|88|C|{2}{B}|Enchantment — Aura||| +Blood Knight|Planar Chaos|115|U|{R}{R}|Creature — Human Knight|2|2| +Ridged Kusite|Planar Chaos|78|C|{B}|Creature — Horror Spellshaper|1|1| +Rathi Trapper|Planar Chaos|90|C|{1}{B}|Creature — Human Rebel Rogue|1|2| +Magus of the Tabernacle|Planar Chaos|8|R|{3}{W}|Creature — Human Wizard|2|6| +Firefright Mage|Planar Chaos|99|C|{R}|Creature — Goblin Spellshaper|1|1| +Auramancer's Guise|Planar Chaos|34|U|{2}{U}{U}|Enchantment — Aura||| +Tidewalker|Planar Chaos|49|U|{2}{U}|Creature — Elemental|*|*| +Seal of Primordium|Planar Chaos|153|C|{1}{G}|Enchantment||| +Scalpelexis|Tenth Edition|105|R|{4}{U}|Creature — Beast|1|5| +Vedalken Mastermind|Tenth Edition|123|U|{U}{U}|Creature — Vedalken Wizard|1|2| +Merfolk Looter|Tenth Edition|92|C|{1}{U}|Creature — Merfolk Rogue|1|1| +Peek|Tenth Edition|94|C|{U}|Instant||| +Aura Graft|Tenth Edition|67|U|{1}{U}|Instant||| +Aven Fisher|Tenth Edition|68|C|{3}{U}|Creature — Bird Soldier|2|2| +Hate Weaver|Tenth Edition|147|U|{1}{B}|Creature — Zombie Wizard|2|1| +Might Weaver|Tenth Edition|278|U|{1}{G}|Creature — Human Wizard|2|1| +Rage Weaver|Tenth Edition|223|U|{1}{R}|Creature — Human Wizard|2|1| +Sky Weaver|Tenth Edition|109|U|{1}{U}|Creature — Metathran Wizard|2|1| +Spirit Weaver|Tenth Edition|46|U|{1}{W}|Creature — Human Wizard|2|1| +Treacherous Urge|Planar Chaos|82|U|{4}{B}|Instant||| +Utopia Vow|Planar Chaos|142|C|{1}{G}|Enchantment — Aura||| +Urborg, Tomb of Yawgmoth|Planar Chaos|165|R||Legendary Land||| +Kor Dirge|Planar Chaos|87|U|{2}{B}|Instant||| +Retether|Planar Chaos|13|R|{3}{W}|Sorcery||| +Magus of the Bazaar|Planar Chaos|43|R|{1}{U}|Creature — Human Wizard|0|1| +Skirk Shaman|Planar Chaos|123|C|{1}{R}{R}|Creature — Goblin Shaman|2|2| +Phantom Warrior|Tenth Edition|96|U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Cloud Sprite|Tenth Edition|75|C|{U}|Creature — Faerie|1|1| +Telling Time|Tenth Edition|114|U|{1}{U}|Instant||| +Academy Researchers|Tenth Edition|63|U|{1}{U}{U}|Creature — Human Wizard|2|2| +Fog Elemental|Tenth Edition|85|U|{2}{U}|Creature — Elemental|4|4| +Reviving Dose|Tenth Edition|34|C|{2}{W}|Instant||| +Heart of Light|Tenth Edition|19|C|{2}{W}|Enchantment — Aura||| +Samite Healer|Tenth Edition|38|C|{1}{W}|Creature — Human Cleric|1|1| +Skyhunter Prowler|Tenth Edition|42|C|{2}{W}|Creature — Cat Knight|1|3| +Ghost Warden|Tenth Edition|16|C|{1}{W}|Creature — Spirit|1|1| +Bandage|Tenth Edition|9|C|{W}|Instant||| +Hail of Arrows|Tenth Edition|18|U|{X}{W}|Instant||| +Steadfast Guard|Tenth Edition|48|C|{W}{W}|Creature — Human Rebel|2|2| +Wall of Swords|Tenth Edition|57|U|{3}{W}|Creature — Wall|3|5| +Icatian Priest|Tenth Edition|24|U|{W}|Creature — Human Cleric|1|1| +Aura of Silence|Tenth Edition|6|U|{1}{W}{W}|Enchantment||| +Tempest of Light|Tenth Edition|51|U|{2}{W}|Instant||| +High Ground|Tenth Edition|20|U|{W}|Enchantment||| +Grave Scrabbler|Future Sight|86|C|{3}{B}|Creature — Zombie|2|2| +Augur il-Vec|Future Sight|2|C|{1}{W}|Creature — Human Cleric|1|3| +Llanowar Augur|Future Sight|129|C|{G}|Creature — Elf Shaman|0|3| +Emberwilde Augur|Future Sight|97|C|{1}{R}|Creature — Goblin Shaman|2|1| +Zoetic Cavern|Future Sight|180|U||Land||| +Heartwood Storyteller|Future Sight|127|R|{1}{G}{G}|Creature — Treefolk|2|3| +Quiet Disrepair|Future Sight|134|C|{1}{G}|Enchantment — Aura||| +Kavu Primarch|Future Sight|128|C|{3}{G}|Creature — Kavu|3|3| +Oblivion Crown|Future Sight|73|C|{1}{B}|Enchantment — Aura||| +Fleshwrither|Future Sight|84|U|{2}{B}{B}|Creature — Horror|3|3| +Spirit en-Dal|Future Sight|17|U|{2}{W}|Creature — Spirit|2|1| +Witch's Mist|Future Sight|92|U|{2}{B}|Enchantment||| +Petrified Plating|Future Sight|133|C|{2}{G}|Enchantment — Aura||| +Augur of Skulls|Future Sight|63|C|{1}{B}|Creature — Skeleton Wizard|1|1| +Aven Augur|Future Sight|32|C|{3}{U}|Creature — Bird Wizard|2|2| +Deepcavern Imp|Future Sight|83|C|{2}{B}|Creature — Imp Rebel|2|2| +Flowstone Embrace|Future Sight|113|C|{1}{R}|Enchantment — Aura||| +Delay|Future Sight|35|U|{1}{U}|Instant||| +Bonded Fetch|Future Sight|50|U|{2}{U}|Creature — Homunculus|0|2| +Molten Firebird|Planar Chaos|117|R|{4}{R}|Creature — Phoenix|2|2| +Big Game Hunter|Planar Chaos|63|U|{1}{B}{B}|Creature — Human Rebel Assassin|1|1| +Shivan Meteor|Planar Chaos|106|U|{3}{R}{R}|Sorcery||| +Magus of the Library|Planar Chaos|134|R|{G}{G}|Creature — Human Wizard|1|1| +Dreamscape Artist|Planar Chaos|40|C|{1}{U}|Creature — Human Spellshaper|1|1| +Stingscourger|Planar Chaos|107|C|{1}{R}|Creature — Goblin Warrior|2|2| +Magus of the Arena|Planar Chaos|104|R|{4}{R}{R}|Creature — Human Wizard|5|5| +Mogg Fanatic|Tenth Edition|219|U|{R}|Creature — Goblin|1|1| +Discombobulate|Tenth Edition|81|U|{2}{U}{U}|Instant||| +Incinerate|Tenth Edition|213|C|{1}{R}|Instant||| +Prodigal Pyromancer|Tenth Edition|221|C|{2}{R}|Creature — Human Wizard|1|1| +Anaba Bodyguard|Tenth Edition|187|C|{3}{R}|Creature — Minotaur|2|3| +Stun|Tenth Edition|240|C|{1}{R}|Instant||| +Uncontrollable Anger|Tenth Edition|244|C|{2}{R}{R}|Enchantment — Aura||| +Counsel of the Soratami|Tenth Edition|76|C|{2}{U}|Sorcery||| +Crafty Pathmage|Tenth Edition|77|C|{2}{U}|Creature — Human Wizard|1|1| +Fugitive Wizard|Tenth Edition|86|C|{U}|Creature — Human Wizard|1|1| +Robe of Mirrors|Tenth Edition|101|C|{U}|Enchantment — Aura||| +Skyshroud Ranger|Tenth Edition|297|C|{G}|Creature — Elf|1|1| +Stalking Tiger|Tenth Edition|299|C|{3}{G}|Creature — Cat|3|3| +Canopy Spider|Tenth Edition|254|C|{1}{G}|Creature — Spider|1|3| +Femeref Archers|Tenth Edition|264|U|{2}{G}|Creature — Human Archer|2|2| +Recover|Tenth Edition|172|C|{2}{B}|Sorcery||| +Phyrexian Rager|Tenth Edition|167|C|{2}{B}|Creature — Horror|2|2| +Essence Drain|Tenth Edition|141|C|{4}{B}|Sorcery||| +Assassinate|Tenth Edition|128|C|{2}{B}|Sorcery||| +Vampire Bats|Tenth Edition|186|C|{B}|Creature — Bat|0|1| +Stronghold Discipline|Tenth Edition|181|U|{2}{B}{B}|Sorcery||| +Terror|Tenth Edition|182|C|{1}{B}|Instant||| +Afflict|Tenth Edition|125|C|{2}{B}|Instant||| +Serra's Embrace|Tenth Edition|40|U|{2}{W}{W}|Enchantment — Aura||| +Sylvan Basilisk|Tenth Edition|301|U|{3}{G}{G}|Creature — Basilisk|2|4| +Dross Crocodile|Tenth Edition|138|C|{3}{B}|Creature — Zombie Crocodile|5|1| +Sage Owl|Tenth Edition|104|C|{1}{U}|Creature — Bird|1|1| +Mass of Ghouls|Tenth Edition|156|C|{3}{B}{B}|Creature — Zombie Warrior|5|3| +Distress|Tenth Edition|136|C|{B}{B}|Sorcery||| +Rain of Tears|Tenth Edition|170|U|{1}{B}{B}|Sorcery||| +Goblin Lore|Tenth Edition|208|U|{1}{R}|Sorcery||| +Deluge|Tenth Edition|79|U|{2}{U}|Instant||| +Lure|Tenth Edition|276|U|{1}{G}{G}|Enchantment — Aura||| +Agonizing Memories|Tenth Edition|126|U|{2}{B}{B}|Sorcery||| +Tangle Spider|Tenth Edition|303|U|{4}{G}{G}|Creature — Spider|3|4| +Treasure Hunter|Tenth Edition|52|U|{2}{W}|Creature — Human|2|2| +Hidden Horror|Tenth Edition|149|U|{1}{B}{B}|Creature — Horror|4|4| +Steel Golem|Tenth Edition|344|U|{3}|Artifact Creature — Golem|3|4| +Relentless Rats|Tenth Edition|173|U|{1}{B}{B}|Creature — Rat|2|2| +Juggernaut|Tenth Edition|328|U|{4}|Artifact Creature — Juggernaut|5|3| +Sculpting Steel|Tenth Edition|342|R|{3}|Artifact||| +Legacy Weapon|Tenth Edition|330|R|{7}|Legendary Artifact||| +Doubling Cube|Tenth Edition|321|R|{2}|Artifact||| +Citanul Flute|Tenth Edition|315|R|{5}|Artifact||| +Dreamborn Muse|Tenth Edition|82|R|{2}{U}{U}|Creature — Spirit|2|2| +Pariah|Tenth Edition|33|R|{2}{W}|Enchantment — Aura||| +Avatar of Might|Tenth Edition|251|R|{6}{G}{G}|Creature — Avatar|8|8| +Denizen of the Deep|Tenth Edition|80|R|{6}{U}{U}|Creature — Serpent|11|11| +Root Maze|Tenth Edition|292|R|{G}|Enchantment||| +Rootwater Matriarch|Tenth Edition|103|R|{2}{U}{U}|Creature — Merfolk|2|3| +The Hive|Tenth Edition|324|R|{5}|Artifact||| +Chimeric Staff|Tenth Edition|313|R|{4}|Artifact||| +Head Games|Tenth Edition|148|R|{3}{B}{B}|Sorcery||| +Graveborn Muse|Tenth Edition|145|R|{2}{B}{B}|Creature — Zombie Spirit|3|3| +Field Marshal|Tenth Edition|15|R|{1}{W}{W}|Creature — Human Soldier|2|2| +Mortal Combat|Tenth Edition|160|R|{2}{B}{B}|Enchantment||| +Hurkyl's Recall|Tenth Edition|88|R|{1}{U}|Instant||| +Cephalid Constable|Tenth Edition|72|R|{1}{U}{U}|Creature — Cephalid Wizard|1|1| +Beacon of Destruction|Tenth Edition|189|R|{3}{R}{R}|Instant||| +Enormous Baloth|Tenth Edition|263|U|{6}{G}|Creature — Beast|7|7| +Stampeding Wildebeests|Tenth Edition|300|U|{2}{G}{G}|Creature — Antelope Beast|5|4| +Elven Riders|Tenth Edition|259|U|{3}{G}{G}|Creature — Elf|3|3| +Blanchwood Armor|Tenth Edition|253|U|{2}{G}|Enchantment — Aura||| +Colossus of Sardia|Tenth Edition|317|R|{9}|Artifact Creature — Golem|9|9| +Beacon of Unrest|Tenth Edition|129|R|{3}{B}{B}|Sorcery||| +Lord of the Pit|Tenth Edition|154|R|{4}{B}{B}{B}|Creature — Demon|7|7| +Midnight Ritual|Tenth Edition|158|R|{X}{2}{B}|Sorcery||| +Fountain of Youth|Tenth Edition|323|U|{0}|Artifact||| +Wall of Air|Tenth Edition|124|U|{1}{U}{U}|Creature — Wall|1|5| +Composite Golem|Tenth Edition|318|U|{6}|Artifact Creature — Golem|4|4| +Leonin Scimitar|Tenth Edition|331|U|{1}|Artifact — Equipment||| +Whispersilk Cloak|Tenth Edition|345|U|{3}|Artifact — Equipment||| +Chromatic Star|Tenth Edition|314|U|{1}|Artifact||| +Mind Stone|Tenth Edition|335|U|{2}|Artifact||| +Phyrexian Vault|Tenth Edition|337|U|{3}|Artifact||| +Overgrowth|Tenth Edition|283|C|{2}{G}|Enchantment — Aura||| +Blowfly Infestation|Shadowmoor|58|U|{2}{B}|Enchantment||| +Wildslayer Elves|Shadowmoor|133|C|{3}{G}|Creature — Elf Warrior|3|3| +Cinderhaze Wretch|Shadowmoor|60|C|{4}{B}|Creature — Elemental Shaman|3|2| +Barrenton Medic|Shadowmoor|4|C|{4}{W}|Creature — Kithkin Cleric|0|4| +Biting Tether|Shadowmoor|29|U|{4}{U}|Enchantment — Aura||| +Devoted Druid|Shadowmoor|110|C|{1}{G}|Creature — Elf Druid|0|2| +Spellweaver Volute|Future Sight|59|R|{3}{U}{U}|Enchantment — Aura||| +Magus of the Abyss|Future Sight|70|R|{3}{B}|Creature — Human Wizard|4|3| +Llanowar Reborn|Future Sight|171|U||Land||| +Grinning Ignus|Future Sight|116|C|{2}{R}|Creature — Elemental|2|2| +Tombstalker|Future Sight|91|R|{6}{B}{B}|Creature — Demon|5|5| +Sprout Swarm|Future Sight|138|C|{1}{G}|Instant||| +Death Rattle|Future Sight|82|C|{5}{B}|Instant||| +Ghostfire|Future Sight|115|C|{2}{R}|Instant||| +Nimbus Maze|Future Sight|178|R||Land||| +Keldon Megaliths|Future Sight|170|U||Land||| +Tolaria West|Future Sight|173|U||Land||| +Barren Glory|Future Sight|3|R|{4}{W}{W}|Enchantment||| +Bitter Ordeal|Future Sight|80|R|{2}{B}|Sorcery||| +Magus of the Future|Future Sight|40|R|{2}{U}{U}{U}|Creature — Human Wizard|2|3| +Dakmor Salvage|Future Sight|169|U||Land||| +Bridge from Below|Future Sight|81|R|{B}{B}{B}|Enchantment||| +Arcanum Wings|Future Sight|48|U|{1}{U}|Enchantment — Aura||| +Stronghold Rats|Future Sight|79|U|{2}{B}|Creature — Rat|2|1| +Shah of Naar Isle|Future Sight|119|R|{3}{R}|Creature — Efreet|6|6| +Nessian Courser|Future Sight|148|C|{2}{G}|Creature — Centaur Warrior|3|3| +Tarox Bladewing|Future Sight|123|R|{2}{R}{R}{R}|Legendary Creature — Dragon|4|3| +Narcomoeba|Future Sight|54|U|{1}{U}|Creature — Illusion|1|1| +Whetwheel|Future Sight|168|R|{4}|Artifact||| +Tarmogoyf|Future Sight|153|R|{1}{G}|Creature — Lhurgoyf|*|1+*| +Epochrasite|Future Sight|162|R|{2}|Artifact Creature — Construct|1|1| +Ramosian Revivalist|Future Sight|30|U|{3}{W}|Creature — Human Rebel Cleric|2|2| +Sliver Legion|Future Sight|158|R|{W}{U}{B}{R}{G}|Legendary Creature — Sliver|7|7| +Magus of the Moat|Future Sight|12|R|{2}{W}{W}|Creature — Human Wizard|0|3| +Veilstone Amulet|Future Sight|166|R|{3}|Artifact||| +Akroma's Memorial|Future Sight|159|R|{7}|Legendary Artifact||| +Steamflogger Boss|Future Sight|121|R|{3}{R}|Creature — Goblin Rigger|3|3| +Magus of the Moon|Future Sight|101|R|{2}{R}|Creature — Human Wizard|2|2| +Quagnoth|Future Sight|150|R|{5}{G}|Creature — Beast|4|5| +Molten Disaster|Future Sight|102|R|{X}{R}{R}|Sorcery||| +Baru, Fist of Krosa|Future Sight|142|R|{3}{G}{G}|Legendary Creature — Human Druid|4|4| +Cloud Key|Future Sight|160|R|{3}|Artifact||| +Glittering Wish|Future Sight|156|R|{G}{W}|Sorcery||| +Second Wind|Future Sight|57|U|{2}{U}|Enchantment — Aura||| +Magus of the Vineyard|Future Sight|132|R|{G}|Creature — Human Wizard|1|1| +Skizzik Surger|Future Sight|120|U|{4}{R}{R}|Creature — Elemental|6|4| +Scourge of Kher Ridges|Future Sight|107|R|{6}{R}{R}|Creature — Dragon|6|6| +Oros, the Avenger|Planar Chaos|161|R|{3}{W}{B}{R}|Legendary Creature — Dragon|6|6| +Even the Odds|Future Sight|6|U|{2}{W}|Instant||| +Jhoira of the Ghitu|Future Sight|157|R|{1}{U}{R}|Legendary Creature — Human Wizard|2|2| +Maelstrom Djinn|Future Sight|39|R|{7}{U}|Creature — Djinn|5|6| +Dryad Arbor|Future Sight|174|U||Land Creature — Forest Dryad|1|1| +Venser's Diffusion|Future Sight|47|C|{2}{U}|Instant||| +Linessa, Zephyr Mage|Future Sight|51|R|{3}{U}|Legendary Creature — Human Wizard|3|3| +Take Possession|Future Sight|44|R|{5}{U}{U}|Enchantment — Aura||| +Gift of Granite|Future Sight|7|C|{W}|Enchantment — Aura||| +Imperial Mask|Future Sight|23|R|{4}{W}|Enchantment||| +Mesmeric Sliver|Future Sight|53|C|{3}{U}|Creature — Sliver|2|2| +Aven Mindcensor|Future Sight|18|U|{2}{W}|Creature — Bird Wizard|2|1| +Street Wraith|Future Sight|90|U|{3}{B}{B}|Creature — Wraith|3|4| +Nihilith|Future Sight|72|R|{4}{B}{B}|Creature — Horror|4|4| +Dust of Moments|Future Sight|5|U|{2}{W}|Instant||| +Korlash, Heir to Blackblade|Future Sight|87|R|{2}{B}{B}|Legendary Creature — Zombie Warrior|*|*| +Venser, Shaper Savant|Future Sight|46|R|{2}{U}{U}|Legendary Creature — Human Wizard|2|2| +Oriss, Samite Guardian|Future Sight|28|R|{1}{W}{W}|Legendary Creature — Human Cleric|1|3| +Pooling Venom|Future Sight|74|U|{1}{B}|Enchantment — Aura||| +Sarcomite Myr|Future Sight|56|C|{2}{U}|Artifact Creature — Myr|2|1| +Patrician's Scorn|Future Sight|29|C|{3}{W}|Instant||| +Shapeshifter's Marrow|Future Sight|58|R|{2}{U}{U}|Enchantment||| +Emblem of the Warmind|Future Sight|112|U|{1}{R}|Enchantment — Aura||| +Pyromancer's Swath|Future Sight|104|R|{2}{R}|Enchantment||| +Sift|Tenth Edition|108|C|{3}{U}|Sorcery||| +Unsummon|Tenth Edition|122|C|{U}|Instant||| +Benalish Knight|Tenth Edition|11|C|{2}{W}|Creature — Human Knight|2|2| +Thrull Surgeon|Tenth Edition|183|U|{1}{B}|Creature — Thrull|1|1| +No Rest for the Wicked|Tenth Edition|165|U|{1}{B}|Enchantment||| +Wall of Fire|Tenth Edition|247|U|{1}{R}{R}|Creature — Wall|0|5| +Rushwood Dryad|Tenth Edition|294|C|{1}{G}|Creature — Dryad|2|1| +Twitch|Tenth Edition|121|C|{2}{U}|Instant||| +Primal Rage|Tenth Edition|286|U|{1}{G}|Enchantment||| +Mantis Engine|Tenth Edition|333|U|{5}|Artifact Creature — Insect|3|3| +Voice of All|Tenth Edition|56|R|{2}{W}{W}|Creature — Angel|2|2| +Rule of Law|Tenth Edition|37|U|{2}{W}|Enchantment||| +Spitting Earth|Tenth Edition|238|C|{1}{R}|Sorcery||| +Last Breath|Mercadian Masques|27|U|{1}{W}|Instant||| +Moonlit Wake|Mercadian Masques|29|U|{2}{W}|Enchantment||| +Renounce|Mercadian Masques|42|U|{1}{W}|Instant||| +Tonic Peddler|Mercadian Masques|54|U|{1}{W}|Creature — Human Spellshaper|1|1| +Jund Charm|Shards of Alara|175|U|{B}{R}{G}|Instant||| +Naya Charm|Shards of Alara|180|U|{R}{G}{W}|Instant||| +Esper Charm|Shards of Alara|167|U|{W}{U}{B}|Instant||| +Grixis Charm|Shards of Alara|171|U|{U}{B}{R}|Instant||| +Bant Charm|Shards of Alara|155|U|{G}{W}{U}|Instant||| +Armillary Sphere|Conflux|134|C|{2}|Artifact||| +Unbender Tine|Alara Reborn|15|U|{2}{W}{U}|Artifact||| +Nacatl Hunt-Pride|Conflux|13|U|{5}{W}|Creature — Cat Warrior|5|4| +Burrenton Forge-Tender|Lorwyn|7|U|{W}|Creature — Kithkin Wizard|1|1| +Plover Knights|Lorwyn|35|C|{3}{W}{W}|Creature — Kithkin Knight|3|3| +Goldmeadow Harrier|Lorwyn|17|C|{W}|Creature — Kithkin Soldier|1|1| +Kithkin Harbinger|Lorwyn|26|U|{2}{W}|Creature — Kithkin Wizard|1|3| +Wellgabber Apothecary|Lorwyn|47|C|{4}{W}|Creature — Merfolk Cleric|2|3| +Lys Alana Huntmaster|Lorwyn|229|C|{2}{G}{G}|Creature — Elf Warrior|3|3| +Kinsbaile Balloonist|Lorwyn|23|C|{3}{W}|Creature — Kithkin Soldier|2|2| +Lammastide Weave|Lorwyn|226|U|{1}{G}|Instant||| +Judge of Currents|Lorwyn|22|C|{1}{W}|Creature — Merfolk Wizard|1|1| +Harpoon Sniper|Lorwyn|19|U|{2}{W}|Creature — Merfolk Archer|2|2| +Bog-Strider Ash|Lorwyn|198|C|{3}{G}|Creature — Treefolk Shaman|2|4| +Shields of Velis Vel|Lorwyn|39|C|{W}|Tribal Instant — Shapeshifter||| +Oblivion Ring|Lorwyn|34|C|{2}{W}|Enchantment||| +Inkfathom Divers|Lorwyn|70|C|{3}{U}{U}|Creature — Merfolk Soldier|3|3| +Merrow Harbinger|Lorwyn|73|U|{3}{U}|Creature — Merfolk Wizard|2|3| +Streambed Aquitects|Lorwyn|91|C|{1}{U}{U}|Creature — Merfolk Scout|2|3| +Sentinels of Glen Elendra|Lorwyn|84|C|{3}{U}|Creature — Faerie Soldier|2|3| +Faerie Harbinger|Lorwyn|61|U|{3}{U}|Creature — Faerie Wizard|2|2| +Pestermite|Lorwyn|78|C|{2}{U}|Creature — Faerie Rogue|2|1| +Spellstutter Sprite|Lorwyn|89|C|{1}{U}|Creature — Faerie Wizard|1|1| +Ethereal Whiskergill|Lorwyn|60|U|{3}{U}|Creature — Elemental|4|3| +Faerie Trickery|Lorwyn|62|C|{1}{U}{U}|Tribal Instant — Faerie||| +Glimmerdust Nap|Lorwyn|68|C|{2}{U}|Enchantment — Aura||| +Footbottom Feast|Lorwyn|115|C|{2}{B}|Instant||| +Boggart Harbinger|Lorwyn|102|U|{2}{B}|Creature — Goblin Shaman|2|1| +Boggart Shenanigans|Lorwyn|155|U|{2}{R}|Tribal Enchantment — Goblin||| +Nath's Buffoon|Lorwyn|129|C|{1}{B}|Creature — Goblin Rogue|1|1| +Ghostly Changeling|Lorwyn|116|U|{2}{B}|Creature — Shapeshifter|2|2| +Eyeblight's Ending|Lorwyn|110|C|{2}{B}|Tribal Instant — Elf||| +Warren-Scourge Elf|Lorwyn|241|C|{1}{G}|Creature — Elf Warrior|1|1| +Nectar Faerie|Lorwyn|130|U|{1}{B}|Creature — Faerie Wizard|1|1| +Thieving Sprite|Lorwyn|143|C|{2}{B}|Creature — Faerie Rogue|1|1| +Dreamspoiler Witches|Lorwyn|108|C|{3}{B}|Creature — Faerie Wizard|2|2| +Black Poplar Shaman|Lorwyn|99|C|{2}{B}|Creature — Treefolk Shaman|1|3| +Nightshade Stinger|Lorwyn|132|C|{B}|Creature — Faerie Rogue|1|1| +Peppersmoke|Lorwyn|134|C|{B}|Tribal Instant — Faerie||| +Flamekin Brawler|Lorwyn|166|C|{R}|Creature — Elemental Warrior|0|2| +Inner-Flame Igniter|Lorwyn|182|U|{2}{R}|Creature — Elemental Warrior|2|2| +Flamekin Harbinger|Lorwyn|167|U|{R}|Creature — Elemental Shaman|1|1| +Smokebraider|Lorwyn|189|C|{1}{R}|Creature — Elemental Shaman|1|1| +Ceaseless Searblades|Lorwyn|158|U|{3}{R}|Creature — Elemental Warrior|2|4| +Soulbright Flamekin|Lorwyn|190|C|{1}{R}|Creature — Elemental Shaman|2|1| +Heat Shimmer|Lorwyn|175|R|{2}{R}|Sorcery||| +Quill-Slinger Boggart|Lorwyn|137|C|{3}{B}|Creature — Goblin Warrior|3|2| +Tar Pitcher|Lorwyn|193|U|{3}{R}|Creature — Goblin Shaman|2|2| +Caterwauling Boggart|Lorwyn|157|C|{3}{R}|Creature — Goblin Shaman|2|2| +Giant Harbinger|Lorwyn|169|U|{4}{R}|Creature — Giant Shaman|3|4| +Tarfire|Lorwyn|194|C|{R}|Tribal Instant — Goblin||| +Giant's Ire|Lorwyn|170|C|{3}{R}|Tribal Sorcery — Giant||| +Blades of Velis Vel|Lorwyn|152|C|{1}{R}|Tribal Instant — Shapeshifter||| +Moonglove Winnower|Lorwyn|126|C|{3}{B}|Creature — Elf Rogue|2|3| +Elvish Harbinger|Lorwyn|207|U|{2}{G}|Creature — Elf Druid|1|2| +Leaf Gilder|Lorwyn|227|C|{1}{G}|Creature — Elf Druid|2|1| +Spring Cleaning|Lorwyn|236|C|{1}{G}|Instant||| +Cloudcrown Oak|Lorwyn|201|C|{2}{G}{G}|Creature — Treefolk Warrior|3|4| +Oakgnarl Warrior|Lorwyn|232|C|{5}{G}{G}|Creature — Treefolk Warrior|5|7| +Treefolk Harbinger|Lorwyn|239|U|{G}|Creature — Treefolk Druid|0|3| +Kithkin Mourncaller|Lorwyn|224|U|{2}{G}|Creature — Kithkin Scout|2|2| +Kithkin Daggerdare|Lorwyn|223|C|{1}{G}|Creature — Kithkin Soldier|1|1| +Rootgrapple|Lorwyn|234|C|{4}{G}|Tribal Instant — Treefolk||| +Fertile Ground|Lorwyn|211|C|{1}{G}|Enchantment — Aura||| +Thousand-Year Elixir|Lorwyn|263|R|{3}|Artifact||| +Moonglove Extract|Lorwyn|258|C|{3}|Artifact||| +Runed Stalactite|Lorwyn|260|C|{1}|Artifact — Equipment||| +Springleaf Drum|Lorwyn|261|C|{1}|Artifact||| +Wanderer's Twig|Lorwyn|265|C|{1}|Artifact||| +Soaring Hope|Lorwyn|40|C|{4}{W}|Enchantment — Aura||| +Ponder|Lorwyn|79|C|{U}|Sorcery||| +Howltooth Hollow|Lorwyn|269|R||Land||| +Spinerock Knoll|Lorwyn|274|R||Land||| +Mosswort Bridge|Lorwyn|270|R||Land||| +Merrow Commerce|Lorwyn|72|U|{1}{U}|Tribal Enchantment — Merfolk||| +Cloudgoat Ranger|Lorwyn|10|U|{3}{W}{W}|Creature — Giant Warrior|3|3| +Guardian of Cloverdell|Lorwyn|216|U|{5}{G}{G}|Creature — Treefolk Shaman|4|5| +Galepowder Mage|Lorwyn|15|R|{3}{W}|Creature — Kithkin Wizard|3|3| +Sunrise Sovereign|Lorwyn|192|R|{5}{R}|Creature — Giant Warrior|5|5| +Scattering Stroke|Lorwyn|82|U|{2}{U}{U}|Instant||| +Veteran of the Depths|Lorwyn|46|U|{3}{W}|Creature — Merfolk Soldier|2|2| +Makeshift Mannequin|Lorwyn|124|U|{3}{B}|Instant||| +Scarred Vinebreeder|Lorwyn|138|C|{1}{B}|Creature — Elf Shaman|1|1| +Elvish Promenade|Lorwyn|208|U|{3}{G}|Tribal Sorcery — Elf||| +Wings of Velis Vel|Lorwyn|97|C|{1}{U}|Tribal Instant — Shapeshifter||| +Rebellion of the Flamekin|Lorwyn|188|U|{3}{R}|Tribal Enchantment — Elemental||| +Silvergill Adept|Lorwyn|86|U|{1}{U}|Creature — Merfolk Wizard|2|1| +Imperious Perfect|Lorwyn|220|U|{2}{G}|Creature — Elf Warrior|2|2| +Faerie Tauntings|Lorwyn|112|U|{2}{B}|Tribal Enchantment — Faerie||| +Ingot Chewer|Lorwyn|180|C|{4}{R}|Creature — Elemental|3|3| +Protective Bubble|Lorwyn|80|C|{3}{U}|Enchantment — Aura||| +Consuming Bonfire|Lorwyn|161|C|{3}{R}{R}|Tribal Sorcery — Elemental||| +Timber Protector|Lorwyn|238|R|{4}{G}|Creature — Treefolk Warrior|4|6| +Hearthcage Giant|Lorwyn|174|U|{6}{R}{R}|Creature — Giant Warrior|5|5| +Ego Erasure|Lorwyn|59|U|{2}{U}|Tribal Instant — Shapeshifter||| +Neck Snap|Lorwyn|32|C|{3}{W}|Instant||| +Benthicore|Lorwyn|53|U|{6}{U}|Creature — Elemental|5|5| +Goldmeadow Stalwart|Lorwyn|18|U|{W}|Creature — Kithkin Soldier|2|2| +Merrow Reejerey|Lorwyn|74|U|{2}{U}|Creature — Merfolk Soldier|2|2| +Lignify|Lorwyn|228|C|{1}{G}|Tribal Enchantment — Treefolk Aura||| +Marsh Flitter|Lorwyn|125|U|{3}{B}|Creature — Faerie Rogue|1|1| +Mad Auntie|Lorwyn|123|R|{2}{B}|Creature — Goblin Shaman|2|2| +Boggart Loggers|Lorwyn|103|C|{2}{B}|Creature — Goblin Rogue|2|1| +Squeaking Pie Sneak|Lorwyn|142|U|{1}{B}|Creature — Goblin Rogue|2|2| +Knight of Meadowgrain|Lorwyn|28|U|{W}{W}|Creature — Kithkin Knight|2|2| +Wizened Cenn|Lorwyn|49|U|{W}{W}|Creature — Kithkin Cleric|2|2| +Immaculate Magistrate|Lorwyn|219|R|{3}{G}|Creature — Elf Shaman|2|2| +Hunter of Eyeblights|Lorwyn|119|U|{3}{B}{B}|Creature — Elf Assassin|3|3| +Jagged-Scar Archers|Lorwyn|222|U|{1}{G}{G}|Creature — Elf Archer|*|*| +Deathrender|Lorwyn|255|R|{4}|Artifact — Equipment||| +Flamekin Spitfire|Lorwyn|168|U|{1}{R}|Creature — Elemental Shaman|1|1| +Incandescent Soulstoke|Lorwyn|178|R|{2}{R}|Creature — Elemental Shaman|2|2| +Wren's Run Vanquisher|Lorwyn|245|U|{1}{G}|Creature — Elf Warrior|3|3| +Thundercloud Shaman|Lorwyn|195|U|{3}{R}{R}|Creature — Giant Shaman|4|4| +Herbal Poultice|Lorwyn|257|C|{0}|Artifact||| +Scion of Oona|Lorwyn|83|R|{2}{U}|Creature — Faerie Soldier|1|1| +Mudbutton Torchrunner|Lorwyn|185|C|{2}{R}|Creature — Goblin Warrior|1|1| +Hostility|Lorwyn|176|R|{3}{R}{R}{R}|Creature — Elemental Incarnation|6|6| +Sower of Temptation|Lorwyn|88|R|{2}{U}{U}|Creature — Faerie Wizard|2|2| +Thorn of Amethyst|Lorwyn|262|R|{2}|Artifact||| +Dread|Lorwyn|107|R|{3}{B}{B}{B}|Creature — Elemental Incarnation|6|6| +Cairn Wanderer|Lorwyn|105|R|{4}{B}|Creature — Shapeshifter|4|4| +Sygg, River Guide|Lorwyn|251|R|{W}{U}|Legendary Creature — Merfolk Wizard|2|2| +Chandra Nalaar|Lorwyn|159|R|{3}{R}{R}|Planeswalker — Chandra||| +Wanderwine Prophets|Lorwyn|95|R|{4}{U}{U}|Creature — Merfolk Wizard|4|4| +Lowland Oaf|Lorwyn|184|C|{3}{R}|Creature — Giant Warrior|3|3| +Masked Admirers|Lorwyn|230|R|{2}{G}{G}|Creature — Elf Shaman|3|2| +Gaddock Teeg|Lorwyn|248|R|{G}{W}|Legendary Creature — Kithkin Advisor|2|2| +Arbiter of Knollridge|Lorwyn|2|R|{6}{W}|Creature — Giant Wizard|5|5| +Guile|Lorwyn|69|R|{3}{U}{U}{U}|Creature — Elemental Incarnation|6|6| +Militia's Pride|Lorwyn|30|R|{1}{W}|Tribal Enchantment — Kithkin||| +Wren's Run Packmaster|Lorwyn|244|R|{3}{G}|Creature — Elf Warrior|5|5| +Shapesharer|Lorwyn|85|R|{1}{U}|Creature — Shapeshifter|1|1| +Doran, the Siege Tower|Lorwyn|247|R|{B}{G}{W}|Legendary Creature — Treefolk Shaman|0|5| +Garruk Wildspeaker|Lorwyn|213|R|{2}{G}{G}|Planeswalker — Garruk||| +Dolmen Gate|Lorwyn|256|R|{2}|Artifact||| +Colfenor's Urn|Lorwyn|254|R|{3}|Artifact||| +Liliana Vess|Lorwyn|121|R|{3}{B}{B}|Planeswalker — Liliana||| +Purity|Lorwyn|37|R|{3}{W}{W}{W}|Creature — Elemental Incarnation|6|6| +Rings of Brighthearth|Lorwyn|259|R|{3}|Artifact||| +Brion Stoutarm|Lorwyn|246|R|{2}{R}{W}|Legendary Creature — Giant Warrior|4|4| +Horde of Notions|Lorwyn|249|R|{W}{U}{B}{R}{G}|Legendary Creature — Elemental|5|5| +Jace Beleren|Lorwyn|71|R|{1}{U}{U}|Planeswalker — Jace||| +Wort, Boggart Auntie|Lorwyn|252|R|{2}{B}{R}|Legendary Creature — Goblin Shaman|3|3| +Vigor|Lorwyn|240|R|{3}{G}{G}{G}|Creature — Elemental Incarnation|6|6| +Wydwen, the Biting Gale|Lorwyn|253|R|{2}{U}{B}|Legendary Creature — Faerie Wizard|3|3| +Boggart Mob|Lorwyn|104|R|{3}{B}|Creature — Goblin Warrior|5|5| +Thoughtweft Trio|Lorwyn|44|R|{2}{W}{W}|Creature — Kithkin Soldier|5|5| +Ajani Goldmane|Lorwyn|1|R|{2}{W}{W}|Planeswalker — Ajani||| +Nova Chaser|Lorwyn|187|R|{3}{R}|Creature — Elemental Warrior|10|2| +Fire-Belly Changeling|Lorwyn|164|C|{1}{R}|Creature — Shapeshifter|1|1| +Amoeboid Changeling|Lorwyn|51|C|{1}{U}|Creature — Shapeshifter|1|1| +Flamekin Bladewhirl|Lorwyn|165|U|{R}|Creature — Elemental Warrior|2|1| +Changeling Titan|Lorwyn|200|U|{4}{G}|Creature — Shapeshifter|7|7| +Shimmering Grotto|Lorwyn|273|C||Land||| +Elvish Eulogist|Lorwyn|205|C|{G}|Creature — Elf Shaman|1|1| +Profane Command|Lorwyn|135|R|{X}{B}{B}|Sorcery||| +Austere Command|Lorwyn|3|R|{4}{W}{W}|Sorcery||| +Mirror Entity|Lorwyn|31|R|{2}{W}|Creature — Shapeshifter|1|1| +Cryptic Command|Lorwyn|56|R|{1}{U}{U}{U}|Instant||| +Ashling the Pilgrim|Lorwyn|149|R|{1}{R}|Legendary Creature — Elemental Shaman|1|1| +Primal Command|Lorwyn|233|R|{3}{G}{G}|Sorcery||| +Mistbind Clique|Lorwyn|75|R|{3}{U}|Creature — Faerie Wizard|4|4| +Surgespanner|Lorwyn|92|R|{2}{U}{U}|Creature — Merfolk Wizard|2|2| +Brigid, Hero of Kinsbaile|Lorwyn|6|R|{2}{W}{W}|Legendary Creature — Kithkin Archer|2|3| +Incendiary Command|Lorwyn|179|R|{3}{R}{R}|Sorcery||| +Dauntless Dourbark|Lorwyn|203|R|{3}{G}|Creature — Treefolk Warrior|*|*| +Silvergill Douser|Lorwyn|87|C|{1}{U}|Creature — Merfolk Wizard|1|1| +Battlewand Oak|Lorwyn|197|C|{2}{G}|Creature — Treefolk Warrior|1|3| +Vivid Grove|Lorwyn|277|U||Land||| +Vivid Marsh|Lorwyn|278|U||Land||| +Vivid Creek|Lorwyn|276|U||Land||| +Vivid Crag|Lorwyn|275|U||Land||| +Vivid Meadow|Lorwyn|279|U||Land||| +Apothecary Initiate|Shadowmoor|1|C|{W}|Creature — Kithkin Cleric|1|1| +Resplendent Mentor|Shadowmoor|19|U|{4}{W}|Creature — Kithkin Cleric|2|2| +Gravelgill Axeshark|Shadowmoor|164|C|{4}{UB}|Creature — Merfolk Soldier|3|3| +Sootwalkers|Shadowmoor|196|C|{2}{BR}{BR}|Creature — Elemental Rogue|3|3| +Merrow Grimeblotter|Shadowmoor|171|U|{3}{UB}|Creature — Merfolk Wizard|2|2| +Heartlash Cinder|Eventide|56|C|{1}{R}|Creature — Elemental Warrior|1|1| +Moonring Island|Shadowmoor|276|U||Land — Island||| +Whimwader|Shadowmoor|54|C|{4}{U}|Creature — Elemental|6|4| +Elvish Hexhunter|Shadowmoor|226|C|{GW}|Creature — Elf Shaman|1|1| +Madblind Mountain|Shadowmoor|274|U||Land — Mountain||| +Roughshod Mentor|Shadowmoor|128|U|{5}{G}|Creature — Giant Warrior|5|4| +Oona's Gatewarden|Shadowmoor|173|C|{UB}|Creature — Faerie Soldier|2|1| +Kitchen Finks|Shadowmoor|229|U|{1}{GW}{GW}|Creature — Ouphe|3|2| +Medicine Runner|Shadowmoor|230|C|{1}{GW}|Creature — Elf Cleric|2|1| +Manaforge Cinder|Shadowmoor|191|C|{BR}|Creature — Elemental Shaman|1|1| +Deepchannel Mentor|Shadowmoor|35|U|{5}{U}|Creature — Merfolk Rogue|2|2| +Blistering Dieflyn|Shadowmoor|82|C|{3}{R}|Creature — Imp|0|1| +Worldpurge|Shadowmoor|156|R|{4}{WU}{WU}{WU}{WU}|Sorcery||| +Mudbrawler Raiders|Shadowmoor|213|C|{2}{RG}{RG}|Creature — Goblin Warrior|3|3| +Puca's Mischief|Shadowmoor|47|R|{3}{U}|Enchantment||| +Foxfire Oak|Shadowmoor|115|C|{5}{G}|Creature — Treefolk Shaman|3|6| +Barrenton Cragtreads|Shadowmoor|138|C|{2}{WU}{WU}|Creature — Kithkin Scout|3|3| +Loamdragger Giant|Shadowmoor|210|C|{4}{RG}{RG}{RG}|Creature — Giant Warrior|7|6| +Rune-Cervin Rider|Shadowmoor|20|C|{3}{W}|Creature — Elf Knight|2|2| +Elsewhere Flask|Shadowmoor|250|C|{2}|Artifact||| +Drowner Initiate|Shadowmoor|36|C|{U}|Creature — Merfolk Wizard|1|1| +Old Ghastbark|Shadowmoor|232|C|{3}{GW}{GW}|Creature — Treefolk Warrior|3|6| +Fulminator Mage|Shadowmoor|188|R|{1}{BR}{BR}|Creature — Elemental Shaman|2|2| +Inundate|Eventide|25|R|{3}{U}{U}{U}|Sorcery||| +Wanderbrine Rootcutters|Shadowmoor|178|C|{2}{UB}{UB}|Creature — Merfolk Rogue|3|3| +Tattermunge Maniac|Shadowmoor|219|U|{RG}|Creature — Goblin Warrior|2|1| +Mistveil Plains|Shadowmoor|275|U||Land — Plains||| +Marshdrinker Giant|Eventide|69|U|{3}{G}{G}|Creature — Giant Warrior|4|3| +Godhead of Awe|Shadowmoor|142|R|{WU}{WU}{WU}{WU}{WU}|Creature — Spirit Avatar|4|4| +Leechridden Swamp|Shadowmoor|273|U||Land — Swamp||| +Intimidator Initiate|Shadowmoor|96|C|{R}|Creature — Goblin Shaman|1|1| +Silkbind Faerie|Shadowmoor|148|C|{2}{WU}|Creature — Faerie Rogue|1|3| +Zealous Guardian|Shadowmoor|157|C|{WU}|Creature — Kithkin Soldier|1|1| +Tatterkite|Shadowmoor|264|U|{3}|Artifact Creature — Scarecrow|2|1| +Glamer Spinners|Shadowmoor|141|U|{4}{WU}|Creature — Faerie Wizard|2|4| +Consign to Dream|Shadowmoor|32|C|{2}{U}|Instant||| +Corrosive Mentor|Shadowmoor|61|U|{2}{B}|Creature — Elemental Rogue|1|3| +Nurturer Initiate|Shadowmoor|124|C|{G}|Creature — Elf Shaman|1|1| +Everlasting Torment|Shadowmoor|186|R|{2}{BR}|Enchantment||| +Raven's Run Dragoon|Shadowmoor|235|C|{2}{GW}{GW}|Creature — Elf Knight|3|3| +Safewright Quest|Shadowmoor|240|C|{GW}|Sorcery||| +Ballynock Cohort|Shadowmoor|3|C|{2}{W}|Creature — Kithkin Soldier|2|2| +Sapseep Forest|Shadowmoor|279|U||Land — Forest||| +Scar|Shadowmoor|194|C|{BR}|Instant||| +Cinderbones|Shadowmoor|59|C|{2}{B}|Creature — Elemental Skeleton|1|1| +Scuzzback Scrapper|Shadowmoor|217|C|{RG}|Creature — Goblin Warrior|1|1| +Torpor Dust|Shadowmoor|177|C|{2}{UB}|Enchantment — Aura||| +Soul Snuffers|Eventide|45|U|{2}{B}{B}|Creature — Elemental Shaman|3|3| +Ashenmoor Cohort|Shadowmoor|56|C|{5}{B}|Creature — Elemental Warrior|4|3| +Bloodmark Mentor|Shadowmoor|83|U|{1}{R}|Creature — Goblin Warrior|1|1| +Scuttlemutt|Shadowmoor|263|C|{3}|Artifact Creature — Scarecrow|2|2| +Cultbrand Cinder|Shadowmoor|182|C|{4}{BR}|Creature — Elemental Shaman|3|3| +Torture|Shadowmoor|80|C|{B}|Enchantment — Aura||| +Worldly Counsel|Conflux|39|C|{1}{U}|Instant||| +Rupture Spire|Conflux|144|C||Land||| +Deeptread Merrow|Lorwyn|57|C|{1}{U}|Creature — Merfolk Rogue|2|1| +Aquitect's Will|Lorwyn|52|C|{U}|Tribal Sorcery — Merfolk||| +Hornet Harasser|Lorwyn|118|C|{2}{B}{B}|Creature — Goblin Shaman|2|2| +Goldmeadow Dodger|Lorwyn|16|C|{W}|Creature — Kithkin Rogue|1|1| +Zephyr Net|Lorwyn|98|C|{1}{U}|Enchantment — Aura||| +Stonybrook Angler|Lorwyn|90|C|{1}{U}|Creature — Merfolk Wizard|1|2| +Boggart Birth Rite|Lorwyn|101|C|{B}|Tribal Sorcery — Goblin||| +Cenn's Heir|Lorwyn|8|C|{1}{W}|Creature — Kithkin Soldier|1|1| +Facevaulter|Lorwyn|111|C|{B}|Creature — Goblin Warrior|1|1| +Tideshaper Mystic|Lorwyn|93|C|{U}|Creature — Merfolk Wizard|1|1| +Goatnapper|Lorwyn|172|U|{2}{R}|Creature — Goblin Rogue|2|2| +Briarhorn|Lorwyn|199|U|{3}{G}|Creature — Elemental|3|3| +Thorntooth Witch|Lorwyn|144|U|{5}{B}|Creature — Treefolk Shaman|3|4| +Springjack Knight|Lorwyn|41|C|{2}{W}|Creature — Kithkin Knight|2|1| +Kinsbaile Skirmisher|Lorwyn|24|C|{1}{W}|Creature — Kithkin Soldier|2|2| +Lys Alana Scarblade|Lorwyn|122|U|{2}{B}|Creature — Elf Assassin|1|1| +Dragon Roost|Tenth Edition|197|R|{4}{R}{R}|Enchantment||| +War-Spike Changeling|Morningtide|112|C|{3}{R}|Creature — Shapeshifter|3|3| +Moonglove Changeling|Morningtide|67|C|{2}{B}|Creature — Shapeshifter|2|2| +Changeling Sentinel|Morningtide|6|C|{3}{W}|Creature — Shapeshifter|3|2| +Game-Trail Changeling|Morningtide|123|C|{3}{G}{G}|Creature — Shapeshifter|4|4| +Mothdust Changeling|Morningtide|42|C|{U}|Creature — Shapeshifter|1|1| +Nath of the Gilt-Leaf|Lorwyn|250|R|{3}{B}{G}|Legendary Creature — Elf Warrior|4|4| +Fistful of Force|Lorwyn|212|C|{1}{G}|Instant||| +Twinning Glass|Lorwyn|264|R|{4}|Artifact||| +Lace with Moonglove|Lorwyn|225|C|{2}{G}|Instant||| +Crib Swap|Lorwyn|11|U|{2}{W}|Tribal Instant — Shapeshifter||| +Hurly-Burly|Lorwyn|177|C|{1}{R}|Sorcery||| +Lairwatch Giant|Lorwyn|29|C|{5}{W}|Creature — Giant Warrior|5|3| +Crush Underfoot|Lorwyn|162|U|{1}{R}|Tribal Instant — Giant||| +Nameless Inversion|Lorwyn|128|C|{1}{B}|Tribal Instant — Shapeshifter||| +Stinkdrinker Daredevil|Lorwyn|191|C|{2}{R}|Creature — Goblin Rogue|1|3| +Knucklebone Witch|Lorwyn|120|R|{B}|Creature — Goblin Shaman|1|1| +Hunt Down|Lorwyn|218|C|{G}|Sorcery||| +Forest|Lorwyn|300|L||Basic Land — Forest||| +Forest|Lorwyn|298|L||Basic Land — Forest||| +Island|Lorwyn|289|L||Basic Land — Island||| +Plains|Lorwyn|285|L||Basic Land — Plains||| +Plains|Lorwyn|282|L||Basic Land — Plains||| +Plains|Lorwyn|284|L||Basic Land — Plains||| +Mountain|Lorwyn|294|L||Basic Land — Mountain||| +Island|Lorwyn|287|L||Basic Land — Island||| +Forest|Lorwyn|299|L||Basic Land — Forest||| +Mountain|Lorwyn|297|L||Basic Land — Mountain||| +Mountain|Lorwyn|295|L||Basic Land — Mountain||| +Island|Lorwyn|286|L||Basic Land — Island||| +Swamp|Lorwyn|292|L||Basic Land — Swamp||| +Plains|Lorwyn|283|L||Basic Land — Plains||| +Mountain|Lorwyn|296|L||Basic Land — Mountain||| +Island|Lorwyn|288|L||Basic Land — Island||| +Forest|Lorwyn|301|L||Basic Land — Forest||| +Swamp|Lorwyn|291|L||Basic Land — Swamp||| +Swamp|Lorwyn|293|L||Basic Land — Swamp||| +Swamp|Lorwyn|290|L||Basic Land — Swamp||| +Hamletback Goliath|Lorwyn|173|R|{6}{R}|Creature — Giant Warrior|6|6| +Favor of the Mighty|Lorwyn|14|R|{1}{W}|Tribal Enchantment — Giant||| +Summon the School|Lorwyn|42|U|{3}{W}|Tribal Sorcery — Merfolk||| +Eyes of the Wisent|Lorwyn|210|R|{1}{G}|Tribal Enchantment — Elemental||| +Hoofprints of the Stag|Lorwyn|21|R|{1}{W}|Tribal Enchantment — Elemental||| +Nettlevine Blight|Lorwyn|131|R|{4}{B}{B}|Enchantment — Aura||| +Epic Proportions|Lorwyn|209|R|{4}{G}{G}|Enchantment — Aura||| +Pale Recluse|Alara Reborn|74|C|{4}{G}{W}|Creature — Spider|4|5| +Valley Rannet|Alara Reborn|61|C|{4}{R}{G}|Creature — Beast|6|3| +Igneous Pouncer|Alara Reborn|40|C|{4}{B}{R}|Creature — Elemental|5|1| +Sanctum Plowbeast|Alara Reborn|10|C|{4}{W}{U}|Artifact Creature — Beast|3|6| +Jhessian Zombies|Alara Reborn|22|C|{4}{U}{B}|Creature — Zombie|2|4| +Windbrisk Heights|Lorwyn|281|R||Land||| +Surge of Thoughtweft|Lorwyn|43|C|{1}{W}|Tribal Instant — Kithkin||| +Mournwhelk|Lorwyn|127|C|{6}{B}|Creature — Elemental|3|3| +Dawnfluke|Lorwyn|12|C|{3}{W}|Creature — Elemental|0|3| +Ringskipper|Lorwyn|81|C|{1}{U}|Creature — Faerie Wizard|1|1| +Fallowsage|Lorwyn|63|U|{3}{U}|Creature — Merfolk Wizard|2|2| +Changeling Berserker|Lorwyn|160|U|{3}{R}|Creature — Shapeshifter|5|3| +Turtleshell Changeling|Lorwyn|94|U|{3}{U}|Creature — Shapeshifter|1|4| +Heal the Scars|Lorwyn|217|C|{3}{G}|Instant||| +Skeletal Changeling|Lorwyn|140|C|{1}{B}|Creature — Shapeshifter|1|1| +Mulldrifter|Lorwyn|76|C|{4}{U}|Creature — Elemental|2|2| +Gilt-Leaf Seer|Lorwyn|215|C|{2}{G}|Creature — Elf Shaman|2|2| +Avian Changeling|Lorwyn|4|C|{2}{W}|Creature — Shapeshifter|2|2| +Paperfin Rascal|Lorwyn|77|C|{2}{U}|Creature — Merfolk Rogue|2|2| +Pollen Lullaby|Lorwyn|36|U|{1}{W}|Instant||| +Woodland Changeling|Lorwyn|242|C|{1}{G}|Creature — Shapeshifter|2|2| +Ζthersnipe|Lorwyn|50|C|{5}{U}|Creature — Elemental|4|4| +Faultgrinder|Lorwyn|163|C|{6}{R}|Creature — Elemental|4|4| +Bog Hoodlums|Lorwyn|100|C|{5}{B}|Creature — Goblin Warrior|4|1| +Warren Pilferers|Lorwyn|146|C|{4}{B}|Creature — Goblin Rogue|3|3| +Changeling Hero|Lorwyn|9|U|{4}{W}|Creature — Shapeshifter|4|4| +Thoughtseize|Lorwyn|145|R|{B}|Sorcery||| +Sentry Oak|Lorwyn|38|U|{4}{W}|Creature — Treefolk Warrior|3|5| +Hillcomber Giant|Lorwyn|20|C|{2}{W}{W}|Creature — Giant Scout|3|3| +Battle Mastery|Lorwyn|5|U|{2}{W}|Enchantment — Aura||| +Wispmare|Lorwyn|48|C|{2}{W}|Creature — Elemental|1|3| +Whirlpool Whelm|Lorwyn|96|C|{1}{U}|Instant||| +Axegrinder Giant|Lorwyn|151|C|{4}{R}{R}|Creature — Giant Warrior|6|4| +Drowner of Secrets|Lorwyn|58|U|{2}{U}|Creature — Merfolk Wizard|1|3| +Glarewielder|Lorwyn|171|U|{4}{R}|Creature — Elemental Shaman|3|1| +Gilt-Leaf Ambush|Lorwyn|214|C|{2}{G}|Tribal Instant — Elf||| +Kithkin Healer|Lorwyn|27|C|{2}{W}|Creature — Kithkin Cleric|2|2| +Lash Out|Lorwyn|183|C|{1}{R}|Instant||| +Oaken Brawler|Lorwyn|33|C|{3}{W}|Creature — Treefolk Warrior|2|4| +Broken Ambitions|Lorwyn|54|C|{X}{U}|Instant||| +Nath's Elite|Lorwyn|231|C|{4}{G}|Creature — Elf Warrior|4|2| +Weed Strangle|Lorwyn|147|C|{3}{B}{B}|Sorcery||| +Adder-Staff Boggart|Lorwyn|148|C|{1}{R}|Creature — Goblin Warrior|2|1| +Prison Term|Shadowmoor|18|U|{1}{W}{W}|Enchantment — Aura||| +Dusk Urchins|Shadowmoor|65|R|{2}{B}|Creature — Ouphe|4|3| +Archon of Justice|Eventide|1|R|{3}{W}{W}|Creature — Archon|4|4| +Order of Whiteclay|Shadowmoor|16|R|{1}{W}{W}|Creature — Kithkin Cleric|1|4| +Crabapple Cohort|Shadowmoor|109|C|{4}{G}|Creature — Treefolk Warrior|4|4| +Doomgape|Eventide|120|R|{4}{BG}{BG}{BG}|Creature — Elemental|10|10| +Corrupt|Shadowmoor|62|U|{5}{B}|Sorcery||| +Gnarled Effigy|Shadowmoor|251|U|{4}|Artifact||| +Vexing Shusher|Shadowmoor|222|R|{RG}{RG}|Creature — Goblin Shaman|2|2| +Flame Javelin|Shadowmoor|92|U|{2R}{2R}{2R}|Instant||| +Mossbridge Troll|Shadowmoor|123|R|{5}{G}{G}|Creature — Troll|5|5| +Painter's Servant|Shadowmoor|257|R|{2}|Artifact Creature — Scarecrow|1|3| +Thoughtweft Gambit|Shadowmoor|154|U|{4}{WU}{WU}|Instant||| +Grief Tyrant|Shadowmoor|189|U|{5}{BR}|Creature — Horror|8|8| +Knacksaw Clique|Shadowmoor|42|R|{3}{U}|Creature — Faerie Rogue|1|4| +Illuminated Folio|Shadowmoor|254|U|{5}|Artifact||| +Armored Ascension|Shadowmoor|2|U|{3}{W}|Enchantment — Aura||| +Briarberry Cohort|Shadowmoor|30|C|{1}{U}|Creature — Faerie Soldier|1|1| +Revelsong Horn|Shadowmoor|261|U|{2}|Artifact||| +Crowd of Cinders|Shadowmoor|63|U|{3}{B}|Creature — Elemental|*|*| +Mass Calcify|Shadowmoor|12|R|{5}{W}{W}|Sorcery||| +Crimson Wisps|Shadowmoor|88|C|{R}|Instant||| +Mudbrawler Cohort|Shadowmoor|100|C|{1}{R}|Creature — Goblin Warrior|1|1| +Ashenmoor Liege|Shadowmoor|181|R|{1}{BR}{BR}{BR}|Creature — Elemental Knight|4|1| +Jaws of Stone|Shadowmoor|97|U|{5}{R}|Sorcery||| +Puncture Bolt|Shadowmoor|102|C|{1}{R}|Instant||| +Safehold Elite|Shadowmoor|239|C|{1}{GW}|Creature — Elf Scout|2|2| +Curse of Chains|Shadowmoor|139|C|{1}{WU}|Enchantment — Aura||| +Elemental Mastery|Shadowmoor|90|R|{3}{R}|Enchantment — Aura||| +Spiteful Visions|Shadowmoor|198|R|{2}{BR}{BR}|Enchantment||| +Windbrisk Raptor|Shadowmoor|26|R|{5}{W}{W}|Creature — Bird|5|7| +River Kelpie|Shadowmoor|49|R|{3}{U}{U}|Creature — Beast|3|3| +Hollowborn Barghest|Shadowmoor|68|R|{5}{B}{B}|Creature — Demon Hound|7|6| +Impromptu Raid|Shadowmoor|209|R|{3}{RG}|Enchantment||| +Hoarder's Greed|Lorwyn|117|U|{3}{B}|Sorcery||| +Needle Drop|Lorwyn|186|C|{R}|Instant||| +Glen Elendra Pranksters|Lorwyn|67|U|{3}{U}|Creature — Faerie Wizard|1|3| +Seedguide Ash|Lorwyn|235|U|{4}{G}|Creature — Treefolk Druid|4|4| +Forced Fruition|Lorwyn|66|R|{4}{U}{U}|Enchantment||| +Prowess of the Fair|Lorwyn|136|U|{1}{B}|Tribal Enchantment — Elf||| +Boggart Forager|Lorwyn|154|C|{R}|Creature — Goblin Rogue|1|1| +Elvish Branchbender|Lorwyn|204|C|{2}{G}|Creature — Elf Druid|2|2| +Fathom Trawl|Lorwyn|65|R|{3}{U}{U}|Sorcery||| +Final Revels|Lorwyn|113|U|{4}{B}|Sorcery||| +Captivating Glance|Lorwyn|55|U|{2}{U}|Enchantment — Aura||| +Cloudthresher|Lorwyn|202|R|{2}{G}{G}{G}{G}|Creature — Elemental|7|7| +Shriekmaw|Lorwyn|139|U|{4}{B}|Creature — Elemental|3|2| +Shelldock Isle|Lorwyn|272|R||Land||| +Elvish Handservant|Lorwyn|206|C|{G}|Creature — Elf Warrior|1|1| +Exiled Boggart|Lorwyn|109|C|{1}{B}|Creature — Goblin Rogue|2|2| +Kithkin Greatheart|Lorwyn|25|C|{1}{W}|Creature — Kithkin Soldier|2|1| +Spiderwig Boggart|Lorwyn|141|C|{2}{B}|Creature — Goblin Shaman|2|2| +Boggart Sprite-Chaser|Lorwyn|156|C|{1}{R}|Creature — Goblin Warrior|1|2| +Fodder Launch|Lorwyn|114|U|{3}{B}|Tribal Sorcery — Goblin||| +Triclopean Sight|Lorwyn|45|C|{1}{W}|Enchantment — Aura||| +Colfenor's Plans|Lorwyn|106|R|{2}{B}{B}|Enchantment||| +Oona's Prowler|Lorwyn|133|R|{1}{B}|Creature — Faerie Rogue|3|1| +Entangling Trap|Lorwyn|13|U|{1}{W}|Enchantment||| +Familiar's Ruse|Lorwyn|64|U|{U}{U}|Instant||| +Scapeshift|Morningtide|136|R|{2}{G}{G}|Sorcery||| +Woodland Guidance|Lorwyn|243|U|{3}{G}|Sorcery||| +Ashling's Prerogative|Lorwyn|150|R|{1}{R}|Enchantment||| +Blind-Spot Giant|Lorwyn|153|C|{2}{R}|Creature — Giant Warrior|4|3| +Inner-Flame Acolyte|Lorwyn|181|C|{1}{R}{R}|Creature — Elemental Shaman|2|2| +Wild Ricochet|Lorwyn|196|R|{2}{R}{R}|Instant||| +Sylvan Echoes|Lorwyn|237|U|{G}|Enchantment||| +Rage Reflection|Shadowmoor|104|R|{4}{R}{R}|Enchantment||| +Thought Reflection|Shadowmoor|53|R|{4}{U}{U}{U}|Enchantment||| +Sunken Ruins|Shadowmoor|280|R||Land||| +Din of the Fireherd|Shadowmoor|184|R|{5}{BR}{BR}{BR}|Sorcery||| +Oversoul of Dusk|Shadowmoor|234|R|{GW}{GW}{GW}{GW}{GW}|Creature — Spirit Avatar|5|5| +Fossil Find|Shadowmoor|206|U|{RG}|Sorcery||| +Grim Poppet|Shadowmoor|252|R|{7}|Artifact Creature — Scarecrow|4|4| +Wheel of Sun and Moon|Shadowmoor|243|R|{GW}{GW}|Enchantment — Aura||| +Memory Plunder|Shadowmoor|169|R|{UB}{UB}{UB}{UB}|Instant||| +Glen Elendra Liege|Shadowmoor|163|R|{1}{UB}{UB}{UB}|Creature — Faerie Knight|2|3| +Mystic Gate|Shadowmoor|277|R||Land||| +Wooded Bastion|Shadowmoor|281|R||Land||| +Mana Reflection|Shadowmoor|122|R|{4}{G}{G}|Enchantment||| +Boon Reflection|Shadowmoor|5|R|{4}{W}|Enchantment||| +Fire-Lit Thicket|Shadowmoor|271|R||Land||| +Swans of Bryn Argoll|Shadowmoor|151|R|{2}{WU}{WU}|Creature — Bird Spirit|4|3| +Fracturing Gust|Shadowmoor|227|R|{2}{GW}{GW}{GW}|Instant||| +Puppeteer Clique|Shadowmoor|75|R|{3}{B}{B}|Creature — Faerie Wizard|3|2| +Wound Reflection|Shadowmoor|81|R|{5}{B}|Enchantment||| +Graven Cairns|Shadowmoor|272|R||Land||| +Polluted Bonds|Shadowmoor|74|R|{3}{B}{B}|Enchantment||| +Tyrannize|Shadowmoor|201|R|{3}{BR}{BR}|Sorcery||| +Deus of Calamity|Shadowmoor|204|R|{RG}{RG}{RG}{RG}{RG}|Creature — Spirit Avatar|6|6| +Incremental Growth|Lorwyn|221|U|{3}{G}{G}|Sorcery||| +Isleback Spawn|Shadowmoor|40|R|{5}{U}{U}|Creature — Kraken|4|8| +Regal Force|Eventide|74|R|{4}{G}{G}{G}|Creature — Elemental|5|5| +Gloomwidow|Shadowmoor|117|U|{2}{G}|Creature — Spider|3|3| +Smolder Initiate|Shadowmoor|78|C|{B}|Creature — Elemental Shaman|1|1| +Sygg, River Cutthroat|Shadowmoor|176|R|{UB}{UB}|Legendary Creature — Merfolk Rogue|1|3| +Splitting Headache|Shadowmoor|79|C|{3}{B}|Sorcery||| +Wort, the Raidmother|Shadowmoor|223|R|{4}{RG}{RG}|Legendary Creature — Goblin Shaman|3|3| +Pili-Pala|Shadowmoor|258|C|{2}|Artifact Creature — Scarecrow|1|1| +Rustrazor Butcher|Shadowmoor|105|C|{1}{R}|Creature — Goblin Warrior|1|2| +Rhys the Redeemed|Shadowmoor|237|R|{GW}|Legendary Creature — Elf Warrior|1|1| +Safehold Sentry|Shadowmoor|22|C|{1}{W}|Creature — Elf Warrior|2|2| +Knollspine Dragon|Shadowmoor|98|R|{5}{R}{R}|Creature — Dragon|7|5| +Somnomancer|Shadowmoor|149|C|{1}{WU}|Creature — Kithkin Wizard|2|1| +Leech Bonder|Shadowmoor|43|U|{2}{U}|Creature — Merfolk Soldier|3|3| +Augury Adept|Shadowmoor|137|R|{1}{WU}{WU}|Creature — Kithkin Wizard|2|2| +Thistledown Liege|Shadowmoor|153|R|{1}{WU}{WU}{WU}|Creature — Kithkin Knight|1|3| +Fate Transfer|Shadowmoor|161|C|{1}{UB}|Instant||| +Hatchet Bully|Eventide|54|U|{3}{R}|Creature — Goblin Warrior|3|3| +Loch Korrigan|Shadowmoor|71|C|{3}{B}|Creature — Spirit|1|1| +Chainbreaker|Shadowmoor|249|C|{2}|Artifact Creature — Scarecrow|3|3| +Trip Noose|Shadowmoor|266|U|{2}|Artifact||| +Kulrath Knight|Shadowmoor|190|U|{3}{BR}{BR}|Creature — Elemental Knight|3|3| +Last Breath|Shadowmoor|11|C|{1}{W}|Instant||| +Greater Auramancy|Shadowmoor|7|R|{1}{W}|Enchantment||| +Poison the Well|Shadowmoor|193|C|{2}{BR}{BR}|Sorcery||| +Boartusk Liege|Shadowmoor|202|R|{1}{RG}{RG}{RG}|Creature — Goblin Knight|3|4| +Inescapable Brute|Shadowmoor|95|C|{5}{R}|Creature — Giant Warrior|3|3| +Midnight Banshee|Shadowmoor|72|R|{3}{B}{B}{B}|Creature — Spirit|5|5| +Incremental Blight|Shadowmoor|70|U|{3}{B}{B}|Sorcery||| +Scrapbasket|Shadowmoor|262|C|{4}|Artifact Creature — Scarecrow|3|2| +Lingering Tormentor|Eventide|36|U|{3}{B}|Creature — Spirit|2|2| +Wilt-Leaf Liege|Shadowmoor|245|R|{1}{GW}{GW}{GW}|Creature — Elf Knight|4|4| +Retaliator Griffin|Alara Reborn|123|R|{1}{R}{G}{W}|Creature — Griffin|2|2| +Reliquary Tower|Conflux|143|U||Land||| +Might of Alara|Conflux|85|C|{G}|Instant||| +Asha's Favor|Conflux|2|C|{2}{W}|Enchantment — Aura||| +Rotting Rats|Conflux|51|C|{1}{B}|Creature — Zombie Rat|1|1| +Voices from the Void|Conflux|55|U|{4}{B}|Sorcery||| +Duergar Assailant|Eventide|136|C|{RW}|Creature — Dwarf Soldier|1|1| +Odious Trow|Eventide|125|C|{BG}|Creature — Troll|1|1| +Nip Gwyllion|Eventide|92|C|{WB}|Creature — Hag|1|1| +Helix Pinnacle|Eventide|68|R|{G}|Enchantment||| +Divinity of Pride|Eventide|86|R|{WB}{WB}{WB}{WB}{WB}|Creature — Spirit Avatar|4|4| +Slippery Bogle|Eventide|160|C|{GU}|Creature — Beast|1|1| +Loyal Gyrfalcon|Eventide|11|U|{3}{W}|Creature — Bird|3|3| +Cauldron Haze|Eventide|84|U|{1}{WB}|Instant||| +Cinder Pyromancer|Eventide|50|C|{2}{R}|Creature — Elemental Shaman|0|1| +Riverfall Mimic|Eventide|111|C|{1}{UR}|Creature — Shapeshifter|2|1| +Drain the Well|Eventide|121|C|{2}{BG}{BG}|Sorcery||| +Unmake|Eventide|96|C|{WB}{WB}{WB}|Instant||| +Merrow Levitator|Eventide|26|C|{3}{U}|Creature — Merfolk Wizard|2|3| +Flickerwisp|Eventide|6|U|{1}{W}{W}|Creature — Elemental|3|1| +Hobgoblin Dragoon|Eventide|142|C|{2}{RW}|Creature — Goblin Knight|1|2| +Nettle Sentinel|Eventide|71|C|{G}|Creature — Elf Warrior|2|2| +Tilling Treefolk|Eventide|78|C|{2}{G}|Creature — Treefolk Druid|1|3| +Wickerbough Elder|Eventide|80|C|{3}{G}|Creature — Treefolk Shaman|4|4| +Bloodied Ghost|Eventide|83|U|{1}{WB}{WB}|Creature — Spirit|3|3| +Nightsky Mimic|Eventide|91|C|{1}{WB}|Creature — Shapeshifter|2|1| +Duergar Mine-Captain|Eventide|138|U|{2}{RW}|Creature — Dwarf Soldier|2|1| +Invert the Skies|Eventide|155|U|{3}{GU}|Instant||| +Phosphorescent Feast|Eventide|72|U|{2}{G}{G}{G}|Sorcery||| +Rise of the Hobgoblins|Eventide|145|R|{RW}{RW}|Enchantment||| +Favor of the Overbeing|Eventide|151|C|{1}{GU}|Enchantment — Aura||| +Stalker Hag|Eventide|129|U|{BG}{BG}{BG}|Creature — Hag|3|2| +Stream Hopper|Eventide|113|C|{UR}|Creature — Goblin|1|1| +Mindwrack Liege|Eventide|104|R|{3}{UR}{UR}{UR}|Creature — Horror|4|4| +Worm Harvest|Eventide|131|R|{2}{BG}{BG}{BG}|Sorcery||| +Ashling, the Extinguisher|Eventide|33|R|{2}{B}{B}|Legendary Creature — Elemental Shaman|4|4| +Light from Within|Eventide|10|R|{2}{W}{W}|Enchantment||| +Talara's Bane|Eventide|47|C|{1}{B}|Sorcery||| +Wistful Selkie|Eventide|165|U|{GU}{GU}{GU}|Creature — Merfolk Wizard|2|2| +Shorecrasher Mimic|Eventide|159|C|{1}{GU}|Creature — Shapeshifter|2|1| +Fire at Will|Eventide|140|C|{RW}{RW}{RW}|Instant||| +Soul Reap|Eventide|44|C|{1}{B}|Sorcery||| +Overbeing of Myth|Eventide|157|R|{GU}{GU}{GU}{GU}{GU}|Creature — Spirit Avatar|*|*| +Gift of the Deity|Eventide|122|C|{4}{BG}|Enchantment — Aura||| +Dominus of Fealty|Eventide|102|R|{UR}{UR}{UR}{UR}{UR}|Creature — Spirit Avatar|4|4| +Edge of the Divinity|Eventide|87|C|{WB}|Enchantment — Aura||| +Merrow Bonegnawer|Eventide|37|C|{B}|Creature — Merfolk Rogue|1|1| +Duskdale Wurm|Eventide|67|U|{5}{G}{G}|Creature — Wurm|7|7| +Battlegate Mimic|Eventide|133|C|{1}{RW}|Creature — Shapeshifter|2|1| +Spirit of the Hearth|Eventide|14|R|{4}{W}{W}|Creature — Cat Spirit|4|5| +Watchwing Scarecrow|Shadowmoor|268|C|{4}|Artifact Creature — Scarecrow|2|4| +Rattleblaze Scarecrow|Shadowmoor|259|C|{6}|Artifact Creature — Scarecrow|5|3| +Blazethorn Scarecrow|Shadowmoor|246|C|{5}|Artifact Creature — Scarecrow|3|3| +Wingrattle Scarecrow|Shadowmoor|270|C|{3}|Artifact Creature — Scarecrow|2|2| +Thornwatch Scarecrow|Shadowmoor|265|C|{6}|Artifact Creature — Scarecrow|4|4| +Enchanted Evening|Shadowmoor|140|R|{3}{WU}{WU}|Enchantment||| +Woodfall Primus|Shadowmoor|135|R|{5}{G}{G}{G}|Creature — Treefolk Shaman|6|6| +Prismatic Omen|Shadowmoor|126|R|{1}{G}|Enchantment||| +Scourge of the Nobilis|Eventide|146|C|{2}{RW}|Enchantment — Aura||| +Noggle Ransacker|Eventide|109|U|{2}{UR}|Creature — Noggle Rogue|2|1| +Canker Abomination|Eventide|115|U|{2}{BG}{BG}|Creature — Treefolk Horror|6|6| +Puncture Blast|Eventide|60|C|{2}{R}|Instant||| +Spitemare|Eventide|147|U|{2}{RW}{RW}|Creature — Elemental|3|3| +Gilder Bairn|Eventide|152|U|{1}{GU}{GU}|Creature — Ouphe|1|3| +Impelled Giant|Eventide|58|U|{4}{R}{R}|Creature — Giant Warrior|3|3| +Parapet Watchers|Shadowmoor|45|C|{2}{U}|Creature — Kithkin Soldier|2|2| +Twilight Shepherd|Shadowmoor|25|R|{3}{W}{W}{W}|Creature — Angel|5|5| +Oona, Queen of the Fae|Shadowmoor|172|R|{3}{UB}{UB}{UB}|Legendary Creature — Faerie Wizard|5|5| +Cauldron of Souls|Shadowmoor|248|R|{5}|Artifact||| +Witherscale Wurm|Shadowmoor|134|R|{4}{G}{G}|Creature — Wurm|9|9| +Furystoke Giant|Shadowmoor|93|R|{3}{R}{R}|Creature — Giant Warrior|3|3| +Spectral Procession|Shadowmoor|23|U|{2W}{2W}{2W}|Sorcery||| +Tower Above|Shadowmoor|131|U|{2G}{2G}{2G}|Sorcery||| +Scuzzback Marauders|Shadowmoor|216|C|{4}{RG}|Creature — Goblin Warrior|5|2| +Beseech the Queen|Shadowmoor|57|U|{2B}{2B}{2B}|Sorcery||| +Necroskitter|Eventide|38|R|{1}{B}{B}|Creature — Elemental|1|4| +Quillspike|Eventide|126|U|{2}{BG}|Creature — Beast|1|1| +Fable of Wolf and Owl|Eventide|150|R|{3}{GU}{GU}{GU}|Enchantment||| +Harvest Gwyllion|Eventide|90|C|{2}{WB}{WB}|Creature — Hag|2|4| +Murkfiend Liege|Eventide|156|R|{2}{GU}{GU}{GU}|Creature — Horror|4|4| +Clout of the Dominus|Eventide|99|C|{UR}|Enchantment — Aura||| +Kithkin Spellduster|Eventide|8|C|{4}{W}|Creature — Kithkin Wizard|2|3| +Mirror Sheen|Eventide|105|R|{1}{UR}{UR}|Enchantment||| +Trapjaw Kelpie|Eventide|164|C|{4}{GU}{GU}|Creature — Beast|3|3| +Hateflayer|Eventide|55|R|{5}{R}{R}|Creature — Elemental|5|5| +Reflecting Pool|Shadowmoor|278|R||Land||| +Power of Fire|Shadowmoor|101|C|{1}{R}|Enchantment — Aura||| +Door of Destinies|Morningtide|143|R|{4}|Artifact||| +Supreme Exemplar|Morningtide|53|R|{6}{U}|Creature — Elemental|10|10| +Fire Juggler|Morningtide|90|C|{2}{R}|Creature — Goblin Shaman|2|2| +Sensation Gorger|Morningtide|102|R|{1}{R}{R}|Creature — Goblin Shaman|2|2| +Maralen of the Mornsong|Morningtide|65|R|{1}{B}{B}|Legendary Creature — Elf Wizard|2|3| +Vendilion Clique|Morningtide|55|R|{1}{U}{U}|Legendary Creature — Faerie Wizard|3|1| +Titan's Revenge|Morningtide|110|R|{X}{R}{R}|Sorcery||| +Walker of the Grove|Morningtide|138|U|{6}{G}{G}|Creature — Elemental|7|7| +Hostile Realm|Morningtide|91|C|{2}{R}|Enchantment — Aura||| +Heritage Druid|Morningtide|126|U|{G}|Creature — Elf Druid|1|1| +Bosk Banneret|Morningtide|114|C|{1}{G}|Creature — Treefolk Shaman|1|3| +Kindled Fury|Morningtide|92|C|{R}|Instant||| +Negate|Morningtide|43|C|{1}{U}|Instant||| +Offalsnout|Morningtide|71|U|{2}{B}|Creature — Elemental|2|2| +Notorious Throng|Morningtide|45|R|{3}{U}|Tribal Sorcery — Rogue||| +Lunk Errant|Morningtide|94|C|{5}{R}|Creature — Giant Warrior|4|4| +Mosquito Guard|Morningtide|18|C|{W}|Creature — Kithkin Soldier|1|1| +Rivals' Duel|Morningtide|99|U|{3}{R}|Sorcery||| +Frogtosser Banneret|Morningtide|64|C|{1}{B}|Creature — Goblin Rogue|1|1| +Stonehewer Giant|Morningtide|24|R|{3}{W}{W}|Creature — Giant Warrior|4|4| +Sigil Tracer|Morningtide|49|R|{1}{U}{U}|Creature — Merfolk Wizard|2|2| +Preeminent Captain|Morningtide|20|R|{2}{W}|Creature — Kithkin Soldier|2|2| +Cloak and Dagger|Morningtide|141|U|{2}|Tribal Artifact — Rogue Equipment||| +Fendeep Summoner|Morningtide|61|R|{4}{B}|Creature — Treefolk Shaman|3|5| +Redeem the Lost|Morningtide|21|U|{1}{W}|Instant||| +Research the Deep|Morningtide|46|U|{1}{U}|Sorcery||| +Release the Ants|Morningtide|98|U|{1}{R}|Instant||| +Ballyrush Banneret|Morningtide|1|C|{1}{W}|Creature — Kithkin Soldier|2|1| +Reins of the Vinesteed|Morningtide|134|C|{3}{G}|Enchantment — Aura||| +Mind Spring|Morningtide|41|R|{X}{U}{U}|Sorcery||| +Final-Sting Faerie|Morningtide|63|C|{3}{B}|Creature — Faerie Assassin|2|2| +Rhys the Exiled|Morningtide|135|R|{2}{G}|Legendary Creature — Elf Warrior|3|2| +Bitterblossom|Morningtide|58|R|{1}{B}|Tribal Enchantment — Faerie||| +Feudkiller's Verdict|Morningtide|9|R|{4}{W}{W}|Tribal Sorcery — Giant||| +Brighthearth Banneret|Morningtide|88|C|{1}{R}|Creature — Elemental Warrior|1|1| +Stonybrook Banneret|Morningtide|51|C|{1}{U}|Creature — Merfolk Wizard|1|1| +Waterspout Weavers|Morningtide|56|U|{3}{U}{U}|Creature — Merfolk Wizard|3|3| +Shinewend|Morningtide|23|C|{1}{W}|Creature — Elemental|0|0| +Knowledge Exploitation|Morningtide|38|R|{5}{U}{U}|Tribal Sorcery — Rogue||| +Pulling Teeth|Morningtide|75|C|{1}{B}|Sorcery||| +Burrenton Shield-Bearers|Morningtide|4|C|{4}{W}|Creature — Kithkin Soldier|3|3| +Winnower Patrol|Morningtide|139|C|{2}{G}|Creature — Elf Warrior|3|2| +Wandering Graybeard|Morningtide|27|U|{3}{W}{W}|Creature — Giant Wizard|4|4| +Leaf-Crowned Elder|Morningtide|128|R|{2}{G}{G}|Creature — Treefolk Shaman|3|5| +Burrenton Bombardier|Morningtide|3|C|{2}{W}|Creature — Kithkin Soldier|2|2| +Merrow Witsniper|Morningtide|40|C|{U}|Creature — Merfolk Rogue|1|1| +Stingmoggie|Morningtide|106|C|{3}{R}|Creature — Elemental|0|0| +Blightsoil Druid|Morningtide|59|C|{1}{B}|Creature — Elf Druid|1|2| +Earthbrawn|Morningtide|119|C|{1}{G}|Instant||| +Reveillark|Morningtide|22|R|{4}{W}|Creature — Elemental|4|3| +Prickly Boggart|Morningtide|74|C|{B}|Creature — Goblin Rogue|1|1| +Stream of Unconsciousness|Morningtide|52|C|{U}|Tribal Instant — Wizard||| +Mutavault|Morningtide|148|R||Land||| +Disperse|Morningtide|31|C|{1}{U}|Instant||| +Wolf-Skull Shaman|Morningtide|140|U|{1}{G}|Creature — Elf Shaman|2|2| +Swell of Courage|Morningtide|26|U|{3}{W}{W}|Instant||| +Warren Weirding|Morningtide|82|U|{1}{B}|Tribal Sorcery — Goblin||| +Ink Dissolver|Morningtide|36|C|{1}{U}|Creature — Merfolk Wizard|2|1| +Weight of Conscience|Morningtide|28|C|{1}{W}|Enchantment — Aura||| +Weed-Pruner Poplar|Morningtide|83|C|{4}{B}|Creature — Treefolk Assassin|3|3| +Thieves' Fortune|Morningtide|54|U|{2}{U}|Tribal Instant — Rogue||| +Inspired Sprite|Morningtide|37|U|{3}{U}|Creature — Faerie Wizard|2|2| +Dewdrop Spy|Morningtide|30|C|{1}{U}{U}|Creature — Faerie Rogue|2|2| +Floodchaser|Morningtide|34|C|{5}{U}|Creature — Elemental|0|0| +Revive the Fallen|Morningtide|76|U|{1}{B}|Sorcery||| +Shard Volley|Morningtide|103|C|{R}|Instant||| +Daily Regimen|Morningtide|8|U|{W}|Enchantment — Aura||| +Noggin Whack|Morningtide|70|U|{2}{B}{B}|Tribal Sorcery — Rogue||| +Squeaking Pie Grubfellows|Morningtide|78|C|{3}{B}|Creature — Goblin Shaman|3|2| +Kithkin Zephyrnaut|Morningtide|16|C|{2}{W}|Creature — Kithkin Soldier|2|2| +Grimoire Thief|Morningtide|35|R|{U}{U}|Creature — Merfolk Rogue|2|2| +Sage of Fables|Morningtide|47|U|{2}{U}|Creature — Merfolk Wizard|2|2| +Recross the Paths|Morningtide|133|U|{2}{G}|Sorcery||| +Mudbutton Clanger|Morningtide|95|C|{R}|Creature — Goblin Warrior|1|1| +Cenn's Tactician|Morningtide|5|U|{W}|Creature — Kithkin Soldier|1|1| +Spitebellows|Morningtide|105|U|{5}{R}|Creature — Elemental|6|1| +Lightning Crafter|Morningtide|93|R|{3}{R}|Creature — Goblin Shaman|3|3| +Morsel Theft|Morningtide|68|C|{2}{B}{B}|Tribal Sorcery — Rogue||| +Thornbite Staff|Morningtide|145|U|{2}|Tribal Artifact — Shaman Equipment||| +Stinkdrinker Bandit|Morningtide|80|U|{3}{B}|Creature — Goblin Rogue|2|1| +Fertilid|Morningtide|122|C|{2}{G}|Creature — Elemental|0|0| +Nevermaker|Morningtide|44|U|{3}{U}|Creature — Elemental|2|3| +Unstoppable Ash|Morningtide|137|R|{3}{G}|Creature — Treefolk Warrior|5|5| +Idyllic Tutor|Morningtide|12|R|{2}{W}|Sorcery||| +Festercreep|Morningtide|62|C|{1}{B}|Creature — Elemental|0|0| +Hunting Triad|Morningtide|127|U|{3}{G}|Tribal Sorcery — Elf||| +Indomitable Ancients|Morningtide|13|R|{2}{W}{W}|Creature — Treefolk Warrior|2|10| +Everbark Shaman|Morningtide|121|C|{4}{G}|Creature — Treefolk Shaman|3|5| +Boldwyr Intimidator|Morningtide|86|U|{5}{R}{R}|Creature — Giant Warrior|5|5| +Kinsbaile Borderguard|Morningtide|14|R|{1}{W}{W}|Creature — Kithkin Soldier|1|1| +Countryside Crusher|Morningtide|89|R|{1}{R}{R}|Creature — Giant Warrior|3|3| +Sage's Dousing|Morningtide|48|U|{2}{U}|Tribal Instant — Wizard||| +Orchard Warden|Morningtide|131|U|{4}{G}{G}|Creature — Treefolk Shaman|4|6| +Ambassador Oak|Morningtide|113|C|{3}{G}|Creature — Treefolk Warrior|3|3| +Nightshade Schemers|Morningtide|69|U|{4}{B}|Creature — Faerie Wizard|3|2| +Elvish Warrior|Morningtide|120|C|{G}{G}|Creature — Elf Warrior|2|3| +Pyroclast Consul|Morningtide|96|U|{3}{R}{R}|Creature — Elemental Shaman|3|3| +Weirding Shaman|Morningtide|84|R|{1}{B}|Creature — Goblin Shaman|2|1| +Veteran's Armaments|Morningtide|146|U|{2}|Tribal Artifact — Soldier Equipment||| +Springjack Shepherd|Eventide|15|U|{3}{W}|Creature — Kithkin Wizard|1|2| +Dream Fracture|Eventide|19|U|{1}{U}{U}|Instant||| +Stillmoon Cavalier|Eventide|95|R|{1}{WB}{WB}|Creature — Zombie Knight|2|1| +Double Cleave|Eventide|135|C|{1}{RW}|Instant||| +Stigma Lasher|Eventide|62|R|{R}{R}|Creature — Elemental Shaman|2|2| +Groundling Pouncer|Eventide|154|U|{1}{GU}|Creature — Faerie|2|1| +Nucklavee|Eventide|110|U|{4}{UR}{UR}|Creature — Beast|4|4| +Oona's Blackguard|Morningtide|72|U|{1}{B}|Creature — Faerie Rogue|1|1| +Seething Pathblazer|Morningtide|101|C|{2}{R}|Creature — Elemental Warrior|2|2| +Borderland Behemoth|Morningtide|87|R|{5}{R}{R}|Creature — Giant Warrior|4|4| +Rage Forger|Morningtide|97|U|{2}{R}|Creature — Elemental Shaman|2|2| +Latchkey Faerie|Morningtide|39|C|{3}{U}|Creature — Faerie Rogue|3|1| +Stenchskipper|Morningtide|79|R|{3}{B}|Creature — Elemental|6|5| +Distant Melody|Morningtide|32|C|{3}{U}|Sorcery||| +Earwig Squad|Morningtide|60|R|{3}{B}{B}|Creature — Goblin Rogue|5|3| +Boldwyr Heavyweights|Morningtide|85|R|{2}{R}{R}|Creature — Giant Warrior|8|8| +Graceful Reprieve|Morningtide|11|U|{1}{W}|Instant||| +Bramblewood Paragon|Morningtide|115|U|{1}{G}|Creature — Elf Warrior|2|2| +Luminescent Rain|Morningtide|129|C|{2}{G}|Instant||| +Coordinated Barrage|Morningtide|7|C|{W}|Instant||| +Vengeful Firebrand|Morningtide|111|R|{3}{R}|Creature — Elemental Warrior|5|2| +Sunflare Shaman|Morningtide|108|C|{1}{R}|Creature — Elemental Shaman|2|1| +Roar of the Crowd|Morningtide|100|C|{3}{R}|Sorcery||| +Greatbow Doyen|Morningtide|125|R|{4}{G}|Creature — Elf Archer|2|4| +Pack's Disdain|Morningtide|73|C|{1}{B}|Instant||| +Stonybrook Schoolmaster|Morningtide|25|C|{2}{W}|Creature — Merfolk Wizard|1|2| +Declaration of Naught|Morningtide|29|R|{U}{U}|Enchantment||| +Scarblade Elite|Morningtide|77|R|{B}{B}|Creature — Elf Assassin|2|2| +Kinsbaile Cavalier|Morningtide|15|R|{3}{W}|Creature — Kithkin Knight|2|2| +Auntie's Snitch|Morningtide|57|R|{2}{B}|Creature — Goblin Rogue|3|1| +Tattermunge Duo|Shadowmoor|218|C|{2}{RG}|Creature — Goblin Warrior Shaman|2|3| +Farhaven Elf|Shadowmoor|113|C|{2}{G}|Creature — Elf Druid|1|1| +Ghastlord of Fugue|Shadowmoor|162|R|{UB}{UB}{UB}{UB}{UB}|Creature — Spirit Avatar|4|4| +Murderous Redcap|Shadowmoor|192|U|{2}{BR}{BR}|Creature — Goblin Assassin|2|2| +Thistledown Duo|Shadowmoor|152|C|{2}{WU}|Creature — Kithkin Soldier Wizard|2|2| +Emberstrike Duo|Shadowmoor|185|C|{1}{BR}|Creature — Elemental Warrior Shaman|1|1| +Gravelgill Duo|Shadowmoor|165|C|{2}{UB}|Creature — Merfolk Rogue Warrior|2|1| +Pale Wayfarer|Shadowmoor|17|U|{5}{W}{W}|Creature — Spirit Giant|4|4| +Dire Undercurrents|Shadowmoor|159|R|{3}{UB}{UB}|Enchantment||| +Heartmender|Shadowmoor|228|R|{2}{GW}{GW}|Creature — Elemental|2|2| +Firespout|Shadowmoor|205|U|{2}{RG}|Sorcery||| +Umbral Mantle|Shadowmoor|267|U|{3}|Artifact — Equipment||| +Merrow Wavebreakers|Shadowmoor|44|C|{4}{U}|Creature — Merfolk Soldier|3|3| +Cache Raiders|Eventide|18|U|{3}{U}{U}|Creature — Merfolk Rogue|4|4| +Suture Spirit|Eventide|16|U|{1}{W}|Creature — Spirit|1|1| +Indigo Faerie|Eventide|24|U|{1}{U}|Creature — Faerie Wizard|1|1| +Twilight Mire|Eventide|180|R||Land||| +Hotheaded Giant|Eventide|57|C|{3}{R}|Creature — Giant Warrior|4|4| +Aerie Ouphes|Eventide|65|C|{4}{G}|Creature — Ouphe|3|3| +Grazing Kelpie|Eventide|153|C|{3}{GU}|Creature — Beast|2|3| +Talonrend|Eventide|30|U|{4}{U}|Creature — Elemental|0|5| +Primalcrux|Eventide|73|R|{G}{G}{G}{G}{G}{G}|Creature — Elemental|*|*| +Flame Jab|Eventide|53|C|{R}|Sorcery||| +Cascade Bluffs|Eventide|175|R||Land||| +Rugged Prairie|Eventide|178|R||Land||| +Recumbent Bliss|Eventide|13|C|{2}{W}|Enchantment — Aura||| +Twinblade Slasher|Eventide|79|U|{G}|Creature — Elf Warrior|1|1| +Duergar Cave-Guard|Eventide|51|U|{3}{R}|Creature — Dwarf Warrior|1|3| +Savage Conception|Eventide|75|U|{3}{G}{G}|Sorcery||| +Glamerdye|Eventide|21|R|{1}{U}|Instant||| +Monstrify|Eventide|70|C|{3}{G}|Sorcery||| +Razorfin Abolisher|Eventide|28|U|{2}{U}|Creature — Merfolk Wizard|2|2| +Voracious Hatchling|Eventide|97|U|{3}{WB}|Creature — Elemental|6|6| +Fetid Heath|Eventide|176|R||Land||| +Syphon Life|Eventide|46|U|{1}{B}{B}|Sorcery||| +Noxious Hatchling|Eventide|124|U|{3}{BG}|Creature — Elemental|6|6| +Chameleon Colossus|Morningtide|116|R|{2}{G}{G}|Creature — Shapeshifter|4|4| +Battletide Alchemist|Morningtide|2|R|{3}{W}{W}|Creature — Kithkin Cleric|3|4| +Taurean Mauler|Morningtide|109|R|{2}{R}|Creature — Shapeshifter|2|2| +Gilt-Leaf Archdruid|Morningtide|124|R|{3}{G}{G}|Creature — Elf Druid|3|3| +Ancient Amphitheater|Lorwyn|266|R||Land||| +Gilt-Leaf Palace|Lorwyn|268|R||Land||| +Wanderwine Hub|Lorwyn|280|R||Land||| +Auntie's Hovel|Lorwyn|267|R||Land||| +Secluded Glen|Lorwyn|271|R||Land||| +Rustic Clachan|Morningtide|150|R||Land||| +Lys Alana Bowmaster|Morningtide|130|C|{2}{G}|Creature — Elf Archer|2|2| +Order of the Golden Cricket|Morningtide|19|C|{1}{W}|Creature — Kithkin Knight|2|2| +Primal Beyond|Morningtide|149|R||Land||| +Murmuring Bosk|Morningtide|147|R||Land — Forest||| +Cenn's Enlistment|Eventide|3|C|{3}{W}|Sorcery||| +Cold-Eyed Selkie|Eventide|149|R|{1}{GU}{GU}|Creature — Merfolk Rogue|1|1| +Outrage Shaman|Eventide|59|U|{3}{R}{R}|Creature — Goblin Shaman|2|2| +Needle Specter|Eventide|39|R|{1}{B}{B}|Creature — Specter|1|1| +Oona's Grace|Eventide|27|C|{2}{U}|Instant||| +Wilderness Hypnotist|Eventide|32|C|{2}{U}{U}|Creature — Merfolk Wizard|1|3| +Sturdy Hatchling|Eventide|163|U|{3}{GU}|Creature — Elemental|6|6| +Belligerent Hatchling|Eventide|134|U|{3}{RW}|Creature — Elemental|6|6| +Ballynock Trapper|Eventide|2|C|{3}{W}|Creature — Kithkin Soldier|2|2| +Flooded Grove|Eventide|177|R||Land||| +Shrewd Hatchling|Eventide|112|U|{3}{UR}|Creature — Elemental|6|6| +Raven's Crime|Eventide|41|C|{B}|Sorcery||| +Deity of Scars|Eventide|118|R|{BG}{BG}{BG}{BG}{BG}|Creature — Spirit Avatar|7|7| +Aerie Mystics|Conflux|1|U|{4}{W}|Creature — Bird Wizard|3|3| +Wilt-Leaf Cavaliers|Shadowmoor|244|U|{GW}{GW}{GW}|Creature — Elf Knight|3|4| +Safehold Duo|Shadowmoor|238|C|{3}{GW}|Creature — Elf Warrior Shaman|2|4| +Faerie Macabre|Shadowmoor|66|C|{1}{B}{B}|Creature — Faerie Rogue|2|2| +Counterbore|Shadowmoor|33|R|{3}{U}{U}|Instant||| +Wasp Lancer|Shadowmoor|179|U|{UB}{UB}{UB}|Creature — Faerie Soldier|3|2| +Manamorphose|Shadowmoor|211|C|{1}{RG}|Instant||| +Boggart Ram-Gang|Shadowmoor|203|U|{RG}{RG}{RG}|Creature — Goblin Warrior|3|3| +Demigod of Revenge|Shadowmoor|183|R|{BR}{BR}{BR}{BR}{BR}|Creature — Spirit Avatar|5|4| +Mirrorweave|Shadowmoor|143|R|{2}{WU}{WU}|Instant||| +Juvenile Gloomwidow|Shadowmoor|121|C|{G}{G}|Creature — Spider|1|3| +Knollspine Invocation|Shadowmoor|99|R|{1}{R}{R}|Enchantment||| +Plumeveil|Shadowmoor|145|U|{WU}{WU}{WU}|Creature — Elemental|4|4| +Ashenmoor Gouger|Shadowmoor|180|U|{BR}{BR}{BR}|Creature — Elemental Warrior|4|4| +Woeleecher|Shadowmoor|27|C|{5}{W}|Creature — Elemental|3|5| +Sootstoke Kindler|Shadowmoor|195|C|{1}{BR}|Creature — Elemental Shaman|1|1| +Slinking Giant|Shadowmoor|106|U|{2}{R}{R}|Creature — Giant Rogue|4|4| +Howl of the Night Pack|Shadowmoor|119|U|{6}{G}|Sorcery||| +Hungry Spriggan|Shadowmoor|120|C|{2}{G}|Creature — Goblin Warrior|1|1| +Spell Syphon|Shadowmoor|52|C|{1}{U}|Instant||| +Dramatic Entrance|Shadowmoor|111|R|{3}{G}{G}|Instant||| +Runed Halo|Shadowmoor|21|R|{W}{W}|Enchantment||| +Sickle Ripper|Shadowmoor|77|C|{1}{B}|Creature — Elemental Warrior|2|1| +Inkwell Leviathan|Conflux|30|R|{7}{U}{U}|Artifact Creature — Leviathan|7|11| +Deglamer|Morningtide|118|C|{1}{G}|Instant||| +Reach of Branches|Morningtide|132|R|{4}{G}|Tribal Instant — Treefolk||| +Diviner's Wand|Morningtide|142|U|{3}|Tribal Artifact — Wizard Equipment||| +Obsidian Battle-Axe|Morningtide|144|U|{3}|Tribal Artifact — Warrior Equipment||| +Nobilis of War|Eventide|144|R|{RW}{RW}{RW}{RW}{RW}|Creature — Spirit Avatar|3|4| +Spitting Image|Eventide|162|R|{4}{GU}{GU}|Sorcery||| +Inside Out|Eventide|103|C|{1}{UR}|Instant||| +Kithkin Zealot|Eventide|9|C|{1}{W}|Creature — Kithkin Cleric|1|3| +Swirling Spriggan|Eventide|76|U|{2}{G}{G}|Creature — Goblin Shaman|3|3| +Banishing Knack|Eventide|17|C|{U}|Instant||| +Aphotic Wisps|Shadowmoor|55|C|{B}|Instant||| +Gloomwidow's Feast|Shadowmoor|118|C|{3}{G}|Instant||| +Heap Doll|Shadowmoor|253|U|{1}|Artifact Creature — Scarecrow|1|1| +Scarscale Ritual|Shadowmoor|175|C|{1}{UB}|Sorcery||| +Lurebound Scarecrow|Shadowmoor|256|U|{3}|Artifact Creature — Scarecrow|4|4| +Inkfathom Infiltrator|Shadowmoor|167|U|{UB}{UB}|Creature — Merfolk Rogue|2|1| +Prismwake Merrow|Shadowmoor|46|C|{2}{U}|Creature — Merfolk Wizard|2|1| +Reknit|Shadowmoor|236|U|{1}{GW}|Instant||| +Advice from the Fae|Shadowmoor|28|U|{2U}{2U}{2U}|Sorcery||| +Horde of Boggarts|Shadowmoor|94|U|{3}{R}|Creature — Goblin|*|*| +Wicker Warcrawler|Shadowmoor|269|U|{5}|Artifact Creature — Scarecrow|6|6| +Lockjaw Snapper|Shadowmoor|255|U|{4}|Artifact Creature — Scarecrow|2|2| +Endure|Eventide|5|U|{3}{W}{W}|Instant||| +Fiery Bombardment|Eventide|52|R|{1}{R}|Enchantment||| +Hearthfire Hobgoblin|Eventide|141|U|{RW}{RW}{RW}|Creature — Goblin Soldier|2|2| +Unwilling Recruit|Eventide|64|U|{X}{R}{R}{R}|Sorcery||| +Sanity Grinding|Eventide|29|R|{U}{U}{U}|Sorcery||| +Creakwood Ghoul|Eventide|34|U|{4}{B}|Creature — Plant Zombie|3|3| +Dream Thief|Eventide|20|C|{2}{U}|Creature — Faerie Rogue|2|1| +Patrol Signaler|Eventide|12|U|{1}{W}|Creature — Kithkin Soldier|1|1| +Smoldering Butcher|Eventide|42|C|{3}{B}|Creature — Elemental Warrior|4|2| +Crag Puca|Eventide|101|U|{UR}{UR}{UR}|Creature — Shapeshifter|2|4| +Noggle Bandit|Eventide|106|C|{1}{UR}{UR}|Creature — Noggle Rogue|2|2| +Deathbringer Liege|Eventide|85|R|{2}{WB}{WB}{WB}|Creature — Horror|3|4| +Restless Apparition|Eventide|94|U|{WB}{WB}{WB}|Creature — Spirit|2|2| +Cankerous Thirst|Eventide|116|U|{3}{BG}|Instant||| +Hallowed Burial|Eventide|7|R|{3}{W}{W}|Sorcery||| +Talara's Battalion|Eventide|77|R|{1}{G}|Creature — Elf Warrior|4|3| +Pyrrhic Revival|Eventide|93|R|{3}{WB}{WB}{WB}|Sorcery||| +Umbra Stalker|Eventide|48|R|{4}{B}{B}{B}|Creature — Elemental|*|*| +Call the Skybreaker|Eventide|98|R|{5}{UR}{UR}|Sorcery||| +Snakeform|Eventide|161|C|{2}{GU}|Instant||| +Moonhold|Eventide|143|U|{2}{RW}|Instant||| +Wake Thrasher|Eventide|31|R|{2}{U}|Creature — Merfolk Soldier|1|1| +Creakwood Liege|Eventide|117|R|{1}{BG}{BG}{BG}|Creature — Horror|2|2| +Batwing Brume|Eventide|81|U|{1}{WB}|Instant||| +Thunderblust|Eventide|63|R|{2}{R}{R}{R}|Creature — Elemental|7|2| +Idle Thoughts|Eventide|23|U|{3}{U}|Enchantment||| +Nightmare Incursion|Eventide|40|R|{5}{B}|Sorcery||| +Beckon Apparition|Eventide|82|C|{WB}|Instant||| +Unnerving Assault|Eventide|114|U|{2}{UR}|Instant||| +Desecrator Hag|Eventide|119|C|{2}{BG}{BG}|Creature — Hag|2|2| +Crackleburr|Eventide|100|R|{1}{UR}{UR}|Creature — Elemental|2|2| +Stomping Slabs|Morningtide|107|U|{2}{R}|Sorcery||| +Mind Shatter|Morningtide|66|R|{X}{B}{B}|Sorcery||| +Cream of the Crop|Morningtide|117|R|{1}{G}|Enchantment||| +Fencer Clique|Morningtide|33|C|{2}{U}{U}|Creature — Faerie Soldier|3|2| +Violet Pall|Morningtide|81|C|{4}{B}|Tribal Instant — Faerie||| +Slithermuse|Morningtide|50|R|{2}{U}{U}|Creature — Elemental|3|3| +Forfend|Morningtide|10|C|{1}{W}|Instant||| +Meadowboon|Morningtide|17|U|{2}{W}{W}|Creature — Elemental|3|3| +Shared Animosity|Morningtide|104|R|{2}{R}|Enchantment||| +Infectious Horror|Conflux|47|C|{3}{B}|Creature — Zombie Horror|2|2| +Forest|Shadowmoor|299|L||Basic Land — Forest||| +Swamp|Shadowmoor|291|L||Basic Land — Swamp||| +Seedcradle Witch|Shadowmoor|241|U|{GW}|Creature — Elf Shaman|1|1| +Plains|Shadowmoor|285|L||Basic Land — Plains||| +Island|Shadowmoor|287|L||Basic Land — Island||| +Island|Shadowmoor|288|L||Basic Land — Island||| +Kinscaer Harpoonist|Shadowmoor|41|C|{3}{U}|Creature — Kithkin Soldier|2|2| +Forest|Shadowmoor|298|L||Basic Land — Forest||| +Drove of Elves|Shadowmoor|112|U|{3}{G}|Creature — Elf|*|*| +Inkfathom Witch|Shadowmoor|168|U|{1}{UB}|Creature — Merfolk Wizard|1|1| +Spiteflame Witch|Shadowmoor|197|U|{1}{BR}|Creature — Elemental Shaman|2|1| +Mistmeadow Witch|Shadowmoor|144|U|{1}{WU}|Creature — Kithkin Wizard|1|1| +Mountain|Shadowmoor|297|L||Basic Land — Mountain||| +Island|Shadowmoor|289|L||Basic Land — Island||| +Tattermunge Witch|Shadowmoor|220|U|{1}{RG}|Creature — Goblin Shaman|2|1| +Mountain|Shadowmoor|296|L||Basic Land — Mountain||| +Swamp|Shadowmoor|293|L||Basic Land — Swamp||| +Plains|Shadowmoor|284|L||Basic Land — Plains||| +Mountain|Shadowmoor|295|L||Basic Land — Mountain||| +Swamp|Shadowmoor|290|L||Basic Land — Swamp||| +Boggart Shenanigans|Duel Decks: Elves vs. Goblins|54|U|{2}{R}|Tribal Enchantment — Goblin||| +Mudbutton Torchrunner|Duel Decks: Elves vs. Goblins|46|C|{2}{R}|Creature — Goblin Warrior|1|1| +Tar Pitcher|Duel Decks: Elves vs. Goblins|53|U|{3}{R}|Creature — Goblin Shaman|2|2| +Tarfire|Duel Decks: Elves vs. Goblins|56|C|{R}|Tribal Instant — Goblin||| +Goblin Cohort|Duel Decks: Elves vs. Goblins|38|C|{R}|Creature — Goblin Warrior|2|2| +Ib Halfheart, Goblin Tactician|Duel Decks: Elves vs. Goblins|43|R|{3}{R}|Legendary Creature — Goblin Advisor|3|2| +Mogg War Marshal|Duel Decks: Elves vs. Goblins|45|C|{1}{R}|Creature — Goblin Warrior|1|1| +Mogg Fanatic|Duel Decks: Elves vs. Goblins|44|U|{R}|Creature — Goblin|1|1| +Siege-Gang Commander|Duel Decks: Elves vs. Goblins|32|R|{3}{R}{R}|Creature — Goblin|2|2| +Clickslither|Duel Decks: Elves vs. Goblins|34|R|{1}{R}{R}{R}|Creature — Insect|3|3| +Gempalm Incinerator|Duel Decks: Elves vs. Goblins|37|U|{2}{R}|Creature — Goblin|2|1| +Skirk Drill Sergeant|Duel Decks: Elves vs. Goblins|49|U|{1}{R}|Creature — Goblin|2|1| +Emberwilde Augur|Duel Decks: Elves vs. Goblins|35|C|{1}{R}|Creature — Goblin Shaman|2|1| +Goblin Matron|Duel Decks: Elves vs. Goblins|39|U|{2}{R}|Creature — Goblin|1|1| +Goblin Warchief|Duel Decks: Elves vs. Goblins|42|U|{1}{R}{R}|Creature — Goblin|2|2| +Goblin Burrows|Duel Decks: Elves vs. Goblins|58|U||Land||| +Skirk Fire Marshal|Duel Decks: Elves vs. Goblins|50|R|{3}{R}{R}|Creature — Goblin|2|2| +Goblin Ringleader|Duel Decks: Elves vs. Goblins|40|U|{3}{R}|Creature — Goblin|2|2| +Mountain|Duel Decks: Elves vs. Goblins|61|L||Basic Land — Mountain||| +Mountain|Duel Decks: Elves vs. Goblins|59|L||Basic Land — Mountain||| +Mountain|Duel Decks: Elves vs. Goblins|62|L||Basic Land — Mountain||| +Forest|Duel Decks: Elves vs. Goblins|28|L||Basic Land — Forest||| +Forest|Duel Decks: Elves vs. Goblins|29|L||Basic Land — Forest||| +Ambush Commander|Duel Decks: Elves vs. Goblins|1|R|{3}{G}{G}|Creature — Elf|2|2| +Leering Emblem|Eventide|171|R|{2}|Artifact — Equipment||| +Ward of Bones|Eventide|174|R|{6}|Artifact||| +Sapling of Colfenor|Eventide|128|R|{3}{BG}{BG}|Legendary Creature — Treefolk Shaman|2|5| +Altar Golem|Eventide|166|R|{7}|Artifact Creature — Golem|*|*| +Endless Horizons|Eventide|4|R|{3}{W}|Enchantment||| +Springjack Pasture|Eventide|179|R||Land||| +Glen Elendra Archmage|Eventide|22|R|{3}{U}|Creature — Faerie Wizard|2|2| +Evershrike|Eventide|88|R|{3}{WB}{WB}|Creature — Elemental Spirit|2|2| +Scarecrone|Eventide|172|R|{3}|Artifact Creature — Scarecrow|1|2| +Hag Hedge-Mage|Eventide|123|U|{2}{BG}|Creature — Hag Shaman|2|2| +Allosaurus Rider|Duel Decks: Elves vs. Goblins|2|R|{5}{G}{G}|Creature — Elf Warrior|1+*|1+*| +Crumbling Ashes|Eventide|35|U|{1}{B}|Enchantment||| +Balefire Liege|Eventide|132|R|{2}{RW}{RW}{RW}|Creature — Spirit Horror|2|4| +Figure of Destiny|Eventide|139|R|{RW}|Creature — Kithkin|1|1| +Waves of Aggression|Eventide|148|R|{3}{RW}{RW}|Sorcery||| +Rekindled Flame|Eventide|61|R|{2}{R}{R}|Sorcery||| +Wellwisher|Duel Decks: Elves vs. Goblins|15|C|{1}{G}|Creature — Elf|1|1| +Wirewood Herald|Duel Decks: Elves vs. Goblins|16|C|{1}{G}|Creature — Elf|1|1| +Wirewood Lodge|Duel Decks: Elves vs. Goblins|26|U||Land||| +Llanowar Elves|Duel Decks: Elves vs. Goblins|9|C|{G}|Creature — Elf Druid|1|1| +Heedless One|Duel Decks: Elves vs. Goblins|7|U|{3}{G}|Creature — Elf Avatar|*|*| +Gempalm Strider|Duel Decks: Elves vs. Goblins|6|U|{1}{G}|Creature — Elf|2|2| +Timberwatch Elf|Duel Decks: Elves vs. Goblins|13|C|{2}{G}|Creature — Elf|1|2| +Elvish Eulogist|Duel Decks: Elves vs. Goblins|3|C|{G}|Creature — Elf Shaman|1|1| +Elvish Harbinger|Duel Decks: Elves vs. Goblins|4|U|{2}{G}|Creature — Elf Druid|1|2| +Imperious Perfect|Duel Decks: Elves vs. Goblins|8|U|{2}{G}|Creature — Elf Warrior|2|2| +Lys Alana Huntmaster|Duel Decks: Elves vs. Goblins|10|C|{2}{G}{G}|Creature — Elf Warrior|3|3| +Wren's Run Vanquisher|Duel Decks: Elves vs. Goblins|19|U|{1}{G}|Creature — Elf Warrior|3|3| +Elvish Warrior|Duel Decks: Elves vs. Goblins|5|C|{G}{G}|Creature — Elf Warrior|2|3| +Hollowsage|Shadowmoor|69|U|{3}{B}|Creature — Merfolk Wizard|2|2| +Plains|Shadowmoor|282|L||Basic Land — Plains||| +Plains|Shadowmoor|283|L||Basic Land — Plains||| +Island|Shadowmoor|286|L||Basic Land — Island||| +Kithkin Shielddare|Shadowmoor|10|C|{1}{W}|Creature — Kithkin Soldier|1|1| +Swamp|Shadowmoor|292|L||Basic Land — Swamp||| +Mountain|Shadowmoor|294|L||Basic Land — Mountain||| +Forest|Shadowmoor|301|L||Basic Land — Forest||| +Forest|Shadowmoor|300|L||Basic Land — Forest||| +Smash to Smithereens|Shadowmoor|107|C|{1}{R}|Instant||| +Antler Skulkin|Eventide|167|C|{5}|Artifact Creature — Scarecrow|3|3| +Hoof Skulkin|Eventide|169|C|{3}|Artifact Creature — Scarecrow|2|2| +Jawbone Skulkin|Eventide|170|C|{1}|Artifact Creature — Scarecrow|1|1| +Fang Skulkin|Eventide|168|C|{2}|Artifact Creature — Scarecrow|2|1| +Shell Skulkin|Eventide|173|C|{4}|Artifact Creature — Scarecrow|3|2| +Mirror-Sigil Sergeant|Conflux|12|M|{5}{W}|Creature — Rhino Soldier|4|4| +Woodlurker Mimic|Eventide|130|C|{1}{BG}|Creature — Shapeshifter|2|1| +Gleeful Sabotage|Shadowmoor|116|C|{1}{G}|Sorcery||| +Ghastly Discovery|Shadowmoor|39|C|{2}{U}|Sorcery||| +Cerulean Wisps|Shadowmoor|31|C|{U}|Instant||| +Boggart Arsonists|Shadowmoor|85|C|{2}{R}|Creature — Goblin Rogue|2|1| +Faerie Swarm|Shadowmoor|37|U|{3}{U}|Creature — Faerie|*|*| +Wild Swing|Shadowmoor|108|U|{3}{R}|Sorcery||| +Spawnwrithe|Shadowmoor|129|R|{2}{G}|Creature — Elemental|2|2| +Burn Trail|Shadowmoor|86|C|{3}{R}|Sorcery||| +Disturbing Plot|Shadowmoor|64|C|{1}{B}|Sorcery||| +Mistmeadow Skulk|Shadowmoor|14|U|{1}{W}|Creature — Kithkin Rogue|1|1| +Raking Canopy|Shadowmoor|127|U|{1}{G}{G}|Enchantment||| +Flow of Ideas|Shadowmoor|38|U|{5}{U}|Sorcery||| +Giantbaiting|Shadowmoor|207|C|{2}{RG}|Sorcery||| +Niveous Wisps|Shadowmoor|15|C|{W}|Instant||| +Kithkin Rabble|Shadowmoor|9|U|{3}{W}|Creature — Kithkin|*|*| +Puresight Merrow|Shadowmoor|146|U|{WU}{WU}|Creature — Merfolk Wizard|2|2| +Traitor's Roar|Shadowmoor|200|C|{4}{BR}|Sorcery||| +Dawnglow Infusion|Shadowmoor|225|U|{X}{GW}|Sorcery||| +Steel of the Godhead|Shadowmoor|150|C|{2}{WU}|Enchantment — Aura||| +Ζthertow|Shadowmoor|136|C|{3}{WU}|Instant||| +Torrent of Souls|Shadowmoor|199|U|{4}{BR}|Sorcery||| +Turn to Mist|Shadowmoor|155|C|{1}{WU}|Instant||| +Fists of the Demigod|Shadowmoor|187|C|{1}{BR}|Enchantment — Aura||| +Runes of the Deus|Shadowmoor|215|C|{4}{RG}|Enchantment — Aura||| +River's Grasp|Shadowmoor|174|U|{3}{UB}|Sorcery||| +Mine Excavation|Shadowmoor|13|C|{1}{W}|Sorcery||| +Gloomlance|Shadowmoor|67|C|{3}{B}{B}|Sorcery||| +Viridescent Wisps|Shadowmoor|132|C|{G}|Instant||| +Memory Sluice|Shadowmoor|170|C|{UB}|Sorcery||| +Sinking Feeling|Shadowmoor|51|C|{2}{U}|Enchantment — Aura||| +Repel Intruders|Shadowmoor|147|U|{3}{WU}|Instant||| +Shield of the Oversoul|Shadowmoor|242|C|{2}{GW}|Enchantment — Aura||| +Cursecatcher|Shadowmoor|34|U|{U}|Creature — Merfolk Wizard|1|1| +Flourishing Defenses|Shadowmoor|114|U|{4}{G}|Enchantment||| +Inquisitor's Snare|Shadowmoor|8|C|{1}{W}|Instant||| +Ember Gale|Shadowmoor|91|C|{3}{R}|Sorcery||| +Cemetery Puca|Shadowmoor|158|R|{1}{UB}{UB}|Creature — Shapeshifter|1|2| +Presence of Gond|Shadowmoor|125|C|{2}{G}|Enchantment — Aura||| +Helm of the Ghastlord|Shadowmoor|166|C|{3}{UB}|Enchantment — Aura||| +Mercy Killing|Shadowmoor|231|U|{2}{GW}|Instant||| +Barkshell Blessing|Shadowmoor|224|C|{GW}|Instant||| +Guttural Response|Shadowmoor|208|U|{RG}|Instant||| +Dream Salvage|Shadowmoor|160|U|{UB}|Instant||| +Noggle Bridgebreaker|Eventide|107|C|{2}{UR}{UR}|Creature — Noggle Rogue|4|3| +Soot Imp|Eventide|43|U|{1}{B}{B}|Creature — Imp|1|2| +Bloom Tender|Eventide|66|R|{1}{G}|Creature — Elf Druid|1|1| +Rendclaw Trow|Eventide|127|C|{2}{BG}|Creature — Troll|2|2| +Chaotic Backlash|Eventide|49|U|{4}{R}|Instant||| +Voice of the Woods|Duel Decks: Elves vs. Goblins|14|R|{3}{G}{G}|Creature — Elf|2|2| +Elvish Promenade|Duel Decks: Elves vs. Goblins|20|U|{3}{G}|Tribal Sorcery — Elf||| +Moonglove Extract|Duel Decks: Elves vs. Goblins|24|C|{3}|Artifact||| +Harmonize|Duel Decks: Elves vs. Goblins|22|U|{2}{G}{G}|Sorcery||| +Sylvan Messenger|Duel Decks: Elves vs. Goblins|12|U|{3}{G}|Creature — Elf|2|2| +Wildsize|Duel Decks: Elves vs. Goblins|23|C|{2}{G}|Instant||| +Giant Growth|Duel Decks: Elves vs. Goblins|21|C|{G}|Instant||| +Wood Elves|Duel Decks: Elves vs. Goblins|18|C|{2}{G}|Creature — Elf Scout|1|1| +Forest|Duel Decks: Elves vs. Goblins|31|L||Basic Land — Forest||| +Forest|Duel Decks: Elves vs. Goblins|30|L||Basic Land — Forest||| +Elf Warrior|Duel Decks: Elves vs. Goblins|2|C||Creature — Elf Warrior|1|1| +Elemental|Duel Decks: Elves vs. Goblins|1|C||Creature — Elemental|7|7| +Goblin Sledder|Duel Decks: Elves vs. Goblins|41|C|{R}|Creature — Goblin|1|1| +Reckless One|Duel Decks: Elves vs. Goblins|48|U|{3}{R}|Creature — Goblin Avatar|*|*| +Skirk Prospector|Duel Decks: Elves vs. Goblins|51|C|{R}|Creature — Goblin|1|1| +Flamewave Invoker|Duel Decks: Elves vs. Goblins|36|U|{2}{R}|Creature — Goblin Mutant|2|2| +Spitting Earth|Duel Decks: Elves vs. Goblins|55|C|{1}{R}|Sorcery||| +Skirk Shaman|Duel Decks: Elves vs. Goblins|52|C|{1}{R}{R}|Creature — Goblin Shaman|2|2| +Goblin|Duel Decks: Elves vs. Goblins|3|C||Creature — Goblin|1|1| +Mountain|Duel Decks: Elves vs. Goblins|60|L||Basic Land — Mountain||| +Noggle Hedge-Mage|Eventide|108|U|{2}{UR}|Creature — Noggle Wizard|2|2| +Selkie Hedge-Mage|Eventide|158|U|{2}{GU}|Creature — Merfolk Wizard|2|2| +Duergar Hedge-Mage|Eventide|137|U|{2}{RW}|Creature — Dwarf Shaman|2|2| +Gwyllion Hedge-Mage|Eventide|89|U|{2}{WB}|Creature — Hag Wizard|2|2| +Arcane Denial|Masters Edition|31|C|{1}{U}|Instant||| +Balduvian Horde|Masters Edition|86|R|{2}{R}{R}|Creature — Human Barbarian|5|5| +Apprentice Wizard|Masters Edition|30|C|{1}{U}{U}|Creature — Human Wizard|0|1| +Contagion|Masters Edition|64|R|{3}{B}{B}|Instant||| +Diminishing Returns|Masters Edition|32|R|{2}{U}{U}|Sorcery||| +Exile|Masters Edition|12|C|{2}{W}|Instant||| +Force of Will|Masters Edition|33|R|{3}{U}{U}|Instant||| +Gargantuan Gorilla|Masters Edition|119|R|{4}{G}{G}{G}|Creature — Ape|7|7| +Lake of the Dead|Masters Edition|177|R||Land||| +Lord of Tresserhorn|Masters Edition|149|R|{1}{U}{B}{R}|Legendary Creature — Zombie|10|4| +Phelddagrif|Masters Edition|150|R|{1}{G}{W}{U}|Legendary Creature — Phelddagrif|4|4| +Phyrexian War Beast|Masters Edition|162|U|{3}|Artifact Creature — Beast|3|4| +Shield Sphere|Masters Edition|166|C|{0}|Artifact Creature — Wall|0|6| +Thawing Glaciers|Masters Edition|180|R||Land||| +Yavimaya Ants|Masters Edition|140|U|{2}{G}{G}|Creature — Insect|5|1| +Ashnod's Transmogrant|Masters Edition|152|C|{1}|Artifact||| +Ivory Tower|Masters Edition|158|R|{1}|Artifact||| +Mishra's Factory|Masters Edition|178|U||Land||| +Onulet|Masters Edition|161|C|{3}|Artifact Creature — Construct|2|2| +Orcish Mechanics|Masters Edition|106|U|{2}{R}|Creature — Orc|1|1| +Su-Chi|Masters Edition|168|R|{4}|Artifact Creature — Construct|4|4| +Tawnos's Coffin|Masters Edition|169|R|{4}|Artifact||| +Cuombajj Witches|Masters Edition|65|C|{B}{B}|Creature — Human Wizard|1|3| +Diamond Valley|Masters Edition|175|R||Land||| +Erg Raiders|Masters Edition|68|C|{1}{B}|Creature — Human Warrior|2|3| +Ghazbαn Ogre|Masters Edition|120|C|{G}|Creature — Ogre|2|2| +Giant Tortoise|Masters Edition|34|C|{1}{U}|Creature — Turtle|1|1| +Ifh-Bνff Efreet|Masters Edition|123|R|{2}{G}{G}|Creature — Efreet|3|3| +Juzαm Djinn|Masters Edition|74|R|{2}{B}{B}|Creature — Djinn|5|5| +Oubliette|Masters Edition|79|C|{1}{B}{B}|Enchantment||| +Ring of Ma'rϋf|Masters Edition|163|R|{5}|Artifact||| +Serendib Efreet|Masters Edition|50|R|{2}{U}|Creature — Efreet|3|4| +Ball Lightning|Masters Edition|87|R|{R}{R}{R}|Creature — Elemental|6|1| +Brothers of Fire|Masters Edition|89|C|{1}{R}{R}|Creature — Human Shaman|2|2| +Carnivorous Plant|Masters Edition|115|U|{3}{G}|Creature — Plant Wall|4|5| +Dust to Dust|Masters Edition|10|C|{1}{W}{W}|Sorcery||| +Eater of the Dead|Masters Edition|67|U|{4}{B}|Creature — Horror|3|4| +Fissure|Masters Edition|93|C|{3}{R}{R}|Instant||| +Holy Light|Masters Edition|16|C|{2}{W}|Instant||| +Knights of Thorn|Masters Edition|19|C|{3}{W}|Creature — Human Knight|2|2| +Preacher|Masters Edition|24|R|{1}{W}{W}|Creature — Human Cleric|1|1| +Stone Calendar|Masters Edition|167|U|{5}|Artifact||| +Sunken City|Masters Edition|51|U|{U}{U}|Enchantment||| +The Fallen|Masters Edition|69|U|{1}{B}{B}{B}|Creature — Zombie|2|3| +Breeding Pit|Masters Edition|62|U|{3}{B}|Enchantment||| +Derelor|Masters Edition|66|U|{3}{B}|Creature — Thrull|4|4| +Dwarven Soldier|Masters Edition|92|C|{1}{R}|Creature — Dwarf Soldier|2|1| +Hand of Justice|Masters Edition|15|R|{5}{W}|Creature — Avatar|2|6| +High Tide|Masters Edition|35|U|{U}|Instant||| +Homarid Spawning Bed|Masters Edition|36|U|{U}{U}|Enchantment||| +Hymn to Tourach|Masters Edition|73|U|{B}{B}|Sorcery||| +Order of Leitbur|Masters Edition|22|C|{W}{W}|Creature — Human Cleric Knight|2|1| +Order of the Ebon Hand|Masters Edition|78|C|{B}{B}|Creature — Cleric Knight|2|1| +Thorn Thallid|Masters Edition|135|C|{1}{G}{G}|Creature — Fungus|2|2| +Thrull Champion|Masters Edition|83|R|{4}{B}|Creature — Thrull|2|2| +Thrull Retainer|Masters Edition|84|C|{B}|Enchantment — Aura||| +Vodalian Knights|Masters Edition|55|U|{1}{U}{U}|Creature — Merfolk Knight|2|2| +Autumn Willow|Masters Edition|113|R|{4}{G}{G}|Legendary Creature — Avatar|4|4| +Baron Sengir|Masters Edition|58|R|{5}{B}{B}{B}|Legendary Creature — Vampire|5|5| +Hungry Mist|Masters Edition|121|C|{2}{G}{G}|Creature — Elemental|6|2| +Primal Order|Masters Edition|125|R|{2}{G}{G}|Enchantment||| +Roots|Masters Edition|127|C|{3}{G}|Enchantment — Aura||| +Sea Sprite|Masters Edition|48|C|{1}{U}|Creature — Faerie|1|1| +Spectral Bears|Masters Edition|131|U|{1}{G}|Creature — Bear Spirit|3|3| +Chub Toad|Masters Edition|116|C|{2}{G}|Creature — Frog|1|1| +Fyndhorn Elves|Masters Edition|118|C|{G}|Creature — Elf Druid|1|1| +Goblin Mutant|Masters Edition|96|U|{2}{R}{R}|Creature — Goblin Mutant|5|3| +Hallowed Ground|Masters Edition|14|U|{1}{W}|Enchantment||| +Hydroblast|Masters Edition|37|C|{U}|Instant||| +Illusionary Forces|Masters Edition|38|U|{3}{U}|Creature — Illusion|4|4| +Illusionary Wall|Masters Edition|39|C|{4}{U}|Creature — Illusion Wall|7|4| +Jokulhaups|Masters Edition|100|R|{4}{R}{R}|Sorcery||| +Mαrton Stromgald|Masters Edition|104|R|{2}{R}{R}|Legendary Creature — Human Knight|1|1| +Nature's Lore|Masters Edition|124|C|{1}{G}|Sorcery||| +Polar Kraken|Masters Edition|44|R|{8}{U}{U}{U}|Creature — Kraken|11|11| +Pox|Masters Edition|82|R|{B}{B}{B}|Sorcery||| +Pyroblast|Masters Edition|107|C|{R}|Instant||| +Seraph|Masters Edition|26|R|{6}{W}|Creature — Angel|4|4| +Shambling Strider|Masters Edition|129|C|{4}{G}{G}|Creature — Yeti|5|5| +Urza's Bauble|Masters Edition|170|U|{0}|Artifact||| +Walking Wall|Masters Edition|172|U|{4}|Artifact Creature — Wall|0|6| +Animate Dead|Masters Edition|57|U|{1}{B}|Enchantment — Aura||| +Animate Wall|Masters Edition|2|U|{W}|Enchantment — Aura||| +Ankh of Mishra|Masters Edition|151|R|{2}|Artifact||| +Armageddon|Masters Edition|4|R|{3}{W}|Sorcery||| +Benalish Hero|Masters Edition|5|C|{W}|Creature — Human Soldier|1|1| +Berserk|Masters Edition|114|R|{G}|Instant||| +Clockwork Beast|Masters Edition|153|U|{6}|Artifact Creature — Beast|0|4| +Copper Tablet|Masters Edition|154|U|{2}|Artifact||| +Granite Gargoyle|Masters Edition|99|U|{2}{R}|Creature — Gargoyle|2|2| +Ice Storm|Masters Edition|122|U|{2}{G}|Sorcery||| +Keldon Warlord|Masters Edition|101|U|{2}{R}{R}|Creature — Human Barbarian|*|*| +Lightning Bolt|Masters Edition|102|C|{R}|Instant||| +Mana Flare|Masters Edition|103|R|{2}{R}|Enchantment||| +Nether Shadow|Masters Edition|77|U|{B}{B}|Creature — Spirit|1|1| +Nevinyrral's Disk|Masters Edition|160|R|{4}|Artifact||| +Paralyze|Masters Edition|80|C|{B}|Enchantment — Aura||| +Phantom Monster|Masters Edition|43|C|{3}{U}|Creature — Illusion|3|3| +Psychic Venom|Masters Edition|46|C|{1}{U}|Enchantment — Aura||| +Scryb Sprites|Masters Edition|128|C|{G}|Creature — Faerie|1|1| +Stone Giant|Masters Edition|109|U|{2}{R}{R}|Creature — Giant|3|4| +Thicket Basilisk|Masters Edition|134|U|{3}{G}{G}|Creature — Basilisk|2|4| +Winter Orb|Masters Edition|173|R|{2}|Artifact||| +Forest|Masters Edition|193|L||Basic Land — Forest||| +Forest|Masters Edition|194|L||Basic Land — Forest||| +Forest|Masters Edition|195|L||Basic Land — Forest||| +Island|Masters Edition|184|L||Basic Land — Island||| +Island|Masters Edition|185|L||Basic Land — Island||| +Island|Masters Edition|186|L||Basic Land — Island||| +Mountain|Masters Edition|190|L||Basic Land — Mountain||| +Mountain|Masters Edition|191|L||Basic Land — Mountain||| +Mountain|Masters Edition|192|L||Basic Land — Mountain||| +Plains|Masters Edition|181|L||Basic Land — Plains||| +Plains|Masters Edition|182|L||Basic Land — Plains||| +Plains|Masters Edition|183|L||Basic Land — Plains||| +Swamp|Masters Edition|187|L||Basic Land — Swamp||| +Swamp|Masters Edition|188|L||Basic Land — Swamp||| +Swamp|Masters Edition|189|L||Basic Land — Swamp||| +Adun Oakenshield|Masters Edition|141|R|{B}{R}{G}|Legendary Creature — Human Knight|1|2| +Dakkon Blackblade|Masters Edition|143|R|{2}{W}{U}{U}{B}|Legendary Creature — Human Warrior|*|*| +Divine Transformation|Masters Edition|9|U|{2}{W}{W}|Enchantment — Aura||| +Eureka|Masters Edition|117|R|{2}{G}{G}|Sorcery||| +Jacques le Vert|Masters Edition|147|R|{1}{R}{G}{W}|Legendary Creature — Human Warrior|3|2| +Mirror Universe|Masters Edition|159|R|{6}|Artifact||| +Moat|Masters Edition|21|R|{2}{W}{W}|Enchantment||| +Petra Sphinx|Masters Edition|23|R|{2}{W}{W}{W}|Creature — Sphinx|3|4| +Psychic Purge|Masters Edition|45|U|{U}|Sorcery||| +Rabid Wombat|Masters Edition|126|U|{2}{G}{G}|Creature — Wombat|0|1| +Righteous Avengers|Masters Edition|25|C|{4}{W}|Creature — Human Soldier|3|1| +Spinal Villain|Masters Edition|108|U|{2}{R}|Creature — Beast|1|2| +Storm Seeker|Masters Edition|132|U|{3}{G}|Instant||| +Sylvan Library|Masters Edition|133|R|{1}{G}|Enchantment||| +Thunder Spirit|Masters Edition|27|U|{1}{W}{W}|Creature — Elemental Spirit|2|2| +Winds of Change|Masters Edition|111|U|{R}|Sorcery||| +Angry Mob|Masters Edition|1|U|{2}{W}{W}|Creature — Human|2+*|2+*| +Wirewood Symbiote|Duel Decks: Elves vs. Goblins|17|U|{G}|Creature — Insect|1|1| +Stonewood Invoker|Duel Decks: Elves vs. Goblins|11|C|{1}{G}|Creature — Elf Mutant|2|2| +Tranquil Thicket|Duel Decks: Elves vs. Goblins|27|C||Land||| +Raging Goblin|Duel Decks: Elves vs. Goblins|47|C|{R}|Creature — Goblin Berserker|1|1| +Forgotten Cave|Duel Decks: Elves vs. Goblins|57|C||Land||| +Akki Coalflinger|Duel Decks: Elves vs. Goblins|33|U|{1}{R}{R}|Creature — Goblin Shaman|2|2| +Bloodshed Fever|Shadowmoor|84|C|{R}|Enchantment — Aura||| +Deep-Slumber Titan|Shadowmoor|89|R|{2}{R}{R}|Creature — Giant Warrior|7|7| +Valleymaker|Shadowmoor|221|R|{5}{RG}|Creature — Giant Shaman|5|5| +Put Away|Shadowmoor|48|C|{2}{U}{U}|Instant||| +Pyre Charger|Shadowmoor|103|U|{R}{R}|Creature — Elemental Warrior|1|1| +Rite of Consumption|Shadowmoor|76|C|{1}{B}|Sorcery||| +Cragganwick Cremator|Shadowmoor|87|R|{2}{R}{R}|Creature — Giant Shaman|5|4| +Savor the Moment|Shadowmoor|50|R|{1}{U}{U}|Sorcery||| +Plague of Vermin|Shadowmoor|73|R|{6}{B}|Sorcery||| +Morselhoarder|Shadowmoor|212|C|{4}{RG}{RG}|Creature — Elemental|6|4| +Reaper King|Shadowmoor|260|R|{2W}{2U}{2B}{2R}{2G}|Legendary Artifact Creature — Scarecrow|6|6| +Strip Bare|Shadowmoor|24|C|{W}|Instant||| +Toil to Renown|Shadowmoor|130|C|{1}{G}|Sorcery||| +Rosheen Meanderer|Shadowmoor|214|R|{3}{RG}|Legendary Creature — Giant Shaman|4|4| +Goldenglow Moth|Shadowmoor|6|C|{W}|Creature — Insect|0|1| +Oracle of Nectars|Shadowmoor|233|R|{2}{GW}|Creature — Elf Cleric|2|2| +Slate of Ancestry|Duel Decks: Elves vs. Goblins|25|R|{4}|Artifact||| +Bloodhall Ooze|Conflux|59|R|{R}|Creature — Ooze|1|1| +Cliffrunner Behemoth|Conflux|79|R|{3}{G}|Creature — Rhino Beast|5|3| +Dreadwing|Conflux|43|U|{B}|Creature — Zombie|1|1| +Rhox Meditant|Conflux|16|C|{3}{W}|Creature — Rhino Monk|2|4| +Sigiled Behemoth|Alara Reborn|79|C|{4}{G}{W}|Creature — Beast|5|4| +Basal Thrull|Masters Edition|59|C|{B}{B}|Creature — Thrull|1|2| +Dwarven Catapult|Masters Edition|91|U|{X}{R}|Instant||| +Goblin Chirurgeon|Masters Edition|94|C|{R}|Creature — Goblin Shaman|0|2| +Goblin Grenade|Masters Edition|95|U|{R}|Sorcery||| +Rainbow Vale|Masters Edition|179|R||Land||| +Bestial Fury|Masters Edition|88|C|{2}{R}|Enchantment — Aura||| +Feast or Famine|Masters Edition|70|C|{3}{B}|Instant||| +Phyrexian Boon|Masters Edition|81|C|{2}{B}|Enchantment — Aura||| +Varchild's War-Riders|Masters Edition|110|R|{1}{R}|Creature — Human Warrior|3|4| +Argivian Archaeologist|Masters Edition|3|R|{1}{W}{W}|Creature — Human Artificer|1|1| +Artifact Blast|Masters Edition|85|C|{R}|Instant||| +Hecatomb|Masters Edition|71|R|{1}{B}{B}|Enchantment||| +Illusions of Grandeur|Masters Edition|40|R|{3}{U}|Enchantment||| +Word of Undoing|Masters Edition|56|C|{U}|Instant||| +Zuran Orb|Masters Edition|174|U|{0}|Artifact||| +Death Ward|Masters Edition|8|C|{W}|Instant||| +Forcefield|Masters Edition|157|R|{3}|Artifact||| +Wanderlust|Masters Edition|137|C|{2}{G}|Enchantment — Aura||| +Goblin Wizard|Masters Edition|97|R|{2}{R}{R}|Creature — Goblin Wizard|1|1| +Goblins of the Flarg|Masters Edition|98|C|{R}|Creature — Goblin Warrior|1|1| +Island of Wak-Wak|Masters Edition|176|R||Land||| +Khabαl Ghoul|Masters Edition|75|R|{2}{B}|Creature — Zombie|1|1| +Singing Tree|Masters Edition|130|U|{3}{G}|Creature — Plant|0|3| +Wyluli Wolf|Masters Edition|139|C|{1}{G}|Creature — Wolf|1|1| +Blight|Masters Edition|61|U|{B}{B}|Enchantment — Aura||| +Crookshank Kobolds|Masters Edition|90|C|{0}|Creature — Kobold|0|1| +Juxtapose|Masters Edition|41|U|{3}{U}|Sorcery||| +Mountain Yeti|Masters Edition|105|C|{2}{R}{R}|Creature — Yeti|3|3| +Telekinesis|Masters Edition|52|C|{U}{U}|Instant||| +Time Elemental|Masters Edition|53|R|{2}{U}|Creature — Elemental|0|2| +Death Speakers|Masters Edition|7|C|{W}|Creature — Human Cleric|1|1| +Black Knight|Masters Edition|60|U|{B}{B}|Creature — Human Knight|2|2| +Crusade|Masters Edition|6|R|{W}{W}|Enchantment||| +Mesa Pegasus|Masters Edition|20|C|{1}{W}|Creature — Pegasus|1|1| +Vesuvan Doppelganger|Masters Edition|54|R|{3}{U}{U}|Creature — Shapeshifter|0|0| +Mindstab Thrull|Masters Edition|76|C|{1}{B}{B}|Creature — Thrull|2|2| +River Merfolk|Masters Edition|47|C|{U}{U}|Creature — Merfolk|2|1| +Chains of Mephistopheles|Masters Edition|63|R|{1}{B}|Enchantment||| +Elder Land Wurm|Masters Edition|11|U|{4}{W}{W}{W}|Creature — Dragon Wurm|5|5| +Greater Realm of Preservation|Masters Edition|13|U|{1}{W}|Enchantment||| +Serpent Generator|Masters Edition|164|R|{6}|Artifact||| +Winter Blast|Masters Edition|138|U|{X}{G}|Sorcery||| +Amnesia|Masters Edition|29|R|{3}{U}{U}{U}|Sorcery||| +Tivadar's Crusade|Masters Edition|28|U|{1}{W}{W}|Sorcery||| +Energy Arc|Masters Edition|144|U|{W}{U}|Instant||| +Mystic Remora|Masters Edition|42|U|{U}|Enchantment||| +Lim-Dϋl's Vault|Masters Edition|148|U|{U}{B}|Instant||| +Tornado|Masters Edition|136|R|{4}{G}|Enchantment||| +Centaur Archer|Masters Edition|142|U|{1}{R}{G}|Creature — Centaur Archer|3|2| +Fire Covenant|Masters Edition|145|U|{1}{B}{R}|Instant||| +Hyalopterous Lemure|Masters Edition|72|C|{4}{B}|Creature — Spirit|4|3| +Hymn of Rebirth|Masters Edition|146|U|{3}{G}{W}|Sorcery||| +Shield of the Ages|Masters Edition|165|U|{2}|Artifact||| +Cursed Rack|Masters Edition|155|U|{4}|Artifact||| +Dragon Engine|Masters Edition|156|C|{3}|Artifact Creature — Construct|1|3| +Urza's Chalice|Masters Edition|171|C|{1}|Artifact||| +Icatian Town|Masters Edition|18|U|{5}{W}|Sorcery||| +Ydwen Efreet|Masters Edition|112|R|{R}{R}{R}|Creature — Efreet|3|6| +Seasinger|Masters Edition|49|U|{1}{U}{U}|Creature — Merfolk|0|1| +Icatian Lieutenant|Masters Edition|17|C|{W}{W}|Creature — Human Soldier|1|2| +Mistvein Borderpost|Alara Reborn|27|C|{1}{U}{B}|Artifact||| +Breath of Malfegor|Alara Reborn|35|C|{3}{B}{R}|Instant||| +Trace of Abundance|Alara Reborn|142|C|{RW}{G}|Enchantment — Aura||| +Predatory Urge|Zendikar|175|R|{3}{G}|Enchantment — Aura||| +Kabira Crossroads|Zendikar|216|C||Land||| +Turntimber Ranger|Zendikar|191|R|{3}{G}{G}|Creature — Elf Scout Ally|2|2| +Piranha Marsh|Zendikar|222|C||Land||| +Turntimber Grove|Zendikar|227|C||Land||| +Toxic Iguanar|Conflux|72|C|{R}|Creature — Lizard|1|1| +Territorial Baloth|Zendikar|188|C|{4}{G}|Creature — Beast|4|4| +Plated Geopede|Zendikar|141|C|{1}{R}|Creature — Insect|1|1| +Merfolk Wayfinder|Zendikar|56|U|{2}{U}|Creature — Merfolk Scout|1|2| +Windrider Eel|Zendikar|78|C|{3}{U}|Creature — Fish|2|2| +Goblin Guide|Zendikar|126|R|{R}|Creature — Goblin Scout|2|2| +Kor Cartographer|Zendikar|18|C|{3}{W}|Creature — Kor Scout|2|2| +Ζther Figment|Zendikar|40|U|{1}{U}|Creature — Illusion|1|1| +Blood Tribute|Zendikar|81|R|{4}{B}{B}|Sorcery||| +Hagra Crocodile|Zendikar|94|C|{3}{B}|Creature — Crocodile|3|1| +Noble Vestige|Zendikar|29|C|{2}{W}|Creature — Spirit|1|2| +Lavaclaw Reaches|Worldwake|139|R||Land||| +Steppe Lynx|Zendikar|36|C|{W}|Creature — Cat|0|1| +Mosstodon|Shards of Alara|139|C|{4}{G}|Creature — Plant Elephant|5|3| +Cradle of Vitality|Shards of Alara|7|R|{3}{W}|Enchantment||| +Jhessian Balmgiver|Conflux|112|U|{1}{W}{U}|Creature — Human Cleric|1|1| +Scepter of Dominance|Conflux|17|R|{1}{W}{W}|Artifact||| +Minion Reflector|Shards of Alara|211|R|{5}|Artifact||| +Hellspark Elemental|Conflux|65|U|{1}{R}|Creature — Elemental|3|1| +Courier's Capsule|Shards of Alara|37|C|{1}{U}|Artifact||| +Gustrider Exuberant|Shards of Alara|13|C|{2}{W}|Creature — Human Wizard|1|2| +Incurable Ogre|Shards of Alara|105|C|{3}{R}|Creature — Ogre Mutant|5|1| +Soul's Might|Shards of Alara|149|C|{4}{G}|Sorcery||| +Soul's Grace|Shards of Alara|28|C|{1}{W}|Instant||| +Cloudheath Drake|Shards of Alara|35|C|{4}{U}|Artifact Creature — Drake|3|3| +Glaze Fiend|Shards of Alara|77|C|{1}{B}|Artifact Creature — Illusion|0|1| +Banewasp Affliction|Shards of Alara|65|C|{1}{B}|Enchantment — Aura||| +Lich's Mirror|Shards of Alara|210|M|{5}|Artifact||| +Bloodthorn Taunter|Shards of Alara|94|C|{1}{R}|Creature — Human Scout|1|1| +Godtoucher|Shards of Alara|133|C|{3}{G}|Creature — Elf Cleric|2|2| +Ranger of Eos|Shards of Alara|21|R|{3}{W}|Creature — Human Soldier|3|2| +Relic of Progenitus|Shards of Alara|218|C|{1}|Artifact||| +Angelic Benediction|Shards of Alara|3|U|{3}{W}|Enchantment||| +Sacellum Godspeaker|Shards of Alara|146|R|{2}{G}|Creature — Elf Druid|2|2| +Dispeller's Capsule|Shards of Alara|8|C|{W}|Artifact||| +Onyx Goblet|Shards of Alara|81|C|{2}{B}|Artifact||| +Protomatter Powder|Shards of Alara|53|U|{2}{U}|Artifact||| +Dregscape Zombie|Shards of Alara|74|C|{1}{B}|Creature — Zombie|2|1| +Kathari Screecher|Shards of Alara|47|C|{2}{U}|Creature — Bird Soldier|2|2| +Sedraxis Specter|Shards of Alara|192|R|{U}{B}{R}|Creature — Specter|3|2| +Titanic Ultimatum|Shards of Alara|204|R|{R}{R}{G}{G}{G}{W}{W}|Sorcery||| +Bant Panorama|Shards of Alara|221|C||Land||| +Scourge Devil|Shards of Alara|113|U|{4}{R}|Creature — Devil|3|3| +Archdemon of Unx|Shards of Alara|64|R|{5}{B}{B}|Creature — Demon|6|6| +Dreg Reaver|Shards of Alara|73|C|{4}{B}|Creature — Zombie Beast|4|3| +Ajani Vengeant|Shards of Alara|154|M|{2}{R}{W}|Planeswalker — Ajani||| +Scourglass|Shards of Alara|25|R|{3}{W}{W}|Artifact||| +Elspeth, Knight-Errant|Shards of Alara|9|M|{2}{W}{W}|Planeswalker — Elspeth||| +Sprouting Thrinax|Shards of Alara|197|U|{B}{R}{G}|Creature — Lizard|3|3| +Sigil of Distinction|Shards of Alara|219|R|{X}|Artifact — Equipment||| +Grixis Battlemage|Shards of Alara|78|U|{2}{B}|Creature — Human Wizard|2|2| +Qasali Ambusher|Shards of Alara|184|U|{1}{G}{W}|Creature — Cat Warrior|2|3| +Thunder-Thrash Elder|Shards of Alara|117|U|{2}{R}|Creature — Viashino Warrior|1|1| +Fleshbag Marauder|Shards of Alara|76|U|{2}{B}|Creature — Zombie Warrior|3|1| +Esper Battlemage|Shards of Alara|40|U|{2}{U}|Artifact Creature — Human Wizard|2|2| +Hissing Iguanar|Shards of Alara|104|C|{2}{R}|Creature — Lizard|3|1| +Kresh the Bloodbraided|Shards of Alara|178|M|{2}{B}{R}{G}|Legendary Creature — Human Warrior|3|3| +Savage Lands|Shards of Alara|228|U||Land||| +Sharding Sphinx|Shards of Alara|55|R|{4}{U}{U}|Artifact Creature — Sphinx|4|4| +Kederekt Leviathan|Shards of Alara|48|R|{6}{U}{U}|Creature — Leviathan|5|5| +Ooze Garden|Shards of Alara|143|R|{1}{G}|Enchantment||| +Obelisk of Grixis|Shards of Alara|214|C|{3}|Artifact||| +Filigree Sages|Shards of Alara|44|U|{3}{U}|Artifact Creature — Vedalken Wizard|2|3| +Volcanic Submersion|Shards of Alara|121|C|{4}{R}|Sorcery||| +Naturalize|Shards of Alara|141|C|{1}{G}|Instant||| +Obelisk of Jund|Shards of Alara|215|C|{3}|Artifact||| +Blister Beetle|Shards of Alara|66|C|{1}{B}|Creature — Insect|1|1| +Executioner's Capsule|Shards of Alara|75|C|{B}|Artifact||| +Salvage Titan|Shards of Alara|84|R|{4}{B}{B}|Artifact Creature — Golem|6|4| +Resounding Roar|Shards of Alara|144|C|{1}{G}|Instant||| +Druid of the Anima|Shards of Alara|128|C|{1}{G}|Creature — Elf Druid|1|1| +Obelisk of Esper|Shards of Alara|213|C|{3}|Artifact||| +Wretched Banquet|Conflux|56|C|{B}|Sorcery||| +Oblivion Ring|Shards of Alara|20|C|{2}{W}|Enchantment||| +Tezzeret the Seeker|Shards of Alara|60|M|{3}{U}{U}|Planeswalker — Tezzeret||| +Ad Nauseam|Shards of Alara|63|R|{3}{B}{B}|Instant||| +Spearbreaker Behemoth|Shards of Alara|150|R|{5}{G}{G}|Creature — Beast|5|5| +Blightning|Shards of Alara|156|C|{1}{B}{R}|Sorcery||| +Vithian Stinger|Shards of Alara|120|C|{2}{R}|Creature — Human Shaman|0|1| +Tower Gargoyle|Shards of Alara|205|U|{1}{W}{U}{B}|Artifact Creature — Gargoyle|4|4| +Sanctum Gargoyle|Shards of Alara|24|C|{3}{W}|Artifact Creature — Gargoyle|2|3| +Forest|Shards of Alara|246|L||Basic Land — Forest||| +Forest|Shards of Alara|248|L||Basic Land — Forest||| +Forest|Shards of Alara|247|L||Basic Land — Forest||| +Forest|Shards of Alara|249|L||Basic Land — Forest||| +Ethersworn Canonist|Shards of Alara|10|R|{1}{W}|Artifact Creature — Human Cleric|2|2| +Cylian Elf|Shards of Alara|127|C|{1}{G}|Creature — Elf Scout|2|2| +Dragon Fodder|Shards of Alara|97|C|{1}{R}|Sorcery||| +Goblin Mountaineer|Shards of Alara|102|C|{R}|Creature — Goblin Scout|1|1| +Goblin Assault|Shards of Alara|101|R|{2}{R}|Enchantment||| +Savage Hunger|Shards of Alara|147|C|{2}{G}|Enchantment — Aura||| +Drumhunter|Shards of Alara|129|U|{3}{G}|Creature — Human Druid Warrior|2|2| +Naya Battlemage|Shards of Alara|142|U|{2}{G}|Creature — Human Shaman|2|2| +Rafiq of the Many|Shards of Alara|185|M|{1}{G}{W}{U}|Legendary Creature — Human Knight|3|3| +Seaside Citadel|Shards of Alara|229|U||Land||| +Soul's Fire|Shards of Alara|115|C|{2}{R}|Instant||| +Bull Cerodon|Shards of Alara|161|U|{4}{R}{W}|Creature — Beast|5|5| +Skyward Eye Prophets|Conflux|125|U|{3}{G}{W}{U}|Creature — Human Wizard|3|3| +Waveskimmer Aven|Shards of Alara|207|C|{2}{G}{W}{U}|Creature — Bird Soldier|2|4| +Sighted-Caste Sorcerer|Shards of Alara|26|C|{1}{W}|Creature — Human Wizard|1|1| +Rhox War Monk|Shards of Alara|188|U|{G}{W}{U}|Creature — Rhino Monk|3|4| +Sigiled Paladin|Shards of Alara|27|U|{W}{W}|Creature — Human Knight|2|2| +Rhox Charger|Shards of Alara|145|U|{3}{G}|Creature — Rhino Soldier|3|3| +Court Archers|Shards of Alara|126|C|{2}{G}|Creature — Human Archer|1|3| +Akrasan Squire|Shards of Alara|1|C|{W}|Creature — Human Soldier|1|1| +Bone Splinters|Shards of Alara|67|C|{B}|Sorcery||| +Predator Dragon|Shards of Alara|109|R|{3}{R}{R}{R}|Creature — Dragon|4|4| +Feral Hydra|Shards of Alara|131|R|{X}{G}|Creature — Hydra Beast|0|0| +Mycoloth|Shards of Alara|140|R|{3}{G}{G}|Creature — Fungus|4|4| +Kiss of the Amesha|Shards of Alara|177|U|{4}{W}{U}|Sorcery||| +Island|Shards of Alara|234|L||Basic Land — Island||| +Island|Shards of Alara|235|L||Basic Land — Island||| +Island|Shards of Alara|237|L||Basic Land — Island||| +Island|Shards of Alara|236|L||Basic Land — Island||| +Sarkhan Vol|Shards of Alara|191|M|{2}{R}{G}|Planeswalker — Sarkhan||| +Resounding Silence|Shards of Alara|22|C|{3}{W}|Instant||| +Algae Gharial|Shards of Alara|123|U|{3}{G}|Creature — Crocodile|1|1| +Scavenger Drake|Shards of Alara|85|U|{3}{B}|Creature — Drake|1|1| +Rockslide Elemental|Shards of Alara|112|U|{2}{R}|Creature — Elemental|1|1| +Wild Nacatl|Shards of Alara|152|C|{G}|Creature — Cat Warrior|1|1| +Cavern Thoctar|Shards of Alara|125|C|{5}{G}|Creature — Beast|5|5| +Topan Ascetic|Shards of Alara|151|U|{2}{G}|Creature — Human Monk|2|2| +Angelsong|Shards of Alara|4|C|{1}{W}|Instant||| +Vein Drinker|Shards of Alara|91|R|{4}{B}{B}|Creature — Vampire|4|4| +Manaplasm|Shards of Alara|138|R|{2}{G}|Creature — Ooze|1|1| +Steelclad Serpent|Shards of Alara|59|C|{5}{U}|Artifact Creature — Serpent|4|5| +Swerve|Shards of Alara|200|U|{U}{R}|Instant||| +Gather Specimens|Shards of Alara|45|R|{3}{U}{U}{U}|Instant||| +Puppet Conjurer|Shards of Alara|82|U|{1}{B}|Artifact Creature — Human Wizard|1|2| +Windwright Mage|Shards of Alara|208|C|{W}{U}{B}|Artifact Creature — Human Wizard|2|2| +Tidehollow Strix|Shards of Alara|203|C|{U}{B}|Artifact Creature — Bird|2|1| +Mountain|Shards of Alara|244|L||Basic Land — Mountain||| +Mountain|Shards of Alara|243|L||Basic Land — Mountain||| +Mountain|Shards of Alara|242|L||Basic Land — Mountain||| +Mountain|Shards of Alara|245|L||Basic Land — Mountain||| +Parasitic Strix|Conflux|32|C|{2}{U}|Artifact Creature — Bird|2|2| +Necrogenesis|Shards of Alara|181|U|{B}{G}|Enchantment||| +Rockcaster Platoon|Shards of Alara|23|U|{5}{W}{W}|Creature — Rhino Soldier|5|7| +Lapse of Certainty|Conflux|9|C|{2}{W}|Instant||| +Plains|Shards of Alara|230|L||Basic Land — Plains||| +Plains|Shards of Alara|231|L||Basic Land — Plains||| +Plains|Shards of Alara|232|L||Basic Land — Plains||| +Plains|Shards of Alara|233|L||Basic Land — Plains||| +Keeper of Progenitus|Shards of Alara|135|R|{3}{G}|Creature — Elf Druid|1|3| +Shard Convergence|Conflux|91|U|{3}{G}|Sorcery||| +Ethersworn Adjudicator|Conflux|26|M|{4}{U}|Artifact Creature — Vedalken Knight|4|4| +Gift of the Gargantuan|Shards of Alara|132|C|{2}{G}|Sorcery||| +Spell Snip|Shards of Alara|57|C|{2}{U}|Instant||| +Invincible Hymn|Shards of Alara|14|R|{6}{W}{W}|Sorcery||| +Coma Veil|Shards of Alara|36|C|{4}{U}|Enchantment — Aura||| +Resounding Thunder|Shards of Alara|110|C|{2}{R}|Instant||| +Knight of the Skyward Eye|Shards of Alara|15|C|{1}{W}|Creature — Human Knight|2|2| +Vicious Shadows|Shards of Alara|119|R|{6}{R}|Enchantment||| +Exuberant Firestoker|Shards of Alara|99|U|{2}{R}|Creature — Human Druid Shaman|1|1| +Jund Battlemage|Shards of Alara|106|U|{2}{R}|Creature — Human Shaman|2|2| +Agony Warp|Shards of Alara|153|C|{U}{B}|Instant||| +Call to Heel|Shards of Alara|32|C|{1}{U}|Instant||| +Tidehollow Sculler|Shards of Alara|202|U|{W}{B}|Artifact Creature — Zombie|2|2| +Hellkite Overlord|Shards of Alara|172|M|{4}{B}{R}{R}{G}|Creature — Dragon|8|8| +Mayael the Anima|Shards of Alara|179|M|{R}{G}{W}|Legendary Creature — Elf Shaman|2|3| +Jungle Shrine|Shards of Alara|226|U||Land||| +Obelisk of Naya|Shards of Alara|216|C|{3}|Artifact||| +Woolly Thoctar|Shards of Alara|209|U|{R}{G}{W}|Creature — Beast|5|4| +Thorn-Thrash Viashino|Shards of Alara|116|C|{3}{R}|Creature — Viashino Warrior|2|2| +Skeletonize|Shards of Alara|114|U|{4}{R}|Instant||| +Caldera Hellion|Shards of Alara|95|R|{3}{R}{R}|Creature — Hellion|3|3| +Deathgreeter|Shards of Alara|71|C|{B}|Creature — Human Shaman|1|1| +Yoked Plowbeast|Shards of Alara|31|C|{5}{W}{W}|Creature — Beast|5|5| +Cruel Ultimatum|Shards of Alara|164|R|{U}{U}{B}{B}{B}{R}{R}|Sorcery||| +Dawnray Archer|Shards of Alara|39|U|{2}{U}|Creature — Human Archer|1|1| +Swamp|Shards of Alara|240|L||Basic Land — Swamp||| +Swamp|Shards of Alara|239|L||Basic Land — Swamp||| +Swamp|Shards of Alara|238|L||Basic Land — Swamp||| +Swamp|Shards of Alara|241|L||Basic Land — Swamp||| +Viashino Skeleton|Shards of Alara|118|C|{3}{R}|Creature — Viashino Skeleton|2|1| +Resounding Wave|Shards of Alara|54|C|{2}{U}|Instant||| +Blood Cultist|Shards of Alara|157|U|{1}{B}{R}|Creature — Human Wizard|1|1| +Tar Fiend|Shards of Alara|89|R|{5}{B}|Creature — Elemental|4|4| +Obelisk of Bant|Shards of Alara|212|C|{3}|Artifact||| +Guardians of Akrasa|Shards of Alara|12|C|{2}{W}|Creature — Human Soldier|0|4| +Empyrial Archangel|Shards of Alara|166|M|{4}{G}{W}{W}{U}|Creature — Angel|5|8| +Godsire|Shards of Alara|170|M|{4}{R}{G}{G}{W}|Creature — Beast|8|8| +Prince of Thralls|Shards of Alara|182|M|{4}{U}{B}{B}{R}|Creature — Demon|7|7| +Sphinx Sovereign|Shards of Alara|196|M|{4}{W}{U}{U}{B}|Artifact Creature — Sphinx|6|6| +Memory Erosion|Shards of Alara|50|R|{1}{U}{U}|Enchantment||| +Identity Crisis|Alara Reborn|81|R|{2}{W}{W}{B}{B}|Sorcery||| +Sedris, the Traitor King|Shards of Alara|193|M|{3}{U}{B}{R}|Legendary Creature — Zombie Warrior|5|5| +Crumbling Necropolis|Shards of Alara|222|U||Land||| +Metallurgeon|Shards of Alara|19|U|{1}{W}|Artifact Creature — Human Artificer|1|2| +Master of Etherium|Shards of Alara|49|R|{2}{U}|Artifact Creature — Vedalken Wizard|*|*| +Where Ancients Tread|Shards of Alara|122|R|{4}{R}|Enchantment||| +Bloodpyre Elemental|Shards of Alara|93|C|{4}{R}|Creature — Elemental|4|1| +Skeletal Kathari|Shards of Alara|88|C|{4}{B}|Creature — Bird Skeleton|3|2| +Deft Duelist|Shards of Alara|165|C|{W}{U}|Creature — Human Rogue|2|1| +Sunseed Nurturer|Shards of Alara|29|U|{2}{W}|Creature — Human Druid Wizard|1|1| +Bant Battlemage|Shards of Alara|5|U|{2}{W}|Creature — Human Wizard|2|2| +Elvish Visionary|Shards of Alara|130|C|{1}{G}|Creature — Elf Shaman|1|1| +Immortal Coil|Shards of Alara|79|R|{2}{B}{B}|Artifact||| +Sharuum the Hegemon|Shards of Alara|194|M|{3}{W}{U}{B}|Legendary Artifact Creature — Sphinx|5|5| +Arcane Sanctum|Shards of Alara|220|U||Land||| +Steward of Valeron|Shards of Alara|198|C|{G}{W}|Creature — Human Druid Knight|2|2| +Violent Ultimatum|Shards of Alara|206|R|{B}{B}{R}{R}{R}{G}{G}|Sorcery||| +Etherium Astrolabe|Shards of Alara|41|U|{2}{U}|Artifact||| +Angel's Herald|Shards of Alara|2|U|{W}|Creature — Human Cleric|1|1| +Clarion Ultimatum|Shards of Alara|163|R|{G}{G}{W}{W}{W}{U}{U}|Sorcery||| +Brilliant Ultimatum|Shards of Alara|159|R|{W}{W}{U}{U}{U}{B}{B}|Sorcery||| +Viscera Dragger|Shards of Alara|92|C|{3}{B}|Creature — Zombie Ogre Warrior|3|3| +Vectis Silencers|Shards of Alara|62|C|{2}{U}|Artifact Creature — Human Rogue|1|2| +Dragon's Herald|Shards of Alara|98|U|{R}|Creature — Goblin Shaman|1|1| +Sphinx's Herald|Shards of Alara|58|U|{U}|Artifact Creature — Vedalken Wizard|1|1| +Demon's Herald|Shards of Alara|72|U|{B}|Creature — Human Wizard|1|1| +Magma Spray|Shards of Alara|108|C|{R}|Instant||| +Marble Chalice|Shards of Alara|18|C|{2}{W}|Artifact||| +Outrider of Jhess|Shards of Alara|52|C|{3}{U}|Creature — Human Knight|2|2| +Rakeclaw Gargantuan|Shards of Alara|186|C|{2}{R}{G}{W}|Creature — Beast|5|3| +Reborn Hope|Alara Reborn|76|U|{G}{W}|Sorcery||| +Ridge Rannet|Shards of Alara|111|C|{5}{R}{R}|Creature — Beast|6|4| +Jungle Weaver|Shards of Alara|134|C|{5}{G}{G}|Creature — Spider|5|6| +Behemoth's Herald|Shards of Alara|124|U|{G}|Creature — Elf Shaman|1|1| +Mindlock Orb|Shards of Alara|51|R|{3}{U}|Artifact||| +Shore Snapper|Shards of Alara|87|C|{2}{B}|Creature — Beast|2|2| +Jhessian Infiltrator|Shards of Alara|174|U|{G}{U}|Creature — Human Rogue|2|2| +Battlegrace Angel|Shards of Alara|6|R|{3}{W}{W}|Creature — Angel|4|4| +Stoic Angel|Shards of Alara|199|R|{1}{G}{W}{U}|Creature — Angel|3|4| +Worldheart Phoenix|Conflux|77|R|{3}{R}|Creature — Phoenix|2|2| +Jhessian Lookout|Shards of Alara|46|C|{1}{U}|Creature — Human Scout|2|1| +Cunning Lethemancer|Shards of Alara|69|R|{2}{B}|Creature — Human Wizard|2|2| +Death Baron|Shards of Alara|70|R|{1}{B}{B}|Creature — Zombie Wizard|2|2| +Cathartic Adept|Shards of Alara|34|C|{U}|Creature — Human Wizard|1|1| +Etherium Sculptor|Shards of Alara|42|C|{1}{U}|Artifact Creature — Vedalken Artificer|1|2| +Skullmulcher|Shards of Alara|148|R|{4}{G}|Creature — Elemental|3|3| +Sangrite Surge|Shards of Alara|190|U|{4}{R}{G}|Sorcery||| +Lush Growth|Shards of Alara|136|C|{G}|Enchantment — Aura||| +Carrion Thrash|Shards of Alara|162|C|{2}{B}{R}{G}|Creature — Viashino Warrior|4|4| +Resounding Scream|Shards of Alara|83|C|{2}{B}|Sorcery||| +Lightning Talons|Shards of Alara|107|C|{2}{R}|Enchantment — Aura||| +Fire-Field Ogre|Shards of Alara|168|U|{1}{U}{B}{R}|Creature — Ogre Mutant|4|2| +Corpse Connoisseur|Shards of Alara|68|U|{4}{B}|Creature — Zombie Wizard|3|3| +Terminate|Alara Reborn|46|C|{B}{R}|Instant||| +Punish Ignorance|Shards of Alara|183|R|{W}{U}{U}{B}|Instant||| +Undead Leotau|Shards of Alara|90|C|{5}{B}|Creature — Zombie Cat|3|4| +Hell's Thunder|Shards of Alara|103|R|{1}{R}{R}|Creature — Elemental|4|4| +Fatestitcher|Shards of Alara|43|U|{3}{U}|Creature — Zombie Wizard|1|2| +Shadowfeed|Shards of Alara|86|C|{B}|Instant||| +Flameblast Dragon|Shards of Alara|100|R|{4}{R}{R}|Creature — Dragon|5|5| +Bog Tatters|Zendikar|84|C|{4}{B}|Creature — Wraith|4|2| +Goblin Bushwhacker|Zendikar|125|C|{R}|Creature — Goblin Warrior|1|1| +Journey to Nowhere|Zendikar|14|C|{1}{W}|Enchantment||| +Anowon, the Ruin Sage|Worldwake|49|R|{3}{B}{B}|Legendary Creature — Vampire Shaman|4|3| +Shoal Serpent|Zendikar|65|C|{5}{U}|Creature — Serpent|5|5| +Creeping Tar Pit|Worldwake|134|R||Land||| +Kor Aeronaut|Zendikar|17|U|{W}{W}|Creature — Kor Soldier|2|2| +Soaring Seacliff|Zendikar|225|C||Land||| +Kor Duelist|Zendikar|19|U|{W}|Creature — Kor Soldier|1|1| +Marsh Casualties|Zendikar|101|U|{B}{B}|Sorcery||| +Celestial Colonnade|Worldwake|133|R||Land||| +Cliff Threader|Zendikar|7|C|{1}{W}|Creature — Kor Scout|2|1| +Teetering Peaks|Zendikar|226|C||Land||| +Sunspring Expedition|Zendikar|37|C|{W}|Enchantment||| +Burst Lightning|Zendikar|119|C|{R}|Instant||| +Stirring Wildwood|Worldwake|144|R||Land||| +Vines of Vastwood|Zendikar|193|C|{G}|Instant||| +Raging Ravine|Worldwake|141|R||Land||| +Arid Mesa|Zendikar|211|R||Land||| +Kraken Hatchling|Zendikar|50|C|{U}|Creature — Kraken|0|4| +Soul Stair Expedition|Zendikar|112|C|{B}|Enchantment||| +Goblin Deathraiders|Shards of Alara|169|C|{B}{R}|Creature — Goblin Warrior|3|1| +Sigil Blessing|Shards of Alara|195|C|{G}{W}|Instant||| +Hindering Light|Shards of Alara|173|C|{W}{U}|Instant||| +Rip-Clan Crasher|Shards of Alara|189|C|{R}{G}|Creature — Human Warrior|2|2| +Thoughtcutter Agent|Shards of Alara|201|U|{U}{B}|Artifact Creature — Human Rogue|1|1| +Branching Bolt|Shards of Alara|158|C|{1}{R}{G}|Instant||| +Lord of Extinction|Alara Reborn|91|M|{3}{B}{G}|Creature — Elemental|*|*| +Rhox Bodyguard|Conflux|122|C|{3}{G}{W}|Creature — Rhino Monk Soldier|2|3| +Grixis Illusionist|Conflux|29|C|{U}|Creature — Human Wizard|1|1| +Beacon Behemoth|Conflux|78|C|{3}{G}{G}|Creature — Beast|5|3| +Unsummon|Conflux|37|C|{U}|Instant||| +Kranioceros|Conflux|67|C|{4}{R}|Creature — Beast|5|2| +Bladewing the Risen|From the Vault: Dragons|1|R|{3}{B}{B}{R}{R}|Legendary Creature — Zombie Dragon|4|4| +Dragonstorm|From the Vault: Dragons|5|R|{8}{R}|Sorcery||| +Form of the Dragon|From the Vault: Dragons|7|R|{4}{R}{R}{R}|Enchantment||| +Bogardan Hellkite|From the Vault: Dragons|2|R|{6}{R}{R}|Creature — Dragon|5|5| +Draco|From the Vault: Dragons|3|R|{16}|Artifact Creature — Dragon|9|9| +Dragon Whelp|From the Vault: Dragons|4|R|{2}{R}{R}|Creature — Dragon|2|3| +Nicol Bolas|From the Vault: Dragons|10|R|{2}{U}{U}{B}{B}{R}{R}|Legendary Creature — Elder Dragon|7|7| +Ebon Dragon|From the Vault: Dragons|6|R|{5}{B}{B}|Creature — Dragon|5|4| +Kokusho, the Evening Star|From the Vault: Dragons|9|R|{4}{B}{B}|Legendary Creature — Dragon Spirit|5|5| +Niv-Mizzet, the Firemind|From the Vault: Dragons|11|R|{2}{U}{U}{R}{R}|Legendary Creature — Dragon Wizard|4|4| +Rith, the Awakener|From the Vault: Dragons|12|R|{3}{R}{G}{W}|Legendary Creature — Dragon|6|6| +Shivan Dragon|From the Vault: Dragons|13|R|{4}{R}{R}|Creature — Dragon|5|5| +Thunder Dragon|From the Vault: Dragons|14|R|{5}{R}{R}|Creature — Dragon|5|5| +Two-Headed Dragon|From the Vault: Dragons|15|R|{4}{R}{R}|Creature — Dragon|4|4| +Hellkite Overlord|From the Vault: Dragons|8|R|{4}{B}{R}{R}{G}|Creature — Dragon|8|8| +Covenant of Minds|Shards of Alara|38|R|{4}{U}|Sorcery||| +Cancel|Shards of Alara|33|C|{1}{U}{U}|Instant||| +Knight of the White Orchid|Shards of Alara|16|R|{W}{W}|Creature — Human Knight|2|2| +Welkin Guide|Shards of Alara|30|C|{4}{W}|Creature — Bird Cleric|2|2| +Mighty Emergence|Shards of Alara|137|U|{2}{G}|Enchantment||| +Broodmate Dragon|Shards of Alara|160|R|{3}{B}{R}{G}|Creature — Dragon|4|4| +Paralyzing Grasp|Zendikar|58|C|{2}{U}|Enchantment — Aura||| +Scythe Tiger|Zendikar|183|C|{G}|Creature — Cat|3|2| +Relic Crush|Zendikar|179|C|{4}{G}|Instant||| +Shieldmate's Blessing|Zendikar|35|C|{W}|Instant||| +Crypt Ripper|Zendikar|85|C|{2}{B}{B}|Creature — Shade|2|2| +Kor Hookmaster|Zendikar|20|C|{2}{W}|Creature — Kor Soldier|2|2| +Spidersilk Net|Zendikar|206|C|{0}|Artifact — Equipment||| +Adventuring Gear|Zendikar|195|C|{1}|Artifact — Equipment||| +Slaughter Cry|Zendikar|149|C|{2}{R}|Instant||| +Desecrated Earth|Zendikar|86|C|{4}{B}|Sorcery||| +Oran-Rief Survivalist|Zendikar|174|C|{1}{G}|Creature — Human Warrior Ally|1|1| +Turntimber Basilisk|Zendikar|190|U|{1}{G}{G}|Creature — Basilisk|2|1| +Spell Pierce|Zendikar|67|C|{U}|Instant||| +Kor Skyfisher|Zendikar|23|C|{1}{W}|Creature — Kor Soldier|2|3| +Vampire's Bite|Zendikar|117|C|{B}|Instant||| +Into the Roil|Zendikar|48|C|{1}{U}|Instant||| +Martial Coup|Conflux|11|R|{X}{W}{W}|Sorcery||| +Path to Exile|Conflux|15|U|{W}|Instant||| +Drag Down|Conflux|42|C|{2}{B}|Instant||| +Viashino Slaughtermaster|Conflux|73|U|{1}{R}|Creature — Viashino Warrior|1|1| +Matca Rioters|Conflux|84|C|{2}{G}|Creature — Human Warrior|*|*| +Master Transmuter|Conflux|31|R|{3}{U}|Artifact Creature — Human Artificer|1|2| +Salvage Slasher|Conflux|52|C|{1}{B}|Artifact Creature — Human Rogue|1|1| +Blitz Hellion|Alara Reborn|49|R|{3}{R}{G}|Creature — Hellion|7|7| +Soulquake|Alara Reborn|30|R|{3}{U}{U}{B}{B}|Sorcery||| +Knight-Captain of Eos|Shards of Alara|17|R|{4}{W}|Creature — Human Knight|2|2| +Realm Razer|Shards of Alara|187|R|{3}{R}{G}{W}|Creature — Beast|4|2| +Naya Panorama|Shards of Alara|227|C||Land||| +Infest|Shards of Alara|80|U|{1}{B}{B}|Sorcery||| +Jund Panorama|Shards of Alara|225|C||Land||| +Crucible of Fire|Shards of Alara|96|R|{3}{R}|Enchantment||| +Skill Borrower|Shards of Alara|56|R|{2}{U}|Artifact Creature — Human Wizard|1|3| +Kederekt Creeper|Shards of Alara|176|C|{U}{B}{R}|Creature — Horror|2|3| +Esper Panorama|Shards of Alara|223|C||Land||| +Tortoise Formation|Shards of Alara|61|C|{3}{U}|Instant||| +Grixis Panorama|Shards of Alara|224|C||Land||| +Noble Hierarch|Conflux|87|R|{G}|Creature — Human Druid|0|1| +Conflux|Conflux|102|M|{3}{W}{U}{B}{R}{G}|Sorcery||| +Charnelhoard Wurm|Conflux|100|R|{4}{B}{R}{G}|Creature — Wurm|6|6| +Filigree Fracture|Conflux|82|U|{2}{G}|Instant||| +Quenchable Fire|Conflux|70|C|{3}{R}|Sorcery||| +Nicol Bolas, Planeswalker|Conflux|120|M|{4}{U}{B}{B}{R}|Planeswalker — Bolas||| +Fusion Elemental|Conflux|107|U|{W}{U}{B}{R}{G}|Creature — Elemental|8|8| +Goblin Razerunners|Conflux|64|R|{2}{R}{R}|Creature — Goblin Warrior|3|4| +Sacellum Archers|Conflux|89|U|{2}{G}|Creature — Elf Archer|2|3| +Wild Leotau|Conflux|97|C|{2}{G}{G}|Creature — Cat|5|4| +Progenitus|Conflux|121|M|{W}{W}{U}{U}{B}{B}{R}{R}{G}{G}|Legendary Creature — Hydra Avatar|10|10| +Gleam of Resistance|Conflux|8|C|{4}{W}|Instant||| +Traumatic Visions|Conflux|36|C|{3}{U}{U}|Instant||| +Gluttonous Slime|Conflux|83|U|{2}{G}|Creature — Ooze|2|2| +Absorb Vis|Conflux|40|C|{6}{B}|Sorcery||| +Pestilent Kathari|Conflux|50|C|{2}{B}|Creature — Bird Warrior|1|1| +Fiery Fall|Conflux|63|C|{5}{R}|Instant||| +Sylvan Bounty|Conflux|94|C|{5}{G}|Instant||| +Stormcaller's Boon|Alara Reborn|13|C|{2}{W}{U}|Enchantment||| +Vithian Renegades|Alara Reborn|64|U|{1}{R}{G}|Creature — Human Shaman|3|2| +Talon Trooper|Alara Reborn|14|C|{1}{W}{U}|Creature — Bird Scout|2|3| +Anathemancer|Alara Reborn|33|U|{1}{B}{R}|Creature — Zombie Wizard|2|2| +Maelstrom Nexus|Alara Reborn|130|M|{W}{U}{B}{R}{G}|Enchantment||| +Ethercaste Knight|Alara Reborn|3|C|{W}{U}|Artifact Creature — Human Knight|1|3| +Deadshot Minotaur|Alara Reborn|52|C|{3}{R}{G}|Creature — Minotaur|3|4| +Double Negative|Alara Reborn|87|U|{U}{U}{R}|Instant||| +Behemoth Sledge|Alara Reborn|65|U|{1}{G}{W}|Artifact — Equipment||| +Meddling Mage|Alara Reborn|8|R|{W}{U}|Creature — Human Wizard|2|2| +Mycoid Shepherd|Alara Reborn|73|R|{1}{G}{G}{W}|Creature — Fungus|5|4| +Spellbreaker Behemoth|Alara Reborn|60|R|{1}{R}{G}{G}|Creature — Beast|5|5| +Sangrite Backlash|Alara Reborn|139|C|{BG}{R}|Enchantment — Aura||| +Lich Lord of Unx|Alara Reborn|24|R|{1}{U}{B}|Creature — Zombie Wizard|2|2| +Qasali Pridemage|Alara Reborn|75|C|{G}{W}|Creature — Cat Wizard|2|2| +Sigil Captain|Alara Reborn|77|U|{1}{G}{W}{W}|Creature — Rhino Soldier|3|3| +Gorger Wurm|Alara Reborn|56|C|{3}{R}{G}|Creature — Wurm|5|5| +Fight to the Death|Alara Reborn|97|R|{R}{W}|Instant||| +Mage Slayer|Alara Reborn|57|U|{1}{R}{G}|Artifact — Equipment||| +Intimidation Bolt|Alara Reborn|99|U|{1}{R}{W}|Instant||| +Skyclaw Thrash|Alara Reborn|89|U|{3}{U}{R}|Artifact Creature — Viashino Warrior|4|4| +Etherium Abomination|Alara Reborn|20|C|{3}{U}{B}|Artifact Creature — Horror|4|3| +Singe-Mind Ogre|Alara Reborn|45|C|{2}{B}{R}|Creature — Ogre Mutant|3|2| +Zealous Persecution|Alara Reborn|85|U|{W}{B}|Instant||| +Glassdust Hulk|Alara Reborn|7|C|{3}{W}{U}|Artifact Creature — Golem|3|4| +Ethersworn Shieldmage|Alara Reborn|4|C|{1}{W}{U}|Artifact Creature — Vedalken Wizard|2|2| +Nulltread Gargantuan|Alara Reborn|102|U|{1}{G}{U}|Creature — Beast|5|6| +Mask of Riddles|Alara Reborn|25|U|{U}{B}|Artifact — Equipment||| +Marisi's Twinclaws|Alara Reborn|140|U|{2}{RW}{G}|Creature — Cat Warrior|2|4| +Drastic Revelation|Alara Reborn|111|U|{2}{U}{B}{R}|Sorcery||| +Stun Sniper|Alara Reborn|100|U|{R}{W}|Creature — Human Archer|1|1| +Wildfield Borderpost|Alara Reborn|80|C|{1}{G}{W}|Artifact||| +Magefire Wings|Alara Reborn|88|C|{U}{R}|Enchantment — Aura||| +Vectis Dominator|Alara Reborn|84|C|{1}{W}{B}|Artifact Creature — Human Wizard|0|2| +Sewn-Eye Drake|Alara Reborn|135|C|{2}{UR}{B}|Creature — Zombie Drake|3|1| +Illusory Demon|Alara Reborn|21|U|{1}{U}{B}|Creature — Demon Illusion|4|3| +Architects of Will|Alara Reborn|17|C|{2}{U}{B}|Artifact Creature — Human Wizard|3|3| +Giant Ambush Beetle|Alara Reborn|137|U|{3}{BG}{R}|Creature — Insect|4|3| +Mind Funeral|Alara Reborn|26|U|{1}{U}{B}|Sorcery||| +Wall of Denial|Alara Reborn|16|U|{1}{W}{U}|Creature — Wall|0|8| +Kathari Bomber|Alara Reborn|41|C|{1}{B}{R}|Creature — Bird Shaman|2|2| +Winged Coatl|Alara Reborn|105|C|{1}{G}{U}|Creature — Snake|1|1| +Flurry of Wings|Alara Reborn|127|U|{G}{W}{U}|Instant||| +Brainbite|Alara Reborn|18|C|{2}{U}{B}|Sorcery||| +Glory of Warfare|Alara Reborn|98|R|{2}{R}{W}|Enchantment||| +Putrid Leech|Alara Reborn|95|C|{B}{G}|Creature — Zombie Leech|2|2| +Morbid Bloom|Alara Reborn|94|U|{4}{B}{G}|Sorcery||| +Etherwrought Page|Alara Reborn|108|U|{1}{W}{U}{B}|Artifact||| +Crystallization|Alara Reborn|144|C|{GU}{W}|Enchantment — Aura||| +Sanity Gnawers|Alara Reborn|44|U|{1}{B}{R}|Creature — Rat|1|1| +Colossal Might|Alara Reborn|51|C|{R}{G}|Instant||| +Vengeful Rebirth|Alara Reborn|62|U|{4}{R}{G}|Sorcery||| +Sigil of the Nayan Gods|Alara Reborn|78|C|{1}{G}{W}|Enchantment — Aura||| +Lorescale Coatl|Alara Reborn|101|U|{1}{G}{U}|Creature — Snake|2|2| +Grixis Slavedriver|Conflux|46|U|{5}{B}|Creature — Zombie Giant|4|4| +Paragon of the Amesha|Conflux|14|U|{2}{W}|Creature — Human Knight|2|2| +Fleshformer|Conflux|45|U|{2}{B}|Creature — Human Wizard|2|2| +Meglonoth|Conflux|118|R|{3}{R}{G}{W}|Creature — Beast|6|6| +Yoke of the Damned|Conflux|57|C|{1}{B}|Enchantment — Aura||| +Magister Sphinx|Conflux|116|R|{4}{W}{U}{B}|Artifact Creature — Sphinx|5|5| +Disfigure|Zendikar|87|C|{B}|Instant||| +Grim Discovery|Zendikar|91|C|{1}{B}|Sorcery||| +Seismic Shudder|Zendikar|147|C|{1}{R}|Instant||| +Excommunicate|Shards of Alara|11|C|{2}{W}|Sorcery||| +Brackwater Elemental|Conflux|21|C|{2}{U}|Creature — Elemental|4|4| +Esperzoa|Conflux|25|U|{2}{U}|Artifact Creature — Jellyfish|4|3| +Manaforce Mace|Conflux|139|U|{4}|Artifact — Equipment||| +Knotvine Mystic|Conflux|114|U|{R}{G}{W}|Creature — Elf Druid|2|2| +Blood Tyrant|Conflux|99|R|{4}{U}{B}{R}|Creature — Vampire|5|5| +Sigil of the Empty Throne|Conflux|18|R|{3}{W}{W}|Enchantment||| +Constricting Tendrils|Conflux|22|C|{U}|Instant||| +Volcanic Fallout|Conflux|74|U|{1}{R}{R}|Instant||| +Aven Trailblazer|Conflux|4|C|{2}{W}|Creature — Bird Soldier|2|*| +Wandering Goblins|Conflux|76|C|{2}{R}|Creature — Goblin Warrior|0|3| +Demonspine Whip|Alara Reborn|39|U|{B}{R}|Artifact — Equipment||| +Cumber Stone|Conflux|24|U|{3}{U}|Artifact||| +Darklit Gargoyle|Conflux|7|C|{1}{W}|Artifact Creature — Gargoyle|1|2| +Thornling|Conflux|95|M|{3}{G}{G}|Creature — Elemental Shapeshifter|4|4| +Vagrant Plowbeasts|Conflux|129|U|{5}{G}{W}|Creature — Beast|6|6| +Suicidal Charge|Conflux|128|C|{3}{B}{R}|Enchantment||| +Nimbus Wings|Zendikar|28|C|{1}{W}|Enchantment — Aura||| +Kabira Evangel|Zendikar|15|R|{2}{W}|Creature — Human Cleric Ally|2|3| +Hedron Crab|Zendikar|47|U|{U}|Creature — Crab|0|2| +Bladetusk Boar|Zendikar|118|C|{3}{R}|Creature — Boar|3|2| +Magma Rift|Zendikar|136|C|{2}{R}|Sorcery||| +Narrow Escape|Zendikar|27|C|{2}{W}|Instant||| +Frontier Guide|Zendikar|161|U|{1}{G}|Creature — Elf Scout|1|1| +Blood Seeker|Zendikar|80|C|{1}{B}|Creature — Vampire Shaman|1|1| +Harrow|Zendikar|165|C|{2}{G}|Instant||| +Goblin Ruinblaster|Zendikar|127|U|{2}{R}|Creature — Goblin Shaman|2|1| +Horizon Drake|Worldwake|30|U|{1}{U}{U}|Creature — Drake|3|1| +Mindless Null|Zendikar|103|C|{2}{B}|Creature — Zombie|2|2| +Crusher Zendikon|Worldwake|78|C|{2}{R}|Enchantment — Aura||| +Torch Slinger|Zendikar|151|C|{2}{R}|Creature — Goblin Shaman|2|2| +Hideous End|Zendikar|98|C|{1}{B}{B}|Instant||| +Umara Raptor|Zendikar|75|C|{2}{U}|Creature — Bird Ally|1|1| +Quest for the Gravelord|Zendikar|108|U|{B}|Enchantment||| +Vastwood Gorger|Zendikar|192|C|{5}{G}|Creature — Wurm|5|6| +Scute Mob|Zendikar|182|R|{G}|Creature — Insect|1|1| +Tajuru Archer|Zendikar|185|U|{2}{G}|Creature — Elf Archer Ally|1|2| +Timbermaw Larva|Zendikar|189|C|{3}{G}|Creature — Beast|2|2| +Surrakar Marauder|Zendikar|113|C|{1}{B}|Creature — Surrakar|2|1| +Highland Berserker|Zendikar|132|C|{1}{R}|Creature — Human Berserker Ally|2|1| +Goblin Shortcutter|Zendikar|128|C|{1}{R}|Creature — Goblin Scout|2|1| +Tempest Owl|Zendikar|72|C|{1}{U}|Creature — Bird|1|2| +Reckless Scholar|Zendikar|60|C|{2}{U}|Creature — Human Wizard|2|1| +Spire Barrage|Zendikar|150|C|{4}{R}|Sorcery||| +Guul Draz Vampire|Zendikar|93|C|{B}|Creature — Vampire Rogue|1|1| +Shatterskull Giant|Zendikar|148|C|{2}{R}{R}|Creature — Giant Warrior|4|3| +Bold Defense|Zendikar|3|C|{2}{W}|Instant||| +Child of Alara|Conflux|101|M|{W}{U}{B}{R}{G}|Legendary Creature — Avatar|6|6| +Karrthus, Tyrant of Jund|Alara Reborn|117|M|{4}{B}{R}{G}|Legendary Creature — Dragon|7|7| +Wargate|Alara Reborn|129|R|{X}{G}{W}{U}|Sorcery||| +Thraximundar|Alara Reborn|113|M|{4}{U}{B}{R}|Legendary Creature — Zombie Assassin|6|6| +Thought Hemorrhage|Alara Reborn|47|R|{2}{B}{R}|Sorcery||| +Enigma Sphinx|Alara Reborn|106|R|{4}{W}{U}{B}|Artifact Creature — Sphinx|5|4| +Sovereigns of Lost Alara|Alara Reborn|12|R|{4}{W}{U}|Creature — Spirit|4|5| +Sages of the Anima|Alara Reborn|103|R|{3}{G}{U}|Creature — Elf Wizard|3|4| +Predatory Advantage|Alara Reborn|58|R|{3}{R}{G}|Enchantment||| +Cerodon Yearling|Alara Reborn|96|C|{R}{W}|Creature — Beast|2|2| +Jenara, Asura of War|Alara Reborn|128|M|{G}{W}{U}|Legendary Creature — Angel|3|3| +Leonin Armorguard|Alara Reborn|72|C|{2}{G}{W}|Creature — Cat Soldier|3|3| +Sen Triplets|Alara Reborn|109|M|{2}{W}{U}{B}|Legendary Artifact Creature — Human Wizard|3|3| +Aven Mimeomancer|Alara Reborn|2|R|{1}{W}{U}|Creature — Bird Wizard|3|1| +Finest Hour|Alara Reborn|126|R|{2}{G}{W}{U}|Enchantment||| +Spellbound Dragon|Alara Reborn|90|R|{3}{U}{R}|Creature — Dragon|3|5| +Lavalanche|Alara Reborn|118|R|{X}{B}{R}{G}|Sorcery||| +Maelstrom Pulse|Alara Reborn|92|R|{1}{B}{G}|Sorcery||| +Dauntless Escort|Alara Reborn|67|R|{1}{G}{W}|Creature — Rhino Soldier|3|3| +Dragon Appeasement|Alara Reborn|115|U|{3}{B}{R}{G}|Enchantment||| +Lightning Reaver|Alara Reborn|42|R|{3}{B}{R}|Creature — Zombie Beast|3|3| +Tainted Sigil|Alara Reborn|83|U|{1}{W}{B}|Artifact||| +Vedalken Heretic|Alara Reborn|104|R|{G}{U}|Creature — Vedalken Rogue|1|1| +Mayael's Aria|Alara Reborn|121|R|{R}{G}{W}|Enchantment||| +Deathbringer Thoctar|Alara Reborn|36|R|{4}{B}{R}|Creature — Zombie Beast|3|3| +Knotvine Paladin|Alara Reborn|71|R|{G}{W}|Creature — Human Knight|2|2| +Madrush Cyclops|Alara Reborn|119|R|{1}{B}{R}{G}|Creature — Cyclops Warrior|3|4| +Sedraxis Alchemist|Conflux|54|C|{2}{B}|Creature — Zombie Wizard|2|2| +Court Homunculus|Conflux|6|C|{W}|Artifact Creature — Homunculus|1|1| +Faerie Mechanist|Conflux|27|C|{3}{U}|Artifact Creature — Faerie Artificer|2|2| +Maniacal Rage|Conflux|68|C|{1}{R}|Enchantment — Aura||| +Fieldmist Borderpost|Alara Reborn|5|C|{1}{W}{U}|Artifact||| +Offering to Asha|Alara Reborn|9|C|{2}{W}{U}|Instant||| +Soul Manipulation|Alara Reborn|29|C|{1}{U}{B}|Instant||| +Vedalken Ghoul|Alara Reborn|32|C|{U}{B}|Creature — Vedalken Zombie|1|1| +Necromancer's Covenant|Alara Reborn|82|R|{3}{W}{B}{B}|Enchantment||| +Marrow Chomper|Alara Reborn|93|U|{3}{B}{G}|Creature — Zombie Lizard|3|3| +Thopter Foundry|Alara Reborn|133|U|{WB}{U}|Artifact||| +Obelisk of Alara|Conflux|140|R|{6}|Artifact||| +Sludge Strider|Conflux|126|U|{1}{W}{U}{B}|Artifact Creature — Insect|3|3| +Nacatl Savage|Conflux|86|C|{1}{G}|Creature — Cat Warrior|2|1| +Elder Mastery|Conflux|104|U|{3}{U}{B}{R}|Enchantment — Aura||| +Scarland Thrinax|Conflux|123|U|{B}{R}{G}|Creature — Lizard|2|2| +Controlled Instincts|Conflux|23|U|{U}|Enchantment — Aura||| +Corrupted Roots|Conflux|41|U|{B}|Enchantment — Aura||| +Celestial Purge|Conflux|5|U|{1}{W}|Instant||| +Ignite Disorder|Conflux|66|U|{1}{R}|Instant||| +View from Above|Conflux|38|U|{1}{U}|Instant||| +Vectis Agents|Conflux|131|C|{3}{U}{B}|Artifact Creature — Human Rogue|4|3| +Apocalypse Hydra|Conflux|98|M|{X}{R}{G}|Creature — Hydra|0|0| +Zektar Shrine Expedition|Zendikar|155|C|{1}{R}|Enchantment||| +Mold Shambler|Zendikar|169|C|{3}{G}|Creature — Fungus Beast|3|3| +Caller of Gales|Zendikar|43|C|{U}|Creature — Merfolk Wizard|1|1| +Guul Draz Specter|Zendikar|92|R|{2}{B}{B}|Creature — Specter|2|2| +Godtracker of Jund|Alara Reborn|55|C|{1}{R}{G}|Creature — Elf Shaman|2|2| +Aeolipile|Masters Edition II|202|C|{2}|Artifact||| +Deep Spawn|Masters Edition II|45|R|{5}{U}{U}{U}|Creature — Homarid|6|6| +Dwarven Ruins|Masters Edition II|227|U||Land||| +Ebon Praetor|Masters Edition II|89|R|{4}{B}{B}|Creature — Praetor|5|5| +Ebon Stronghold|Masters Edition II|228|U||Land||| +Elvish Farmer|Masters Edition II|156|R|{1}{G}|Creature — Elf|0|2| +Feral Thallid|Masters Edition II|161|C|{3}{G}{G}{G}|Creature — Fungus|6|3| +Havenwood Battleground|Masters Edition II|230|U||Land||| +Aysen Bureaucrats|Masters Edition II|6|C|{1}{W}|Creature — Human Advisor|1|1| +Icatian Phalanx|Masters Edition II|16|C|{4}{W}|Creature — Human Soldier|2|4| +Orcish Captain|Masters Edition II|139|U|{R}|Creature — Orc Warrior|1|1| +Ruins of Trokair|Masters Edition II|234|U||Land||| +Soul Exchange|Masters Edition II|111|U|{B}{B}|Sorcery||| +Spore Flower|Masters Edition II|177|U|{G}{G}|Creature — Fungus|0|1| +Svyelunite Temple|Masters Edition II|237|U||Land||| +Thallid Devourer|Masters Edition II|181|C|{1}{G}{G}|Creature — Fungus|2|2| +Thelonite Druid|Masters Edition II|182|R|{2}{G}|Creature — Human Cleric Druid|1|1| +Balduvian Trading Post|Masters Edition II|226|R||Land||| +Bounty of the Hunt|Masters Edition II|154|R|{3}{G}{G}|Instant||| +Death Spark|Masters Edition II|123|C|{R}|Instant||| +Dystopia|Masters Edition II|88|R|{1}{B}{B}|Enchantment||| +Woolly Spider|Masters Edition II|189|U|{1}{G}{G}|Creature — Spider|2|3| +Elvish Spirit Guide|Masters Edition II|159|U|{2}{G}|Creature — Elf Spirit|2|2| +Ambush Party|Masters Edition II|115|C|{4}{R}|Creature — Human Rogue|3|1| +Gustha's Scepter|Masters Edition II|209|R|{0}|Artifact||| +Heart of Yavimaya|Masters Edition II|231|R||Land||| +Helm of Obedience|Masters Edition II|210|R|{4}|Artifact||| +Ivory Gargoyle|Masters Edition II|19|R|{4}{W}|Creature — Gargoyle|2|2| +Juniper Order Advocate|Masters Edition II|20|U|{2}{W}|Creature — Human Knight|1|2| +Kaysa|Masters Edition II|170|R|{3}{G}{G}|Legendary Creature — Elf Druid|2|3| +Kjeldoran Home Guard|Masters Edition II|22|U|{3}{W}|Creature — Human Soldier|1|6| +Kjeldoran Outpost|Masters Edition II|233|R||Land||| +Krovikan Horror|Masters Edition II|101|R|{3}{B}|Creature — Horror Spirit|2|2| +Lodestone Bauble|Masters Edition II|213|R|{0}|Artifact||| +Mishra's Groundbreaker|Masters Edition II|215|U|{4}|Artifact||| +Nature's Wrath|Masters Edition II|172|R|{4}{G}{G}|Enchantment||| +Phyrexian Devourer|Masters Edition II|216|U|{6}|Artifact Creature — Construct|1|1| +Phyrexian Portal|Masters Edition II|217|R|{3}|Artifact||| +Pillage|Masters Edition II|146|U|{1}{R}{R}|Sorcery||| +Ritual of the Machine|Masters Edition II|109|R|{2}{B}{B}|Sorcery||| +Rogue Skycaptain|Masters Edition II|149|R|{2}{R}|Creature — Human Rogue Mercenary|3|4| +Scars of the Veteran|Masters Edition II|34|R|{4}{W}|Instant||| +Forbidden Lore|Masters Edition II|163|U|{2}{G}|Enchantment — Aura||| +Soldevi Digger|Masters Edition II|221|U|{2}|Artifact||| +Soldevi Excavations|Masters Edition II|236|R||Land||| +Fyndhorn Pollen|Masters Edition II|166|R|{2}{G}|Enchantment||| +Storm Elemental|Masters Edition II|68|U|{5}{U}|Creature — Elemental|3|4| +Thought Lash|Masters Edition II|70|R|{2}{U}{U}|Enchantment||| +Whirling Catapult|Masters Edition II|224|U|{4}|Artifact||| +Winter's Night|Masters Edition II|200|R|{R}{G}{W}|World Enchantment||| +Abbey Gargoyles|Masters Edition II|1|U|{2}{W}{W}{W}|Creature — Gargoyle|3|4| +An-Zerrin Ruins|Masters Edition II|117|R|{2}{R}{R}|Enchantment||| +Aysen Crusader|Masters Edition II|7|U|{2}{W}{W}|Creature — Human Knight|2+*|2+*| +Grandmother Sengir|Masters Edition II|93|R|{4}{B}|Legendary Creature — Human Wizard|3|3| +Broken Visage|Masters Edition II|81|U|{4}{B}|Instant||| +Clockwork Steed|Masters Edition II|205|U|{4}|Artifact Creature — Horse|0|3| +Ihsan's Shade|Masters Edition II|95|R|{3}{B}{B}{B}|Legendary Creature — Shade Knight|5|5| +Joven's Ferrets|Masters Edition II|169|U|{G}|Creature — Ferret|1|1| +Marjhan|Masters Edition II|54|R|{5}{U}{U}|Creature — Leviathan|8|8| +Narwhal|Masters Edition II|57|U|{2}{U}{U}|Creature — Whale|2|2| +Retribution|Masters Edition II|148|U|{2}{R}{R}|Sorcery||| +Roterothopter|Masters Edition II|218|C|{1}|Artifact Creature — Thopter|0|2| +Reinforcements|Masters Edition II|28|C|{W}|Instant||| +Wall of Kelp|Masters Edition II|74|C|{U}{U}|Creature — Plant Wall|0|3| +Adarkar Sentinel|Masters Edition II|201|C|{5}|Artifact Creature — Soldier|3|3| +Anarchy|Masters Edition II|116|R|{2}{R}{R}|Sorcery||| +Ashen Ghoul|Masters Edition II|78|U|{3}{B}|Creature — Zombie|3|1| +Elvish Hunter|Masters Edition II|157|C|{1}{G}|Creature — Elf Archer|1|1| +Balduvian Conjurer|Masters Edition II|40|C|{1}{U}|Creature — Human Wizard|0|2| +Barbed Sextant|Masters Edition II|204|C|{1}|Artifact||| +Binding Grasp|Masters Edition II|41|R|{3}{U}|Enchantment — Aura||| +Brainstorm|Masters Edition II|42|C|{U}|Instant||| +Caribou Range|Masters Edition II|8|R|{2}{W}{W}|Enchantment — Aura||| +Sacred Boon|Masters Edition II|33|U|{1}{W}|Instant||| +Conquer|Masters Edition II|122|U|{3}{R}{R}|Enchantment — Aura||| +Soul Kiss|Masters Edition II|112|U|{2}{B}|Enchantment — Aura||| +Dance of the Dead|Masters Edition II|83|U|{1}{B}|Enchantment — Aura||| +Dark Banishing|Masters Edition II|84|C|{2}{B}|Instant||| +Demonic Consultation|Masters Edition II|85|U|{B}|Instant||| +Despotic Scepter|Masters Edition II|206|R|{1}|Artifact||| +Diabolic Vision|Masters Edition II|191|U|{U}{B}|Sorcery||| +Dreams of the Dead|Masters Edition II|46|R|{3}{U}|Enchantment||| +Elemental Augury|Masters Edition II|193|R|{U}{B}{R}|Enchantment||| +Elkin Bottle|Masters Edition II|207|R|{3}|Artifact||| +Energy Storm|Masters Edition II|11|R|{1}{W}|Enchantment||| +Enervate|Masters Edition II|47|C|{1}{U}|Instant||| +Folk of the Pines|Masters Edition II|162|C|{4}{G}|Creature — Dryad|2|5| +Forgotten Lore|Masters Edition II|164|U|{G}|Sorcery||| +Foul Familiar|Masters Edition II|90|C|{2}{B}|Creature — Spirit|3|1| +Fumarole|Masters Edition II|194|U|{3}{B}{R}|Sorcery||| +Gangrenous Zombies|Masters Edition II|92|C|{1}{B}{B}|Creature — Zombie|2|2| +Wings of Aesthir|Masters Edition II|199|U|{W}{U}|Enchantment — Aura||| +Giant Trap Door Spider|Masters Edition II|195|U|{1}{R}{G}|Creature — Spider|2|3| +Glacial Chasm|Masters Edition II|229|R||Land||| +Glacial Crevasses|Masters Edition II|127|R|{2}{R}|Enchantment||| +Ice Floe|Masters Edition II|232|U||Land||| +Icequake|Masters Edition II|94|C|{1}{B}{B}|Sorcery||| +Inheritance|Masters Edition II|18|U|{W}|Enchantment||| +Incinerate|Masters Edition II|131|C|{1}{R}|Instant||| +Infernal Darkness|Masters Edition II|97|R|{2}{B}{B}|Enchantment||| +Jester's Mask|Masters Edition II|211|R|{5}|Artifact||| +Jeweled Amulet|Masters Edition II|212|U|{0}|Artifact||| +Johtull Wurm|Masters Edition II|168|U|{5}{G}|Creature — Wurm|6|6| +Kjeldoran Dead|Masters Edition II|98|C|{B}|Creature — Skeleton|3|1| +Kjeldoran Elite Guard|Masters Edition II|21|C|{3}{W}|Creature — Human Soldier|2|2| +Farrel's Mantle|Masters Edition II|13|U|{2}{W}|Enchantment — Aura||| +Kjeldoran Skycaptain|Masters Edition II|23|C|{4}{W}|Creature — Human Soldier|2|2| +Knight of Stromgald|Masters Edition II|99|U|{B}{B}|Creature — Human Knight|2|1| +Krovikan Sorcerer|Masters Edition II|51|C|{2}{U}|Creature — Human Wizard|1|1| +Krovikan Vampire|Masters Edition II|102|U|{3}{B}{B}|Creature — Vampire|3|3| +Lava Burst|Masters Edition II|134|U|{X}{R}|Sorcery||| +Lost Order of Jarkeld|Masters Edition II|24|R|{2}{W}{W}|Creature — Human Knight|1+*|1+*| +Meteor Shower|Masters Edition II|135|C|{X}{X}{R}|Sorcery||| +Necropotence|Masters Edition II|107|R|{B}{B}{B}|Enchantment||| +Orcish Cannoneers|Masters Edition II|138|U|{1}{R}{R}|Creature — Orc Warrior|1|3| +Orcish Conscripts|Masters Edition II|140|C|{R}|Creature — Orc|2|2| +Orcish Farmer|Masters Edition II|141|C|{1}{R}{R}|Creature — Orc|2|2| +Stone Spirit|Masters Edition II|150|U|{4}{R}|Creature — Elemental Spirit|4|3| +Orcish Lumberjack|Masters Edition II|142|C|{R}|Creature — Orc|1|1| +Orcish Squatters|Masters Edition II|143|R|{4}{R}|Creature — Orc|2|3| +Order of the Sacred Torch|Masters Edition II|25|R|{1}{W}{W}|Creature — Human Knight|2|2| +Order of the White Shield|Masters Edition II|26|U|{W}{W}|Creature — Human Knight|2|1| +Sea Spirit|Masters Edition II|65|U|{4}{U}|Creature — Elemental Spirit|2|3| +Portent|Masters Edition II|60|C|{U}|Sorcery||| +Ray of Command|Masters Edition II|61|U|{3}{U}|Instant||| +Ritual of Subdual|Masters Edition II|174|R|{4}{G}{G}|Enchantment||| +Sibilant Spirit|Masters Edition II|67|R|{5}{U}|Creature — Spirit|5|6| +Skeleton Ship|Masters Edition II|197|R|{3}{U}{B}|Legendary Creature — Skeleton|0|3| +Skull Catapult|Masters Edition II|219|U|{4}|Artifact||| +Soldevi Simulacrum|Masters Edition II|222|U|{4}|Artifact Creature — Soldier|2|4| +Cloak of Confusion|Masters Edition II|82|C|{1}{B}|Enchantment — Aura||| +Stampede|Masters Edition II|178|U|{1}{G}{G}|Instant||| +Funeral March|Masters Edition II|91|C|{1}{B}{B}|Enchantment — Aura||| +Storm Spirit|Masters Edition II|198|R|{3}{G}{W}{U}|Creature — Elemental Spirit|3|3| +Stromgald Cabal|Masters Edition II|113|R|{1}{B}{B}|Creature — Human Knight|2|2| +Stunted Growth|Masters Edition II|179|R|{3}{G}{G}|Sorcery||| +Swords to Plowshares|Masters Edition II|37|U|{W}|Instant||| +Thermokarst|Masters Edition II|183|C|{1}{G}{G}|Sorcery||| +Time Bomb|Masters Edition II|223|R|{4}|Artifact||| +Tinder Wall|Masters Edition II|184|C|{G}|Creature — Plant Wall|0|3| +Wiitigo|Masters Edition II|186|R|{3}{G}{G}{G}|Creature — Yeti|0|0| +Wind Spirit|Masters Edition II|75|U|{4}{U}|Creature — Elemental Spirit|3|2| +Withering Wisps|Masters Edition II|114|U|{1}{B}{B}|Enchantment||| +Woolly Mammoths|Masters Edition II|188|C|{1}{G}{G}|Creature — Elephant|3|2| +Zuran Spellcaster|Masters Edition II|76|C|{2}{U}|Creature — Human Wizard|1|1| +Armor Thrull|Masters Edition II|77|C|{2}{B}|Creature — Thrull|1|3| +Brassclaw Orcs|Masters Edition II|119|C|{2}{R}|Creature — Orc|3|2| +Combat Medic|Masters Edition II|9|C|{2}{W}|Creature — Human Cleric Soldier|0|2| +Counterspell|Masters Edition II|44|U|{U}{U}|Instant||| +Shrink|Masters Edition II|175|C|{G}|Instant||| +Disenchant|Masters Edition II|10|C|{1}{W}|Instant||| +Goblin Ski Patrol|Masters Edition II|128|C|{1}{R}|Creature — Goblin|1|1| +Elvish Ranger|Masters Edition II|158|C|{2}{G}|Creature — Elf|4|1| +Giant Growth|Masters Edition II|167|C|{G}|Instant||| +Gorilla Shaman|Masters Edition II|129|U|{R}|Creature — Ape Shaman|1|1| +Stonehands|Masters Edition II|151|C|{2}{R}|Enchantment — Aura||| +Icatian Javelineers|Masters Edition II|15|C|{W}|Creature — Human Soldier|1|1| +Icatian Scout|Masters Edition II|17|C|{W}|Creature — Human Soldier Scout|1|1| +Lat-Nam's Legacy|Masters Edition II|52|C|{1}{U}|Instant||| +Misinformation|Masters Edition II|105|U|{B}|Instant||| +Necrite|Masters Edition II|106|C|{1}{B}{B}|Creature — Thrull|2|2| +Night Soil|Masters Edition II|173|U|{G}{G}|Enchantment||| +Orcish Veteran|Masters Edition II|144|C|{2}{R}|Creature — Orc|2|2| +Shield Bearer|Masters Edition II|35|C|{1}{W}|Creature — Human Soldier|0|3| +Dry Spell|Masters Edition II|87|C|{1}{B}|Sorcery||| +Snow Fortress|Masters Edition II|220|U|{5}|Artifact Creature — Wall|0|4| +Viscerid Armor|Masters Edition II|72|C|{1}{U}|Enchantment — Aura||| +Reprisal|Masters Edition II|29|C|{1}{W}|Instant||| +Phantasmal Mount|Masters Edition II|59|C|{1}{U}|Creature — Illusion Horse|1|1| +Elven Lyre|Masters Edition II|208|C|{2}|Artifact||| +Spore Cloud|Masters Edition II|176|U|{1}{G}{G}|Instant||| +Thallid|Masters Edition II|180|C|{G}|Creature — Fungus|1|1| +Aurochs|Masters Edition II|153|C|{3}{G}|Creature — Aurochs|2|3| +Karplusan Giant|Masters Edition II|133|U|{6}{R}|Creature — Giant|3|3| +Lim-Dϋl's High Guard|Masters Edition II|103|U|{1}{B}{B}|Creature — Skeleton|2|1| +Royal Decree|Masters Edition II|31|R|{2}{W}{W}|Enchantment||| +Imperial Recruiter|Masters Edition II|130|R|{2}{R}|Creature — Human Advisor|1|1| +Imperial Seal|Masters Edition II|96|R|{B}|Sorcery||| +Essence Filter|Masters Edition II|160|U|{1}{G}{G}|Sorcery||| +Warning|Masters Edition II|38|C|{W}|Instant||| +Varchild's Crusader|Masters Edition II|152|C|{3}{R}|Creature — Human Knight|3|2| +Shyft|Masters Edition II|66|C|{4}{U}|Creature — Shapeshifter|4|2| +Ζther Storm|Masters Edition II|39|U|{3}{U}|Enchantment||| +Fire Dragon|Masters Edition II|125|R|{6}{R}{R}{R}|Creature — Dragon|6|6| +Ravages of War|Masters Edition II|27|R|{3}{W}|Sorcery||| +Red Cliffs Armada|Masters Edition II|62|C|{4}{U}|Creature — Human Soldier|5|4| +Armor of Faith|Masters Edition II|4|C|{W}|Enchantment — Aura||| +Mudslide|Masters Edition II|136|R|{2}{R}|Enchantment||| +Armored Griffin|Masters Edition II|5|C|{3}{W}|Creature — Griffin|2|3| +Farrel's Zealot|Masters Edition II|14|U|{1}{W}{W}|Creature — Human|2|2| +Errand of Duty|Masters Edition II|12|U|{1}{W}|Instant||| +Essence Flare|Masters Edition II|48|C|{U}|Enchantment — Aura||| +Magus of the Unseen|Masters Edition II|53|R|{1}{U}|Creature — Human Wizard|1|1| +Iceberg|Masters Edition II|49|U|{X}{U}{U}|Enchantment||| +Drift of the Dead|Masters Edition II|86|C|{3}{B}|Creature — Wall|*|*| +Balduvian Dead|Masters Edition II|79|U|{3}{B}|Creature — Zombie|2|3| +Brine Shaman|Masters Edition II|80|C|{1}{B}|Creature — Human Cleric Shaman|1|1| +Krovikan Fetish|Masters Edition II|100|C|{2}{B}|Enchantment — Aura||| +Screeching Drake|Masters Edition II|63|C|{3}{U}|Creature — Drake|2|2| +Thunder Wall|Masters Edition II|71|U|{1}{U}{U}|Creature — Wall|0|2| +Minion of Leshrac|Masters Edition II|104|R|{4}{B}{B}{B}|Creature — Demon Minion|5|5| +Errantry|Masters Edition II|124|C|{1}{R}|Enchantment — Aura||| +Panic|Masters Edition II|145|C|{R}|Instant||| +Flame Spirit|Masters Edition II|126|U|{4}{R}|Creature — Elemental Spirit|2|3| +Sustaining Spirit|Masters Edition II|36|R|{1}{W}|Creature — Angel Spirit|0|3| +Songs of the Damned|Masters Edition II|110|C|{B}|Instant||| +Angel of Fury|Masters Edition II|2|R|{4}{W}{W}|Creature — Angel|3|5| +Mesmeric Trance|Masters Edition II|55|R|{1}{U}{U}|Enchantment||| +Badlands|Masters Edition II|225|R||Land — Swamp Mountain||| +Savannah|Masters Edition II|235|R||Land — Forest Plains||| +Taiga|Masters Edition II|238|R||Land — Mountain Forest||| +Tundra|Masters Edition II|239|R||Land — Plains Island||| +Underground Sea|Masters Edition II|240|R||Land — Island Swamp||| +Angel of Light|Masters Edition II|3|U|{4}{W}|Creature — Angel|3|3| +Icy Prison|Masters Edition II|50|C|{U}{U}|Enchantment||| +Musician|Masters Edition II|56|R|{2}{U}|Creature — Human Wizard|1|3| +Righteous Fury|Masters Edition II|30|R|{4}{W}{W}|Sorcery||| +Balduvian Hydra|Masters Edition II|118|R|{X}{R}{R}|Creature — Hydra|0|1| +Royal Trooper|Masters Edition II|32|C|{2}{W}|Creature — Human Soldier|2|2| +Ironclaw Orcs|Masters Edition II|132|C|{1}{R}|Creature — Orc|2|2| +Ashnod's Cylix|Masters Edition II|203|R|{2}|Artifact||| +Browse|Masters Edition II|43|U|{2}{U}{U}|Enchantment||| +Burnout|Masters Edition II|121|U|{1}{R}|Instant||| +Pyrokinesis|Masters Edition II|147|R|{4}{R}{R}|Instant||| +Viscerid Drone|Masters Edition II|73|U|{1}{U}|Creature — Homarid Drone|1|2| +Yavimaya Ancients|Masters Edition II|190|U|{3}{G}{G}|Creature — Treefolk|2|7| +Brimstone Dragon|Masters Edition II|120|R|{6}{R}{R}|Creature — Dragon|6|6| +Whiteout|Masters Edition II|185|C|{1}{G}|Instant||| +Sea Drake|Masters Edition II|64|R|{2}{U}|Creature — Drake|4|3| +Temporal Manipulation|Masters Edition II|69|R|{3}{U}{U}|Sorcery||| +Fungal Bloom|Masters Edition II|165|R|{G}{G}|Enchantment||| +Leaping Lizard|Masters Edition II|171|C|{1}{G}{G}|Creature — Lizard|2|3| +Mana Crypt|Masters Edition II|214|R|{0}|Artifact||| +Orc General|Masters Edition II|137|U|{2}{R}|Creature — Orc Warrior|2|2| +Personal Tutor|Masters Edition II|58|U|{U}|Sorcery||| +Earthlink|Masters Edition II|192|R|{3}{B}{R}{G}|Enchantment||| +Carapace|Masters Edition II|155|C|{G}|Enchantment — Aura||| +Wolf Pack|Masters Edition II|187|R|{6}{G}{G}|Creature — Wolf|7|6| +Nature's Blessing|Masters Edition II|196|U|{2}{G}{W}|Enchantment||| +Snow-Covered Forest|Masters Edition II|245|L||Basic Snow Land — Forest||| +Snow-Covered Island|Masters Edition II|242|L||Basic Snow Land — Island||| +Snow-Covered Mountain|Masters Edition II|244|L||Basic Snow Land — Mountain||| +Snow-Covered Plains|Masters Edition II|241|L||Basic Snow Land — Plains||| +Snow-Covered Swamp|Masters Edition II|243|L||Basic Snow Land — Swamp||| +Esper Cormorants|Conflux|105|C|{2}{W}{U}|Artifact Creature — Bird|3|3| +Valiant Guard|Conflux|19|C|{W}|Creature — Human Soldier|0|3| +Molten Frame|Conflux|69|C|{1}{R}|Instant||| +Scepter of Insight|Conflux|33|R|{1}{U}{U}|Artifact||| +Ember Weaver|Conflux|81|C|{2}{G}|Creature — Spider|2|3| +Shambling Remains|Conflux|124|U|{1}{B}{R}|Creature — Zombie Horror|4|3| +Aven Squire|Conflux|3|C|{1}{W}|Creature — Bird Soldier|1|1| +Frontline Sage|Conflux|28|C|{2}{U}|Creature — Human Wizard|0|1| +Canyon Minotaur|Conflux|60|C|{3}{R}|Creature — Minotaur Warrior|3|3| +Tukatongue Thallid|Conflux|96|C|{G}|Creature — Fungus|1|1| +Deny Reality|Alara Reborn|19|C|{3}{U}{B}|Sorcery||| +Enlisted Wurm|Alara Reborn|68|U|{4}{G}{W}|Creature — Wurm|5|5| +Monstrous Carabid|Alara Reborn|43|C|{3}{B}{R}|Creature — Insect|4|4| +Bloodbraid Elf|Alara Reborn|50|U|{2}{R}{G}|Creature — Elf Berserker|3|2| +Ardent Plea|Alara Reborn|1|U|{1}{W}{U}|Enchantment||| +Violent Outburst|Alara Reborn|63|C|{1}{R}{G}|Instant||| +Bituminous Blast|Alara Reborn|34|U|{3}{B}{R}|Instant||| +Kathari Remnant|Alara Reborn|23|U|{2}{U}{B}|Creature — Bird Skeleton|0|1| +Demonic Dread|Alara Reborn|38|C|{1}{B}{R}|Sorcery||| +Shield of the Righteous|Alara Reborn|11|U|{W}{U}|Artifact — Equipment||| +Captured Sunlight|Alara Reborn|66|C|{2}{G}{W}|Sorcery||| +Maelstrom Archangel|Conflux|115|M|{W}{U}{B}{R}{G}|Creature — Angel|5|5| +Soul's Majesty|Conflux|92|R|{4}{G}|Sorcery||| +Zombie Outlander|Conflux|133|C|{U}{B}|Creature — Zombie Scout|2|2| +Nacatl Outlander|Conflux|119|C|{R}{G}|Creature — Cat Scout|2|2| +Vedalken Outlander|Conflux|132|C|{W}{U}|Artifact Creature — Vedalken Scout|2|2| +Goblin Outlander|Conflux|109|C|{B}{R}|Creature — Goblin Scout|2|2| +Dark Temper|Conflux|61|C|{2}{R}|Instant||| +Valeron Outlander|Conflux|130|C|{G}{W}|Creature — Human Scout|2|2| +Greenweaver Druid|Zendikar|164|U|{2}{G}|Creature — Elf Druid|1|1| +Oran-Rief Recluse|Zendikar|173|C|{2}{G}|Creature — Spider|1|3| +Caravan Hurda|Zendikar|5|C|{4}{W}|Creature — Giant|1|5| +Gatekeeper of Malakir|Zendikar|89|U|{B}{B}|Creature — Vampire Warrior|2|2| +Nissa's Chosen|Zendikar|171|C|{G}{G}|Creature — Elf Warrior|2|3| +Goblin War Paint|Zendikar|129|C|{1}{R}|Enchantment — Aura||| +Beast Hunt|Zendikar|158|C|{3}{G}|Sorcery||| +Kalitas, Bloodchief of Ghet|Zendikar|99|M|{5}{B}{B}|Legendary Creature — Vampire Warrior|5|5| +Vampire Nighthawk|Zendikar|116|U|{1}{B}{B}|Creature — Vampire Shaman|2|3| +Sphinx of Jwar Isle|Zendikar|68|R|{4}{U}{U}|Creature — Sphinx|5|5| +Ior Ruin Expedition|Zendikar|49|C|{1}{U}|Enchantment||| +Roil Elemental|Zendikar|62|R|{3}{U}{U}{U}|Creature — Elemental|3|2| +Hellkite Charger|Zendikar|131|R|{4}{R}{R}|Creature — Dragon|5|5| +Brave the Elements|Zendikar|4|U|{W}|Instant||| +Oracle of Mul Daya|Zendikar|172|R|{3}{G}|Creature — Elf Shaman|2|2| +Felidar Sovereign|Zendikar|12|M|{4}{W}{W}|Creature — Cat Beast|4|6| +Lotus Cobra|Zendikar|168|M|{1}{G}|Creature — Snake|2|1| +Sphinx of Lost Truths|Zendikar|69|R|{3}{U}{U}|Creature — Sphinx|3|5| +Halo Hunter|Zendikar|96|R|{2}{B}{B}{B}|Creature — Demon|6|3| +Quietus Spike|Shards of Alara|217|R|{3}|Artifact — Equipment||| +Rakka Mar|Conflux|71|R|{2}{R}{R}|Legendary Creature — Human Shaman|2|2| +Gwafa Hazid, Profiteer|Conflux|110|R|{1}{W}{U}|Legendary Creature — Human Rogue|2|2| +Malfegor|Conflux|117|M|{2}{B}{B}{R}{R}|Legendary Creature — Demon Dragon|6|6| +Chandra Nalaar|Duel Decks: Jace vs. Chandra|34|M|{3}{R}{R}|Planeswalker — Chandra||| +Jace Beleren|Duel Decks: Jace vs. Chandra|1|M|{1}{U}{U}|Planeswalker — Jace||| +Seal of Fire|Duel Decks: Jace vs. Chandra|50|C|{R}|Enchantment||| +Incinerate|Duel Decks: Jace vs. Chandra|51|C|{1}{R}|Instant||| +Fact or Fiction|Duel Decks: Jace vs. Chandra|26|U|{3}{U}|Instant||| +Counterspell|Duel Decks: Jace vs. Chandra|24|C|{U}{U}|Instant||| +Scattershot Archer|Conflux|90|C|{G}|Creature — Elf Archer|1|2| +Spore Burst|Conflux|93|U|{3}{G}|Sorcery||| +Day of Judgment|Zendikar|9|R|{2}{W}{W}|Sorcery||| +Savage Silhouette|Zendikar|181|C|{2}{G}|Enchantment — Aura||| +Khalni Heart Expedition|Zendikar|167|C|{1}{G}|Enchantment||| +Terra Stomper|Zendikar|187|R|{3}{G}{G}{G}|Creature — Beast|8|8| +Cosi's Trickster|Zendikar|45|R|{U}|Creature — Merfolk Wizard|1|1| +Mark of Mutiny|Zendikar|137|U|{2}{R}|Sorcery||| +Countersquall|Conflux|103|U|{U}{B}|Instant||| +Scornful Ζther-Lich|Conflux|34|U|{3}{U}|Artifact Creature — Zombie Wizard|2|4| +Voracious Dragon|Conflux|75|R|{3}{R}{R}|Creature — Dragon|4|4| +Dragonsoul Knight|Conflux|62|U|{2}{R}|Creature — Human Knight|2|2| +Banefire|Conflux|58|R|{X}{R}|Sorcery||| +Giltspire Avenger|Conflux|108|R|{G}{W}{U}|Creature — Human Soldier|2|2| +Mark of Asylum|Conflux|10|R|{1}{W}|Enchantment||| +Nyxathid|Conflux|49|R|{1}{B}{B}|Creature — Elemental|7|7| +Nemesis of Reason|Alara Reborn|28|R|{3}{U}{B}|Creature — Leviathan Horror|3|7| +Bant Sojourners|Alara Reborn|125|C|{1}{G}{W}{U}|Creature — Human Soldier|2|4| +Filigree Angel|Alara Reborn|6|R|{5}{W}{W}{U}|Artifact Creature — Angel|4|4| +Jund Sojourners|Alara Reborn|116|C|{B}{R}{G}|Creature — Viashino Shaman|3|2| +Esper Sojourners|Alara Reborn|107|C|{W}{U}{B}|Artifact Creature — Vedalken Wizard|2|3| +Esper Stormblade|Alara Reborn|132|C|{WB}{U}|Artifact Creature — Vedalken Wizard|2|1| +Naya Hushblade|Alara Reborn|141|C|{RW}{G}|Creature — Elf Rogue|2|1| +Naya Sojourners|Alara Reborn|122|C|{2}{R}{G}{W}|Creature — Elf Shaman|5|3| +Slave of Bolas|Alara Reborn|136|U|{3}{UR}{B}|Sorcery||| +Grixis Sojourners|Alara Reborn|112|C|{1}{U}{B}{R}|Creature — Zombie Ogre|4|3| +Jund Hackblade|Alara Reborn|138|C|{BG}{R}|Creature — Goblin Berserker|2|1| +Firewild Borderpost|Alara Reborn|54|C|{1}{R}{G}|Artifact||| +Bant Sureblade|Alara Reborn|143|C|{GU}{W}|Creature — Human Soldier|2|1| +Grixis Grimblade|Alara Reborn|134|C|{UR}{B}|Creature — Zombie Warrior|2|1| +Landbind Ritual|Zendikar|24|U|{3}{W}{W}|Sorcery||| +Cancel|Zendikar|44|C|{1}{U}{U}|Instant||| +Eternity Vessel|Zendikar|200|M|{6}|Artifact||| +Unstable Frontier|Conflux|145|U||Land||| +Sphinx Summoner|Conflux|127|R|{3}{U}{B}|Artifact Creature — Sphinx|3|3| +Kederekt Parasite|Conflux|48|R|{B}|Creature — Horror|1|1| +Cylian Sunsinger|Conflux|80|R|{1}{G}|Creature — Elf Shaman|2|2| +Extractor Demon|Conflux|44|R|{4}{B}{B}|Creature — Demon|5|5| +Scepter of Fugue|Conflux|53|R|{B}{B}|Artifact||| +Telemin Performance|Conflux|35|R|{3}{U}{U}|Sorcery||| +Knight of the Reliquary|Conflux|113|R|{1}{G}{W}|Creature — Human Knight|2|2| +Hellkite Hatchling|Conflux|111|U|{2}{R}{G}|Creature — Dragon|2|2| +Font of Mythos|Conflux|136|R|{4}|Artifact||| +Lightkeeper of Emeria|Worldwake|12|U|{3}{W}|Creature — Angel|2|4| +Wolfbriar Elemental|Worldwake|118|R|{2}{G}{G}|Creature — Elemental|4|4| +Refraction Trap|Worldwake|17|U|{3}{W}|Instant — Trap||| +Rest for the Weary|Worldwake|18|C|{1}{W}|Instant||| +Voyager Drake|Worldwake|45|U|{3}{U}|Creature — Drake|3|3| +Ζthersnipe|Duel Decks: Jace vs. Chandra|17|C|{5}{U}|Creature — Elemental|4|4| +Flamekin Brawler|Duel Decks: Jace vs. Chandra|35|C|{R}|Creature — Elemental Warrior|0|2| +Guile|Duel Decks: Jace vs. Chandra|14|R|{3}{U}{U}{U}|Creature — Elemental Incarnation|6|6| +Hostility|Duel Decks: Jace vs. Chandra|48|R|{3}{R}{R}{R}|Creature — Elemental Incarnation|6|6| +Ingot Chewer|Duel Decks: Jace vs. Chandra|45|C|{4}{R}|Creature — Elemental|3|3| +Inner-Flame Acolyte|Duel Decks: Jace vs. Chandra|41|C|{1}{R}{R}|Creature — Elemental Shaman|2|2| +Mulldrifter|Duel Decks: Jace vs. Chandra|12|C|{4}{U}|Creature — Elemental|2|2| +Soulbright Flamekin|Duel Decks: Jace vs. Chandra|37|C|{1}{R}|Creature — Elemental Shaman|2|1| +Fireslinger|Duel Decks: Jace vs. Chandra|36|C|{1}{R}|Creature — Human Wizard|1|1| +Flame Javelin|Duel Decks: Jace vs. Chandra|53|U|{2R}{2R}{2R}|Instant||| +Pyre Charger|Duel Decks: Jace vs. Chandra|38|U|{R}{R}|Creature — Elemental Warrior|1|1| +Slith Firewalker|Duel Decks: Jace vs. Chandra|39|U|{R}{R}|Creature — Slith|1|1| +Air Elemental|Duel Decks: Jace vs. Chandra|13|U|{3}{U}{U}|Creature — Elemental|4|4| +Bottle Gnomes|Duel Decks: Jace vs. Chandra|7|U|{3}|Artifact Creature — Gnome|1|3| +Cone of Flame|Duel Decks: Jace vs. Chandra|54|U|{3}{R}{R}|Sorcery||| +Flamewave Invoker|Duel Decks: Jace vs. Chandra|40|U|{2}{R}|Creature — Goblin Mutant|2|2| +Furnace Whelp|Duel Decks: Jace vs. Chandra|43|U|{2}{R}{R}|Creature — Dragon|2|2| +Mind Stone|Duel Decks: Jace vs. Chandra|22|U|{2}|Artifact||| +Demonfire|Duel Decks: Jace vs. Chandra|57|R|{X}{R}|Sorcery||| +Rakdos Pit Dragon|Duel Decks: Jace vs. Chandra|44|R|{2}{R}{R}|Creature — Dragon|3|3| +Fireball|Duel Decks: Jace vs. Chandra|56|U|{X}{R}|Sorcery||| +Oxidda Golem|Duel Decks: Jace vs. Chandra|46|C|{6}|Artifact Creature — Golem|3|2| +Spire Golem|Duel Decks: Jace vs. Chandra|16|C|{6}|Artifact Creature — Golem|2|4| +Flametongue Kavu|Duel Decks: Jace vs. Chandra|42|U|{3}{R}|Creature — Kavu|4|2| +Chartooth Cougar|Duel Decks: Jace vs. Chandra|47|C|{5}{R}|Creature — Cat Beast|4|4| +Firebolt|Duel Decks: Jace vs. Chandra|49|C|{R}|Sorcery||| +Condescend|Duel Decks: Jace vs. Chandra|28|C|{X}{U}|Instant||| +Magma Jet|Duel Decks: Jace vs. Chandra|52|U|{1}{R}|Instant||| +Fireblast|Duel Decks: Jace vs. Chandra|55|C|{4}{R}{R}|Instant||| +Man-o'-War|Duel Decks: Jace vs. Chandra|8|C|{2}{U}|Creature — Jellyfish|2|2| +Waterspout Djinn|Duel Decks: Jace vs. Chandra|11|U|{2}{U}{U}|Creature — Djinn|4|4| +Keldon Megaliths|Duel Decks: Jace vs. Chandra|58|U||Land||| +Martyr of Frost|Duel Decks: Jace vs. Chandra|2|C|{U}|Creature — Human Wizard|1|1| +Ancestral Vision|Duel Decks: Jace vs. Chandra|21|R||Sorcery||| +Brine Elemental|Duel Decks: Jace vs. Chandra|18|U|{4}{U}{U}|Creature — Elemental|5|4| +Errant Ephemeron|Duel Decks: Jace vs. Chandra|20|C|{6}{U}|Creature — Illusion|4|4| +Fathom Seer|Duel Decks: Jace vs. Chandra|3|C|{1}{U}|Creature — Illusion|1|3| +Fledgling Mawcor|Duel Decks: Jace vs. Chandra|10|U|{3}{U}|Creature — Beast|2|2| +Riftwing Cloudskate|Duel Decks: Jace vs. Chandra|15|U|{3}{U}{U}|Creature — Illusion|2|2| +Voidmage Apprentice|Duel Decks: Jace vs. Chandra|4|C|{1}{U}|Creature — Human Wizard|1|1| +Wall of Deceit|Duel Decks: Jace vs. Chandra|5|U|{1}{U}|Creature — Wall|0|5| +Willbender|Duel Decks: Jace vs. Chandra|6|U|{1}{U}|Creature — Human Wizard|1|2| +Ophidian|Duel Decks: Jace vs. Chandra|9|C|{2}{U}|Creature — Snake|1|3| +Quicksilver Dragon|Duel Decks: Jace vs. Chandra|19|R|{4}{U}{U}|Creature — Dragon|5|5| +Daze|Duel Decks: Jace vs. Chandra|23|C|{1}{U}|Instant||| +Terrain Generator|Duel Decks: Jace vs. Chandra|29|U||Land||| +Repulse|Duel Decks: Jace vs. Chandra|25|C|{2}{U}|Instant||| +Gush|Duel Decks: Jace vs. Chandra|27|C|{4}{U}|Instant||| +Mana Cylix|Conflux|138|C|{1}|Artifact||| +Bone Saw|Conflux|135|C|{0}|Artifact — Equipment||| +Ancient Ziggurat|Conflux|141|U||Land||| +Kaleidostone|Conflux|137|C|{2}|Artifact||| +Exotic Orchard|Conflux|142|R||Land||| +Exploding Borders|Conflux|106|C|{2}{R}{G}|Sorcery||| +Zendikar Farguide|Zendikar|194|C|{4}{G}|Creature — Elemental|3|3| +Grazing Gladehart|Zendikar|163|C|{2}{G}|Creature — Antelope|2|2| +Ruinous Minotaur|Zendikar|145|C|{1}{R}{R}|Creature — Minotaur Warrior|5|2| +Merfolk Seastalkers|Zendikar|55|U|{3}{U}|Creature — Merfolk Scout|2|3| +Sejiri Refuge|Zendikar|224|U||Land||| +Jwar Isle Refuge|Zendikar|215|U||Land||| +Feast of Blood|Zendikar|88|U|{1}{B}|Sorcery||| +Graypelt Refuge|Zendikar|214|U||Land||| +Kazandu Refuge|Zendikar|217|U||Land||| +Living Tsunami|Zendikar|52|U|{2}{U}{U}|Creature — Elemental|4|4| +Kor Outfitter|Zendikar|21|C|{W}{W}|Creature — Kor Soldier|2|2| +Akoum Refuge|Zendikar|210|U||Land||| +Veinfire Borderpost|Alara Reborn|48|C|{1}{B}{R}|Artifact||| +Sphinx of the Steel Wind|Alara Reborn|110|M|{5}{W}{U}{B}|Artifact Creature — Sphinx|6|6| +Knight of New Alara|Alara Reborn|70|R|{2}{G}{W}|Creature — Human Knight|2|2| +Messenger Falcons|Alara Reborn|145|U|{2}{GU}{W}|Creature — Bird|2|2| +Uril, the Miststalker|Alara Reborn|124|M|{2}{R}{G}{W}|Legendary Creature — Beast|5|5| +Defiler of Souls|Alara Reborn|37|M|{3}{B}{B}{R}|Creature — Demon|5|5| +Grizzled Leotau|Alara Reborn|69|C|{G}{W}|Creature — Cat|1|5| +Dragon Broodmother|Alara Reborn|53|M|{2}{R}{R}{R}{G}|Creature — Dragon|4|4| +Time Sieve|Alara Reborn|31|R|{U}{B}|Artifact||| +Rhox Brute|Alara Reborn|59|C|{2}{R}{G}|Creature — Rhino Warrior|4|4| +Unscythe, Killer of Kings|Alara Reborn|114|R|{U}{B}{B}{R}|Legendary Artifact — Equipment||| +Arsenal Thresher|Alara Reborn|131|C|{2}{WB}{U}|Artifact Creature — Construct|2|2| +Cloven Casting|Alara Reborn|86|R|{5}{U}{R}|Enchantment||| +Gloryscale Viashino|Alara Reborn|120|U|{1}{R}{G}{W}|Creature — Viashino Soldier|3|3| +Paleoloth|Conflux|88|R|{4}{G}{G}|Creature — Beast|5|5| +Wall of Reverence|Conflux|20|R|{3}{W}|Creature — Spirit Wall|1|6| +Solemn Offering|Magic 2010|33|C|{2}{W}|Sorcery||| +Fabricate|Magic 2010|52|U|{2}{U}|Sorcery||| +White Knight|Magic 2010|41|U|{W}{W}|Creature — Human Knight|2|2| +Llanowar Elves|Magic 2010|189|C|{G}|Creature — Elf Druid|1|1| +Giant Growth|Magic 2010|184|C|{G}|Instant||| +Acidic Slime|Magic 2010|165|U|{3}{G}{G}|Creature — Ooze|2|2| +Enormous Baloth|Magic 2010|180|U|{6}{G}|Creature — Beast|7|7| +Centaur Courser|Magic 2010|172|C|{2}{G}|Creature — Centaur Warrior|3|3| +Air Elemental|Magic 2010|42|U|{3}{U}{U}|Creature — Elemental|4|4| +Xathrid Demon|Magic 2010|122|M|{3}{B}{B}{B}|Creature — Demon|7|7| +Rampant Growth|Magic 2010|201|C|{1}{G}|Sorcery||| +Runeclaw Bear|Magic 2010|203|C|{1}{G}|Creature — Bear|2|2| +Emerald Oryx|Magic 2010|179|C|{3}{G}|Creature — Antelope|2|3| +Razorfoot Griffin|Magic 2010|25|C|{3}{W}|Creature — Griffin|2|2| +Phantom Warrior|Magic 2010|66|U|{1}{U}{U}|Creature — Illusion Warrior|2|2| +Consume Spirit|Magic 2010|89|U|{X}{1}{B}|Sorcery||| +Alluring Siren|Magic 2010|43|U|{1}{U}|Creature — Siren|1|1| +Giant Spider|Magic 2010|185|C|{3}{G}|Creature — Spider|2|4| +Naturalize|Magic 2010|195|C|{1}{G}|Instant||| +Illusionary Servant|Magic 2010|57|C|{1}{U}{U}|Creature — Illusion|3|4| +Cudgel Troll|Magic 2010|174|U|{2}{G}{G}|Creature — Troll|4|3| +Stampeding Rhino|Magic 2010|204|C|{4}{G}|Creature — Rhino|4|4| +Prized Unicorn|Magic 2010|199|U|{3}{G}|Creature — Unicorn|2|2| +Entangling Vines|Magic 2010|181|C|{3}{G}|Enchantment — Aura||| +Elite Vanguard|Magic 2010|9|U|{W}|Creature — Human Soldier|2|1| +Craw Wurm|Magic 2010|173|C|{4}{G}{G}|Creature — Wurm|6|4| +Megrim|Magic 2010|104|U|{2}{B}|Enchantment||| +Borderland Ranger|Magic 2010|169|C|{2}{G}|Creature — Human Scout|2|2| +Overrun|Magic 2010|198|U|{2}{G}{G}{G}|Sorcery||| +Awakener Druid|Magic 2010|167|U|{2}{G}|Creature — Human Druid|1|1| +Howl of the Night Pack|Magic 2010|187|U|{6}{G}|Sorcery||| +Mold Adder|Magic 2010|194|U|{G}|Creature — Fungus Snake|1|1| +Telepathy|Magic 2010|74|U|{U}|Enchantment||| +Divine Verdict|Magic 2010|8|C|{3}{W}|Instant||| +Bountiful Harvest|Magic 2010|170|C|{4}{G}|Sorcery||| +Capricious Efreet|Magic 2010|131|R|{4}{R}{R}|Creature — Efreet|6|4| +Bramble Creeper|Magic 2010|171|C|{4}{G}|Creature — Elemental|0|3| +Nature's Spiral|Magic 2010|196|U|{1}{G}|Sorcery||| +Cancel|Magic 2010|44|C|{1}{U}{U}|Instant||| +Fog|Magic 2010|182|C|{G}|Instant||| +Ice Cage|Magic 2010|56|C|{1}{U}|Enchantment — Aura||| +Mist Leopard|Magic 2010|193|C|{3}{G}|Creature — Cat|3|2| +Oakenform|Magic 2010|197|C|{2}{G}|Enchantment — Aura||| +Veteran Armorsmith|Magic 2010|38|C|{W}{W}|Creature — Human Soldier|2|3| +Deadly Recluse|Magic 2010|175|C|{1}{G}|Creature — Spider|1|2| +Ponder|Magic 2010|68|C|{U}|Sorcery||| +Wall of Frost|Magic 2010|80|U|{1}{U}{U}|Creature — Wall|0|7| +Convincing Mirage|Magic 2010|46|C|{1}{U}|Enchantment — Aura||| +Snapping Drake|Magic 2010|72|C|{3}{U}|Creature — Drake|3|2| +Negate|Magic 2010|65|C|{1}{U}|Instant||| +Bog Wraith|Magic 2010|86|U|{3}{B}|Creature — Wraith|3|3| +Harm's Way|Magic 2010|14|U|{W}|Instant||| +Zephyr Sprite|Magic 2010|82|C|{U}|Creature — Faerie|1|1| +Flashfreeze|Magic 2010|53|U|{1}{U}|Instant||| +Serpent of the Endless Sea|Magic 2010|70|C|{4}{U}|Creature — Serpent|*|*| +Griffin Sentinel|Magic 2010|12|C|{2}{W}|Creature — Griffin|1|3| +Disorient|Magic 2010|48|C|{3}{U}|Instant||| +Divination|Magic 2010|49|C|{2}{U}|Sorcery||| +Excommunicate|Magic 2010|10|C|{2}{W}|Sorcery||| +Merfolk Looter|Magic 2010|61|C|{1}{U}|Creature — Merfolk Rogue|1|1| +Safe Passage|Magic 2010|28|C|{2}{W}|Instant||| +Traumatize|Magic 2010|77|R|{3}{U}{U}|Sorcery||| +Horned Turtle|Magic 2010|55|C|{2}{U}|Creature — Turtle|1|4| +Lifelink|Magic 2010|18|C|{W}|Enchantment — Aura||| +Wall of Faith|Magic 2010|40|C|{3}{W}|Creature — Wall|0|5| +Unsummon|Magic 2010|79|C|{U}|Instant||| +Sleep|Magic 2010|71|U|{2}{U}{U}|Sorcery||| +Warp World|Magic 2010|163|R|{5}{R}{R}{R}|Sorcery||| +Sage Owl|Magic 2010|69|C|{1}{U}|Creature — Bird|1|1| +Sanguine Bond|Magic 2010|111|R|{3}{B}{B}|Enchantment||| +Levitation|Magic 2010|60|U|{2}{U}{U}|Enchantment||| +Rise from the Grave|Magic 2010|109|U|{4}{B}|Sorcery||| +Cemetery Reaper|Magic 2010|87|R|{1}{B}{B}|Creature — Zombie|2|2| +Veteran Swordsmith|Magic 2010|39|C|{2}{W}|Creature — Human Soldier|3|2| +Blinding Mage|Magic 2010|5|C|{1}{W}|Creature — Human Wizard|1|2| +Glorious Charge|Magic 2010|11|C|{1}{W}|Instant||| +Mind Control|Magic 2010|63|U|{3}{U}{U}|Enchantment — Aura||| +Djinn of Wishes|Magic 2010|50|R|{3}{U}{U}|Creature — Djinn|4|4| +Elemental Shaman|Duel Decks: Jace vs. Chandra|1|C||Creature — Elemental Shaman|3|1| +Scalding Tarn|Zendikar|223|R||Land||| +Crypt of Agadeem|Zendikar|212|R||Land||| +Pillarfield Ox|Zendikar|31|C|{3}{W}|Creature — Ox|2|4| +Explorer's Scope|Zendikar|202|C|{1}|Artifact — Equipment||| +Stonework Puma|Zendikar|207|C|{3}|Artifact Creature — Cat Ally|2|2| +Malakir Bloodwitch|Zendikar|100|R|{3}{B}{B}|Creature — Vampire Shaman|4|4| +Emeria Angel|Zendikar|11|R|{2}{W}{W}|Creature — Angel|3|3| +Valakut, the Molten Pinnacle|Zendikar|228|R||Land||| +Mire Blight|Zendikar|104|C|{B}|Enchantment — Aura||| +Lullmage Mentor|Zendikar|54|R|{1}{U}{U}|Creature — Merfolk Wizard|2|2| +Spreading Seas|Zendikar|70|C|{1}{U}|Enchantment — Aura||| +Demolish|Zendikar|121|C|{3}{R}|Sorcery||| +Iona, Shield of Emeria|Zendikar|13|M|{6}{W}{W}{W}|Legendary Creature — Angel|7|7| +Kazuul Warlord|Zendikar|134|R|{4}{R}|Creature — Minotaur Warrior Ally|3|3| +Trailblazer's Boots|Zendikar|208|U|{2}|Artifact — Equipment||| +Nissa Revane|Zendikar|170|M|{2}{G}{G}|Planeswalker — Nissa||| +Magosi, the Waterveil|Zendikar|218|R||Land||| +Misty Rainforest|Zendikar|220|R||Land||| +Emeria, the Sky Ruin|Zendikar|213|R||Land||| +Oran-Rief, the Vastwood|Zendikar|221|R||Land||| +Windborne Charge|Zendikar|38|U|{2}{W}{W}|Sorcery||| +Armament Master|Zendikar|1|R|{W}{W}|Creature — Kor Soldier|2|2| +Phantasmal Fiend|Masters Edition II|108|C|{3}{B}|Creature — Illusion|1|5| +Diabolic Tutor|Magic 2010|91|U|{2}{B}{B}|Sorcery||| +Palace Guard|Magic 2010|23|C|{2}{W}|Creature — Human Soldier|1|4| +Doom Blade|Magic 2010|93|C|{1}{B}|Instant||| +Kelinore Bat|Magic 2010|101|C|{2}{B}|Creature — Bat|2|1| +Sign in Blood|Magic 2010|112|C|{B}{B}|Sorcery||| +Holy Strength|Magic 2010|15|C|{W}|Enchantment — Aura||| +Weakness|Magic 2010|121|C|{B}|Enchantment — Aura||| +Black Knight|Magic 2010|85|U|{B}{B}|Creature — Human Knight|2|2| +Stormfront Pegasus|Magic 2010|35|C|{1}{W}|Creature — Pegasus|2|1| +Ignite Disorder|Magic 2010|141|U|{1}{R}|Instant||| +Zombie Goliath|Magic 2010|123|C|{4}{B}|Creature — Zombie Giant|4|3| +Unholy Strength|Magic 2010|116|C|{B}|Enchantment — Aura||| +Howling Banshee|Magic 2010|99|U|{2}{B}{B}|Creature — Spirit|3|3| +Angel's Mercy|Magic 2010|2|C|{2}{W}{W}|Instant||| +Looming Shade|Magic 2010|103|C|{2}{B}|Creature — Shade|1|1| +Earthquake|Magic 2010|134|R|{X}{R}|Sorcery||| +Drudge Skeletons|Magic 2010|95|C|{1}{B}|Creature — Skeleton|1|1| +Mind Rot|Magic 2010|105|C|{2}{B}|Sorcery||| +Hive Mind|Magic 2010|54|R|{5}{U}|Enchantment||| +Soul Bleed|Magic 2010|113|C|{2}{B}|Enchantment — Aura||| +Goblin Chieftain|Magic 2010|139|R|{1}{R}{R}|Creature — Goblin|2|2| +Disentomb|Magic 2010|92|C|{B}|Sorcery||| +Terramorphic Expanse|Magic 2010|229|C||Land||| +Glacial Fortress|Magic 2010|226|R||Land||| +Vampire Aristocrat|Magic 2010|117|C|{2}{B}|Creature — Vampire Rogue|2|2| +Tempest of Light|Magic 2010|36|U|{2}{W}|Instant||| +Hypnotic Specter|Magic 2010|100|R|{1}{B}{B}|Creature — Specter|2|2| +Indestructibility|Magic 2010|17|R|{3}{W}|Enchantment — Aura||| +Gravedigger|Magic 2010|97|C|{3}{B}|Creature — Zombie|2|2| +Soul Warden|Magic 2010|34|C|{W}|Creature — Human Cleric|1|1| +Pacifism|Magic 2010|22|C|{1}{W}|Enchantment — Aura||| +Dread Warlock|Magic 2010|94|C|{1}{B}{B}|Creature — Human Wizard|2|2| +Rhox Pikemaster|Magic 2010|26|U|{2}{W}{W}|Creature — Rhino Soldier|3|3| +Haunting Echoes|Magic 2010|98|R|{3}{B}{B}|Sorcery||| +Wall of Bone|Magic 2010|119|U|{2}{B}|Creature — Skeleton Wall|1|4| +Acolyte of Xathrid|Magic 2010|83|C|{B}|Creature — Human Cleric|0|1| +Duress|Magic 2010|96|C|{B}|Sorcery||| +Deathmark|Magic 2010|90|U|{B}|Sorcery||| +Undead Slayer|Magic 2010|37|U|{2}{W}|Creature — Human Cleric|2|2| +Island|Duel Decks: Jace vs. Chandra|31|L||Basic Land — Island||| +Mountain|Duel Decks: Jace vs. Chandra|59|L||Basic Land — Mountain||| +Mountain|Duel Decks: Jace vs. Chandra|62|L||Basic Land — Mountain||| +Mountain|Duel Decks: Jace vs. Chandra|60|L||Basic Land — Mountain||| +Mountain|Duel Decks: Jace vs. Chandra|61|L||Basic Land — Mountain||| +Island|Duel Decks: Jace vs. Chandra|30|L||Basic Land — Island||| +Island|Duel Decks: Jace vs. Chandra|33|L||Basic Land — Island||| +Island|Duel Decks: Jace vs. Chandra|32|L||Basic Land — Island||| +Sparkmage Apprentice|Magic 2010|158|C|{1}{R}|Creature — Human Wizard|1|1| +Lightning Elemental|Magic 2010|147|C|{3}{R}|Creature — Elemental|4|1| +Raging Goblin|Magic 2010|153|C|{R}|Creature — Goblin Berserker|1|1| +Rootbound Crag|Magic 2010|227|R||Land||| +Honor of the Pure|Magic 2010|16|R|{1}{W}|Enchantment||| +Canyon Minotaur|Magic 2010|130|C|{3}{R}|Creature — Minotaur Warrior|3|3| +Dragon Whelp|Magic 2010|133|U|{2}{R}{R}|Creature — Dragon|2|3| +Burst of Speed|Magic 2010|129|C|{R}|Sorcery||| +Ant Queen|Magic 2010|166|R|{3}{G}{G}|Creature — Insect|5|5| +Master of the Wild Hunt|Magic 2010|191|M|{2}{G}{G}|Creature — Human Shaman|3|3| +Baneslayer Angel|Magic 2010|4|M|{3}{W}{W}|Creature — Angel|5|5| +Drowned Catacomb|Magic 2010|224|R||Land||| +Child of Night|Magic 2010|88|C|{1}{B}|Creature — Vampire|2|1| +Captain of the Watch|Magic 2010|6|R|{4}{W}{W}|Creature — Human Soldier|3|3| +Berserkers of Blood Ridge|Magic 2010|126|C|{4}{R}|Creature — Human Berserker|4|4| +Viashino Spearhunter|Magic 2010|161|C|{2}{R}|Creature — Viashino Warrior|2|1| +Jackal Familiar|Magic 2010|143|C|{R}|Creature — Hound|2|2| +Goblin Piker|Magic 2010|140|C|{1}{R}|Creature — Goblin Warrior|2|1| +Fiery Hellhound|Magic 2010|135|C|{1}{R}{R}|Creature — Elemental Hound|2|2| +Fireball|Magic 2010|136|U|{X}{R}|Sorcery||| +Trumpet Blast|Magic 2010|160|C|{2}{R}|Instant||| +Whispersilk Cloak|Magic 2010|221|U|{3}|Artifact — Equipment||| +Firebreathing|Magic 2010|137|C|{R}|Enchantment — Aura||| +Birds of Paradise|Magic 2010|168|R|{G}|Creature — Bird|0|1| +Panic Attack|Magic 2010|150|C|{2}{R}|Sorcery||| +Act of Treason|Magic 2010|124|U|{2}{R}|Sorcery||| +Silence|Magic 2010|31|R|{W}|Instant||| +Lava Axe|Magic 2010|145|C|{4}{R}|Sorcery||| +Shatter|Magic 2010|155|C|{1}{R}|Instant||| +Merfolk Sovereign|Magic 2010|62|R|{1}{U}{U}|Creature — Merfolk|2|2| +Yawning Fissure|Magic 2010|164|C|{4}{R}|Sorcery||| +Lightning Bolt|Magic 2010|146|C|{R}|Instant||| +Inferno Elemental|Magic 2010|142|U|{4}{R}{R}|Creature — Elemental|4|4| +Dragonskull Summit|Magic 2010|223|R||Land||| +Goblin Artillery|Magic 2010|138|U|{1}{R}{R}|Creature — Goblin Warrior|1|3| +Stone Giant|Magic 2010|159|U|{2}{R}{R}|Creature — Giant|3|4| +Seismic Strike|Magic 2010|154|C|{2}{R}|Instant||| +Burning Inquiry|Magic 2010|128|C|{R}|Sorcery||| +Sphinx Ambassador|Magic 2010|73|M|{5}{U}{U}|Creature — Sphinx|5|5| +Sunpetal Grove|Magic 2010|228|R||Land||| +Prodigal Pyromancer|Magic 2010|151|U|{2}{R}|Creature — Human Wizard|1|1| +Ajani Goldmane|Magic 2010|1|M|{2}{W}{W}|Planeswalker — Ajani||| +Jace Beleren|Magic 2010|58|M|{1}{U}{U}|Planeswalker — Jace||| +Liliana Vess|Magic 2010|102|M|{3}{B}{B}|Planeswalker — Liliana||| +Chandra Nalaar|Magic 2010|132|M|{3}{R}{R}|Planeswalker — Chandra||| +Garruk Wildspeaker|Magic 2010|183|M|{2}{G}{G}|Planeswalker — Garruk||| +Dragon's Claw|Magic 2010|210|U|{2}|Artifact||| +Angel's Feather|Magic 2010|206|U|{2}|Artifact||| +Kraken's Eye|Magic 2010|213|U|{2}|Artifact||| +Demon's Horn|Magic 2010|209|U|{2}|Artifact||| +Wurm's Tooth|Magic 2010|222|U|{2}|Artifact||| +Darksteel Colossus|Magic 2010|208|M|{11}|Artifact Creature — Golem|11|11| +Platinum Angel|Magic 2010|218|M|{7}|Artifact Creature — Angel|4|4| +Coat of Arms|Magic 2010|207|R|{5}|Artifact||| +Howling Mine|Magic 2010|212|R|{2}|Artifact||| +Might of Oaks|Magic 2010|192|R|{3}{G}|Instant||| +Elvish Piper|Magic 2010|177|R|{3}{G}|Creature — Elf Shaman|1|1| +Royal Assassin|Magic 2010|110|R|{1}{B}{B}|Creature — Human Assassin|1|1| +Nightmare|Magic 2010|107|R|{5}{B}|Creature — Nightmare Horse|*|*| +Shivan Dragon|Magic 2010|156|R|{4}{R}{R}|Creature — Dragon|5|5| +Clone|Magic 2010|45|R|{3}{U}|Creature — Shapeshifter|0|0| +Twincast|Magic 2010|78|R|{U}{U}|Instant||| +Mind Spring|Magic 2010|64|R|{X}{U}{U}|Sorcery||| +Mind Shatter|Magic 2010|106|R|{X}{B}{B}|Sorcery||| +Relentless Rats|Magic 2010|108|U|{1}{B}{B}|Creature — Rat|2|2| +Ornithopter|Magic 2010|216|U|{0}|Artifact Creature — Thopter|0|2| +Spellbook|Magic 2010|220|U|{0}|Artifact||| +Rod of Ruin|Magic 2010|219|U|{4}|Artifact||| +Bogardan Hellkite|Magic 2010|127|M|{6}{R}{R}|Creature — Dragon|5|5| +Righteousness|Magic 2010|27|U|{W}|Instant||| +Underworld Dreams|Magic 2010|115|R|{B}{B}{B}|Enchantment||| +Welkin Tern|Zendikar|76|C|{1}{U}|Creature — Bird|2|1| +Tanglesap|Zendikar|186|C|{1}{G}|Instant||| +Kazandu Blademaster|Zendikar|16|U|{W}{W}|Creature — Human Soldier Ally|1|1| +Molten Ravager|Zendikar|138|C|{2}{R}|Creature — Elemental|0|4| +Summoner's Bane|Zendikar|71|U|{2}{U}{U}|Instant||| +Heartstabber Mosquito|Zendikar|97|C|{3}{B}|Creature — Insect|2|2| +Warren Instigator|Zendikar|154|M|{R}{R}|Creature — Goblin Berserker|1|1| +Lorthos, the Tidemaker|Zendikar|53|M|{5}{U}{U}{U}|Legendary Creature — Octopus|8|8| +Marsh Flats|Zendikar|219|R||Land||| +Blazing Torch|Zendikar|197|U|{1}|Artifact — Equipment||| +Electropotence|Zendikar|122|R|{2}{R}|Enchantment||| +Devout Lightcaster|Zendikar|10|R|{W}{W}{W}|Creature — Kor Cleric|2|2| +World Queller|Zendikar|39|R|{3}{W}{W}|Creature — Avatar|4|4| +Mesa Enchantress|Magic 2010|20|R|{1}{W}{W}|Creature — Human Druid|0|2| +Time Warp|Magic 2010|75|M|{3}{U}{U}|Sorcery||| +Polymorph|Magic 2010|67|R|{3}{U}|Sorcery||| +Swamp|Magic 2010|240|L||Basic Land — Swamp||| +Plains|Magic 2010|231|L||Basic Land — Plains||| +Vampire Nocturnus|Magic 2010|118|M|{1}{B}{B}{B}|Creature — Vampire|3|3| +Plains|Magic 2010|232|L||Basic Land — Plains||| +Island|Magic 2010|234|L||Basic Land — Island||| +Lurking Predators|Magic 2010|190|R|{4}{G}{G}|Enchantment||| +Island|Magic 2010|235|L||Basic Land — Island||| +Island|Magic 2010|236|L||Basic Land — Island||| +Swamp|Magic 2010|239|L||Basic Land — Swamp||| +Elvish Archdruid|Magic 2010|176|R|{1}{G}{G}|Creature — Elf Druid|2|2| +Ball Lightning|Magic 2010|125|R|{R}{R}{R}|Creature — Elemental|6|1| +Kalonian Behemoth|Magic 2010|188|R|{5}{G}{G}|Creature — Beast|9|9| +Plains|Magic 2010|230|L||Basic Land — Plains||| +Plains|Magic 2010|233|L||Basic Land — Plains||| +Magma Phoenix|Magic 2010|148|R|{3}{R}{R}|Creature — Phoenix|3|3| +Swamp|Magic 2010|241|L||Basic Land — Swamp||| +Swamp|Magic 2010|238|L||Basic Land — Swamp||| +Island|Magic 2010|237|L||Basic Land — Island||| +Mountain|Magic 2010|245|L||Basic Land — Mountain||| +Mountain|Magic 2010|242|L||Basic Land — Mountain||| +Mountain|Magic 2010|243|L||Basic Land — Mountain||| +Mountain|Magic 2010|244|L||Basic Land — Mountain||| +Forest|Magic 2010|246|L||Basic Land — Forest||| +Forest|Magic 2010|247|L||Basic Land — Forest||| +Forest|Magic 2010|248|L||Basic Land — Forest||| +Forest|Magic 2010|249|L||Basic Land — Forest||| +Deathforge Shaman|Worldwake|80|U|{4}{R}|Creature — Ogre Shaman|4|3| +Snapping Creeper|Worldwake|112|C|{2}{G}|Creature — Plant|2|3| +Grotag Thrasher|Worldwake|83|C|{4}{R}|Creature — Lizard|3|3| +Ricochet Trap|Worldwake|87|U|{3}{R}|Instant — Trap||| +Stone Idol Trap|Worldwake|93|R|{5}{R}|Instant — Trap||| +Lodestone Golem|Worldwake|127|R|{4}|Artifact Creature — Golem|5|3| +Calcite Snapper|Worldwake|25|C|{1}{U}{U}|Creature — Turtle|1|4| +Bloodhusk Ritualist|Worldwake|50|U|{2}{B}|Creature — Vampire Shaman|2|2| +Amulet of Vigor|Worldwake|121|R|{1}|Artifact||| +Smother|Worldwake|68|U|{1}{B}|Instant||| +Fledgling Griffin|Worldwake|5|C|{1}{W}|Creature — Griffin|2|2| +Jagwasp Swarm|Worldwake|58|C|{3}{B}|Creature — Insect|3|2| +Magebane Armor|Magic 2010|214|R|{3}|Artifact — Equipment||| +Pithing Needle|Magic 2010|217|R|{1}|Artifact||| +Celestial Purge|Magic 2010|7|U|{1}{W}|Instant||| +Windstorm|Magic 2010|205|U|{X}{G}|Instant||| +Gorgon Flail|Magic 2010|211|U|{2}|Artifact — Equipment||| +Tome Scour|Magic 2010|76|C|{U}|Sorcery||| +Planar Cleansing|Magic 2010|24|R|{3}{W}{W}{W}|Sorcery||| +Unstable Footing|Zendikar|153|U|{R}|Instant||| +Ondu Cleric|Zendikar|30|C|{1}{W}|Creature — Kor Cleric Ally|1|1| +Sky Ruin Drake|Zendikar|66|C|{4}{U}|Creature — Drake|2|5| +Trapfinder's Trick|Zendikar|73|C|{1}{U}|Sorcery||| +Kor Sanctifiers|Zendikar|22|C|{2}{W}|Creature — Kor Cleric|2|3| +Hellfire Mongrel|Zendikar|130|U|{2}{R}|Creature — Elemental Hound|2|2| +Punishing Fire|Zendikar|142|U|{1}{R}|Instant||| +Gideon Jura|Rise of the Eldrazi|21|M|{3}{W}{W}|Planeswalker — Gideon||| +Ob Nixilis, the Fallen|Zendikar|107|M|{3}{B}{B}|Legendary Creature — Demon|3|3| +Grappling Hook|Zendikar|203|R|{4}|Artifact — Equipment||| +Elemental Appeal|Zendikar|123|R|{R}{R}{R}{R}|Sorcery||| +Rampaging Baloths|Zendikar|178|M|{4}{G}{G}|Creature — Beast|6|6| +Trapmaker's Snare|Zendikar|74|U|{1}{U}|Instant||| +Obsidian Fireheart|Zendikar|140|M|{1}{R}{R}{R}|Creature — Elemental|4|4| +Vampire Lacerator|Zendikar|115|C|{B}|Creature — Vampire Warrior|2|2| +Giant Scorpion|Zendikar|90|C|{2}{B}|Creature — Scorpion|1|3| +Joraga Bard|Zendikar|166|C|{3}{G}|Creature — Elf Rogue Ally|1|4| +Tuktuk Grunts|Zendikar|152|C|{4}{R}|Creature — Goblin Warrior Ally|2|2| +Bloodghast|Zendikar|83|R|{B}{B}|Creature — Vampire Spirit|2|1| +Baloth Woodcrasher|Zendikar|157|U|{4}{G}{G}|Creature — Beast|4|4| +Vampire Hexmage|Zendikar|114|U|{B}{B}|Creature — Vampire Shaman|2|1| +Hedron Scrabbler|Zendikar|204|C|{2}|Artifact Creature — Construct|1|1| +Trusty Machete|Zendikar|209|U|{1}|Artifact — Equipment||| +Blade of the Bloodchief|Zendikar|196|R|{1}|Artifact — Equipment||| +Eldrazi Monument|Zendikar|199|M|{5}|Artifact||| +Shepherd of the Lost|Zendikar|34|U|{4}{W}|Creature — Angel|3|3| +Verdant Catacombs|Zendikar|229|R||Land||| +Mind Sludge|Zendikar|102|U|{4}{B}|Sorcery||| +Arrow Volley Trap|Zendikar|2|U|{3}{W}{W}|Instant — Trap||| +Expedition Map|Zendikar|201|C|{1}|Artifact||| +Carnage Altar|Zendikar|198|U|{2}|Artifact||| +Primal Bellow|Zendikar|176|U|{G}|Instant||| +Wildheart Invoker|Rise of the Eldrazi|213|C|{2}{G}{G}|Creature — Elf Shaman|4|3| +Skeletal Wurm|Rise of the Eldrazi|127|U|{7}{B}|Creature — Skeleton Wurm|7|6| +Umbra Mystic|Rise of the Eldrazi|52|R|{2}{W}|Creature — Human Wizard|2|2| +Nest Invader|Rise of the Eldrazi|201|C|{1}{G}|Creature — Eldrazi Drone|2|2| +Hedron-Field Purists|Rise of the Eldrazi|25|R|{2}{W}|Creature — Human Cleric|0|3| +Lone Missionary|Rise of the Eldrazi|34|C|{1}{W}|Creature — Kor Monk|2|1| +Inquisition of Kozilek|Rise of the Eldrazi|115|U|{B}|Sorcery||| +Artisan of Kozilek|Rise of the Eldrazi|2|U|{9}|Creature — Eldrazi|10|9| +Pestilence Demon|Rise of the Eldrazi|124|R|{5}{B}{B}{B}|Creature — Demon|7|6| +Goblin Tunneler|Rise of the Eldrazi|148|C|{1}{R}|Creature — Goblin Rogue|1|1| +Kabira Vindicator|Rise of the Eldrazi|28|U|{3}{W}|Creature — Human Knight|2|4| +Spawning Breath|Rise of the Eldrazi|164|C|{1}{R}|Instant||| +Angelheart Vial|Rise of the Eldrazi|215|R|{5}|Artifact||| +Ancient Stirrings|Rise of the Eldrazi|174|C|{G}|Sorcery||| +Naturalize|Rise of the Eldrazi|199|C|{1}{G}|Instant||| +Champion's Drake|Rise of the Eldrazi|56|C|{1}{U}|Creature — Drake|1|1| +Keening Stone|Rise of the Eldrazi|219|R|{6}|Artifact||| +Brimstone Mage|Rise of the Eldrazi|137|U|{2}{R}|Creature — Human Shaman|2|2| +Venerated Teacher|Rise of the Eldrazi|93|C|{2}{U}|Creature — Human Wizard|2|2| +Demonic Appetite|Rise of the Eldrazi|106|C|{B}|Enchantment — Aura||| +Guard Duty|Rise of the Eldrazi|23|C|{W}|Enchantment — Aura||| +Curse of Wizardry|Rise of the Eldrazi|104|U|{2}{B}{B}|Enchantment||| +Time of Heroes|Rise of the Eldrazi|49|U|{1}{W}|Enchantment||| +Tajuru Preserver|Rise of the Eldrazi|211|R|{1}{G}|Creature — Elf Shaman|2|1| +Emrakul, the Aeons Torn|Rise of the Eldrazi|4|M|{15}|Legendary Creature — Eldrazi|15|15| +Magmaw|Rise of the Eldrazi|158|R|{3}{R}{R}|Creature — Elemental|4|4| +Rage Nimbus|Rise of the Eldrazi|160|R|{2}{R}|Creature — Elemental|5|3| +Thought Gorger|Rise of the Eldrazi|129|R|{2}{B}{B}|Creature — Horror|2|2| +Unified Will|Rise of the Eldrazi|92|U|{1}{U}|Instant||| +Gravitational Shift|Rise of the Eldrazi|69|R|{3}{U}{U}|Enchantment||| +Joraga Treespeaker|Rise of the Eldrazi|190|U|{G}|Creature — Elf Druid|1|1| +Lightmine Field|Rise of the Eldrazi|32|R|{2}{W}{W}|Enchantment||| +Jaddi Lifestrider|Rise of the Eldrazi|189|U|{4}{G}|Creature — Elemental|2|8| +Bramblesnap|Rise of the Eldrazi|180|U|{1}{G}|Creature — Elemental|1|1| +Near-Death Experience|Rise of the Eldrazi|38|R|{2}{W}{W}{W}|Enchantment||| +Conquering Manticore|Rise of the Eldrazi|139|R|{4}{R}{R}|Creature — Manticore|5|5| +Lay Bare|Rise of the Eldrazi|74|C|{2}{U}{U}|Instant||| +Jwari Scuttler|Rise of the Eldrazi|73|C|{2}{U}|Creature — Crab|2|3| +Nirkana Revenant|Rise of the Eldrazi|120|M|{4}{B}{B}|Creature — Vampire Shade|4|4| +Splinter Twin|Rise of the Eldrazi|165|R|{2}{R}{R}|Enchantment — Aura||| +Consume the Meek|Rise of the Eldrazi|100|R|{3}{B}{B}|Instant||| +Frostwind Invoker|Rise of the Eldrazi|68|C|{4}{U}|Creature — Merfolk Wizard|3|3| +Aura Gnarlid|Rise of the Eldrazi|175|C|{2}{G}|Creature — Beast|2|2| +Explosive Revelation|Rise of the Eldrazi|143|U|{3}{R}{R}|Sorcery||| +Vent Sentinel|Rise of the Eldrazi|171|C|{3}{R}|Creature — Elemental|2|4| +Kargan Dragonlord|Rise of the Eldrazi|152|M|{R}{R}|Creature — Human Warrior|2|2| +Evolving Wilds|Rise of the Eldrazi|228|C||Land||| +World at War|Rise of the Eldrazi|172|R|{3}{R}{R}|Sorcery||| +Emrakul's Hatcher|Rise of the Eldrazi|142|C|{4}{R}|Creature — Eldrazi Drone|3|3| +Nighthaze|Rise of the Eldrazi|118|C|{B}|Sorcery||| +Living Destiny|Rise of the Eldrazi|195|C|{3}{G}|Instant||| +Training Grounds|Rise of the Eldrazi|91|R|{U}|Enchantment||| +Mnemonic Wall|Rise of the Eldrazi|78|C|{4}{U}|Creature — Wall|0|4| +Eldrazi Conscription|Rise of the Eldrazi|3|R|{8}|Tribal Enchantment — Eldrazi Aura||| +Eel Umbra|Rise of the Eldrazi|65|C|{1}{U}|Enchantment — Aura||| +Grotag Siege-Runner|Rise of the Eldrazi|149|C|{1}{R}|Creature — Goblin Rogue|2|1| +Momentous Fall|Rise of the Eldrazi|197|R|{2}{G}{G}|Instant||| +Soul's Attendant|Rise of the Eldrazi|44|C|{W}|Creature — Human Cleric|1|1| +Crab Umbra|Rise of the Eldrazi|58|U|{U}|Enchantment — Aura||| +Dreamstone Hedron|Rise of the Eldrazi|216|U|{6}|Artifact||| +Gelatinous Genesis|Rise of the Eldrazi|183|R|{X}{X}{G}|Sorcery||| +Merfolk Skyscout|Rise of the Eldrazi|77|U|{2}{U}{U}|Creature — Merfolk Scout|2|3| +Akoum Boulderfoot|Rise of the Eldrazi|134|U|{4}{R}{R}|Creature — Giant Warrior|4|5| +Awakening Zone|Rise of the Eldrazi|176|R|{2}{G}|Enchantment||| +Boar Umbra|Rise of the Eldrazi|179|U|{2}{G}|Enchantment — Aura||| +Arrogant Bloodlord|Rise of the Eldrazi|94|U|{1}{B}{B}|Creature — Vampire Knight|4|4| +Forked Bolt|Rise of the Eldrazi|146|U|{R}|Sorcery||| +Gloomhunter|Rise of the Eldrazi|111|C|{2}{B}|Creature — Bat|2|1| +Makindi Griffin|Rise of the Eldrazi|36|C|{3}{W}|Creature — Griffin|2|4| +Cadaver Imp|Rise of the Eldrazi|99|C|{1}{B}{B}|Creature — Imp|1|1| +Ogre's Cleaver|Rise of the Eldrazi|220|U|{2}|Artifact — Equipment||| +Lust for War|Rise of the Eldrazi|157|U|{2}{R}|Enchantment — Aura||| +Deprive|Rise of the Eldrazi|59|C|{U}{U}|Instant||| +Induce Despair|Rise of the Eldrazi|114|C|{2}{B}|Instant||| +Battle-Rattle Shaman|Rise of the Eldrazi|136|C|{3}{R}|Creature — Goblin Shaman|2|2| +Stalwart Shield-Bearers|Rise of the Eldrazi|46|C|{1}{W}|Creature — Human Soldier|0|3| +Growth Spasm|Rise of the Eldrazi|186|C|{2}{G}|Sorcery||| +Irresistible Prey|Rise of the Eldrazi|188|U|{G}|Sorcery||| +Pennon Blade|Rise of the Eldrazi|221|U|{3}|Artifact — Equipment||| +Survival Cache|Rise of the Eldrazi|48|U|{2}{W}|Sorcery||| +Shrivel|Rise of the Eldrazi|126|C|{1}{B}|Sorcery||| +Spawnsire of Ulamog|Rise of the Eldrazi|11|R|{10}|Creature — Eldrazi|7|11| +Hedron Matrix|Rise of the Eldrazi|218|R|{4}|Artifact — Equipment||| +Sporecap Spider|Rise of the Eldrazi|209|C|{2}{G}|Creature — Spider|1|5| +Bloodrite Invoker|Rise of the Eldrazi|97|C|{2}{B}|Creature — Vampire Shaman|3|1| +Mammoth Umbra|Rise of the Eldrazi|37|U|{4}{W}|Enchantment — Aura||| +Dread Drone|Rise of the Eldrazi|108|C|{4}{B}|Creature — Eldrazi Drone|4|1| +Zof Shade|Rise of the Eldrazi|132|C|{3}{B}|Creature — Shade|2|2| +Kor Spiritdancer|Rise of the Eldrazi|31|R|{1}{W}|Creature — Kor Wizard|0|2| +Wall of Omens|Rise of the Eldrazi|53|U|{1}{W}|Creature — Wall|0|4| +Last Kiss|Rise of the Eldrazi|116|C|{2}{B}|Instant||| +Might of the Masses|Rise of the Eldrazi|196|C|{G}|Instant||| +Luminous Wake|Rise of the Eldrazi|35|U|{2}{W}|Enchantment — Aura||| +Kor Line-Slinger|Rise of the Eldrazi|30|C|{1}{W}|Creature — Kor Scout|0|1| +Khalni Hydra|Rise of the Eldrazi|192|M|{G}{G}{G}{G}{G}{G}{G}{G}|Creature — Hydra|8|8| +Valakut Fireboar|Rise of the Eldrazi|170|U|{4}{R}|Creature — Elemental Boar|1|7| +Battle Rampart|Rise of the Eldrazi|135|C|{2}{R}|Creature — Wall|1|3| +Vengevine|Rise of the Eldrazi|212|M|{2}{G}{G}|Creature — Elemental|4|3| +Glory Seeker|Rise of the Eldrazi|22|C|{1}{W}|Creature — Human Soldier|2|2| +Dawnglare Invoker|Rise of the Eldrazi|16|C|{2}{W}|Creature — Kor Wizard|2|1| +Wrap in Flames|Rise of the Eldrazi|173|C|{3}{R}|Sorcery||| +Prey's Vengeance|Rise of the Eldrazi|205|U|{G}|Instant||| +Puncturing Light|Rise of the Eldrazi|41|C|{1}{W}|Instant||| +Stomper Cub|Rise of the Eldrazi|210|C|{3}{G}{G}|Creature — Beast|5|3| +Haze Frog|Rise of the Eldrazi|187|C|{3}{G}{G}|Creature — Frog|2|1| +Staggershock|Rise of the Eldrazi|166|C|{2}{R}|Instant||| +Raid Bombardment|Rise of the Eldrazi|161|C|{2}{R}|Enchantment||| +Soulsurge Elemental|Rise of the Eldrazi|163|U|{3}{R}|Creature — Elemental|*|1| +See Beyond|Rise of the Eldrazi|86|C|{1}{U}|Sorcery||| +Disaster Radius|Rise of the Eldrazi|141|R|{5}{R}{R}|Sorcery||| +Renegade Doppelganger|Rise of the Eldrazi|84|R|{1}{U}|Creature — Shapeshifter|0|1| +Ogre Sentry|Rise of the Eldrazi|159|C|{1}{R}|Creature — Ogre Warrior|3|3| +Dormant Gomazoa|Rise of the Eldrazi|62|R|{1}{U}{U}|Creature — Jellyfish|5|5| +Snake Umbra|Rise of the Eldrazi|207|C|{2}{G}|Enchantment — Aura||| +Lighthouse Chronologist|Rise of the Eldrazi|75|M|{1}{U}|Creature — Human Wizard|1|3| +Skywatcher Adept|Rise of the Eldrazi|88|C|{U}|Creature — Merfolk Wizard|1|1| +Drana, Kalastria Bloodchief|Rise of the Eldrazi|107|R|{3}{B}{B}|Legendary Creature — Vampire Shaman|4|4| +Narcolepsy|Rise of the Eldrazi|79|C|{1}{U}|Enchantment — Aura||| +Smite|Rise of the Eldrazi|43|C|{W}|Instant||| +Sphinx-Bone Wand|Rise of the Eldrazi|225|R|{7}|Artifact||| +Student of Warfare|Rise of the Eldrazi|47|R|{W}|Creature — Human Knight|1|1| +Aura Finesse|Rise of the Eldrazi|54|C|{U}|Instant||| +Domestication|Rise of the Eldrazi|61|U|{2}{U}{U}|Enchantment — Aura||| +Guard Gomazoa|Rise of the Eldrazi|70|U|{2}{U}|Creature — Jellyfish|1|3| +Regress|Rise of the Eldrazi|83|C|{2}{U}|Instant||| +Realms Uncharted|Rise of the Eldrazi|206|R|{2}{G}|Instant||| +Pathrazer of Ulamog|Rise of the Eldrazi|9|U|{11}|Creature — Eldrazi|9|9| +Contaminated Ground|Rise of the Eldrazi|102|C|{1}{B}|Enchantment — Aura||| +Overgrown Battlement|Rise of the Eldrazi|203|C|{1}{G}|Creature — Wall|0|4| +Kazandu Tuskcaller|Rise of the Eldrazi|191|R|{1}{G}|Creature — Human Shaman|1|1| +Guul Draz Assassin|Rise of the Eldrazi|112|R|{B}|Creature — Vampire Assassin|1|1| +Skittering Invasion|Rise of the Eldrazi|10|U|{7}|Tribal Sorcery — Eldrazi||| +Soulbound Guardians|Rise of the Eldrazi|45|U|{4}{W}|Creature — Kor Spirit|4|5| +Hand of Emrakul|Rise of the Eldrazi|5|C|{9}|Creature — Eldrazi|7|7| +Suffer the Past|Rise of the Eldrazi|128|U|{X}{B}|Instant||| +Pelakka Wurm|Rise of the Eldrazi|204|U|{4}{G}{G}{G}|Creature — Wurm|7|7| +Lavafume Invoker|Rise of the Eldrazi|155|C|{2}{R}|Creature — Goblin Shaman|2|2| +Corpsehatch|Rise of the Eldrazi|103|U|{3}{B}{B}|Sorcery||| +Enatu Golem|Rise of the Eldrazi|217|U|{6}|Artifact Creature — Golem|3|5| +Nema Siltlurker|Rise of the Eldrazi|200|C|{4}{G}|Creature — Lizard|3|5| +Deathless Angel|Rise of the Eldrazi|17|R|{4}{W}{W}|Creature — Angel|5|7| +Kozilek, Butcher of Truth|Rise of the Eldrazi|6|M|{10}|Legendary Creature — Eldrazi|12|12| +Brood Birthing|Rise of the Eldrazi|138|C|{1}{R}|Sorcery||| +Broodwarden|Rise of the Eldrazi|181|U|{3}{G}{G}|Creature — Eldrazi Drone|4|4| +Drake Umbra|Rise of the Eldrazi|63|U|{4}{U}|Enchantment — Aura||| +Beastbreaker of Bala Ged|Rise of the Eldrazi|178|U|{1}{G}|Creature — Human Warrior|2|2| +Escaped Null|Rise of the Eldrazi|109|U|{3}{B}|Creature — Zombie Berserker|1|2| +Null Champion|Rise of the Eldrazi|121|C|{1}{B}|Creature — Zombie Warrior|1|1| +Flame Slash|Rise of the Eldrazi|145|C|{R}|Sorcery||| +Heat Ray|Rise of the Eldrazi|150|C|{X}{R}|Instant||| +Coralhelm Commander|Rise of the Eldrazi|57|R|{U}{U}|Creature — Merfolk Soldier|2|2| +Reality Spasm|Rise of the Eldrazi|81|U|{X}{U}{U}|Instant||| +Reinforced Bulwark|Rise of the Eldrazi|223|C|{3}|Artifact Creature — Wall|0|4| +Hellcarver Demon|Rise of the Eldrazi|113|M|{3}{B}{B}{B}|Creature — Demon|6|6| +Repay in Kind|Rise of the Eldrazi|125|R|{5}{B}{B}|Sorcery||| +All Is Dust|Rise of the Eldrazi|1|M|{7}|Tribal Sorcery — Eldrazi||| +Sarkhan the Mad|Rise of the Eldrazi|214|M|{3}{B}{R}|Planeswalker — Sarkhan||| +Linvala, Keeper of Silence|Rise of the Eldrazi|33|M|{2}{W}{W}|Legendary Creature — Angel|3|4| +Armored Ascension|Magic 2010|3|U|{3}{W}|Enchantment — Aura||| +Regenerate|Magic 2010|202|C|{1}{G}|Instant||| +Warpath Ghoul|Magic 2010|120|C|{2}{B}|Creature — Zombie|3|2| +Kindled Fury|Magic 2010|144|C|{R}|Instant||| +Essence Scatter|Magic 2010|51|C|{1}{U}|Instant||| +Jump|Magic 2010|59|C|{U}|Instant||| +Tendrils of Corruption|Magic 2010|114|C|{3}{B}|Instant||| +Assassinate|Magic 2010|84|C|{2}{B}|Sorcery||| +Manabarbs|Magic 2010|149|R|{3}{R}|Enchantment||| +Coral Merfolk|Magic 2010|47|C|{1}{U}|Creature — Merfolk|2|1| +Silvercoat Lion|Magic 2010|32|C|{1}{W}|Creature — Cat|2|2| +Siege-Gang Commander|Magic 2010|157|R|{3}{R}{R}|Creature — Goblin|2|2| +Protean Hydra|Magic 2010|200|M|{X}{G}|Creature — Hydra|0|0| +Gargoyle Castle|Magic 2010|225|R||Land||| +Great Sable Stag|Magic 2010|186|R|{1}{G}{G}|Creature — Elk|3|3| +Lightwielder Paladin|Magic 2010|19|R|{3}{W}{W}|Creature — Human Knight|4|4| +Guardian Seraph|Magic 2010|13|R|{2}{W}{W}|Creature — Angel|3|4| +Serra Angel|Magic 2010|29|U|{3}{W}{W}|Creature — Angel|4|4| +Demonic Tutor|Duel Decks: Divine vs. Demonic|49|U|{1}{B}|Sorcery||| +Lord of the Pit|Duel Decks: Divine vs. Demonic|30|M|{4}{B}{B}{B}|Creature — Demon|7|7| +Faith's Fetters|Duel Decks: Divine vs. Demonic|20|C|{3}{W}|Enchantment — Aura||| +Stinkweed Imp|Duel Decks: Divine vs. Demonic|36|C|{2}{B}|Creature — Imp|1|2| +Akroma, Angel of Wrath|Duel Decks: Divine vs. Demonic|1|M|{5}{W}{W}{W}|Legendary Creature — Angel|6|6| +Luminous Angel|Duel Decks: Divine vs. Demonic|12|R|{4}{W}{W}{W}|Creature — Angel|4|4| +Open the Vaults|Magic 2010|21|R|{4}{W}{W}|Sorcery||| +Mirror of Fate|Magic 2010|215|R|{5}|Artifact||| +Siege Mastodon|Magic 2010|30|C|{4}{W}|Creature — Elephant|3|5| +Wind Drake|Magic 2010|81|C|{2}{U}|Creature — Drake|2|2| +Canopy Cover|Worldwake|98|U|{1}{G}|Enchantment — Aura||| +Claws of Valakut|Worldwake|75|C|{1}{R}{R}|Enchantment — Aura||| +Searing Blaze|Worldwake|90|C|{R}{R}|Instant||| +Graypelt Hunter|Worldwake|103|C|{3}{G}|Creature — Human Warrior Ally|2|2| +Groundswell|Worldwake|104|C|{G}|Instant||| +Mire's Toll|Worldwake|60|C|{B}|Sorcery||| +Vapor Snare|Worldwake|44|U|{4}{U}|Enchantment — Aura||| +Quest for Renewal|Worldwake|110|U|{1}{G}|Enchantment||| +Tideforce Elemental|Worldwake|41|U|{2}{U}|Creature — Elemental|2|1| +Slingbow Trap|Worldwake|111|U|{3}{G}|Instant — Trap||| +Kitesail Apprentice|Worldwake|10|C|{W}|Creature — Kor Soldier|1|1| +Glimmerpoint Stag|Scars of Mirrodin|9|U|{2}{W}{W}|Creature — Elk|3|3| +Glint Hawk Idol|Scars of Mirrodin|156|C|{2}|Artifact||| +Necropede|Scars of Mirrodin|185|U|{2}|Artifact Creature — Insect|1|1| +Perilous Myr|Scars of Mirrodin|192|C|{2}|Artifact Creature — Myr|1|1| +Plated Seastrider|Scars of Mirrodin|38|C|{U}{U}|Creature — Beast|1|4| +Copper Myr|Scars of Mirrodin|146|C|{2}|Artifact Creature — Myr|1|1| +Rusted Relic|Scars of Mirrodin|199|U|{4}|Artifact||| +Surge Node|New Phyrexia|160|U|{1}|Artifact||| +Vector Asp|Scars of Mirrodin|219|C|{1}|Artifact Creature — Snake|1|1| +Memnite|Scars of Mirrodin|174|U|{0}|Artifact Creature — Construct|1|1| +Kemba's Skyguard|Scars of Mirrodin|13|C|{1}{W}{W}|Creature — Cat Knight|2|2| +Ezuri's Archers|Scars of Mirrodin|120|C|{G}|Creature — Elf Archer|1|2| +Wing Puncture|Scars of Mirrodin|133|C|{G}|Instant||| +Sky-Eel School|Scars of Mirrodin|44|C|{3}{U}{U}|Creature — Fish|3|3| +Grasp of Darkness|Scars of Mirrodin|65|C|{B}{B}|Instant||| +Melt Terrain|Scars of Mirrodin|97|C|{2}{R}{R}|Sorcery||| +Neurok Invisimancer|Scars of Mirrodin|37|C|{1}{U}{U}|Creature — Human Wizard|2|1| +Halt Order|Scars of Mirrodin|34|U|{2}{U}|Instant||| +Assault Strobe|Scars of Mirrodin|82|C|{R}|Sorcery||| +Revoke Existence|Scars of Mirrodin|18|C|{1}{W}|Sorcery||| +Ghalma's Warden|Scars of Mirrodin|8|C|{3}{W}|Creature — Elephant Soldier|2|4| +Culling Dais|Scars of Mirrodin|148|U|{2}|Artifact||| +Liege of the Tangle|Scars of Mirrodin|123|M|{6}{G}{G}|Creature — Elemental|8|8| +Grindclock|Scars of Mirrodin|163|R|{2}|Artifact||| +Shatter|Scars of Mirrodin|103|C|{1}{R}|Instant||| +Contagious Nim|Scars of Mirrodin|58|C|{2}{B}|Creature — Zombie|2|2| +Blight Mamba|Scars of Mirrodin|112|C|{1}{G}|Creature — Snake|1|1| +Untamed Might|Scars of Mirrodin|131|C|{X}{G}|Instant||| +Blade-Tribe Berserkers|Scars of Mirrodin|84|C|{3}{R}|Creature — Human Berserker|3|3| +Iron Myr|Scars of Mirrodin|168|C|{2}|Artifact Creature — Myr|1|1| +Glissa's Scorn|New Phyrexia|110|C|{1}{G}|Instant||| +Ichor Rats|Scars of Mirrodin|67|U|{1}{B}{B}|Creature — Rat|2|1| +Lumengrid Drake|Scars of Mirrodin|36|C|{3}{U}|Creature — Drake|2|2| +Shape Anew|Scars of Mirrodin|43|R|{3}{U}|Sorcery||| +Embersmith|Scars of Mirrodin|87|U|{1}{R}|Creature — Human Artificer|2|1| +Leaden Myr|Scars of Mirrodin|170|C|{2}|Artifact Creature — Myr|1|1| +Seize the Initiative|Scars of Mirrodin|20|C|{W}|Instant||| +Apostle's Blessing|New Phyrexia|2|C|{1}{WP}|Instant||| +Painsmith|Scars of Mirrodin|74|U|{1}{B}|Creature — Human Artificer|2|1| +Oxidda Daredevil|Scars of Mirrodin|100|C|{1}{R}|Creature — Goblin Artificer|2|1| +Parasitic Implant|New Phyrexia|67|C|{3}{B}|Enchantment — Aura||| +Darkslick Drake|Scars of Mirrodin|30|U|{2}{U}{U}|Creature — Drake|2|4| +Necrogen Censer|Scars of Mirrodin|184|C|{3}|Artifact||| +Trigon of Infestation|Scars of Mirrodin|214|U|{4}|Artifact||| +Kuldotha Rebirth|Scars of Mirrodin|96|C|{R}|Sorcery||| +Ezuri, Renegade Leader|Scars of Mirrodin|119|R|{1}{G}{G}|Legendary Creature — Elf Warrior|2|2| +Bloodshot Trainee|Scars of Mirrodin|85|U|{3}{R}|Creature — Goblin Warrior|2|3| +Ichorclaw Myr|Scars of Mirrodin|166|C|{2}|Artifact Creature — Myr|1|1| +Vault Skyward|Scars of Mirrodin|51|C|{U}|Instant||| +Viridian Revel|Scars of Mirrodin|132|U|{1}{G}{G}|Enchantment||| +Copperhorn Scout|Scars of Mirrodin|116|C|{G}|Creature — Elf Scout|1|1| +Dross Hopper|Scars of Mirrodin|60|C|{1}{B}|Creature — Insect Horror|2|1| +Melira, Sylvok Outcast|New Phyrexia|115|R|{1}{G}|Legendary Creature — Human Scout|2|2| +Myr Superion|New Phyrexia|146|R|{2}|Artifact Creature — Myr|5|6| +Oxidda Scrapmelter|Scars of Mirrodin|101|U|{3}{R}|Creature — Beast|3|3| +Blackcleave Goblin|Scars of Mirrodin|54|C|{3}{B}|Creature — Goblin Zombie|2|1| +Turn Aside|Scars of Mirrodin|49|C|{U}|Instant||| +Moriok Reaver|Scars of Mirrodin|70|C|{2}{B}|Creature — Human Warrior|3|2| +Golem Foundry|Scars of Mirrodin|160|C|{3}|Artifact||| +Barrage Ogre|Scars of Mirrodin|83|U|{3}{R}{R}|Creature — Ogre Warrior|3|3| +Ferrovore|Scars of Mirrodin|88|C|{2}{R}|Creature — Beast|2|2| +Shrine of Piercing Vision|New Phyrexia|156|U|{2}|Artifact||| +Vulshok Heartstoker|Scars of Mirrodin|107|C|{2}{R}|Creature — Human Shaman|2|2| +Razor Hippogriff|Scars of Mirrodin|17|U|{3}{W}{W}|Creature — Hippogriff|3|3| +Kuldotha Phoenix|Scars of Mirrodin|95|R|{2}{R}{R}{R}|Creature — Phoenix|4|4| +Thrummingbird|Scars of Mirrodin|47|U|{1}{U}|Creature — Bird Horror|1|1| +Corpse Cur|Scars of Mirrodin|147|C|{4}|Artifact Creature — Hound|2|2| +Carrion Call|Scars of Mirrodin|115|U|{3}{G}|Instant||| +Contagion Clasp|Scars of Mirrodin|144|U|{2}|Artifact||| +Instill Infection|Scars of Mirrodin|68|C|{3}{B}|Instant||| +Steady Progress|Scars of Mirrodin|45|C|{2}{U}|Instant||| +Inexorable Tide|Scars of Mirrodin|35|R|{3}{U}{U}|Enchantment||| +Abuna Acolyte|Scars of Mirrodin|1|U|{1}{W}|Creature — Cat Cleric|1|1| +Goblin Gaveleer|Scars of Mirrodin|92|C|{R}|Creature — Goblin Warrior|1|1| +Furnace Celebration|Scars of Mirrodin|90|U|{1}{R}{R}|Enchantment||| +Silver Myr|Scars of Mirrodin|202|C|{2}|Artifact Creature — Myr|1|1| +Whipflare|New Phyrexia|102|U|{1}{R}|Sorcery||| +Gold Myr|Scars of Mirrodin|157|C|{2}|Artifact Creature — Myr|1|1| +Tempered Steel|Scars of Mirrodin|24|R|{1}{W}{W}|Enchantment||| +Trigon of Rage|Scars of Mirrodin|216|U|{2}|Artifact||| +Wall of Fire|Magic 2010|162|U|{1}{R}{R}|Creature — Wall|0|5| +Elvish Visionary|Magic 2010|178|C|{1}{G}|Creature — Elf Shaman|1|1| +Pyroclasm|Magic 2010|152|U|{1}{R}|Sorcery||| +Roiling Terrain|Worldwake|88|C|{2}{R}{R}|Sorcery||| +Talus Paladin|Worldwake|21|R|{3}{W}|Creature — Human Knight Ally|2|3| +Harabaz Druid|Worldwake|105|R|{1}{G}|Creature — Human Druid Ally|0|1| +Ruthless Cullblade|Worldwake|65|C|{1}{B}|Creature — Vampire Warrior|2|1| +Dead Reckoning|Worldwake|56|C|{1}{B}{B}|Sorcery||| +Goblin Roughrider|Worldwake|82|C|{2}{R}|Creature — Goblin Knight|3|2| +Hedron Rover|Worldwake|125|C|{4}|Artifact Creature — Construct|2|2| +Mysteries of the Deep|Worldwake|33|C|{4}{U}|Instant||| +Selective Memory|Worldwake|37|R|{3}{U}|Sorcery||| +Permafrost Trap|Worldwake|34|U|{2}{U}{U}|Instant — Trap||| +Join the Ranks|Worldwake|9|C|{3}{W}|Instant||| +Kor Firewalker|Worldwake|11|U|{W}{W}|Creature — Kor Soldier|2|2| +Spell Contortion|Worldwake|38|U|{2}{U}|Instant||| +Marsh Threader|Worldwake|14|C|{1}{W}|Creature — Kor Scout|2|1| +Goblin Arsonist|Rise of the Eldrazi|147|C|{R}|Creature — Goblin Shaman|1|1| +Enclave Cryptologist|Rise of the Eldrazi|66|U|{U}|Creature — Merfolk Wizard|0|1| +Pawn of Ulamog|Rise of the Eldrazi|122|U|{1}{B}{B}|Creature — Vampire Shaman|2|2| +Ulamog's Crusher|Rise of the Eldrazi|13|C|{8}|Creature — Eldrazi|8|8| +Ulamog, the Infinite Gyre|Rise of the Eldrazi|12|M|{11}|Legendary Creature — Eldrazi|10|10| +Kiln Fiend|Rise of the Eldrazi|153|C|{1}{R}|Creature — Elemental Beast|1|2| +Perish the Thought|Rise of the Eldrazi|123|C|{2}{B}|Sorcery||| +Warmonger's Chariot|Rise of the Eldrazi|226|U|{2}|Artifact — Equipment||| +Transcendent Master|Rise of the Eldrazi|51|M|{1}{W}{W}|Creature — Human Cleric Avatar|3|3| +Caravan Escort|Rise of the Eldrazi|15|C|{W}|Creature — Human Knight|1|1| +Gravity Well|Rise of the Eldrazi|185|U|{1}{G}{G}|Enchantment||| +Vendetta|Rise of the Eldrazi|130|C|{B}|Instant||| +Oust|Rise of the Eldrazi|40|U|{W}|Sorcery||| +Spider Umbra|Rise of the Eldrazi|208|C|{G}|Enchantment — Aura||| +Daggerback Basilisk|Rise of the Eldrazi|182|C|{2}{G}|Creature — Basilisk|2|2| +Devastating Summons|Rise of the Eldrazi|140|R|{R}|Sorcery||| +Hada Spy Patrol|Rise of the Eldrazi|71|U|{1}{U}|Creature — Human Rogue|1|1| +Ondu Giant|Rise of the Eldrazi|202|C|{3}{G}|Creature — Giant Druid|2|4| +Repel the Darkness|Rise of the Eldrazi|42|C|{2}{W}|Instant||| +Nirkana Cutthroat|Rise of the Eldrazi|119|U|{2}{B}|Creature — Vampire Warrior|3|2| +Recurring Insight|Rise of the Eldrazi|82|R|{4}{U}{U}|Sorcery||| +Sea Gate Oracle|Rise of the Eldrazi|85|C|{2}{U}|Creature — Human Wizard|1|3| +Essence Feed|Rise of the Eldrazi|110|C|{5}{B}|Sorcery||| +Tuktuk the Explorer|Rise of the Eldrazi|169|R|{2}{R}|Legendary Creature — Goblin|1|1| +Eland Umbra|Rise of the Eldrazi|19|C|{1}{W}|Enchantment — Aura||| +Bala Ged Scorpion|Rise of the Eldrazi|95|C|{3}{B}|Creature — Scorpion|2|3| +Runed Servitor|Rise of the Eldrazi|224|U|{2}|Artifact Creature — Construct|2|2| +Halimar Wavewatch|Rise of the Eldrazi|72|C|{1}{U}|Creature — Merfolk Soldier|0|3| +Death Cultist|Rise of the Eldrazi|105|C|{B}|Creature — Human Wizard|1|1| +Emerge Unscathed|Rise of the Eldrazi|20|U|{W}|Instant||| +Shared Discovery|Rise of the Eldrazi|87|C|{U}|Sorcery||| +Knight of Cliffhaven|Rise of the Eldrazi|29|C|{1}{W}|Creature — Kor Knight|2|2| +Balance|From the Vault: Exiled|1|M|{1}{W}|Sorcery||| +Channel|From the Vault: Exiled|3|M|{G}{G}|Sorcery||| +Strip Mine|From the Vault: Exiled|13|M||Land||| +Berserk|From the Vault: Exiled|2|M|{G}|Instant||| +Serendib Efreet|From the Vault: Exiled|11|M|{2}{U}|Creature — Efreet|3|4| +Gifts Ungiven|From the Vault: Exiled|4|M|{3}{U}|Instant||| +Sensei's Divining Top|From the Vault: Exiled|10|M|{1}|Artifact||| +Goblin Lackey|From the Vault: Exiled|5|M|{R}|Creature — Goblin|1|1| +Kird Ape|From the Vault: Exiled|6|M|{R}|Creature — Ape|1|1| +Lotus Petal|From the Vault: Exiled|7|M|{0}|Artifact||| +Mystical Tutor|From the Vault: Exiled|8|M|{U}|Instant||| +Necropotence|From the Vault: Exiled|9|M|{B}{B}{B}|Enchantment||| +Skullclamp|From the Vault: Exiled|12|M|{1}|Artifact — Equipment||| +Trinisphere|From the Vault: Exiled|15|M|{3}|Artifact||| +Tinker|From the Vault: Exiled|14|M|{2}{U}|Sorcery||| +Swamp|Zendikar|241|L||Basic Land — Swamp||| +Forest|Zendikar|246|L||Basic Land — Forest||| +Swamp|Zendikar|240|L||Basic Land — Swamp||| +Island|Zendikar|236|L||Basic Land — Island||| +Plains|Zendikar|233|L||Basic Land — Plains||| +Island|Zendikar|235|L||Basic Land — Island||| +Island|Zendikar|237|L||Basic Land — Island||| +Mountain|Zendikar|243|L||Basic Land — Mountain||| +Swamp|Zendikar|238|L||Basic Land — Swamp||| +Plains|Zendikar|231|L||Basic Land — Plains||| +Forest|Zendikar|248|L||Basic Land — Forest||| +Mountain|Zendikar|242|L||Basic Land — Mountain||| +Plains|Zendikar|230|L||Basic Land — Plains||| +Mountain|Zendikar|244|L||Basic Land — Mountain||| +Forest|Zendikar|249|L||Basic Land — Forest||| +Mountain|Zendikar|245|L||Basic Land — Mountain||| +Island|Zendikar|234|L||Basic Land — Island||| +Forest|Zendikar|247|L||Basic Land — Forest||| +Swamp|Zendikar|239|L||Basic Land — Swamp||| +Plains|Zendikar|232|L||Basic Land — Plains||| +Jace, the Mind Sculptor|Worldwake|31|M|{2}{U}{U}|Planeswalker — Jace||| +Tomb Hex|Worldwake|69|C|{2}{B}|Instant||| +Chandra Ablaze|Zendikar|120|M|{4}{R}{R}|Planeswalker — Chandra||| +Sorin Markov|Zendikar|111|M|{3}{B}{B}{B}|Planeswalker — Sorin||| +Quest for the Gemblades|Zendikar|177|U|{1}{G}|Enchantment||| +Conqueror's Pledge|Zendikar|8|R|{2}{W}{W}{W}|Sorcery||| +Gigantiform|Zendikar|162|R|{3}{G}{G}|Enchantment — Aura||| +Makindi Shieldmate|Zendikar|26|C|{2}{W}|Creature — Kor Soldier Ally|0|3| +Sea Gate Loremaster|Zendikar|63|R|{4}{U}|Creature — Merfolk Wizard Ally|1|3| +Rite of Replication|Zendikar|61|R|{2}{U}{U}|Sorcery||| +Seascape Aerialist|Zendikar|64|U|{4}{U}|Creature — Merfolk Wizard Ally|2|3| +Sadistic Sacrament|Zendikar|110|R|{B}{B}{B}|Sorcery||| +Murasa Pyromancer|Zendikar|139|U|{4}{R}{R}|Creature — Human Shaman Ally|3|2| +Quest for Ancient Secrets|Zendikar|59|U|{U}|Enchantment||| +Angel of Mercy|Duel Decks: Divine vs. Demonic|9|U|{4}{W}|Creature — Angel|3|3| +Angel's Feather|Duel Decks: Divine vs. Demonic|23|U|{2}|Artifact||| +Consume Spirit|Duel Decks: Divine vs. Demonic|56|U|{X}{1}{B}|Sorcery||| +Cruel Edict|Duel Decks: Divine vs. Demonic|48|U|{1}{B}|Sorcery||| +Demon's Horn|Duel Decks: Divine vs. Demonic|57|U|{2}|Artifact||| +Dusk Imp|Duel Decks: Divine vs. Demonic|34|C|{2}{B}|Creature — Imp|2|1| +Icatian Priest|Duel Decks: Divine vs. Demonic|2|U|{W}|Creature — Human Cleric|1|1| +Pacifism|Duel Decks: Divine vs. Demonic|17|C|{1}{W}|Enchantment — Aura||| +Reya Dawnbringer|Duel Decks: Divine vs. Demonic|13|R|{6}{W}{W}{W}|Legendary Creature — Angel|4|6| +Serra Angel|Duel Decks: Divine vs. Demonic|10|R|{3}{W}{W}|Creature — Angel|4|4| +Serra's Embrace|Duel Decks: Divine vs. Demonic|21|U|{2}{W}{W}|Enchantment — Aura||| +Unholy Strength|Duel Decks: Divine vs. Demonic|47|C|{B}|Enchantment — Aura||| +Venerable Monk|Duel Decks: Divine vs. Demonic|5|C|{2}{W}|Creature — Human Monk Cleric|2|2| +Cackling Imp|Duel Decks: Divine vs. Demonic|41|C|{2}{B}{B}|Creature — Imp|2|2| +Duress|Duel Decks: Divine vs. Demonic|46|C|{B}|Sorcery||| +Marble Diamond|Duel Decks: Divine vs. Demonic|24|U|{2}|Artifact||| +Serra Advocate|Duel Decks: Divine vs. Demonic|7|U|{3}{W}|Creature — Angel|2|2| +Sustainer of the Realm|Duel Decks: Divine vs. Demonic|8|U|{2}{W}{W}|Creature — Angel|2|3| +Abyssal Specter|Duel Decks: Divine vs. Demonic|40|U|{2}{B}{B}|Creature — Specter|2|3| +Angelic Page|Duel Decks: Divine vs. Demonic|3|C|{1}{W}|Creature — Angel Spirit|1|1| +Fallen Angel|Duel Decks: Divine vs. Demonic|42|R|{3}{B}{B}|Creature — Angel|3|3| +Healing Salve|Duel Decks: Divine vs. Demonic|14|C|{W}|Instant||| +Foul Imp|Duel Decks: Divine vs. Demonic|32|C|{B}{B}|Creature — Imp|2|2| +Angelic Benediction|Duel Decks: Divine vs. Demonic|19|U|{3}{W}|Enchantment||| +Angelsong|Duel Decks: Divine vs. Demonic|15|C|{1}{W}|Instant||| +Kuro, Pitlord|Duel Decks: Divine vs. Demonic|44|R|{6}{B}{B}{B}|Legendary Creature — Demon Spirit|9|9| +Oni Possession|Duel Decks: Divine vs. Demonic|51|U|{2}{B}|Enchantment — Aura||| +Otherworldly Journey|Duel Decks: Divine vs. Demonic|16|U|{1}{W}|Instant — Arcane||| +Demon's Jester|Duel Decks: Divine vs. Demonic|38|C|{3}{B}|Creature — Imp|2|2| +Dark Ritual|Duel Decks: Divine vs. Demonic|45|C|{B}|Instant||| +Soot Imp|Duel Decks: Divine vs. Demonic|37|U|{1}{B}{B}|Creature — Imp|1|2| +Charging Paladin|Duel Decks: Divine vs. Demonic|4|C|{2}{W}|Creature — Human Knight|2|2| +Daggerclaw Imp|Duel Decks: Divine vs. Demonic|33|U|{2}{B}|Creature — Imp|3|1| +Dark Banishing|Duel Decks: Divine vs. Demonic|50|C|{2}{B}|Instant||| +Breeding Pit|Duel Decks: Divine vs. Demonic|53|U|{3}{B}|Enchantment||| +Barter in Blood|Duel Decks: Divine vs. Demonic|52|U|{2}{B}{B}|Sorcery||| +Promise of Power|Duel Decks: Divine vs. Demonic|54|R|{2}{B}{B}{B}|Sorcery||| +Reiver Demon|Duel Decks: Divine vs. Demonic|43|R|{4}{B}{B}{B}{B}|Creature — Demon|6|6| +Overeager Apprentice|Duel Decks: Divine vs. Demonic|35|C|{2}{B}|Creature — Human Minion|1|2| +Barren Moor|Duel Decks: Divine vs. Demonic|58|C||Land||| +Righteous Cause|Duel Decks: Divine vs. Demonic|22|U|{3}{W}{W}|Enchantment||| +Secluded Steppe|Duel Decks: Divine vs. Demonic|25|C||Land||| +Serra's Boon|Duel Decks: Divine vs. Demonic|18|U|{2}{W}|Enchantment — Aura||| +Corrupt|Duel Decks: Divine vs. Demonic|55|U|{5}{B}|Sorcery||| +Twilight Shepherd|Duel Decks: Divine vs. Demonic|11|R|{3}{W}{W}{W}|Creature — Angel|5|5| +Angelic Protector|Duel Decks: Divine vs. Demonic|6|U|{3}{W}|Creature — Angel|2|2| +Souldrinker|Duel Decks: Divine vs. Demonic|39|U|{3}{B}|Creature — Spirit|2|2| +Abyssal Gatekeeper|Duel Decks: Divine vs. Demonic|31|C|{1}{B}|Creature — Horror|1|1| +Kalastria Highborn|Worldwake|59|R|{B}{B}|Creature — Vampire Shaman|2|2| +Butcher of Malakir|Worldwake|53|R|{5}{B}{B}|Creature — Vampire Warrior|5|4| +Halimar Excavator|Worldwake|29|C|{1}{U}|Creature — Human Wizard Ally|1|3| +Terastodon|Worldwake|115|R|{6}{G}{G}|Creature — Elephant|9|9| +Kazuul, Tyrant of the Cliffs|Worldwake|84|R|{3}{R}{R}|Legendary Creature — Ogre Warrior|5|4| +Kitesail|Worldwake|126|C|{2}|Artifact — Equipment||| +Goliath Sphinx|Worldwake|28|R|{5}{U}{U}|Creature — Sphinx|8|7| +Pulse Tracker|Worldwake|62|C|{B}|Creature — Vampire Rogue|1|1| +Bojuka Brigand|Worldwake|51|C|{1}{B}|Creature — Human Warrior Ally|1|1| +Admonition Angel|Worldwake|1|M|{3}{W}{W}{W}|Creature — Angel|6|6| +Mordant Dragon|Worldwake|85|R|{3}{R}{R}{R}|Creature — Dragon|5|5| +Plains|Duel Decks: Divine vs. Demonic|29|L||Basic Land — Plains||| +Plains|Duel Decks: Divine vs. Demonic|26|L||Basic Land — Plains||| +Plains|Duel Decks: Divine vs. Demonic|28|L||Basic Land — Plains||| +Plains|Duel Decks: Divine vs. Demonic|27|L||Basic Land — Plains||| +Swamp|Duel Decks: Divine vs. Demonic|59|L||Basic Land — Swamp||| +Swamp|Duel Decks: Divine vs. Demonic|60|L||Basic Land — Swamp||| +Swamp|Duel Decks: Divine vs. Demonic|61|L||Basic Land — Swamp||| +Swamp|Duel Decks: Divine vs. Demonic|62|L||Basic Land — Swamp||| +Thrull|Duel Decks: Divine vs. Demonic|3|C||Creature — Thrull|0|1| +Bala Ged Thief|Zendikar|79|R|{3}{B}|Creature — Human Rogue Ally|2|2| +Nimana Sell-Sword|Zendikar|106|C|{3}{B}|Creature — Human Warrior Ally|2|2| +Hagra Diabolist|Zendikar|95|U|{4}{B}|Creature — Ogre Shaman Ally|3|2| +River Boa|Zendikar|180|U|{1}{G}|Creature — Snake|2|1| +Quest for the Holy Relic|Zendikar|33|U|{W}|Enchantment||| +Quest for Pure Flame|Zendikar|144|U|{R}|Enchantment||| +Whiplash Trap|Zendikar|77|C|{3}{U}{U}|Instant — Trap||| +Summoning Trap|Zendikar|184|R|{4}{G}{G}|Instant — Trap||| +Lavaball Trap|Zendikar|135|R|{6}{R}{R}|Instant — Trap||| +Needlebite Trap|Zendikar|105|U|{5}{B}{B}|Instant — Trap||| +Inferno Trap|Zendikar|133|U|{3}{R}|Instant — Trap||| +Baloth Cage Trap|Zendikar|156|U|{3}{G}{G}|Instant — Trap||| +Mindbreak Trap|Zendikar|57|M|{2}{U}{U}|Instant — Trap||| +Pitfall Trap|Zendikar|32|U|{2}{W}|Instant — Trap||| +Lethargy Trap|Zendikar|51|C|{3}{U}|Instant — Trap||| +Cobra Trap|Zendikar|160|U|{4}{G}{G}|Instant — Trap||| +Runeflare Trap|Zendikar|146|U|{4}{R}{R}|Instant — Trap||| +Ravenous Trap|Zendikar|109|U|{2}{B}{B}|Instant — Trap||| +Archive Trap|Zendikar|41|R|{3}{U}{U}|Instant — Trap||| +Skitter of Lizards|Worldwake|91|C|{R}|Creature — Lizard|1|1| +Omnath, Locus of Mana|Worldwake|109|M|{2}{G}|Legendary Creature — Elemental|1|1| +Quag Vampires|Worldwake|63|C|{B}|Creature — Vampire Rogue|1|1| +Joraga Warcaller|Worldwake|106|R|{G}|Creature — Elf Warrior|1|1| +Comet Storm|Worldwake|76|M|{X}{R}{R}|Instant||| +Enclave Elite|Worldwake|27|C|{2}{U}|Creature — Merfolk Soldier|2|2| +Apex Hawks|Worldwake|2|C|{2}{W}|Creature — Bird|2|2| +Rumbling Aftershocks|Worldwake|89|U|{4}{R}|Enchantment||| +Gnarlid Pack|Worldwake|101|C|{1}{G}|Creature — Beast|2|2| +Smoldering Spires|Worldwake|143|C||Land||| +Bojuka Bog|Worldwake|132|C||Land||| +Halimar Depths|Worldwake|137|C||Land||| +Sejiri Steppe|Worldwake|142|C||Land||| +Khalni Garden|Worldwake|138|C||Land||| +Nemesis Trap|Worldwake|61|U|{4}{B}{B}|Instant — Trap||| +Wrexial, the Risen Deep|Worldwake|120|M|{3}{U}{U}{B}|Legendary Creature — Kraken|5|8| +Bestial Menace|Worldwake|97|U|{3}{G}{G}|Sorcery||| +Sejiri Merfolk|Worldwake|36|U|{1}{U}|Creature — Merfolk Soldier|2|1| +Quicksand|Worldwake|140|C||Land||| +Dragonmaster Outcast|Worldwake|81|M|{R}|Creature — Human Shaman|1|1| +Tectonic Edge|Worldwake|145|U||Land||| +Leatherback Baloth|Worldwake|107|U|{G}{G}{G}|Creature — Beast|4|5| +Novablast Wurm|Worldwake|119|M|{3}{G}{G}{W}{W}|Creature — Wurm|7|7| +Slavering Nulls|Worldwake|92|U|{1}{R}|Creature — Goblin Zombie|2|1| +Summit Apes|Worldwake|114|U|{3}{G}|Creature — Ape|5|2| +Wind Zendikon|Worldwake|46|C|{U}|Enchantment — Aura||| +Terra Eternal|Worldwake|22|R|{2}{W}|Enchantment||| +Abyssal Persecutor|Worldwake|47|M|{2}{B}{B}|Creature — Demon|6|6| +Vastwood Zendikon|Worldwake|117|C|{4}{G}|Enchantment — Aura||| +Hammer of Ruin|Worldwake|124|U|{2}|Artifact — Equipment||| +Guardian Zendikon|Worldwake|6|C|{2}{W}|Enchantment — Aura||| +Loam Lion|Worldwake|13|U|{W}|Creature — Cat|1|1| +Corrupted Zendikon|Worldwake|55|C|{1}{B}|Enchantment — Aura||| +Strength of the Tajuru|Worldwake|113|R|{X}{G}{G}|Instant||| +Shoreline Salvager|Worldwake|67|U|{3}{B}|Creature — Surrakar|3|3| +Iona's Judgment|Worldwake|8|C|{4}{W}|Sorcery||| +Eye of Ugin|Worldwake|136|M||Legendary Land||| +Geyser Glider|Zendikar|124|U|{3}{R}{R}|Creature — Elemental Beast|4|4| +Luminarch Ascension|Zendikar|25|R|{1}{W}|Enchantment||| +Beastmaster Ascension|Zendikar|159|R|{2}{G}|Enchantment||| +Pyromancer Ascension|Zendikar|143|R|{1}{R}|Enchantment||| +Bloodchief Ascension|Zendikar|82|R|{B}|Enchantment||| +Archmage Ascension|Zendikar|42|R|{2}{U}|Enchantment||| +Demon|Duel Decks: Divine vs. Demonic|2|C||Creature — Demon|*|*| +Spirit|Duel Decks: Divine vs. Demonic|1|C||Creature — Spirit|1|1| +Arbor Elf|Worldwake|95|C|{G}|Creature — Elf Druid|1|1| +Treasure Hunt|Worldwake|42|C|{1}{U}|Sorcery||| +Thada Adel, Acquisitor|Worldwake|40|R|{1}{U}{U}|Legendary Creature — Merfolk Rogue|2|2| +Lagac Lizard|Rise of the Eldrazi|154|C|{3}{R}|Creature — Lizard|3|3| +Echo Mage|Rise of the Eldrazi|64|R|{1}{U}{U}|Creature — Human Wizard|2|3| +Lord of Shatterskull Pass|Rise of the Eldrazi|156|R|{3}{R}|Creature — Minotaur Shaman|3|3| +Harmless Assault|Rise of the Eldrazi|24|C|{2}{W}{W}|Instant||| +Zulaport Enforcer|Rise of the Eldrazi|133|C|{B}|Creature — Human Warrior|1|1| +Mul Daya Channelers|Rise of the Eldrazi|198|R|{1}{G}{G}|Creature — Elf Druid Shaman|2|2| +Distortion Strike|Rise of the Eldrazi|60|C|{U}|Sorcery||| +Sphinx of Magosi|Rise of the Eldrazi|89|R|{3}{U}{U}{U}|Creature — Sphinx|6|6| +Fissure Vent|Rise of the Eldrazi|144|C|{3}{R}{R}|Sorcery||| +It That Betrays|Rise of the Eldrazi|7|R|{12}|Creature — Eldrazi|11|11| +Gigantomancer|Rise of the Eldrazi|184|R|{7}{G}|Creature — Human Shaman|1|1| +Merfolk Observer|Rise of the Eldrazi|76|C|{1}{U}|Creature — Merfolk Rogue|2|1| +Phantasmal Abomination|Rise of the Eldrazi|80|U|{1}{U}{U}|Creature — Illusion|5|5| +Totem-Guide Hartebeest|Rise of the Eldrazi|50|C|{4}{W}|Creature — Antelope|2|5| +Ikiral Outrider|Rise of the Eldrazi|27|C|{1}{W}|Creature — Human Soldier|1|2| +Traitorous Instinct|Rise of the Eldrazi|168|U|{3}{R}|Sorcery||| +Surreal Memoir|Rise of the Eldrazi|167|U|{3}{R}|Sorcery||| +Nomads' Assembly|Rise of the Eldrazi|39|R|{4}{W}{W}|Sorcery||| +Rapacious One|Rise of the Eldrazi|162|U|{5}{R}|Creature — Eldrazi Drone|5|4| +Hyena Umbra|Rise of the Eldrazi|26|C|{W}|Enchantment — Aura||| +Prophetic Prism|Rise of the Eldrazi|222|C|{2}|Artifact||| +Not of This World|Rise of the Eldrazi|8|U|{7}|Tribal Instant — Eldrazi||| +Virulent Swipe|Rise of the Eldrazi|131|U|{B}|Instant||| +Cast Through Time|Rise of the Eldrazi|55|M|{4}{U}{U}{U}|Enchantment||| +Baneful Omen|Rise of the Eldrazi|96|R|{4}{B}{B}{B}|Enchantment||| +Kozilek's Predator|Rise of the Eldrazi|193|C|{3}{G}|Creature — Eldrazi Drone|3|3| +Bear Umbra|Rise of the Eldrazi|177|R|{2}{G}{G}|Enchantment — Aura||| +Affa Guard Hound|Rise of the Eldrazi|14|U|{2}{W}|Creature — Hound|2|2| +Hellion Eruption|Rise of the Eldrazi|151|R|{5}{R}|Sorcery||| +Bloodthrone Vampire|Rise of the Eldrazi|98|C|{1}{B}|Creature — Vampire|1|1| +Surrakar Spellblade|Rise of the Eldrazi|90|R|{1}{U}{U}|Creature — Surrakar|2|1| +Fleeting Distraction|Rise of the Eldrazi|67|C|{U}|Instant||| +Eldrazi Temple|Rise of the Eldrazi|227|R||Land||| +Demystify|Rise of the Eldrazi|18|C|{W}|Instant||| +Basilisk Collar|Worldwake|122|R|{1}|Artifact — Equipment||| +Nature's Claim|Worldwake|108|C|{G}|Instant||| +Akoum Battlesinger|Worldwake|71|C|{1}{R}|Creature — Human Berserker Ally|1|1| +Perimeter Captain|Worldwake|16|U|{W}|Creature — Human Soldier|0|4| +Feral Contest|Worldwake|100|C|{3}{G}|Sorcery||| +Bazaar Trader|Worldwake|72|R|{1}{R}|Creature — Goblin|1|1| +Pilgrim's Eye|Worldwake|128|C|{3}|Artifact Creature — Thopter|1|1| +Urge to Feed|Worldwake|70|U|{B}{B}|Instant||| +Surrakar Banisher|Worldwake|39|C|{4}{U}|Creature — Surrakar|3|3| +Grappler Spider|Worldwake|102|C|{1}{G}|Creature — Spider|2|1| +Death's Shadow|Worldwake|57|R|{B}|Creature — Avatar|13|13| +Everflowing Chalice|Worldwake|123|U|{0}|Artifact||| +Walking Atlas|Worldwake|131|C|{2}|Artifact Creature — Construct|1|1| +Caustic Crawler|Worldwake|54|U|{3}{B}{B}|Creature — Insect|4|3| +Ruin Ghost|Worldwake|19|U|{1}{W}|Creature — Spirit|1|1| +Scrib Nibblers|Worldwake|66|U|{2}{B}|Creature — Rat|1|1| +Stoneforge Mystic|Worldwake|20|R|{1}{W}|Creature — Kor Artificer|1|2| +Veteran's Reflexes|Worldwake|23|C|{W}|Instant||| +Quest for the Nihil Stone|Worldwake|64|R|{B}|Enchantment||| +Jwari Shapeshifter|Worldwake|32|R|{1}{U}|Creature — Shapeshifter Ally|0|0| +Quest for the Goblin Lord|Worldwake|86|U|{R}|Enchantment||| +Marshal's Anthem|Worldwake|15|R|{2}{W}{W}|Enchantment||| +Battle Hurda|Worldwake|4|C|{4}{W}|Creature — Giant|3|3| +Razor Boomerang|Worldwake|129|U|{3}|Artifact — Equipment||| +Twitch|Worldwake|43|C|{2}{U}|Instant||| +Hada Freeblade|Worldwake|7|U|{W}|Creature — Human Soldier Ally|0|1| +Quest for Ula's Temple|Worldwake|35|R|{U}|Enchantment||| +Agadeem Occultist|Worldwake|48|R|{2}{B}|Creature — Human Shaman Ally|0|2| +Khalni Gem|Zendikar|205|U|{4}|Artifact||| +Gomazoa|Zendikar|46|U|{2}{U}|Creature — Jellyfish|0|3| +Celestial Mantle|Zendikar|6|R|{3}{W}{W}{W}|Enchantment — Aura||| +Lu Meng, Wu General|Masters Edition III|41|U|{3}{U}{U}|Legendary Creature — Human Soldier|4|4| +Active Volcano|Masters Edition III|85|U|{R}|Instant||| +Akron Legionnaire|Masters Edition III|1|R|{6}{W}{W}|Creature — Giant Soldier|8|4| +Alabaster Potion|Masters Edition III|2|U|{X}{W}{W}|Instant||| +All Hallow's Eve|Masters Edition III|57|R|{2}{B}{B}|Sorcery||| +Wall of Light|Masters Edition III|27|C|{2}{W}|Creature — Wall|1|5| +Lightning Blow|Masters Edition III|18|C|{1}{W}|Instant||| +Boomerang|Masters Edition III|30|C|{U}{U}|Instant||| +Dong Zhou, the Tyrant|Masters Edition III|96|R|{4}{R}|Legendary Creature — Human Soldier|3|3| +Spiny Starfish|Masters Edition III|50|U|{2}{U}|Creature — Starfish|0|1| +Carrion Ants|Masters Edition III|60|U|{2}{B}{B}|Creature — Insect|0|1| +Chain Lightning|Masters Edition III|90|C|{R}|Sorcery||| +Cleanse|Masters Edition III|5|R|{2}{W}{W}|Sorcery||| +Jedit Ojanen|Masters Edition III|153|C|{4}{W}{W}{U}|Legendary Creature — Cat Warrior|5|5| +Cosmic Horror|Masters Edition III|61|R|{3}{B}{B}{B}|Creature — Horror|7|7| +Crimson Kobolds|Masters Edition III|93|C|{0}|Creature — Kobold|0|1| +Crimson Manticore|Masters Edition III|94|U|{2}{R}{R}|Creature — Manticore|2|2| +Disharmony|Masters Edition III|95|U|{2}{R}|Instant||| +D'Avenant Archer|Masters Edition III|6|C|{2}{W}|Creature — Human Soldier Archer|1|2| +Capture of Jingzhou|Masters Edition III|33|R|{3}{U}{U}|Sorcery||| +Loyal Retainers|Masters Edition III|20|U|{2}{W}|Creature — Human Advisor|1|1| +Flash Flood|Masters Edition III|35|U|{U}|Instant||| +Frost Giant|Masters Edition III|101|U|{3}{R}{R}{R}|Creature — Giant|4|4| +Ghosts of the Damned|Masters Edition III|68|C|{1}{B}{B}|Creature — Spirit|0|2| +Bone Flute|Masters Edition III|192|C|{3}|Artifact||| +Hellfire|Masters Edition III|70|R|{2}{B}{B}{B}|Sorcery||| +Immolation|Masters Edition III|103|C|{R}|Enchantment — Aura||| +Spirit Shackle|Masters Edition III|74|C|{B}{B}|Enchantment — Aura||| +Old Man of the Sea|Masters Edition III|45|R|{1}{U}{U}|Creature — Djinn|2|3| +Young Wei Recruits|Masters Edition III|84|C|{1}{B}|Creature — Human Soldier|2|2| +Ivory Guardians|Masters Edition III|15|U|{4}{W}{W}|Creature — Giant Cleric|3|3| +Call to Arms|Masters Edition III|4|U|{1}{W}|Enchantment||| +Kobold Drill Sergeant|Masters Edition III|104|U|{1}{R}|Creature — Kobold Soldier|1|2| +Kobold Overlord|Masters Edition III|105|U|{1}{R}|Creature — Kobold|1|2| +Kobold Taskmaster|Masters Edition III|106|C|{1}{R}|Creature — Kobold|1|2| +Kobolds of Kher Keep|Masters Edition III|107|C|{0}|Creature — Kobold|0|1| +Land Equilibrium|Masters Edition III|40|R|{2}{U}{U}|Enchantment||| +Land Tax|Masters Edition III|17|R|{W}|Enchantment||| +Lesser Werewolf|Masters Edition III|71|C|{3}{B}|Creature — Human Wolf|2|4| +Mana Drain|Masters Edition III|43|R|{U}{U}|Instant||| +Torsten Von Ursus|Masters Edition III|183|C|{3}{G}{G}{W}|Legendary Creature — Human Soldier|5|5| +Nether Void|Masters Edition III|73|R|{3}{B}|World Enchantment||| +Benthic Explorers|Masters Edition III|29|C|{3}{U}|Creature — Merfolk Scout|2|4| +Force Spike|Masters Edition III|36|C|{U}|Instant||| +Recall|Masters Edition III|46|U|{X}{X}{U}|Sorcery||| +Disenchant|Masters Edition III|7|C|{1}{W}|Instant||| +Reset|Masters Edition III|48|R|{U}{U}|Instant||| +Xiahou Dun, the One-Eyed|Masters Edition III|83|U|{2}{B}{B}|Legendary Creature — Human Soldier|3|2| +Storm World|Masters Edition III|111|R|{R}|World Enchantment||| +Demonic Torment|Masters Edition III|62|C|{2}{B}|Enchantment — Aura||| +The Abyss|Masters Edition III|77|R|{3}{B}|World Enchantment||| +The Wretched|Masters Edition III|78|U|{3}{B}{B}|Creature — Demon|2|5| +Fevered Strength|Masters Edition III|66|C|{2}{B}|Instant||| +Angus Mackenzie|Masters Edition III|141|R|{G}{W}{U}|Legendary Creature — Human Cleric|2|2| +Arboria|Masters Edition III|113|R|{2}{G}{G}|World Enchantment||| +Arcades Sabboth|Masters Edition III|142|R|{2}{G}{G}{W}{W}{U}{U}|Legendary Creature — Elder Dragon|7|7| +Axelrod Gunnarson|Masters Edition III|143|U|{4}{B}{B}{R}{R}|Legendary Creature — Giant|5|5| +Wandering Mage|Masters Edition III|186|R|{W}{U}{B}|Creature — Human Cleric Wizard|0|3| +Bartel Runeaxe|Masters Edition III|145|U|{3}{B}{R}{G}|Legendary Creature — Giant Warrior|6|5| +Boris Devilboon|Masters Edition III|146|U|{3}{B}{R}|Legendary Creature — Zombie Wizard|2|2| +Sol Grail|Masters Edition III|201|C|{3}|Artifact||| +Chromium|Masters Edition III|147|R|{2}{W}{W}{U}{U}{B}{B}|Legendary Creature — Elder Dragon|7|7| +Concordant Crossroads|Masters Edition III|114|R|{G}|World Enchantment||| +Fire Sprites|Masters Edition III|118|C|{1}{G}|Creature — Faerie|1|1| +Slashing Tiger|Masters Edition III|133|C|{2}{G}{G}|Creature — Cat|3|3| +Gabriel Angelfire|Masters Edition III|148|R|{3}{G}{G}{W}{W}|Legendary Creature — Angel|4|4| +Spectral Shield|Masters Edition III|176|U|{1}{W}{U}|Enchantment — Aura||| +Barl's Cage|Masters Edition III|190|R|{4}|Artifact||| +Gwendlyn Di Corci|Masters Edition III|149|R|{U}{B}{B}{R}|Legendary Creature — Human Rogue|3|5| +Halfdane|Masters Edition III|150|R|{1}{W}{U}{B}|Legendary Creature — Shapeshifter|3|3| +Hazezon Tamar|Masters Edition III|151|R|{4}{R}{G}{W}|Legendary Creature — Human Warrior|2|4| +Hunding Gjornersen|Masters Edition III|152|U|{3}{W}{U}{U}|Legendary Creature — Human Warrior|5|4| +Knowledge Vault|Masters Edition III|198|U|{4}|Artifact||| +Jerrard of the Closed Fist|Masters Edition III|154|C|{3}{R}{G}{G}|Legendary Creature — Human Knight|6|5| +Kjeldoran Frostbeast|Masters Edition III|156|U|{3}{G}{W}|Creature — Elemental Beast|2|4| +Karakas|Masters Edition III|208|R||Legendary Land||| +Illusionary Mask|Masters Edition III|197|R|{2}|Artifact||| +Kei Takahashi|Masters Edition III|155|U|{2}{G}{W}|Legendary Creature — Human Cleric|2|2| +Killer Bees|Masters Edition III|126|U|{1}{G}{G}|Creature — Insect|0|1| +Urborg|Masters Edition III|214|U||Legendary Land||| +Lady Evangela|Masters Edition III|158|U|{W}{U}{B}|Legendary Creature — Human Cleric|1|2| +The Lady of the Mountain|Masters Edition III|180|C|{4}{R}{G}|Legendary Creature — Giant|5|5| +Life Chisel|Masters Edition III|199|R|{4}|Artifact||| +Coal Golem|Masters Edition III|193|C|{5}|Artifact Creature — Golem|3|3| +Living Plane|Masters Edition III|127|R|{2}{G}{G}|World Enchantment||| +Xira Arien|Masters Edition III|187|R|{B}{R}{G}|Legendary Creature — Insect Wizard|1|2| +Arena of the Ancients|Masters Edition III|188|R|{3}|Artifact||| +Desert Twister|Masters Edition III|115|U|{4}{G}{G}|Sorcery||| +Gaea's Touch|Masters Edition III|120|U|{G}{G}|Enchantment||| +Nebuchadnezzar|Masters Edition III|162|U|{3}{U}{B}|Legendary Creature — Human Wizard|3|3| +Nicol Bolas|Masters Edition III|163|R|{2}{U}{U}{B}{B}{R}{R}|Legendary Creature — Elder Dragon|7|7| +Nova Pentacle|Masters Edition III|200|R|{4}|Artifact||| +Palladia-Mors|Masters Edition III|164|R|{2}{R}{R}{G}{G}{W}{W}|Legendary Creature — Elder Dragon|7|7| +Firestorm Phoenix|Masters Edition III|99|R|{4}{R}{R}|Creature — Phoenix|3|2| +Freyalise's Winds|Masters Edition III|119|R|{2}{G}{G}|Enchantment||| +Astrolabe|Masters Edition III|189|C|{3}|Artifact||| +Meng Huo's Horde|Masters Edition III|129|C|{4}{G}|Creature — Human Soldier|4|5| +Bazaar of Baghdad|Masters Edition III|205|R||Land||| +Ragnar|Masters Edition III|167|U|{G}{W}{U}|Legendary Creature — Human Cleric|2|2| +Marhault Elsdragon|Masters Edition III|161|U|{3}{R}{R}{G}|Legendary Creature — Elf Warrior|4|6| +Ramses Overdark|Masters Edition III|169|U|{2}{U}{U}{B}{B}|Legendary Creature — Human Assassin|4|3| +Rasputin Dreamweaver|Masters Edition III|170|R|{4}{W}{U}|Legendary Creature — Human Wizard|4|1| +Riven Turnbull|Masters Edition III|171|U|{5}{U}{B}|Legendary Creature — Human Advisor|5|7| +Rohgahh of Kher Keep|Masters Edition III|172|R|{2}{B}{B}{R}{R}|Legendary Creature — Kobold|5|5| +Rubinia Soulsinger|Masters Edition III|173|R|{2}{G}{W}{U}|Legendary Creature — Faerie|2|3| +Fellwar Stone|Masters Edition III|195|C|{2}|Artifact||| +Sir Shandlar of Eberyn|Masters Edition III|174|C|{4}{G}{W}|Legendary Creature — Human Knight|4|7| +Takklemaggot|Masters Edition III|76|U|{2}{B}{B}|Enchantment — Aura||| +Stangg|Masters Edition III|177|U|{4}{R}{G}|Legendary Creature — Human Warrior|3|4| +Sunastian Falconer|Masters Edition III|178|U|{3}{R}{G}|Legendary Creature — Human Shaman|4|4| +Sword of the Ages|Masters Edition III|202|R|{6}|Artifact||| +Tetsuo Umezawa|Masters Edition III|179|R|{U}{B}{R}|Legendary Creature — Human Archer|3|3| +Gauntlets of Chaos|Masters Edition III|196|R|{5}|Artifact||| +The Tabernacle at Pendrell Vale|Masters Edition III|212|R||Legendary Land||| +Divine Intervention|Masters Edition III|8|R|{6}{W}{W}|Enchantment||| +Tor Wauki|Masters Edition III|182|U|{2}{B}{B}{R}|Legendary Creature — Human Archer|3|3| +Black Vise|Masters Edition III|191|R|{1}|Artifact||| +Tuknir Deathlock|Masters Edition III|184|U|{R}{R}{G}{G}|Legendary Creature — Human Wizard|2|2| +Jungle Lion|Masters Edition III|125|C|{G}|Creature — Cat|2|1| +Hammerheim|Masters Edition III|207|U||Legendary Land||| +Vaevictis Asmadi|Masters Edition III|185|R|{2}{B}{B}{R}{R}{G}{G}|Legendary Creature — Elder Dragon|7|7| +Willow Satyr|Masters Edition III|139|R|{2}{G}{G}|Creature — Satyr|1|1| +Ashes to Ashes|Masters Edition III|58|U|{1}{B}{B}|Sorcery||| +Banshee|Masters Edition III|59|U|{2}{B}{B}|Creature — Spirit|0|1| +City of Shadows|Masters Edition III|206|R||Land||| +Dance of Many|Masters Edition III|34|U|{U}{U}|Enchantment||| +Wu Longbowman|Masters Edition III|55|C|{2}{U}|Creature — Human Soldier Archer|1|1| +Exorcist|Masters Edition III|10|U|{W}{W}|Creature — Human Cleric|1|1| +Fire Drake|Masters Edition III|98|C|{1}{R}{R}|Creature — Drake|1|2| +Borrowing 100,000 Arrows|Masters Edition III|31|U|{2}{U}|Sorcery||| +Reincarnation|Masters Edition III|130|U|{1}{G}{G}|Instant||| +Barktooth Warbeard|Masters Edition III|144|C|{4}{B}{R}{R}|Legendary Creature — Human Warrior|6|5| +Mana Vortex|Masters Edition III|44|R|{1}{U}{U}|Enchantment||| +Evil Presence|Masters Edition III|64|C|{B}|Enchantment — Aura||| +Wu Warship|Masters Edition III|56|C|{2}{U}|Creature — Human Soldier|3|3| +Maze of Ith|Masters Edition IV|246|R||Land||| +Infuse|Masters Edition III|38|C|{2}{U}|Instant||| +Amrou Kithkin|Masters Edition III|3|C|{W}{W}|Creature — Kithkin|1|1| +Giant Growth|Masters Edition III|121|C|{G}|Instant||| +Livonya Silone|Masters Edition III|160|U|{2}{R}{R}{G}{G}|Legendary Creature — Human Warrior|4|4| +Sorrow's Path|Masters Edition III|211|R||Land||| +Remove Soul|Masters Edition III|47|C|{1}{U}|Instant||| +Tracker|Masters Edition III|136|U|{2}{G}|Creature — Human|2|2| +Wormwood Treefolk|Masters Edition III|140|U|{3}{G}{G}|Creature — Treefolk|4|4| +Blood Lust|Masters Edition III|88|C|{1}{R}|Instant||| +Hua Tuo, Honored Physician|Masters Edition III|123|R|{1}{G}{G}|Legendary Creature — Human|1|2| +Burning of Xinye|Masters Edition III|89|R|{4}{R}{R}|Sorcery||| +False Defeat|Masters Edition III|11|U|{3}{W}|Sorcery||| +Famine|Masters Edition III|65|U|{3}{B}{B}|Sorcery||| +Fire Ambush|Masters Edition III|97|C|{1}{R}|Sorcery||| +Forced Retreat|Masters Edition III|37|C|{2}{U}|Sorcery||| +Ghostly Visit|Masters Edition III|67|C|{2}{B}|Sorcery||| +Guan Yu, Sainted Warrior|Masters Edition III|12|U|{3}{W}{W}|Legendary Creature — Human Soldier Warrior|3|5| +Heavy Fog|Masters Edition III|122|C|{1}{G}|Instant||| +Kongming, "Sleeping Dragon"|Masters Edition III|16|R|{2}{W}{W}|Legendary Creature — Human Advisor|2|2| +Liu Bei, Lord of Shu|Masters Edition III|19|R|{3}{W}{W}|Legendary Creature — Human Soldier|2|4| +Guan Yu's 1,000-Li March|Masters Edition III|13|R|{4}{W}{W}|Sorcery||| +Lu Bu, Master-at-Arms|Masters Edition III|108|R|{5}{R}|Legendary Creature — Human Soldier Warrior|4|3| +Lu Xun, Scholar General|Masters Edition III|42|U|{2}{U}{U}|Legendary Creature — Human Soldier|1|3| +Meng Huo, Barbarian King|Masters Edition III|128|R|{3}{G}{G}|Legendary Creature — Human Barbarian Soldier|4|4| +Misfortune's Gain|Masters Edition III|21|C|{3}{W}|Sorcery||| +Stolen Grain|Masters Edition III|75|U|{4}{B}{B}|Sorcery||| +Brilliant Plan|Masters Edition III|32|C|{4}{U}|Sorcery||| +Heal|Masters Edition III|14|C|{W}|Instant||| +Forked Lightning|Masters Edition III|100|U|{3}{R}|Sorcery||| +Rolling Earthquake|Masters Edition III|110|R|{X}{R}|Sorcery||| +Shu Cavalry|Masters Edition III|23|C|{2}{W}|Creature — Human Soldier|2|2| +Shu Elite Companions|Masters Edition III|24|C|{4}{W}|Creature — Human Soldier|3|3| +Peach Garden Oath|Masters Edition III|22|C|{W}|Sorcery||| +Shu General|Masters Edition III|25|C|{3}{W}|Creature — Human Soldier|2|2| +Shu Soldier-Farmers|Masters Edition III|26|C|{4}{W}|Creature — Human Soldier|2|4| +Spoils of Victory|Masters Edition III|134|C|{2}{G}|Sorcery||| +Strategic Planning|Masters Edition III|51|C|{1}{U}|Sorcery||| +Sun Ce, Young Conquerer|Masters Edition III|52|U|{3}{U}{U}|Legendary Creature — Human Soldier|3|3| +Sun Quan, Lord of Wu|Masters Edition III|53|R|{4}{U}{U}|Legendary Creature — Human Soldier|4|4| +Three Visits|Masters Edition III|135|C|{1}{G}|Sorcery||| +Eightfold Maze|Masters Edition III|9|U|{2}{W}|Instant||| +Wei Elite Companions|Masters Edition III|79|C|{4}{B}|Creature — Human Soldier|3|3| +Wei Night Raiders|Masters Edition III|81|U|{2}{B}{B}|Creature — Human Soldier|2|2| +Wei Strike Force|Masters Edition III|82|C|{2}{B}|Creature — Human Soldier|2|1| +Wu Elite Cavalry|Masters Edition III|54|C|{3}{U}|Creature — Human Soldier|2|3| +Reveka, Wizard Savant|Masters Edition III|49|U|{2}{U}{U}|Legendary Creature — Dwarf Wizard|0|1| +Ramirez DePietro|Masters Edition III|168|C|{3}{U}{B}{B}|Legendary Creature — Human Pirate|4|3| +Mind Twist|Masters Edition III|72|R|{X}{B}|Sorcery||| +Zhang Fei, Fierce Warrior|Masters Edition III|28|U|{4}{W}{W}|Legendary Creature — Human Soldier Warrior|4|4| +Zodiac Dragon|Masters Edition III|112|R|{7}{R}{R}|Creature — Dragon|8|8| +Anaba Ancestor|Masters Edition III|86|C|{1}{R}|Creature — Minotaur Spirit|1|1| +Anaba Spirit Crafter|Masters Edition III|87|C|{2}{R}{R}|Creature — Minotaur Shaman|1|3| +Didgeridoo|Masters Edition III|194|U|{1}|Artifact||| +Faerie Noble|Masters Edition III|117|U|{2}{G}|Creature — Faerie|1|2| +Labyrinth Minotaur|Masters Edition III|39|C|{3}{U}|Creature — Minotaur|1|4| +Trip Wire|Masters Edition III|137|C|{2}{G}|Sorcery||| +Willow Priestess|Masters Edition III|138|U|{2}{G}{G}|Creature — Faerie Druid|2|2| +Riding the Dilu Horse|Masters Edition III|131|U|{2}{G}|Sorcery||| +Cinder Storm|Masters Edition III|91|U|{6}{R}|Sorcery||| +Elves of Deep Shadow|Masters Edition III|116|C|{G}|Creature — Elf Druid|1|1| +Raging Minotaur|Masters Edition III|109|C|{2}{R}{R}|Creature — Minotaur Berserker|3|3| +Garruk Wildspeaker|Duel Decks: Garruk vs. Liliana|1|M|{2}{G}{G}|Planeswalker — Garruk||| +Liliana Vess|Duel Decks: Garruk vs. Liliana|32|M|{3}{B}{B}|Planeswalker — Liliana||| +Bayou|Masters Edition III|204|R||Land — Swamp Forest||| +Hurloon Minotaur|Masters Edition III|102|C|{1}{R}{R}|Creature — Minotaur|2|3| +Plateau|Masters Edition III|209|R||Land — Mountain Plains||| +Scrubland|Masters Edition III|210|R||Land — Plains Swamp||| +Scryb Sprites|Masters Edition III|132|C|{G}|Creature — Faerie|1|1| +Tropical Island|Masters Edition III|213|R||Land — Forest Island||| +Volcanic Island|Masters Edition III|215|R||Land — Island Mountain||| +Hunting Cheetah|Masters Edition III|124|C|{2}{G}|Creature — Cat|2|3| +Corrupt Eunuchs|Masters Edition III|92|U|{3}{R}|Creature — Human Advisor|2|2| +Grim Tutor|Masters Edition III|69|R|{1}{B}{B}|Sorcery||| +Lady Caleria|Masters Edition III|157|U|{3}{G}{G}{W}{W}|Legendary Creature — Human Archer|3|6| +Bull Rush|Worldwake|73|C|{R}|Instant||| +Seer's Sundial|Worldwake|130|R|{4}|Artifact||| +Dispel|Worldwake|26|C|{U}|Instant||| +Cunning Sparkmage|Worldwake|79|U|{2}{R}|Creature — Human Shaman|0|1| +Cosi's Ravager|Worldwake|77|C|{3}{R}|Creature — Elemental|2|2| +Vastwood Animist|Worldwake|116|U|{2}{G}|Creature — Elf Shaman Ally|1|1| +Ζther Tradewinds|Worldwake|24|C|{2}{U}|Instant||| +Avenger of Zendikar|Worldwake|96|M|{5}{G}{G}|Creature — Elemental|5|5| +Brink of Disaster|Worldwake|52|C|{2}{B}{B}|Enchantment — Aura||| +Chain Reaction|Worldwake|74|R|{2}{R}{R}|Sorcery||| +Archon of Redemption|Worldwake|3|R|{3}{W}{W}|Creature — Archon|3|4| +Explore|Worldwake|99|C|{1}{G}|Sorcery||| +Tuktuk Scrapper|Worldwake|94|U|{3}{R}|Creature — Goblin Artificer Ally|2|2| +Overrun|Duel Decks: Garruk vs. Liliana|24|U|{2}{G}{G}{G}|Sorcery||| +Windstorm|Duel Decks: Garruk vs. Liliana|25|U|{X}{G}|Instant||| +Albino Troll|Duel Decks: Garruk vs. Liliana|3|U|{1}{G}|Creature — Troll|3|3| +Polluted Mire|Duel Decks: Garruk vs. Liliana|59|C||Land||| +Slippery Karst|Duel Decks: Garruk vs. Liliana|26|C||Land||| +Phyrexian Rager|Duel Decks: Garruk vs. Liliana|39|C|{2}{B}|Creature — Horror|2|2| +Ravenous Rats|Duel Decks: Garruk vs. Liliana|37|C|{1}{B}|Creature — Rat|1|1| +Genju of the Cedars|Duel Decks: Garruk vs. Liliana|13|U|{G}|Enchantment — Aura||| +Genju of the Fens|Duel Decks: Garruk vs. Liliana|47|U|{B}|Enchantment — Aura||| +Snuff Out|Duel Decks: Garruk vs. Liliana|53|C|{3}{B}|Instant||| +Keening Banshee|Duel Decks: Garruk vs. Liliana|44|U|{2}{B}{B}|Creature — Spirit|2|2| +Rise from the Grave|Duel Decks: Garruk vs. Liliana|56|U|{4}{B}|Sorcery||| +Sign in Blood|Duel Decks: Garruk vs. Liliana|49|C|{B}{B}|Sorcery||| +Skeletal Vampire|Duel Decks: Garruk vs. Liliana|46|R|{4}{B}{B}|Creature — Vampire Skeleton|3|3| +Tendrils of Corruption|Duel Decks: Garruk vs. Liliana|54|C|{3}{B}|Instant||| +Twisted Abomination|Duel Decks: Garruk vs. Liliana|45|C|{5}{B}|Creature — Zombie Mutant|5|3| +Enslave|Duel Decks: Garruk vs. Liliana|58|U|{4}{B}{B}|Enchantment — Aura||| +Harmonize|Duel Decks: Garruk vs. Liliana|21|U|{2}{G}{G}|Sorcery||| +Mutilate|Duel Decks: Garruk vs. Liliana|55|R|{2}{B}{B}|Sorcery||| +Bad Moon|Duel Decks: Garruk vs. Liliana|48|R|{1}{B}|Enchantment||| +Corrupt|Duel Decks: Garruk vs. Liliana|57|U|{5}{B}|Sorcery||| +Faerie Macabre|Duel Decks: Garruk vs. Liliana|42|C|{1}{B}{B}|Creature — Faerie Rogue|2|2| +Beast Attack|Duel Decks: Garruk vs. Liliana|23|U|{2}{G}{G}{G}|Instant||| +Wild Mongrel|Duel Decks: Garruk vs. Liliana|5|C|{1}{G}|Creature — Hound|2|2| +Krosan Tusker|Duel Decks: Garruk vs. Liliana|11|C|{5}{G}{G}|Creature — Boar Beast|6|5| +Wirewood Savage|Duel Decks: Garruk vs. Liliana|6|C|{2}{G}|Creature — Elf|2|2| +Blastoderm|Duel Decks: Garruk vs. Liliana|7|C|{2}{G}{G}|Creature — Beast|5|5| +Elephant Guide|Duel Decks: Garruk vs. Liliana|18|U|{2}{G}|Enchantment — Aura||| +Indrik Stomphowler|Duel Decks: Garruk vs. Liliana|10|U|{4}{G}|Creature — Beast|4|4| +Plated Slagwurm|Duel Decks: Garruk vs. Liliana|12|R|{4}{G}{G}{G}|Creature — Wurm|8|8| +Basking Rootwalla|Duel Decks: Garruk vs. Liliana|2|C|{G}|Creature — Lizard|1|1| +Lignify|Duel Decks: Garruk vs. Liliana|16|C|{1}{G}|Tribal Enchantment — Treefolk Aura||| +Rancor|Duel Decks: Garruk vs. Liliana|15|C|{G}|Enchantment — Aura||| +Giant Growth|Duel Decks: Garruk vs. Liliana|14|C|{G}|Instant||| +Nature's Lore|Duel Decks: Garruk vs. Liliana|17|C|{1}{G}|Sorcery||| +Beast|Duel Decks: Garruk vs. Liliana|1|C||Creature — Beast|4|4| +Elephant|Duel Decks: Garruk vs. Liliana|3|C||Creature — Elephant|3|3| +Beast|Duel Decks: Garruk vs. Liliana|2|C||Creature — Beast|4|4| +Vine Trellis|Duel Decks: Garruk vs. Liliana|4|C|{1}{G}|Creature — Plant Wall|0|4| +Stampeding Wildebeests|Duel Decks: Garruk vs. Liliana|9|U|{2}{G}{G}|Creature — Antelope Beast|5|4| +Ravenous Baloth|Duel Decks: Garruk vs. Liliana|8|R|{2}{G}{G}|Creature — Beast|4|4| +Forest|Zendikar|246|L||Basic Land — Forest||| +Forest|Zendikar|248|L||Basic Land — Forest||| +Forest|Zendikar|249|L||Basic Land — Forest||| +Forest|Zendikar|247|L||Basic Land — Forest||| +Island|Zendikar|236|L||Basic Land — Island||| +Island|Zendikar|235|L||Basic Land — Island||| +Island|Zendikar|237|L||Basic Land — Island||| +Island|Zendikar|234|L||Basic Land — Island||| +Mountain|Zendikar|243|L||Basic Land — Mountain||| +Mountain|Zendikar|242|L||Basic Land — Mountain||| +Mountain|Zendikar|244|L||Basic Land — Mountain||| +Mountain|Zendikar|245|L||Basic Land — Mountain||| +Plains|Zendikar|233|L||Basic Land — Plains||| +Plains|Zendikar|231|L||Basic Land — Plains||| +Plains|Zendikar|230|L||Basic Land — Plains||| +Plains|Zendikar|232|L||Basic Land — Plains||| +Swamp|Zendikar|241|L||Basic Land — Swamp||| +Swamp|Zendikar|240|L||Basic Land — Swamp||| +Swamp|Zendikar|238|L||Basic Land — Swamp||| +Swamp|Zendikar|239|L||Basic Land — Swamp||| +Deathgreeter|Duel Decks: Garruk vs. Liliana|33|C|{B}|Creature — Human Shaman|1|1| +Fleshbag Marauder|Duel Decks: Garruk vs. Liliana|38|U|{2}{B}|Creature — Zombie Warrior|3|1| +Ichor Slick|Duel Decks: Garruk vs. Liliana|51|C|{2}{B}|Sorcery||| +Urborg Syphon-Mage|Duel Decks: Garruk vs. Liliana|40|C|{2}{B}|Creature — Human Spellshaper|2|2| +Hideous End|Duel Decks: Garruk vs. Liliana|52|C|{1}{B}{B}|Instant||| +Howling Banshee|Duel Decks: Garruk vs. Liliana|43|U|{2}{B}{B}|Creature — Spirit|3|3| +Invigorate|Duel Decks: Garruk vs. Liliana|19|C|{2}{G}|Instant||| +Vicious Hunger|Duel Decks: Garruk vs. Liliana|50|C|{B}{B}|Sorcery||| +Ghost-Lit Stalker|Duel Decks: Garruk vs. Liliana|34|U|{B}|Creature — Spirit|1|1| +Drudge Skeletons|Duel Decks: Garruk vs. Liliana|36|C|{1}{B}|Creature — Skeleton|1|1| +Vampire Bats|Duel Decks: Garruk vs. Liliana|35|C|{B}|Creature — Bat|0|1| +Wall of Bone|Duel Decks: Garruk vs. Liliana|41|U|{2}{B}|Creature — Skeleton Wall|1|4| +Treetop Village|Duel Decks: Garruk vs. Liliana|27|U||Land||| +Serrated Arrows|Duel Decks: Garruk vs. Liliana|20|C|{4}|Artifact||| +Rude Awakening|Duel Decks: Garruk vs. Liliana|22|R|{4}{G}|Sorcery||| +Braingeyser|Masters Edition IV|40|R|{X}{U}{U}|Sorcery||| +In the Eye of Chaos|Masters Edition IV|51|R|{2}{U}|World Enchantment||| +Control Magic|Masters Edition IV|43|R|{2}{U}{U}|Enchantment — Aura||| +Naked Singularity|Masters Edition IV|216|R|{5}|Artifact||| +Weakness|Masters Edition IV|101|C|{B}|Enchantment — Aura||| +Armageddon Clock|Masters Edition IV|180|R|{6}|Artifact||| +Water Elemental|Masters Edition IV|70|U|{3}{U}{U}|Creature — Elemental|5|4| +Scavenger Folk|Masters Edition IV|166|C|{G}|Creature — Human|1|1| +Animate Artifact|Masters Edition IV|38|U|{3}{U}|Enchantment — Aura||| +Living Wall|Masters Edition IV|212|U|{4}|Artifact Creature — Wall|0|6| +Weakstone|Masters Edition IV|239|U|{4}|Artifact||| +Wicked Pact|Masters Edition IV|102|U|{1}{B}{B}|Sorcery||| +Taiga|Masters Edition IV|253|R||Land — Mountain Forest||| +Tundra|Masters Edition IV|255|R||Land — Plains Island||| +Lifeforce|Masters Edition IV|160|R|{G}{G}|Enchantment||| +Goblin Caves|Masters Edition IV|119|C|{1}{R}{R}|Enchantment — Aura||| +Hasran Ogress|Masters Edition IV|86|C|{B}{B}|Creature — Ogre|3|2| +Argothian Treefolk|Masters Edition IV|143|U|{3}{G}{G}|Creature — Treefolk|3|5| +Library of Alexandria|Masters Edition IV|245|R||Land||| +Clockwork Gnomes|Masters Edition IV|191|U|{4}|Artifact Creature — Gnome|2|2| +Elephant Graveyard|Masters Edition IV|244|U||Land||| +Strip Mine|Masters Edition IV|252|R||Land||| +Kismet|Masters Edition IV|17|R|{3}{W}|Enchantment||| +Champion Lancer|Masters Edition IV|8|R|{4}{W}{W}|Creature — Human Knight|3|3| +Osai Vultures|Masters Edition IV|21|C|{1}{W}|Creature — Bird|1|1| +Counterspell|Masters Edition IV|45|C|{U}{U}|Instant||| +Radjan Spirit|Masters Edition IV|162|U|{3}{G}|Creature — Spirit|3|2| +Sinkhole|Masters Edition IV|97|R|{B}{B}|Sorcery||| +Zombie Master|Masters Edition IV|105|U|{1}{B}{B}|Creature — Zombie|2|3| +Scavenging Ghoul|Masters Edition IV|95|U|{3}{B}|Creature — Zombie|2|2| +Volcanic Island|Masters Edition IV|260|R||Land — Island Mountain||| +Lim-Dϋl's Cohort|Masters Edition IV|90|C|{1}{B}{B}|Creature — Zombie|2|3| +Brass Man|Masters Edition IV|185|C|{1}|Artifact Creature — Construct|1|3| +Tropical Island|Masters Edition IV|254|R||Land — Forest Island||| +Red Elemental Blast|Masters Edition IV|131|U|{R}|Instant||| +Gaea's Avenger|Masters Edition IV|155|U|{1}{G}{G}|Creature — Treefolk|1+*|1+*| +Whiptail Wurm|Masters Edition IV|173|U|{6}{G}|Creature — Wurm|8|5| +Blaze of Glory|Masters Edition IV|7|U|{W}|Instant||| +Aladdin|Masters Edition IV|106|R|{2}{R}{R}|Creature — Human Rogue|1|1| +Mightstone|Masters Edition IV|215|C|{4}|Artifact||| +Sedge Troll|Masters Edition IV|135|R|{2}{R}|Creature — Troll|2|2| +Library of Leng|Masters Edition IV|211|C|{1}|Artifact||| +Clockwork Avian|Masters Edition IV|190|U|{5}|Artifact Creature — Bird|0|4| +Tsunami|Masters Edition IV|171|R|{3}{G}|Sorcery||| +Phantasmal Forces|Masters Edition IV|55|C|{3}{U}|Creature — Illusion|4|1| +Scarwood Bandits|Masters Edition IV|165|R|{2}{G}{G}|Creature — Human Rogue|2|2| +Regrowth|Masters Edition IV|163|R|{1}{G}|Sorcery||| +Swords to Plowshares|Masters Edition IV|30|U|{W}|Instant||| +Atog|Masters Edition IV|109|C|{1}{R}|Creature — Atog|1|2| +Floodwater Dam|Masters Edition IV|200|R|{3}|Artifact||| +War Mammoth|Masters Edition IV|172|C|{3}{G}|Creature — Elephant|3|3| +Soul Shred|Masters Edition IV|98|C|{3}{B}{B}|Sorcery||| +Dread Wight|Masters Edition IV|79|U|{3}{B}{B}|Creature — Zombie|3|4| +Triassic Egg|Masters Edition IV|235|R|{4}|Artifact||| +Time Vault|Masters Edition IV|234|R|{2}|Artifact||| +Goblin Firestarter|Masters Edition IV|120|C|{R}|Creature — Goblin|1|1| +Stasis|Masters Edition IV|64|R|{1}{U}|Enchantment||| +Spotted Griffin|Masters Edition IV|28|C|{3}{W}|Creature — Griffin|2|3| +Bottle of Suleiman|Masters Edition IV|184|R|{4}|Artifact||| +Goblin General|Masters Edition IV|121|U|{1}{R}{R}|Creature — Goblin Warrior|1|1| +Angelic Voices|Masters Edition IV|3|U|{2}{W}{W}|Enchantment||| +Deathgrip|Masters Edition IV|75|R|{B}{B}|Enchantment||| +Goblin Warrens|Masters Edition IV|123|U|{2}{R}|Enchantment||| +Energy Flux|Masters Edition IV|48|U|{2}{U}|Enchantment||| +Serra Bestiary|Masters Edition IV|27|C|{W}{W}|Enchantment — Aura||| +Drop of Honey|Masters Edition IV|150|R|{G}|Enchantment||| +Lich|Masters Edition IV|89|R|{B}{B}{B}{B}|Enchantment||| +Ring of Renewal|Masters Edition IV|224|R|{5}|Artifact||| +Divine Offering|Masters Edition IV|10|C|{1}{W}|Instant||| +Terror|Masters Edition IV|99|C|{1}{B}|Instant||| +Overwhelming Forces|Masters Edition IV|92|R|{6}{B}{B}|Sorcery||| +Personal Incarnation|Masters Edition IV|22|R|{3}{W}{W}{W}|Creature — Avatar Incarnation|6|6| +Roc of Kher Ridges|Masters Edition IV|132|U|{3}{R}|Creature — Bird|3|3| +Primitive Justice|Masters Edition IV|130|U|{1}{R}|Sorcery||| +Eye for an Eye|Masters Edition IV|12|R|{W}{W}|Instant||| +Fork|Masters Edition IV|116|R|{R}{R}|Instant||| +Ice Cauldron|Masters Edition IV|206|R|{4}|Artifact||| +Coral Helm|Masters Edition IV|194|U|{3}|Artifact||| +Owl Familiar|Masters Edition IV|54|C|{1}{U}|Creature — Bird|1|1| +Kormus Bell|Masters Edition IV|210|R|{4}|Artifact||| +Sol Ring|Masters Edition IV|227|R|{1}|Artifact||| +Balance|Masters Edition IV|6|R|{1}{W}|Sorcery||| +Mijae Djinn|Masters Edition IV|127|R|{R}{R}{R}|Creature — Djinn|6|3| +Demonic Hordes|Masters Edition IV|76|R|{3}{B}{B}{B}|Creature — Demon|5|5| +Pentagram of the Ages|Masters Edition IV|220|U|{4}|Artifact||| +Aesthir Glider|Masters Edition IV|176|C|{3}|Artifact Creature — Bird|2|1| +Detonate|Masters Edition IV|111|U|{X}{R}|Sorcery||| +Clay Statue|Masters Edition IV|189|U|{4}|Artifact Creature — Golem|3|1| +Scrubland|Masters Edition IV|251|R||Land — Plains Swamp||| +Gloom|Masters Edition IV|83|R|{2}{B}|Enchantment||| +Cyclopean Tomb|Masters Edition IV|195|R|{4}|Artifact||| +Mystic Decree|Masters Edition IV|53|U|{2}{U}{U}|World Enchantment||| +Blue Elemental Blast|Masters Edition IV|39|U|{U}|Instant||| +Oasis|Masters Edition IV|248|C||Land||| +Soldevi Machinist|Masters Edition IV|63|U|{1}{U}|Creature — Human Wizard Artificer|1|1| +Ebony Rhino|Masters Edition IV|199|C|{7}|Artifact Creature — Rhino|4|5| +Ebony Horse|Masters Edition IV|198|C|{3}|Artifact||| +Righteous Charge|Masters Edition IV|23|C|{1}{W}{W}|Sorcery||| +Serra Aviary|Masters Edition IV|26|U|{3}{W}|World Enchantment||| +Giant Growth|Masters Edition IV|156|C|{G}|Instant||| +Fastbond|Masters Edition IV|152|R|{G}|Enchantment||| +Glasses of Urza|Masters Edition IV|203|C|{1}|Artifact||| +Drain Power|Masters Edition IV|46|R|{U}{U}|Sorcery||| +Cyclone|Masters Edition IV|148|R|{2}{G}{G}|Enchantment||| +Gate to Phyrexia|Masters Edition IV|82|U|{B}{B}|Enchantment||| +Underground Sea|Masters Edition IV|256|R||Land — Island Swamp||| +Fire Tempest|Masters Edition IV|114|R|{5}{R}{R}|Sorcery||| +Mana Vault|Masters Edition IV|214|R|{1}|Artifact||| +Guardian Beast|Masters Edition IV|85|R|{3}{B}|Creature — Beast|2|4| +Dust to Dust|Masters Edition IV|11|U|{1}{W}{W}|Sorcery||| +Conversion|Masters Edition IV|9|R|{2}{W}{W}|Enchantment||| +Thunder Dragon|Masters Edition IV|138|R|{5}{R}{R}|Creature — Dragon|5|5| +Just Fate|Masters Edition IV|16|C|{2}{W}|Instant||| +Serendib Djinn|Masters Edition IV|61|R|{2}{U}{U}|Creature — Djinn|5|6| +Horn of Deafening|Masters Edition IV|205|U|{4}|Artifact||| +Yotian Soldier|Masters Edition IV|240|C|{3}|Artifact Creature — Soldier|1|4| +False Summoning|Masters Edition IV|49|C|{1}{U}|Instant||| +Cyclopean Mummy|Masters Edition IV|72|C|{1}{B}|Creature — Zombie|2|1| +Two-Headed Giant of Foriys|Masters Edition IV|139|U|{4}{R}|Creature — Giant|4|4| +Bird Maiden|Masters Edition IV|110|C|{2}{R}|Creature — Human Bird|1|2| +Drowned|Masters Edition IV|47|C|{1}{U}|Creature — Zombie|1|1| +Wood Elemental|Masters Edition IV|175|R|{3}{G}|Creature — Elemental|*|*| +Island Sanctuary|Masters Edition IV|15|R|{1}{W}|Enchantment||| +Southern Elephant|Masters Edition IV|167|C|{3}{G}|Creature — Elephant|3|4| +Wheel of Fortune|Masters Edition IV|140|R|{2}{R}|Sorcery||| +Serra Angel|Masters Edition IV|25|U|{3}{W}{W}|Creature — Angel|4|4| +Gorilla War Cry|Masters Edition IV|124|C|{1}{R}|Instant||| +Xenic Poltergeist|Masters Edition IV|104|U|{1}{B}{B}|Creature — Spirit|1|1| +Jade Monolith|Masters Edition IV|208|R|{4}|Artifact||| +Basalt Monolith|Masters Edition IV|182|U|{3}|Artifact||| +Power Artifact|Masters Edition IV|57|R|{U}{U}|Enchantment — Aura||| +Amulet of Kroog|Masters Edition IV|179|C|{2}|Artifact||| +Temple Acolyte|Masters Edition IV|31|C|{1}{W}|Creature — Human Cleric|1|3| +Soldevi Golem|Masters Edition IV|228|U|{4}|Artifact Creature — Golem|5|3| +Titania's Song|Masters Edition IV|170|R|{3}{G}|Enchantment||| +Savannah|Masters Edition IV|250|R||Land — Forest Plains||| +Instill Energy|Masters Edition IV|157|U|{G}|Enchantment — Aura||| +Book of Rass|Masters Edition IV|183|U|{6}|Artifact||| +Fire Imp|Masters Edition IV|113|U|{2}{R}|Creature — Imp|2|1| +Primal Clay|Masters Edition IV|222|C|{4}|Artifact Creature — Shapeshifter|*|*| +Wild Aesthir|Masters Edition IV|34|C|{2}{W}|Creature — Bird|1|1| +Mishra's Workshop|Masters Edition IV|247|R||Land||| +Symbol of Unsummoning|Masters Edition IV|65|C|{2}{U}|Sorcery||| +Reconstruction|Masters Edition IV|59|C|{U}|Sorcery||| +Shapeshifter|Masters Edition IV|226|U|{6}|Artifact Creature — Shapeshifter|*|7-*| +Crumble|Masters Edition IV|147|C|{G}|Instant||| +Veteran Bodyguard|Masters Edition IV|32|R|{3}{W}{W}|Creature — Human|2|5| +Goblin Shrine|Masters Edition IV|122|C|{1}{R}{R}|Enchantment — Aura||| +Rock Hydra|Masters Edition IV|133|R|{X}{R}{R}|Creature — Hydra|0|0| +Howl from Beyond|Masters Edition IV|87|C|{X}{B}|Instant||| +Argothian Pixies|Masters Edition IV|142|C|{1}{G}|Creature — Faerie|2|1| +Tetravus|Masters Edition IV|233|R|{6}|Artifact Creature — Construct|1|1| +Word of Command|Masters Edition IV|103|R|{B}{B}|Instant||| +Rockslide Ambush|Masters Edition IV|134|C|{1}{R}|Sorcery||| +Channel|Masters Edition IV|145|R|{G}{G}|Sorcery||| +Gravebind|Masters Edition IV|84|C|{B}|Instant||| +Celestial Sword|Masters Edition IV|188|U|{6}|Artifact||| +Kudzu|Masters Edition IV|159|U|{1}{G}{G}|Enchantment — Aura||| +Obelisk of Undoing|Masters Edition IV|217|R|{1}|Artifact||| +Bayou|Masters Edition IV|242|R||Land — Swamp Forest||| +Junϊn Efreet|Masters Edition IV|88|U|{1}{B}{B}|Creature — Efreet|3|3| +Staff of Zegon|Masters Edition IV|229|C|{4}|Artifact||| +Goblin Cavaliers|Masters Edition IV|118|C|{2}{R}|Creature — Goblin|3|2| +Bronze Horse|Masters Edition IV|186|U|{7}|Artifact Creature — Horse|4|4| +Copy Artifact|Masters Edition IV|44|R|{1}{U}|Enchantment||| +Plateau|Masters Edition IV|249|R||Land — Mountain Plains||| +Planar Gate|Masters Edition IV|221|U|{6}|Artifact||| +Lava Flow|Masters Edition IV|126|C|{3}{R}{R}|Sorcery||| +Scarecrow|Masters Edition IV|225|U|{5}|Artifact Creature — Scarecrow|2|2| +Transmute Artifact|Masters Edition IV|69|R|{U}{U}|Sorcery||| +Fog|Masters Edition IV|153|C|{G}|Instant||| +Clockwork Swarm|Masters Edition IV|192|C|{4}|Artifact Creature — Insect|0|3| +Ali from Cairo|Masters Edition IV|107|R|{2}{R}{R}|Creature — Human|0|1| +Ashnod's Altar|Masters Edition IV|181|R|{3}|Artifact||| +Diabolic Machine|Masters Edition IV|196|U|{7}|Artifact Creature — Construct|4|4| +Obsianus Golem|Masters Edition IV|218|C|{6}|Artifact Creature — Golem|4|6| +Citanul Druid|Masters Edition IV|146|C|{1}{G}|Creature — Human Druid|1|1| +Badlands|Masters Edition IV|241|R||Land — Swamp Mountain||| +Candelabra of Tawnos|Masters Edition IV|187|R|{1}|Artifact||| +Demonic Tutor|Masters Edition IV|77|R|{1}{B}|Sorcery||| +Gauntlet of Might|Masters Edition IV|202|R|{4}|Artifact||| +Dissipation Field|Scars of Mirrodin|32|R|{2}{U}{U}|Enchantment||| +Tel-Jilad Defiance|Scars of Mirrodin|129|C|{1}{G}|Instant||| +Bonds of Quicksilver|Scars of Mirrodin|29|C|{3}{U}|Enchantment — Aura||| +Corrupted Harvester|Scars of Mirrodin|59|U|{4}{B}{B}|Creature — Horror|6|3| +Arm with Ζther|New Phyrexia|28|U|{2}{U}|Sorcery||| +Riddlesmith|Scars of Mirrodin|40|U|{1}{U}|Creature — Human Artificer|2|1| +Alpha Tyrranax|Scars of Mirrodin|109|C|{4}{G}{G}|Creature — Beast|6|5| +Wall of Tanglecord|Scars of Mirrodin|222|C|{2}|Artifact Creature — Wall|0|6| +Necrogen Scudder|Scars of Mirrodin|71|U|{2}{B}|Creature — Horror|3|3| +Throne of Geth|Scars of Mirrodin|211|U|{2}|Artifact||| +Trigon of Corruption|Scars of Mirrodin|213|U|{4}|Artifact||| +Blistergrub|Scars of Mirrodin|56|C|{2}{B}|Creature — Horror|2|2| +Skinrender|Scars of Mirrodin|78|U|{2}{B}{B}|Creature — Zombie|3|3| +Forest|Duel Decks: Garruk vs. Liliana|31|L||Basic Land — Forest||| +Forest|Duel Decks: Garruk vs. Liliana|29|L||Basic Land — Forest||| +Forest|Duel Decks: Garruk vs. Liliana|28|L||Basic Land — Forest||| +Forest|Duel Decks: Garruk vs. Liliana|30|L||Basic Land — Forest||| +Swamp|Duel Decks: Garruk vs. Liliana|62|L||Basic Land — Swamp||| +Swamp|Duel Decks: Garruk vs. Liliana|61|L||Basic Land — Swamp||| +Swamp|Duel Decks: Garruk vs. Liliana|60|L||Basic Land — Swamp||| +Swamp|Duel Decks: Garruk vs. Liliana|63|L||Basic Land — Swamp||| +Wild Evocation|Magic 2011|160|R|{5}{R}|Enchantment||| +Thunder Strike|Magic 2011|157|C|{1}{R}|Instant||| +Harbor Serpent|Magic 2011|56|C|{4}{U}{U}|Creature — Serpent|5|5| +Angelic Arbiter|Magic 2011|4|R|{5}{W}{W}|Creature — Angel|5|6| +Sylvan Ranger|Magic 2011|198|C|{1}{G}|Creature — Elf Scout|1|1| +Mass Polymorph|Magic 2011|64|R|{5}{U}|Sorcery||| +Mystifying Maze|Magic 2011|226|R||Land||| +Dark Tutelage|Magic 2011|90|R|{2}{B}|Enchantment||| +Ancient Hellkite|Magic 2011|122|R|{4}{R}{R}{R}|Creature — Dragon|6|6| +Mana Leak|Magic 2011|62|C|{1}{U}|Instant||| +Conundrum Sphinx|Magic 2011|51|R|{2}{U}{U}|Creature — Sphinx|4|4| +Wall of Vines|Magic 2011|199|C|{G}|Creature — Plant Wall|0|3| +Azure Drake|Magic 2011|46|C|{3}{U}|Creature — Drake|2|4| +Gargoyle Sentinel|Magic 2011|207|U|{3}|Artifact Creature — Gargoyle|3|3| +Earth Servant|Magic 2011|134|U|{5}{R}|Creature — Elemental|4|4| +Ajani's Mantra|Magic 2011|2|C|{1}{W}|Enchantment||| +Knight Exemplar|Magic 2011|20|R|{1}{W}{W}|Creature — Human Knight|2|2| +Serra Ascendant|Magic 2011|28|R|{W}|Creature — Human Monk|1|1| +Arc Runner|Magic 2011|123|C|{2}{R}|Creature — Elemental Ox|5|1| +Fire Servant|Magic 2011|137|U|{3}{R}{R}|Creature — Elemental|4|3| +Leyline of Sanctity|Magic 2011|21|R|{2}{W}{W}|Enchantment||| +Nether Horror|Magic 2011|108|C|{3}{B}|Creature — Horror|4|2| +Primal Cocoon|Magic 2011|191|C|{G}|Enchantment — Aura||| +Cultivate|Magic 2011|168|C|{2}{G}|Sorcery||| +Armored Ascension|Magic 2011|5|U|{3}{W}|Enchantment — Aura||| +Liliana's Specter|Magic 2011|104|C|{1}{B}{B}|Creature — Specter|2|1| +Frost Titan|Magic 2011|55|M|{4}{U}{U}|Creature — Giant|6|6| +Tome Scour|Magic 2011|76|C|{U}|Sorcery||| +Barony Vampire|Magic 2011|82|C|{2}{B}|Creature — Vampire|3|2| +Brittle Effigy|Magic 2011|202|R|{1}|Artifact||| +Overwhelming Stampede|Magic 2011|189|R|{3}{G}{G}|Sorcery||| +Scroll Thief|Magic 2011|72|C|{2}{U}|Creature — Merfolk Rogue|1|3| +Haunting Echoes|Magic 2011|99|R|{3}{B}{B}|Sorcery||| +Water Servant|Magic 2011|80|U|{2}{U}{U}|Creature — Elemental|3|4| +Bloodcrazed Goblin|Magic 2011|125|C|{R}|Creature — Goblin Berserker|2|2| +Leyline of Anticipation|Magic 2011|61|R|{2}{U}{U}|Enchantment||| +Merfolk Spy|Magic 2011|66|C|{U}|Creature — Merfolk Rogue|1|1| +Mind Rot|Magic 2011|105|C|{2}{B}|Sorcery||| +Combust|Magic 2011|130|U|{1}{R}|Instant||| +Grave Titan|Magic 2011|97|M|{4}{B}{B}|Creature — Giant|6|6| +Leyline of the Void|Magic 2011|101|R|{2}{B}{B}|Enchantment||| +Tireless Missionaries|Magic 2011|36|C|{4}{W}|Creature — Human Cleric|2|3| +Jace's Ingenuity|Magic 2011|60|U|{3}{U}{U}|Instant||| +Greater Basilisk|Magic 2011|180|C|{3}{G}{G}|Creature — Basilisk|3|5| +Phantom Beast|Magic 2011|69|C|{3}{U}|Creature — Illusion Beast|4|5| +Leyline of Punishment|Magic 2011|148|R|{2}{R}{R}|Enchantment||| +Preordain|Magic 2011|70|C|{U}|Sorcery||| +Ζther Adept|Magic 2011|41|C|{1}{U}{U}|Creature — Human Wizard|2|2| +Time Reversal|Magic 2011|75|M|{3}{U}{U}|Sorcery||| +Sacred Wolf|Magic 2011|196|C|{2}{G}|Creature — Wolf|3|1| +Duress|Magic 2011|96|C|{B}|Sorcery||| +Garruk's Companion|Magic 2011|176|C|{G}{G}|Creature — Beast|3|2| +Chandra's Spitfire|Magic 2011|129|U|{2}{R}|Creature — Elemental|1|3| +Primeval Titan|Magic 2011|192|M|{4}{G}{G}|Creature — Giant|6|6| +Quag Sickness|Magic 2011|111|C|{2}{B}|Enchantment — Aura||| +Stormtide Leviathan|Magic 2011|74|R|{5}{U}{U}{U}|Creature — Leviathan|8|8| +Sun Titan|Magic 2011|35|M|{4}{W}{W}|Creature — Giant|6|6| +Leyline of Vitality|Magic 2011|183|R|{2}{G}{G}|Enchantment||| +Mitotic Slime|Magic 2011|185|R|{4}{G}|Creature — Ooze|4|4| +Gaea's Revenge|Magic 2011|174|M|{5}{G}{G}|Creature — Elemental|8|5| +Phylactery Lich|Magic 2011|110|R|{B}{B}{B}|Creature — Zombie|5|5| +Liliana's Caress|Magic 2011|103|U|{1}{B}|Enchantment||| +Steel Overseer|Magic 2011|214|R|{2}|Artifact Creature — Construct|1|1| +Hunters' Feast|Magic 2011|182|C|{3}{G}|Sorcery||| +Reverberate|Magic 2011|155|R|{R}{R}|Instant||| +Brindle Boar|Magic 2011|166|C|{2}{G}|Creature — Boar|2|2| +Maritime Guard|Magic 2011|63|C|{1}{U}|Creature — Merfolk Soldier|1|3| +Captivating Vampire|Magic 2011|87|R|{1}{B}{B}|Creature — Vampire|2|2| +Inferno Titan|Magic 2011|146|M|{4}{R}{R}|Creature — Giant|6|6| +Jace's Erasure|Magic 2011|59|C|{1}{U}|Enchantment||| +Sword of Vengeance|Magic 2011|216|R|{3}|Artifact — Equipment||| +Incite|Magic 2011|145|C|{R}|Instant||| +Destructive Force|Magic 2011|133|R|{5}{R}{R}|Sorcery||| +Rotting Legion|Magic 2011|115|C|{4}{B}|Creature — Zombie|4|5| +Stabbing Pain|Magic 2011|118|C|{B}|Instant||| +Crystal Ball|Magic 2011|203|U|{3}|Artifact||| +Hornet Sting|Magic 2011|181|C|{G}|Instant||| +Autumn's Veil|Magic 2011|162|U|{G}|Instant||| +Goblin Piker|Magic 2011|142|C|{1}{R}|Creature — Goblin Warrior|2|1| +Berserkers of Blood Ridge|Magic 2011|124|C|{4}{R}|Creature — Human Berserker|4|4| +Blood Tithe|Magic 2011|84|C|{3}{B}|Sorcery||| +Roc Egg|Magic 2011|25|U|{2}{W}|Creature — Bird|0|3| +Stone Golem|Magic 2011|215|U|{5}|Artifact Creature — Golem|4|4| +Warlord's Axe|Magic 2011|220|U|{3}|Artifact — Equipment||| +Temple Bell|Magic 2011|217|R|{3}|Artifact||| +Fauna Shaman|Magic 2011|172|R|{1}{G}|Creature — Elf Shaman|2|2| +Garruk's Packleader|Magic 2011|177|U|{4}{G}|Creature — Beast|4|4| +Elixir of Immortality|Magic 2011|206|U|{1}|Artifact||| +Plummet|Magic 2011|190|C|{1}{G}|Instant||| +Fog|Magic 2011|173|C|{G}|Instant||| +Ajani's Pridemate|Magic 2011|3|U|{1}{W}|Creature — Cat Soldier|2|2| +Reassembling Skeleton|Magic 2011|112|U|{1}{B}|Creature — Skeleton Warrior|1|1| +Pyretic Ritual|Magic 2011|153|C|{1}{R}|Instant||| +Foresee|Magic 2011|54|C|{3}{U}|Sorcery||| +Sorcerer's Strongbox|Magic 2011|213|U|{4}|Artifact||| +Air Servant|Magic 2011|42|U|{4}{U}|Creature — Elemental|4|3| +Chandra's Outrage|Magic 2011|128|C|{2}{R}{R}|Instant||| +Act of Treason|Magic 2011|121|C|{2}{R}|Sorcery||| +Alluring Siren|Magic 2011|43|U|{1}{U}|Creature — Siren|1|1| +Inspired Charge|Magic 2011|19|C|{2}{W}{W}|Instant||| +Obstinate Baloth|Magic 2011|188|R|{2}{G}{G}|Creature — Beast|4|4| +Awakener Druid|Magic 2011|163|U|{2}{G}|Creature — Human Druid|1|1| +Baneslayer Angel|Magic 2011|7|M|{3}{W}{W}|Creature — Angel|5|5| +Relentless Rats|Magic 2011|113|U|{1}{B}{B}|Creature — Rat|2|2| +Armored Cancrix|Magic 2011|44|C|{4}{U}|Creature — Crab|2|5| +Cudgel Troll|Magic 2011|167|U|{2}{G}{G}|Creature — Troll|4|3| +Doom Blade|Magic 2011|95|C|{1}{B}|Instant||| +Dragonskull Summit|Magic 2011|223|R||Land||| +Drowned Catacomb|Magic 2011|224|R||Land||| +Elvish Archdruid|Magic 2011|171|R|{1}{G}{G}|Creature — Elf Druid|2|2| +Fiery Hellhound|Magic 2011|136|C|{1}{R}{R}|Creature — Elemental Hound|2|2| +Glacial Fortress|Magic 2011|225|R||Land||| +Solemn Offering|Magic 2011|32|C|{2}{W}|Sorcery||| +Goblin Chieftain|Magic 2011|141|R|{1}{R}{R}|Creature — Goblin|2|2| +Condemn|Magic 2011|11|U|{W}|Instant||| +Honor of the Pure|Magic 2011|17|R|{1}{W}|Enchantment||| +Howling Banshee|Magic 2011|100|U|{2}{B}{B}|Creature — Spirit|3|3| +Ice Cage|Magic 2011|57|C|{1}{U}|Enchantment — Aura||| +Cyclops Gladiator|Magic 2011|131|R|{1}{R}{R}{R}|Creature — Cyclops Warrior|4|4| +Merfolk Sovereign|Magic 2011|65|R|{1}{U}{U}|Creature — Merfolk|2|2| +Dryad's Favor|Magic 2011|169|C|{G}|Enchantment — Aura||| +Palace Guard|Magic 2011|24|C|{2}{W}|Creature — Human Soldier|1|4| +Prized Unicorn|Magic 2011|193|U|{3}{G}|Creature — Unicorn|2|2| +Protean Hydra|Magic 2011|194|R|{X}{G}|Creature — Hydra|0|0| +Rise from the Grave|Magic 2011|114|U|{4}{B}|Sorcery||| +Rootbound Crag|Magic 2011|227|R||Land||| +Safe Passage|Magic 2011|26|C|{2}{W}|Instant||| +Lava Axe|Magic 2011|147|C|{4}{R}|Sorcery||| +Sign in Blood|Magic 2011|117|C|{B}{B}|Sorcery||| +Silence|Magic 2011|30|R|{W}|Instant||| +Sleep|Magic 2011|73|U|{2}{U}{U}|Sorcery||| +Child of Night|Magic 2011|88|C|{1}{B}|Creature — Vampire|2|1| +Spined Wurm|Magic 2011|197|C|{4}{G}|Creature — Wurm|5|4| +Sunpetal Grove|Magic 2011|228|R||Land||| +Wall of Frost|Magic 2011|79|U|{1}{U}{U}|Creature — Wall|0|7| +Demon of Death's Gate|Magic 2011|92|M|{6}{B}{B}{B}|Creature — Demon|9|9| +Assassinate|Magic 2011|81|C|{2}{B}|Sorcery||| +Black Knight|Magic 2011|83|U|{B}{B}|Creature — Human Knight|2|2| +Blinding Mage|Magic 2011|8|C|{1}{W}|Creature — Human Wizard|1|2| +Clone|Magic 2011|49|R|{3}{U}|Creature — Shapeshifter|0|0| +Yavimaya Wurm|Magic 2011|200|C|{4}{G}{G}|Creature — Wurm|6|4| +Diabolic Tutor|Magic 2011|93|U|{2}{B}{B}|Sorcery||| +Fireball|Magic 2011|138|U|{X}{R}|Sorcery||| +Giant Growth|Magic 2011|178|C|{G}|Instant||| +Giant Spider|Magic 2011|179|C|{3}{G}|Creature — Spider|2|4| +Holy Strength|Magic 2011|16|C|{W}|Enchantment — Aura||| +Lightning Bolt|Magic 2011|149|C|{R}|Instant||| +Llanowar Elves|Magic 2011|184|C|{G}|Creature — Elf Druid|1|1| +Nantuko Shade|Magic 2011|106|R|{B}{B}|Creature — Insect Shade|2|1| +Juggernaut|Magic 2011|209|U|{4}|Artifact Creature — Juggernaut|5|3| +Prodigal Pyromancer|Magic 2011|152|U|{2}{R}|Creature — Human Wizard|1|1| +Viscera Seer|Magic 2011|120|C|{B}|Creature — Vampire Wizard|1|1| +Royal Assassin|Magic 2011|116|R|{1}{B}{B}|Creature — Human Assassin|1|1| +Serra Angel|Magic 2011|27|U|{3}{W}{W}|Creature — Angel|4|4| +Hoarding Dragon|Magic 2011|144|R|{3}{R}{R}|Creature — Dragon|4|4| +Terramorphic Expanse|Magic 2011|229|C||Land||| +Unholy Strength|Magic 2011|119|C|{B}|Enchantment — Aura||| +Bloodthrone Vampire|Magic 2011|85|C|{1}{B}|Creature — Vampire|1|1| +White Knight|Magic 2011|39|U|{W}{W}|Creature — Human Knight|2|2| +Ascendant Evincar|Planechase|17|R|{4}{B}{B}|Legendary Creature — Vampire|3|3| +Blaze|Planechase|47|U|{X}{R}|Sorcery||| +Bogardan Firefiend|Planechase|48|C|{2}{R}|Creature — Elemental Spirit|2|1| +Cone of Flame|Planechase|52|U|{3}{R}{R}|Sorcery||| +Festering Goblin|Planechase|27|C|{B}|Creature — Zombie Goblin|1|1| +Furnace of Rath|Planechase|55|R|{1}{R}{R}{R}|Enchantment||| +Grave Pact|Planechase|28|R|{1}{B}{B}{B}|Enchantment||| +Loxodon Warhammer|Planechase|118|R|{3}|Artifact — Equipment||| +Relentless Assault|Planechase|62|R|{2}{R}{R}|Sorcery||| +Verdant Force|Planechase|81|R|{5}{G}{G}{G}|Creature — Elemental|7|7| +Forgotten Ancient|Planechase|73|R|{3}{G}|Creature — Elemental|0|3| +Nefashu|Planechase|34|R|{4}{B}{B}|Creature — Zombie Mutant|5|3| +Ancient Den|Planechase|130|C||Artifact Land||| +Bosh, Iron Golem|Planechase|108|R|{8}|Legendary Artifact Creature — Golem|6|7| +Broodstar|Planechase|8|R|{8}{U}{U}|Creature — Beast|*|*| +Copper Myr|Planechase|109|C|{2}|Artifact Creature — Myr|1|1| +Forest|Planechase|169|L||Basic Land — Forest||| +Gold Myr|Planechase|114|C|{2}|Artifact Creature — Myr|1|1| +Great Furnace|Planechase|133|C||Artifact Land||| +Iron Myr|Planechase|115|C|{2}|Artifact Creature — Myr|1|1| +Island|Planechase|147|L||Basic Land — Island||| +Island|Planechase|148|L||Basic Land — Island||| +Island|Planechase|149|L||Basic Land — Island||| +Island|Planechase|150|L||Basic Land — Island||| +Leaden Myr|Planechase|116|C|{2}|Artifact Creature — Myr|1|1| +Lodestone Myr|Planechase|117|R|{4}|Artifact Creature — Myr|2|2| +Mountain|Planechase|160|L||Basic Land — Mountain||| +Myr Enforcer|Planechase|120|C|{7}|Artifact Creature — Myr|4|4| +Nuisance Engine|Planechase|121|U|{3}|Artifact||| +Pentavus|Planechase|123|R|{7}|Artifact Creature — Construct|0|0| +Plains|Planechase|142|L||Basic Land — Plains||| +Seat of the Synod|Planechase|136|C||Artifact Land||| +Serum Tank|Planechase|125|U|{3}|Artifact||| +Silver Myr|Planechase|126|C|{2}|Artifact Creature — Myr|1|1| +Skeleton Shard|Planechase|127|U|{3}|Artifact||| +Swamp|Planechase|151|L||Basic Land — Swamp||| +Thirst for Knowledge|Planechase|14|U|{2}{U}|Instant||| +Tree of Tales|Planechase|140|C||Artifact Land||| +Vault of Whispers|Planechase|141|C||Artifact Land||| +Wizard Replica|Planechase|129|C|{3}|Artifact Creature — Wizard|1|3| +Living Hive|Planechase|75|R|{6}{G}{G}|Creature — Elemental Insect|6|6| +Mask of Memory|Planechase|119|U|{2}|Artifact — Equipment||| +Arsenal Thresher|Planechase|96|C|{2}{WB}{U}|Artifact Creature — Construct|2|2| +Glory of Warfare|Planechase|88|R|{2}{R}{W}|Enchantment||| +Mage Slayer|Planechase|91|U|{1}{R}{G}|Artifact — Equipment||| +Branching Bolt|Planechase|83|C|{1}{R}{G}|Instant||| +Bull Cerodon|Planechase|84|U|{4}{R}{W}|Creature — Beast|5|5| +Death Baron|Planechase|25|R|{1}{B}{B}|Creature — Zombie Wizard|2|2| +Dregscape Zombie|Planechase|26|C|{1}{B}|Creature — Zombie|2|1| +Master of Etherium|Planechase|11|R|{2}{U}|Artifact Creature — Vedalken Wizard|*|*| +Relic of Progenitus|Planechase|124|C|{1}|Artifact||| +Rockslide Elemental|Planechase|63|U|{2}{R}|Creature — Elemental|1|1| +Cranial Plating|Planechase|110|C|{2}|Artifact — Equipment||| +Door to Nothingness|Planechase|112|R|{5}|Artifact||| +Etched Oracle|Planechase|113|U|{4}|Artifact Creature — Wizard|0|0| +Pentad Prism|Planechase|122|C|{2}|Artifact||| +Qumulox|Planechase|12|U|{6}{U}{U}|Creature — Beast|5|4| +Tornado Elemental|Planechase|79|R|{5}{G}{G}|Creature — Elemental|6|6| +Suntouched Myr|Planechase|128|C|{3}|Artifact Creature — Myr|0|0| +Arcbound Crusher|Planechase|105|U|{4}|Artifact Creature — Juggernaut|0|0| +Arcbound Slith|Planechase|106|U|{2}|Artifact Creature — Slith|0|0| +Darksteel Forge|Planechase|111|R|{9}|Artifact||| +Vedalken Engineer|Planechase|15|C|{1}{U}|Creature — Vedalken Artificer|1|1| +Sarcomite Myr|Planechase|13|C|{2}{U}|Artifact Creature — Myr|2|1| +Beast Hunt|Planechase|68|C|{3}{G}|Sorcery||| +Hideous End|Planechase|31|C|{1}{B}{B}|Instant||| +Kor Sanctifiers|Planechase|3|C|{2}{W}|Creature — Kor Cleric|2|3| +Whiplash Trap|Planechase|16|C|{3}{U}{U}|Instant — Trap||| +Rotting Rats|Planechase|39|C|{1}{B}|Creature — Zombie Rat|1|1| +Sludge Strider|Planechase|95|U|{1}{W}{U}{B}|Artifact Creature — Insect|3|3| +Keep Watch|Planechase|10|C|{2}{U}|Instant||| +Consume Spirit|Planechase|21|U|{X}{1}{B}|Sorcery||| +Fabricate|Planechase|9|U|{2}{U}|Sorcery||| +Gravedigger|Planechase|29|C|{3}{B}|Creature — Zombie|2|2| +Rampant Growth|Planechase|76|C|{1}{G}|Sorcery||| +Soul Warden|Planechase|7|C|{W}|Creature — Human Cleric|1|1| +Terramorphic Expanse|Planechase|139|C||Land||| +Gruul Turf|Planechase|134|C||Land||| +Rumbling Slum|Planechase|93|R|{1}{R}{G}{G}|Creature — Elemental|5|5| +Savage Twister|Planechase|94|U|{X}{R}{G}|Sorcery||| +Boros Garrison|Planechase|131|C||Land||| +Boros Guildmage|Planechase|99|U|{RW}{RW}|Creature — Human Wizard|2|2| +Boros Signet|Planechase|107|C|{2}|Artifact||| +Boros Swiftblade|Planechase|82|U|{R}{W}|Creature — Human Soldier|1|2| +Helldozer|Planechase|30|R|{3}{B}{B}{B}|Creature — Zombie Giant|6|5| +Lightning Helix|Planechase|90|U|{R}{W}|Instant||| +Razia, Boros Archangel|Planechase|92|R|{4}{R}{R}{W}{W}|Legendary Creature — Angel|6|3| +Sunhome, Fortress of the Legion|Planechase|138|U||Land||| +Innocent Blood|Planechase|33|C|{B}|Sorcery||| +Reckless Charge|Planechase|61|C|{R}|Sorcery||| +Akroma's Vengeance|Planechase|1|R|{4}{W}{W}|Sorcery||| +Cruel Revival|Planechase|23|C|{4}{B}|Instant||| +Explosive Vegetation|Planechase|70|U|{3}{G}|Sorcery||| +Insurrection|Planechase|57|R|{5}{R}{R}{R}|Sorcery||| +Menacing Ogre|Planechase|59|R|{3}{R}{R}|Creature — Ogre|3|3| +Rorix Bladewing|Planechase|65|R|{3}{R}{R}{R}|Legendary Creature — Dragon|6|5| +Shepherd of Rot|Planechase|40|C|{1}{B}|Creature — Zombie Cleric|1|1| +Soulless One|Planechase|41|U|{3}{B}|Creature — Zombie Avatar|*|*| +Syphon Mind|Planechase|42|C|{3}{B}|Sorcery||| +Syphon Soul|Planechase|43|C|{2}{B}|Sorcery||| +Tribal Unity|Planechase|80|U|{X}{2}{G}|Instant||| +Balefire Liege|Planechase|97|R|{2}{RW}{RW}{RW}|Creature — Spirit Horror|2|4| +Battlegate Mimic|Planechase|98|C|{1}{RW}|Creature — Shapeshifter|2|1| +Double Cleave|Planechase|100|C|{1}{RW}|Instant||| +Duergar Hedge-Mage|Planechase|101|U|{2}{RW}|Creature — Dwarf Shaman|2|2| +Hearthfire Hobgoblin|Planechase|102|U|{RW}{RW}{RW}|Creature — Goblin Soldier|2|2| +Captain's Maneuver|Planechase|85|U|{X}{R}{W}|Instant||| +Chaos|Planechase|104|U|{2}{R}|Instant||| +Orim's Thunder|Planechase|5|C|{2}{W}|Instant||| +Arc Lightning|Planechase|46|C|{2}{R}|Sorcery||| +Congregate|Planechase|2|C|{3}{W}|Instant||| +Goblin Offensive|Planechase|56|U|{X}{1}{R}{R}|Sorcery||| +Phyrexian Ghoul|Planechase|37|C|{2}{B}|Creature — Zombie|2|2| +Rolling Thunder|Planechase|64|C|{X}{R}{R}|Sorcery||| +Flametongue Kavu|Planechase|54|U|{3}{R}|Creature — Kavu|4|2| +Briarhorn|Planechase|69|U|{3}{G}|Creature — Elemental|3|3| +Fertile Ground|Planechase|71|C|{1}{G}|Enchantment — Aura||| +Flamekin Harbinger|Planechase|53|U|{R}|Creature — Elemental Shaman|1|1| +Oblivion Ring|Planechase|4|C|{2}{W}|Enchantment||| +Profane Command|Planechase|38|R|{X}{B}{B}|Sorcery||| +Smokebraider|Planechase|66|C|{1}{R}|Creature — Elemental Shaman|1|1| +Beseech the Queen|Planechase|19|U|{2B}{2B}{2B}|Sorcery||| +Incremental Blight|Planechase|32|U|{3}{B}{B}|Sorcery||| +Leechridden Swamp|Planechase|135|U||Land — Swamp||| +Prison Term|Planechase|6|U|{1}{W}{W}|Enchantment — Aura||| +Fertilid|Planechase|72|C|{2}{G}|Creature — Elemental|0|0| +Taurean Mauler|Planechase|67|R|{2}{R}|Creature — Shapeshifter|2|2| +Pyrotechnics|Planechase|60|U|{4}{R}|Sorcery||| +Shivan Oasis|Planechase|137|U||Land||| +Bogardan Rager|Planechase|49|C|{5}{R}|Creature — Elemental|3|4| +Search for Tomorrow|Planechase|77|C|{2}{G}|Sorcery||| +Battery|Planechase|103|U|{3}{G}|Sorcery||| +Undead Warchief|Planechase|44|U|{2}{B}{B}|Creature — Zombie|1|1| +Withered Wretch|Planechase|45|U|{B}{B}|Creature — Zombie Cleric|2|2| +Fires of Yavimaya|Planechase|87|U|{1}{R}{G}|Enchantment||| +Hull Breach|Planechase|89|C|{R}{G}|Sorcery||| +Cinder Elemental|Planechase|51|U|{3}{R}|Creature — Elemental|2|2| +Silverglade Elemental|Planechase|78|C|{4}{G}|Creature — Elemental|4|4| +Browbeat|Planechase|50|U|{2}{R}|Sorcery||| +Phyrexian Arena|Planechase|36|R|{1}{B}{B}|Enchantment||| +Beacon of Unrest|Planechase|18|R|{3}{B}{B}|Sorcery||| +Corpse Harvester|Planechase|22|U|{3}{B}{B}|Creature — Zombie Wizard|3|3| +Noxious Ghoul|Planechase|35|U|{3}{B}{B}|Creature — Zombie|3|3| +Cabal Coffers|Planechase|132|U||Land||| +Dark Ritual|Planechase|24|C|{B}|Instant||| +Cadaverous Knight|Planechase|20|C|{2}{B}|Creature — Zombie Knight|2|2| +Dread Statuary|Worldwake|135|U||Land||| +Plains|Planechase|144|L||Basic Land — Plains||| +Plains|Planechase|143|L||Basic Land — Plains||| +Mountain|Planechase|162|L||Basic Land — Mountain||| +Swamp|Planechase|153|L||Basic Land — Swamp||| +Mountain|Planechase|164|L||Basic Land — Mountain||| +Plains|Planechase|145|L||Basic Land — Plains||| +Plains|Planechase|146|L||Basic Land — Plains||| +Mountain|Planechase|163|L||Basic Land — Mountain||| +Swamp|Planechase|154|L||Basic Land — Swamp||| +Swamp|Planechase|152|L||Basic Land — Swamp||| +Swamp|Planechase|155|L||Basic Land — Swamp||| +Mountain|Planechase|161|L||Basic Land — Mountain||| +Forest|Planechase|165|L||Basic Land — Forest||| +Forest|Planechase|168|L||Basic Land — Forest||| +Forest|Planechase|166|L||Basic Land — Forest||| +Forest|Planechase|167|L||Basic Land — Forest||| +Mountain|Planechase|156|L||Basic Land — Mountain||| +Mountain|Planechase|159|L||Basic Land — Mountain||| +Mountain|Planechase|158|L||Basic Land — Mountain||| +Mountain|Planechase|157|L||Basic Land — Mountain||| +Golem's Heart|Scars of Mirrodin|161|U|{2}|Artifact||| +Trigon of Thought|Scars of Mirrodin|217|U|{5}|Artifact||| +Cystbearer|Scars of Mirrodin|117|C|{2}{G}|Creature — Beast|2|3| +Infiltration Lens|Scars of Mirrodin|167|U|{1}|Artifact — Equipment||| +Ratchet Bomb|Scars of Mirrodin|196|R|{2}|Artifact||| +Tel-Jilad Fallen|Scars of Mirrodin|130|C|{2}{G}{G}|Creature — Elf Warrior|3|1| +Soliton|Scars of Mirrodin|204|C|{5}|Artifact Creature — Construct|3|4| +Tangle Angler|Scars of Mirrodin|128|U|{3}{G}|Creature — Horror|1|5| +Blunt the Assault|Scars of Mirrodin|113|C|{3}{G}|Instant||| +Fulgent Distraction|Scars of Mirrodin|7|C|{2}{W}|Instant||| +Vigil for the Lost|Scars of Mirrodin|26|U|{3}{W}|Enchantment||| +Salvage Scout|Scars of Mirrodin|19|C|{W}|Creature — Human Scout|1|1| +Keldon Champion|Planechase|58|U|{2}{R}{R}|Creature — Human Barbarian|3|2| +Cerodon Yearling|Planechase|86|C|{R}{W}|Creature — Beast|2|2| +Lady Orca|Masters Edition III|159|C|{5}{B}{R}|Legendary Creature — Demon|7|4| +Sivitri Scarzam|Masters Edition III|175|C|{5}{U}{B}|Legendary Creature — Human|6|4| +Princess Lucrezia|Masters Edition III|166|U|{3}{U}{U}{B}|Legendary Creature — Human Wizard|5|4| +Tobias Andrion|Masters Edition III|181|C|{3}{W}{U}|Legendary Creature — Human Advisor|4|4| +Pavel Maliki|Masters Edition III|165|U|{4}{B}{R}|Legendary Creature — Human|5|3| +Mountain|Rise of the Eldrazi|243|L||Basic Land — Mountain||| +Plains|Rise of the Eldrazi|229|L||Basic Land — Plains||| +Mountain|Rise of the Eldrazi|242|L||Basic Land — Mountain||| +Forest|Rise of the Eldrazi|247|L||Basic Land — Forest||| +Plains|Rise of the Eldrazi|232|L||Basic Land — Plains||| +Leaf Arrow|Rise of the Eldrazi|194|C|{G}|Instant||| +Plains|Rise of the Eldrazi|231|L||Basic Land — Plains||| +Island|Rise of the Eldrazi|233|L||Basic Land — Island||| +Forest|Rise of the Eldrazi|246|L||Basic Land — Forest||| +Forest|Rise of the Eldrazi|245|L||Basic Land — Forest||| +Consuming Vapors|Rise of the Eldrazi|101|R|{3}{B}|Sorcery||| +Mountain|Rise of the Eldrazi|244|L||Basic Land — Mountain||| +Plains|Rise of the Eldrazi|230|L||Basic Land — Plains||| +Island|Rise of the Eldrazi|234|L||Basic Land — Island||| +Swamp|Rise of the Eldrazi|237|L||Basic Land — Swamp||| +Swamp|Rise of the Eldrazi|238|L||Basic Land — Swamp||| +Swamp|Rise of the Eldrazi|239|L||Basic Land — Swamp||| +Island|Rise of the Eldrazi|235|L||Basic Land — Island||| +Island|Rise of the Eldrazi|236|L||Basic Land — Island||| +Mountain|Rise of the Eldrazi|241|L||Basic Land — Mountain||| +Swamp|Rise of the Eldrazi|240|L||Basic Land — Swamp||| +Forest|Rise of the Eldrazi|248|L||Basic Land — Forest||| +Ajani Goldmane|Magic 2011|1|M|{2}{W}{W}|Planeswalker — Ajani||| +Chandra Nalaar|Magic 2011|127|M|{3}{R}{R}|Planeswalker — Chandra||| +Garruk Wildspeaker|Magic 2011|175|M|{2}{G}{G}|Planeswalker — Garruk||| +Jace Beleren|Magic 2011|58|M|{1}{U}{U}|Planeswalker — Jace||| +Liliana Vess|Magic 2011|102|M|{3}{B}{B}|Planeswalker — Liliana||| +Ivy Elemental|Planechase|74|R|{X}{G}|Creature — Elemental|0|0| +Desperate Charge|Masters Edition III|63|C|{2}{B}|Sorcery||| +Forest|Masters Edition III|228|L||Basic Land — Forest||| +Forest|Masters Edition III|229|L||Basic Land — Forest||| +Forest|Masters Edition III|230|L||Basic Land — Forest||| +Island|Masters Edition III|221|L||Basic Land — Island||| +Island|Masters Edition III|220|L||Basic Land — Island||| +Island|Masters Edition III|219|L||Basic Land — Island||| +Mountain|Masters Edition III|227|L||Basic Land — Mountain||| +Mountain|Masters Edition III|226|L||Basic Land — Mountain||| +Mountain|Masters Edition III|225|L||Basic Land — Mountain||| +Plains|Masters Edition III|217|L||Basic Land — Plains||| +Plains|Masters Edition III|218|L||Basic Land — Plains||| +Plains|Masters Edition III|216|L||Basic Land — Plains||| +Swamp|Masters Edition III|223|L||Basic Land — Swamp||| +Swamp|Masters Edition III|224|L||Basic Land — Swamp||| +Swamp|Masters Edition III|222|L||Basic Land — Swamp||| +Voodoo Doll|Masters Edition III|203|R|{6}|Artifact||| +Wei Infantry|Masters Edition III|80|C|{1}{B}|Creature — Human Soldier|2|1| +Angel's Feather|Magic 2011|201|U|{2}|Artifact||| +Demon's Horn|Magic 2011|204|U|{2}|Artifact||| +Dragon's Claw|Magic 2011|205|U|{2}|Artifact||| +Kraken's Eye|Magic 2011|210|U|{2}|Artifact||| +Platinum Angel|Magic 2011|212|M|{7}|Artifact Creature — Angel|4|4| +Wurm's Tooth|Magic 2011|222|U|{2}|Artifact||| +Ornithopter|Magic 2011|211|U|{0}|Artifact Creature — Thopter|0|2| +Voltaic Key|Magic 2011|219|U|{1}|Artifact||| +Whispersilk Cloak|Magic 2011|221|U|{3}|Artifact — Equipment||| +Arc Trail|Scars of Mirrodin|81|U|{1}{R}|Sorcery||| +Strider Harness|Scars of Mirrodin|207|C|{3}|Artifact — Equipment||| +Psychic Miasma|Scars of Mirrodin|76|C|{1}{B}|Sorcery||| +Shrine of Loyal Legions|New Phyrexia|155|U|{2}|Artifact||| +Precursor Golem|Scars of Mirrodin|194|R|{5}|Artifact Creature — Golem|3|3| +Whitesun's Passage|Scars of Mirrodin|27|C|{1}{W}|Instant||| +Steel Hellkite|Scars of Mirrodin|205|R|{6}|Artifact Creature — Dragon|5|5| +Bladed Pinions|Scars of Mirrodin|140|C|{2}|Artifact — Equipment||| +Carnifex Demon|Scars of Mirrodin|57|R|{4}{B}{B}|Creature — Demon|6|6| +Glint Hawk|Scars of Mirrodin|10|C|{W}|Creature — Bird|2|2| +Golem Artisan|Scars of Mirrodin|159|U|{5}|Artifact Creature — Golem|3|3| +Tunnel Ignus|Scars of Mirrodin|105|R|{1}{R}|Creature — Elemental|2|1| +Triskelion|Magic 2011|218|R|{6}|Artifact Creature — Construct|1|1| +Deathmark|Magic 2011|91|U|{B}|Sorcery||| +Disentomb|Magic 2011|94|C|{B}|Sorcery||| +Gravedigger|Magic 2011|98|C|{3}{B}|Creature — Zombie|2|2| +Nightwing Shade|Magic 2011|109|C|{4}{B}|Creature — Shade|2|2| +Necrotic Plague|Magic 2011|107|R|{2}{B}{B}|Enchantment — Aura||| +Bog Raiders|Magic 2011|86|C|{2}{B}|Creature — Zombie|2|2| +Corrupt|Magic 2011|89|U|{5}{B}|Sorcery||| +Acidic Slime|Magic 2011|161|U|{3}{G}{G}|Creature — Ooze|2|2| +Birds of Paradise|Magic 2011|165|R|{G}|Creature — Bird|0|1| +Duskdale Wurm|Magic 2011|170|U|{5}{G}{G}|Creature — Wurm|7|7| +Naturalize|Magic 2011|186|C|{1}{G}|Instant||| +Runeclaw Bear|Magic 2011|195|C|{1}{G}|Creature — Bear|2|2| +Nature's Spiral|Magic 2011|187|U|{1}{G}|Sorcery||| +Sylvok Lifestaff|Scars of Mirrodin|209|C|{1}|Artifact — Equipment||| +Scrapdiver Serpent|Scars of Mirrodin|41|C|{5}{U}{U}|Creature — Serpent|5|5| +Tower of Calamities|Scars of Mirrodin|212|R|{4}|Artifact||| +Darksteel Sentinel|Scars of Mirrodin|152|U|{6}|Artifact Creature — Golem|3|3| +Strata Scythe|Scars of Mirrodin|206|R|{3}|Artifact — Equipment||| +Putrefax|Scars of Mirrodin|126|R|{3}{G}{G}|Creature — Horror|5|3| +Quicksilver Gargantuan|Scars of Mirrodin|39|M|{5}{U}{U}|Creature — Shapeshifter|7|7| +Wurmcoil Engine|Scars of Mirrodin|223|M|{6}|Artifact Creature — Wurm|6|6| +Necrotic Ooze|Scars of Mirrodin|72|R|{2}{B}{B}|Creature — Ooze|4|3| +Genesis Wave|Scars of Mirrodin|122|R|{X}{G}{G}{G}|Sorcery||| +Mimic Vat|Scars of Mirrodin|175|R|{3}|Artifact||| +Grand Architect|Scars of Mirrodin|33|R|{1}{U}{U}|Creature — Vedalken Artificer|1|3| +Loxodon Wayfarer|Scars of Mirrodin|15|C|{2}{W}|Creature — Elephant Monk|1|5| +Urza's Rage|Duel Decks: Phyrexia vs. the Coalition|36|M|{2}{R}|Instant||| +Yavimaya Elder|Duel Decks: Phyrexia vs. the Coalition|44|C|{1}{G}{G}|Creature — Human Druid|2|1| +Phyrexian Processor|Duel Decks: Phyrexia vs. the Coalition|29|R|{4}|Artifact||| +Voltaic Key|Duel Decks: Phyrexia vs. the Coalition|17|U|{1}|Artifact||| +Armadillo Cloak|Duel Decks: Phyrexia vs. the Coalition|58|C|{1}{G}{W}|Enchantment — Aura||| +Phyrexian Negator|Duel Decks: Phyrexia vs. the Coalition|1|M|{2}{B}|Creature — Horror|5|5| +Acidic Sliver|Premium Deck Series: Slivers|13|U|{B}{R}|Creature — Sliver|2|2| +Armor Sliver|Premium Deck Series: Slivers|16|U|{2}{W}|Creature — Sliver|2|2| +Barbed Sliver|Premium Deck Series: Slivers|18|U|{2}{R}|Creature — Sliver|2|2| +Clot Sliver|Premium Deck Series: Slivers|5|C|{1}{B}|Creature — Sliver|1|1| +Crystalline Sliver|Premium Deck Series: Slivers|11|U|{W}{U}|Creature — Sliver|2|2| +Frenzy Sliver|Premium Deck Series: Slivers|6|C|{1}{B}|Creature — Sliver|1|1| +Fungus Sliver|Premium Deck Series: Slivers|21|R|{3}{G}|Creature — Fungus Sliver|2|2| +Fury Sliver|Premium Deck Series: Slivers|25|U|{5}{R}|Creature — Sliver|3|3| +Gemhide Sliver|Premium Deck Series: Slivers|8|C|{1}{G}|Creature — Sliver|1|1| +Heart Sliver|Premium Deck Series: Slivers|7|C|{1}{R}|Creature — Sliver|1|1| +Hibernation Sliver|Premium Deck Series: Slivers|12|U|{U}{B}|Creature — Sliver|2|2| +Homing Sliver|Premium Deck Series: Slivers|19|C|{2}{R}|Creature — Sliver|2|2| +Might Sliver|Premium Deck Series: Slivers|23|U|{4}{G}|Creature — Sliver|2|2| +Muscle Sliver|Premium Deck Series: Slivers|9|C|{1}{G}|Creature — Sliver|1|1| +Necrotic Sliver|Premium Deck Series: Slivers|20|U|{1}{W}{B}|Creature — Sliver|2|2| +Quick Sliver|Premium Deck Series: Slivers|10|C|{1}{G}|Creature — Sliver|1|1| +Sliver Overlord|Premium Deck Series: Slivers|24|M|{W}{U}{B}{R}{G}|Legendary Creature — Sliver Mutant|7|7| +Spectral Sliver|Premium Deck Series: Slivers|17|U|{2}{B}|Creature — Sliver Spirit|2|2| +Victual Sliver|Premium Deck Series: Slivers|15|U|{G}{W}|Creature — Sliver|2|2| +Virulent Sliver|Premium Deck Series: Slivers|2|C|{G}|Creature — Sliver|1|1| +Winged Sliver|Premium Deck Series: Slivers|4|C|{1}{U}|Creature — Sliver|1|1| +Amoeboid Changeling|Premium Deck Series: Slivers|3|C|{1}{U}|Creature — Shapeshifter|1|1| +Vivid Grove|Premium Deck Series: Slivers|36|U||Land||| +Heartstone|Premium Deck Series: Slivers|26|U|{3}|Artifact||| +Aphetto Dredging|Premium Deck Series: Slivers|28|C|{3}{B}|Sorcery||| +Distant Melody|Premium Deck Series: Slivers|27|C|{3}{U}|Sorcery||| +Coat of Arms|Premium Deck Series: Slivers|29|R|{5}|Artifact||| +Terramorphic Expanse|Premium Deck Series: Slivers|34|C||Land||| +Wild Pair|Premium Deck Series: Slivers|30|R|{4}{G}{G}|Enchantment||| +Ancient Ziggurat|Premium Deck Series: Slivers|31|U||Land||| +Rupture Spire|Premium Deck Series: Slivers|33|C||Land||| +Forest|Premium Deck Series: Slivers|41|L||Basic Land — Forest||| +Island|Premium Deck Series: Slivers|38|L||Basic Land — Island||| +Mountain|Premium Deck Series: Slivers|40|L||Basic Land — Mountain||| +Plains|Premium Deck Series: Slivers|37|L||Basic Land — Plains||| +Swamp|Premium Deck Series: Slivers|39|L||Basic Land — Swamp||| +Minion|Duel Decks: Phyrexia vs. the Coalition|2|C||Creature — Minion|*|*| +Goblin Tunneler|Magic 2011|143|C|{1}{R}|Creature — Goblin Rogue|1|1| +Canyon Minotaur|Magic 2011|126|C|{3}{R}|Creature — Minotaur Warrior|3|3| +Fling|Magic 2011|139|C|{1}{R}|Instant||| +Shiv's Embrace|Magic 2011|156|U|{2}{R}{R}|Enchantment — Aura||| +Magma Phoenix|Magic 2011|150|R|{3}{R}{R}|Creature — Phoenix|3|3| +Volcanic Strength|Magic 2011|158|C|{1}{R}|Enchantment — Aura||| +Demolish|Magic 2011|132|C|{3}{R}|Sorcery||| +Jinxed Idol|Magic 2011|208|R|{2}|Artifact||| +Manic Vandal|Magic 2011|151|C|{2}{R}|Creature — Human Warrior|2|2| +Ember Hauler|Magic 2011|135|U|{R}{R}|Creature — Goblin|2|2| +Pyroclasm|Magic 2011|154|U|{1}{R}|Sorcery||| +Goblin Balloon Brigade|Magic 2011|140|C|{R}|Creature — Goblin Warrior|1|1| +Vulshok Berserker|Magic 2011|159|C|{3}{R}|Creature — Human Berserker|3|2| +Brood Sliver|Premium Deck Series: Slivers|22|R|{4}{G}|Creature — Sliver|3|3| +Metallic Sliver|Premium Deck Series: Slivers|1|C|{1}|Artifact Creature — Sliver|1|1| +Spined Sliver|Premium Deck Series: Slivers|14|U|{R}{G}|Creature — Sliver|2|2| +Rootbound Crag|Premium Deck Series: Slivers|32|R||Land||| +Vivid Creek|Premium Deck Series: Slivers|35|U||Land||| +Cancel|Magic 2011|48|C|{1}{U}{U}|Instant||| +Call to Mind|Magic 2011|47|U|{2}{U}|Sorcery||| +Flashfreeze|Magic 2011|53|U|{1}{U}|Instant||| +Mind Control|Magic 2011|67|U|{3}{U}{U}|Enchantment — Aura||| +Traumatize|Magic 2011|77|R|{3}{U}{U}|Sorcery||| +Negate|Magic 2011|68|C|{1}{U}|Instant||| +Unsummon|Magic 2011|78|C|{U}|Instant||| +Cloud Elemental|Magic 2011|50|C|{2}{U}|Creature — Elemental|2|3| +Augury Owl|Magic 2011|45|C|{1}{U}|Creature — Bird|1|1| +Diminish|Magic 2011|52|C|{U}|Instant||| +Redirect|Magic 2011|71|R|{U}{U}|Instant||| +Mox Opal|Scars of Mirrodin|179|M|{0}|Legendary Artifact||| +Auriok Sunchaser|Scars of Mirrodin|4|C|{1}{W}|Creature — Human Soldier|1|1| +Carapace Forger|Scars of Mirrodin|114|C|{1}{G}|Creature — Elf Artificer|2|2| +Galvanic Blast|Scars of Mirrodin|91|C|{R}|Instant||| +Lifesmith|Scars of Mirrodin|124|U|{1}{G}|Creature — Human Artificer|2|1| +Twisted Image|Scars of Mirrodin|50|U|{U}|Instant||| +Slice in Twain|Scars of Mirrodin|127|U|{2}{G}{G}|Instant||| +Barbed Battlegear|Scars of Mirrodin|139|U|{3}|Artifact — Equipment||| +Flameborn Hellion|Scars of Mirrodin|89|C|{5}{R}|Creature — Hellion|5|4| +Vedalken Certarch|Scars of Mirrodin|52|C|{U}|Creature — Vedalken Wizard|1|1| +Auriok Edgewright|Scars of Mirrodin|3|U|{W}{W}|Creature — Human Soldier|2|2| +Plague Stinger|Scars of Mirrodin|75|C|{1}{B}|Creature — Insect Horror|1|1| +True Conviction|Scars of Mirrodin|25|R|{3}{W}{W}{W}|Enchantment||| +Excommunicate|Magic 2011|14|C|{2}{W}|Sorcery||| +War Priest of Thune|Magic 2011|38|U|{1}{W}|Creature — Human Cleric|2|2| +Wild Griffin|Magic 2011|40|C|{2}{W}|Creature — Griffin|2|2| +Infantry Veteran|Magic 2011|18|C|{W}|Creature — Human Soldier|1|1| +Squadron Hawk|Magic 2011|33|C|{1}{W}|Creature — Bird|1|1| +Mighty Leap|Magic 2011|22|C|{1}{W}|Instant||| +Silvercoat Lion|Magic 2011|31|C|{1}{W}|Creature — Cat|2|2| +Back to Nature|Magic 2011|164|U|{1}{G}|Instant||| +Cloud Crusader|Magic 2011|10|C|{2}{W}{W}|Creature — Human Knight|2|3| +Vengeful Archon|Magic 2011|37|R|{4}{W}{W}{W}|Creature — Archon|7|7| +Celestial Purge|Magic 2011|9|U|{1}{W}|Instant||| +Elite Vanguard|Magic 2011|13|U|{W}|Creature — Human Soldier|2|1| +Pacifism|Magic 2011|23|C|{1}{W}|Enchantment — Aura||| +Siege Mastodon|Magic 2011|29|C|{4}{W}|Creature — Elephant|3|5| +Stormfront Pegasus|Magic 2011|34|C|{1}{W}|Creature — Pegasus|2|1| +Goldenglow Moth|Magic 2011|15|C|{W}|Creature — Insect|0|1| +Assault Griffin|Magic 2011|6|C|{3}{W}|Creature — Griffin|3|2| +Day of Judgment|Magic 2011|12|R|{2}{W}{W}|Sorcery||| +Flesh Allergy|Scars of Mirrodin|62|U|{2}{B}{B}|Sorcery||| +Darksteel Myr|Scars of Mirrodin|151|U|{3}|Artifact Creature — Myr|0|1| +Volition Reins|Scars of Mirrodin|53|U|{3}{U}{U}{U}|Enchantment — Aura||| +Semblance Anvil|Scars of Mirrodin|201|R|{3}|Artifact||| +Fume Spitter|Scars of Mirrodin|63|C|{B}|Creature — Horror|1|1| +Bleak Coven Vampires|Scars of Mirrodin|55|C|{3}{B}{B}|Creature — Vampire Warrior|4|3| +Arrest|Scars of Mirrodin|2|C|{2}{W}|Enchantment — Aura||| +Sunspear Shikari|Scars of Mirrodin|23|C|{1}{W}|Creature — Cat Soldier|2|2| +Prototype Portal|Scars of Mirrodin|195|R|{4}|Artifact||| +Snapsail Glider|Scars of Mirrodin|203|C|{3}|Artifact Creature — Construct|2|2| +Darksteel Juggernaut|Scars of Mirrodin|150|R|{5}|Artifact Creature — Juggernaut|*|*| +Dispense Justice|Scars of Mirrodin|5|U|{2}{W}|Instant||| +Darksteel Axe|Scars of Mirrodin|149|U|{1}|Artifact — Equipment||| +Vulshok Replica|Scars of Mirrodin|221|C|{3}|Artifact Creature — Berserker|3|1| +Withstand Death|Scars of Mirrodin|134|C|{G}|Instant||| +Moriok Replica|Scars of Mirrodin|178|C|{3}|Artifact Creature — Warrior|2|2| +Neurok Replica|Scars of Mirrodin|186|C|{3}|Artifact Creature — Wizard|1|4| +Trinket Mage|Scars of Mirrodin|48|U|{2}{U}|Creature — Human Wizard|2|2| +Echo Circlet|Scars of Mirrodin|153|C|{2}|Artifact — Equipment||| +Glimmerpost|Scars of Mirrodin|227|C||Land — Locus||| +Mindslaver|Scars of Mirrodin|176|M|{6}|Legendary Artifact||| +Grafted Exoskeleton|Scars of Mirrodin|162|U|{4}|Artifact — Equipment||| +Accorder's Shield|Scars of Mirrodin|136|C|{0}|Artifact — Equipment||| +Bellowing Tanglewurm|Scars of Mirrodin|111|U|{3}{G}{G}|Creature — Wurm|4|4| +Tainted Strike|Scars of Mirrodin|80|C|{B}|Instant||| +Heavy Arbalest|Scars of Mirrodin|164|U|{3}|Artifact — Equipment||| +Auriok Replica|Scars of Mirrodin|138|C|{3}|Artifact Creature — Cleric|2|2| +Sylvok Replica|Scars of Mirrodin|210|C|{3}|Artifact Creature — Shaman|1|3| +Mortician Beetle|Rise of the Eldrazi|117|R|{B}|Creature — Insect|1|1| +Darigaaz, the Igniter|Duel Decks: Phyrexia vs. the Coalition|47|R|{3}{B}{R}{G}|Legendary Creature — Dragon|6|6| +Elfhame Palace|Duel Decks: Phyrexia vs. the Coalition|64|U||Land||| +Fertile Ground|Duel Decks: Phyrexia vs. the Coalition|52|C|{1}{G}|Enchantment — Aura||| +Harrow|Duel Decks: Phyrexia vs. the Coalition|57|C|{2}{G}|Instant||| +Nomadic Elf|Duel Decks: Phyrexia vs. the Coalition|38|C|{1}{G}|Creature — Elf Nomad|2|2| +Phyrexian Battleflies|Duel Decks: Phyrexia vs. the Coalition|3|C|{B}|Creature — Insect|0|1| +Power Armor|Duel Decks: Phyrexia vs. the Coalition|62|U|{4}|Artifact||| +Rith, the Awakener|Duel Decks: Phyrexia vs. the Coalition|48|R|{3}{R}{G}{W}|Legendary Creature — Dragon|6|6| +Shivan Oasis|Duel Decks: Phyrexia vs. the Coalition|65|U||Land||| +Thornscape Apprentice|Duel Decks: Phyrexia vs. the Coalition|37|C|{G}|Creature — Human Wizard|1|1| +Treva, the Renewer|Duel Decks: Phyrexia vs. the Coalition|49|R|{3}{G}{W}{U}|Legendary Creature — Dragon|6|6| +Bone Shredder|Duel Decks: Phyrexia vs. the Coalition|5|U|{2}{B}|Creature — Minion|1|1| +Phyrexian Debaser|Duel Decks: Phyrexia vs. the Coalition|10|C|{3}{B}|Creature — Carrier|2|2| +Phyrexian Defiler|Duel Decks: Phyrexia vs. the Coalition|12|U|{2}{B}{B}|Creature — Carrier|3|3| +Phyrexian Denouncer|Duel Decks: Phyrexia vs. the Coalition|4|C|{1}{B}|Creature — Carrier|1|1| +Phyrexian Plaguelord|Duel Decks: Phyrexia vs. the Coalition|13|R|{3}{B}{B}|Creature — Carrier|4|4| +Order of Yawgmoth|Duel Decks: Phyrexia vs. the Coalition|11|U|{2}{B}{B}|Creature — Zombie Knight|2|2| +Phyrexian Ghoul|Duel Decks: Phyrexia vs. the Coalition|6|C|{2}{B}|Creature — Zombie|2|2| +Priest of Gix|Duel Decks: Phyrexia vs. the Coalition|7|U|{2}{B}|Creature — Human Cleric Minion|2|1| +Phyrexian Arena|Duel Decks: Phyrexia vs. the Coalition|27|R|{1}{B}{B}|Enchantment||| +Phyrexian Hulk|Duel Decks: Phyrexia vs. the Coalition|14|U|{6}|Artifact Creature — Golem|5|4| +Slay|Duel Decks: Phyrexia vs. the Coalition|25|U|{2}{B}|Instant||| +Dark Ritual|Duel Decks: Phyrexia vs. the Coalition|18|C|{B}|Instant||| +Puppet Strings|Duel Decks: Phyrexia vs. the Coalition|22|U|{3}|Artifact||| +Lightning Greaves|Duel Decks: Phyrexia vs. the Coalition|19|U|{2}|Artifact — Equipment||| +Phyrexian Totem|Duel Decks: Phyrexia vs. the Coalition|20|U|{3}|Artifact||| +Thornscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|42|U|{2}{G}|Creature — Elf Wizard|2|2| +Tribal Flames|Duel Decks: Phyrexia vs. the Coalition|51|C|{1}{R}|Sorcery||| +Hornet Cannon|Duel Decks: Phyrexia vs. the Coalition|28|U|{4}|Artifact||| +Allied Strategies|Duel Decks: Phyrexia vs. the Coalition|63|U|{4}{U}|Sorcery||| +Darigaaz's Charm|Duel Decks: Phyrexia vs. the Coalition|59|U|{B}{R}{G}|Instant||| +Rith's Charm|Duel Decks: Phyrexia vs. the Coalition|60|U|{R}{G}{W}|Instant||| +Sunscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|40|U|{2}{W}|Creature — Human Wizard|2|2| +Thunderscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|41|U|{2}{R}|Creature — Human Wizard|2|2| +Treva's Charm|Duel Decks: Phyrexia vs. the Coalition|61|U|{G}{W}{U}|Instant||| +Gerrard Capashen|Duel Decks: Phyrexia vs. the Coalition|46|R|{3}{W}{W}|Legendary Creature — Human Soldier|3|4| +Coalition Relic|Duel Decks: Phyrexia vs. the Coalition|54|R|{3}|Artifact||| +Terramorphic Expanse|Duel Decks: Phyrexia vs. the Coalition|66|C||Land||| +Phyrexian Colossus|Duel Decks: Phyrexia vs. the Coalition|16|R|{7}|Artifact Creature — Golem|8|8| +Sanguine Guard|Duel Decks: Phyrexia vs. the Coalition|9|U|{1}{B}{B}|Creature — Zombie Knight|2|2| +Saproling|Duel Decks: Phyrexia vs. the Coalition|3|C||Creature — Saproling|1|1| +Hornet|Duel Decks: Phyrexia vs. the Coalition|1|C||Artifact Creature — Insect|1|1| +Clone Shell|Scars of Mirrodin|143|U|{5}|Artifact Creature — Shapeshifter|2|2| +Sword of Body and Mind|Scars of Mirrodin|208|M|{3}|Artifact — Equipment||| +Screeching Silcaw|Scars of Mirrodin|42|C|{1}{U}|Creature — Bird|1|2| +Rust Tick|Scars of Mirrodin|198|U|{3}|Artifact Creature — Insect|1|3| +Leonin Arbiter|Scars of Mirrodin|14|R|{1}{W}|Creature — Cat Cleric|2|2| +Nim Deathmantle|Scars of Mirrodin|188|R|{2}|Artifact — Equipment||| +Acid Web Spider|Scars of Mirrodin|108|U|{3}{G}{G}|Creature — Spider|3|5| +Seachrome Coast|Scars of Mirrodin|229|R||Land||| +Darkslick Shores|Scars of Mirrodin|226|R||Land||| +Blackcleave Cliffs|Scars of Mirrodin|224|R||Land||| +Molder Beast|Scars of Mirrodin|125|C|{4}{G}|Creature — Beast|5|3| +Spikeshot Elder|Scars of Mirrodin|104|R|{R}|Creature — Goblin Shaman|1|1| +Razorverge Thicket|Scars of Mirrodin|228|R||Land||| +Copperline Gorge|Scars of Mirrodin|225|R||Land||| +Myrsmith|Scars of Mirrodin|16|U|{1}{W}|Creature — Human Artificer|2|1| +Chimeric Mass|Scars of Mirrodin|141|R|{X}|Artifact||| +Myr Battlesphere|Scars of Mirrodin|180|R|{7}|Artifact Creature — Myr Construct|4|7| +Turn to Slag|Scars of Mirrodin|106|C|{3}{R}{R}|Sorcery||| +Relic Putrescence|Scars of Mirrodin|77|C|{2}{B}|Enchantment — Aura||| +Razorfield Thresher|Scars of Mirrodin|197|C|{7}|Artifact Creature — Construct|6|4| +Carrion Feeder|Duel Decks: Phyrexia vs. the Coalition|2|C|{B}|Creature — Zombie|1|1| +Phyrexian Broodlings|Duel Decks: Phyrexia vs. the Coalition|8|C|{1}{B}{B}|Creature — Minion|2|2| +Phyrexian Gargantua|Duel Decks: Phyrexia vs. the Coalition|15|U|{4}{B}{B}|Creature — Horror|4|4| +Phyrexian Vault|Duel Decks: Phyrexia vs. the Coalition|21|U|{3}|Artifact||| +Worn Powerstone|Duel Decks: Phyrexia vs. the Coalition|24|U|{3}|Artifact||| +Living Death|Duel Decks: Phyrexia vs. the Coalition|31|R|{3}{B}{B}|Sorcery||| +Tendrils of Corruption|Duel Decks: Phyrexia vs. the Coalition|30|C|{3}{B}|Instant||| +Whispersilk Cloak|Duel Decks: Phyrexia vs. the Coalition|23|U|{3}|Artifact — Equipment||| +Hideous End|Duel Decks: Phyrexia vs. the Coalition|26|C|{1}{B}{B}|Instant||| +Exotic Curse|Duel Decks: Phyrexia vs. the Coalition|56|C|{2}{B}|Enchantment — Aura||| +Narrow Escape|Duel Decks: Phyrexia vs. the Coalition|55|C|{2}{W}|Instant||| +Evasive Action|Duel Decks: Phyrexia vs. the Coalition|50|U|{1}{U}|Instant||| +Nihil Spellbomb|Scars of Mirrodin|187|C|{1}|Artifact||| +Horizon Spellbomb|Scars of Mirrodin|165|C|{1}|Artifact||| +Tumble Magnet|Scars of Mirrodin|218|C|{3}|Artifact||| +Flight Spellbomb|Scars of Mirrodin|155|C|{1}|Artifact||| +Panic Spellbomb|Scars of Mirrodin|191|C|{1}|Artifact||| +Exsanguinate|Scars of Mirrodin|61|U|{X}{B}{B}|Sorcery||| +Lux Cannon|Scars of Mirrodin|173|M|{4}|Artifact||| +Origin Spellbomb|Scars of Mirrodin|189|C|{1}|Artifact||| +Swamp|Duel Decks: Phyrexia vs. the Coalition|34|L||Basic Land — Swamp||| +Swamp|Duel Decks: Phyrexia vs. the Coalition|33|L||Basic Land — Swamp||| +Swamp|Duel Decks: Phyrexia vs. the Coalition|32|L||Basic Land — Swamp||| +Swamp|Duel Decks: Phyrexia vs. the Coalition|35|L||Basic Land — Swamp||| +Forest|Duel Decks: Phyrexia vs. the Coalition|70|L||Basic Land — Forest||| +Forest|Duel Decks: Phyrexia vs. the Coalition|71|L||Basic Land — Forest||| +Island|Duel Decks: Phyrexia vs. the Coalition|68|L||Basic Land — Island||| +Mountain|Duel Decks: Phyrexia vs. the Coalition|69|L||Basic Land — Mountain||| +Plains|Duel Decks: Phyrexia vs. the Coalition|67|L||Basic Land — Plains||| +Charging Troll|Duel Decks: Phyrexia vs. the Coalition|45|U|{2}{G}{W}|Creature — Troll|3|3| +Quirion Elves|Duel Decks: Phyrexia vs. the Coalition|39|C|{1}{G}|Creature — Elf Druid|1|1| +Verduran Emissary|Duel Decks: Phyrexia vs. the Coalition|43|U|{2}{G}|Creature — Human Wizard|2|3| +Gerrard's Command|Duel Decks: Phyrexia vs. the Coalition|53|C|{G}{W}|Instant||| +Koth of the Hammer|Scars of Mirrodin|94|M|{2}{R}{R}|Planeswalker — Koth||| +Livewire Lash|Scars of Mirrodin|172|R|{2}|Artifact — Equipment||| +Venser, the Sojourner|Scars of Mirrodin|135|M|{3}{W}{U}|Planeswalker — Venser||| +Elspeth Tirel|Scars of Mirrodin|6|M|{3}{W}{W}|Planeswalker — Elspeth||| +Disperse|Scars of Mirrodin|31|C|{1}{U}|Instant||| +Painful Quandary|Scars of Mirrodin|73|R|{3}{B}{B}|Enchantment||| +Chrome Steed|Scars of Mirrodin|142|C|{4}|Artifact Creature — Horse|2|2| +Indomitable Archangel|Scars of Mirrodin|11|M|{2}{W}{W}|Creature — Angel|4|4| +Skithiryx, the Blight Dragon|Scars of Mirrodin|79|M|{3}{B}{B}|Legendary Creature — Dragon Skeleton|4|4| +Palladium Myr|Scars of Mirrodin|190|U|{3}|Artifact Creature — Myr|2|2| +Contagion Engine|Scars of Mirrodin|145|R|{6}|Artifact||| +Isochron Scepter|From the Vault: Relics|3|M|{2}|Artifact||| +Jester's Cap|From the Vault: Relics|5|M|{4}|Artifact||| +Zuran Orb|From the Vault: Relics|15|M|{0}|Artifact||| +Masticore|From the Vault: Relics|7|M|{4}|Artifact Creature — Masticore|4|4| +Ζther Vial|From the Vault: Relics|1|M|{1}|Artifact||| +Sundering Titan|From the Vault: Relics|13|M|{8}|Artifact Creature — Golem|7|10| +Karn, Silver Golem|From the Vault: Relics|6|M|{5}|Legendary Artifact Creature — Golem|4|4| +Memory Jar|From the Vault: Relics|8|M|{5}|Artifact||| +Mox Diamond|From the Vault: Relics|10|M|{0}|Artifact||| +Mirari|From the Vault: Relics|9|M|{5}|Legendary Artifact||| +Black Vise|From the Vault: Relics|2|M|{1}|Artifact||| +Nevinyrral's Disk|From the Vault: Relics|11|M|{4}|Artifact||| +Sol Ring|From the Vault: Relics|12|M|{1}|Artifact||| +Ivory Tower|From the Vault: Relics|4|M|{1}|Artifact||| +Sword of Body and Mind|From the Vault: Relics|14|M|{3}|Artifact — Equipment||| +Stoic Rebuttal|Scars of Mirrodin|46|C|{1}{U}{U}|Instant||| +Soul Parry|Scars of Mirrodin|21|C|{1}{W}|Instant||| +Ezuri's Brigade|Scars of Mirrodin|121|R|{2}{G}{G}|Creature — Elf Warrior|4|4| +Liquimetal Coating|Scars of Mirrodin|171|U|{2}|Artifact||| +Scoria Elemental|Scars of Mirrodin|102|C|{4}{R}|Creature — Elemental|6|1| +Trigon of Mending|Scars of Mirrodin|215|U|{2}|Artifact||| +Molten Psyche|Scars of Mirrodin|98|R|{1}{R}{R}|Sorcery||| +Saberclaw Golem|Scars of Mirrodin|200|C|{5}|Artifact Creature — Golem|4|2| +Plains|Magic 2011|231|L||Basic Land — Plains||| +Plains|Magic 2011|232|L||Basic Land — Plains||| +Plains|Magic 2011|230|L||Basic Land — Plains||| +Plains|Magic 2011|233|L||Basic Land — Plains||| +Island|Magic 2011|237|L||Basic Land — Island||| +Island|Magic 2011|235|L||Basic Land — Island||| +Island|Magic 2011|236|L||Basic Land — Island||| +Island|Magic 2011|234|L||Basic Land — Island||| +Swamp|Magic 2011|239|L||Basic Land — Swamp||| +Swamp|Magic 2011|238|L||Basic Land — Swamp||| +Swamp|Magic 2011|240|L||Basic Land — Swamp||| +Swamp|Magic 2011|241|L||Basic Land — Swamp||| +Mountain|Magic 2011|242|L||Basic Land — Mountain||| +Mountain|Magic 2011|243|L||Basic Land — Mountain||| +Mountain|Magic 2011|244|L||Basic Land — Mountain||| +Mountain|Magic 2011|245|L||Basic Land — Mountain||| +Forest|Magic 2011|246|L||Basic Land — Forest||| +Forest|Magic 2011|247|L||Basic Land — Forest||| +Forest|Magic 2011|248|L||Basic Land — Forest||| +Forest|Magic 2011|249|L||Basic Land — Forest||| +Horrifying Revelation|Mirrodin Besieged|45|C|{B}|Sorcery||| +Phyrexian Crusader|Mirrodin Besieged|50|R|{1}{B}{B}|Creature — Zombie Knight|2|2| +Mortarpod|Mirrodin Besieged|115|U|{2}|Artifact — Equipment||| +Steel Sabotage|Mirrodin Besieged|33|C|{U}|Instant||| +Viridian Emissary|Mirrodin Besieged|95|C|{1}{G}|Creature — Elf Scout|2|1| +Titan Forge|Mirrodin Besieged|141|R|{3}|Artifact||| +Inkmoth Nexus|Mirrodin Besieged|145|R||Land||| +Fangren Marauder|Mirrodin Besieged|79|C|{5}{G}|Creature — Beast|5|5| +Myr Sire|Mirrodin Besieged|116|C|{2}|Artifact Creature — Myr|1|1| +Vivisection|Mirrodin Besieged|38|C|{3}{U}|Sorcery||| +Fuel for the Cause|Mirrodin Besieged|25|C|{2}{U}{U}|Instant||| +Ichor Wellspring|Mirrodin Besieged|110|C|{2}|Artifact||| +Silverskin Armor|Mirrodin Besieged|132|U|{2}|Artifact — Equipment||| +Lead the Stampede|Mirrodin Besieged|82|U|{2}{G}|Sorcery||| +Magnetic Mine|Mirrodin Besieged|113|R|{4}|Artifact||| +Piston Sledge|Mirrodin Besieged|124|U|{3}|Artifact — Equipment||| +Phyrexian Digester|Mirrodin Besieged|120|C|{3}|Artifact Creature — Construct|2|1| +Pistus Strike|Mirrodin Besieged|86|C|{2}{G}|Instant||| +Rusted Slasher|Mirrodin Besieged|128|C|{4}|Artifact Creature — Horror|4|1| +Septic Rats|Mirrodin Besieged|55|U|{1}{B}{B}|Creature — Rat|2|2| +Darksteel Plate|Mirrodin Besieged|104|R|{3}|Artifact — Equipment||| +Vedalken Infuser|Mirrodin Besieged|37|U|{3}{U}|Creature — Vedalken Wizard|1|4| +Scourge Servant|Mirrodin Besieged|54|C|{4}{B}|Creature — Zombie|3|3| +Plaguemaw Beast|Mirrodin Besieged|87|U|{3}{G}{G}|Creature — Beast|4|3| +Treasure Mage|Mirrodin Besieged|34|U|{2}{U}|Creature — Human Wizard|2|2| +Neurok Commando|Mirrodin Besieged|28|U|{1}{U}{U}|Creature — Human Rogue|2|1| +Quilled Slagwurm|Mirrodin Besieged|89|U|{4}{G}{G}{G}|Creature — Wurm|8|8| +Concussive Bolt|Mirrodin Besieged|60|C|{3}{R}{R}|Sorcery||| +Myr Turbine|Mirrodin Besieged|117|R|{5}|Artifact||| +Tine Shrike|Mirrodin Besieged|17|C|{3}{W}|Creature — Bird|2|1| +Flesh-Eater Imp|Mirrodin Besieged|42|U|{3}{B}|Creature — Imp|2|2| +Divine Offering|Mirrodin Besieged|5|C|{1}{W}|Instant||| +Loxodon Partisan|Mirrodin Besieged|12|C|{4}{W}|Creature — Elephant Soldier|3|4| +Quicksilver Geyser|Mirrodin Besieged|30|C|{4}{U}|Instant||| +Gnathosaur|Mirrodin Besieged|63|C|{4}{R}{R}|Creature — Lizard|5|4| +Training Drone|Mirrodin Besieged|142|C|{3}|Artifact Creature — Drone|4|4| +Distant Memories|Mirrodin Besieged|24|R|{2}{U}{U}|Sorcery||| +Koth's Courier|Mirrodin Besieged|68|C|{1}{R}{R}|Creature — Human Rogue|2|3| +Rally the Forces|Mirrodin Besieged|73|C|{2}{R}|Instant||| +Gust-Skimmer|Mirrodin Besieged|108|C|{2}|Artifact Creature — Insect|2|1| +Leonin Skyhunter|Mirrodin Besieged|11|C|{W}{W}|Creature — Cat Knight|2|2| +Burn the Impure|Mirrodin Besieged|59|C|{1}{R}|Instant||| +Viridian Corrupter|Mirrodin Besieged|94|U|{1}{G}{G}|Creature — Elf Shaman|2|2| +Signal Pest|Mirrodin Besieged|131|U|{1}|Artifact Creature — Pest|0|1| +Rot Wolf|Mirrodin Besieged|90|C|{2}{G}|Creature — Wolf|2|2| +Contested War Zone|Mirrodin Besieged|144|R||Land||| +Sphere of the Suns|Mirrodin Besieged|134|U|{2}|Artifact||| +Virulent Wound|Mirrodin Besieged|57|C|{B}|Instant||| +Unnatural Predation|Mirrodin Besieged|93|C|{G}|Instant||| +Mirran Spy|Mirrodin Besieged|26|C|{2}{U}|Creature — Drone|1|3| +Serum Raker|Mirrodin Besieged|31|C|{2}{U}{U}|Creature — Drake|3|2| +Peace Strider|Mirrodin Besieged|119|U|{4}|Artifact Creature — Construct|3|3| +Goblin Wardriver|Mirrodin Besieged|64|U|{R}{R}|Creature — Goblin Warrior|2|2| +Glissa's Courier|Mirrodin Besieged|80|C|{1}{G}{G}|Creature — Horror|2|3| +Viridian Claw|Mirrodin Besieged|143|U|{2}|Artifact — Equipment||| +Plague Myr|Mirrodin Besieged|125|U|{2}|Artifact Creature — Myr|1|1| +Shriekhorn|Mirrodin Besieged|130|C|{1}|Artifact||| +Kuldotha Ringleader|Mirrodin Besieged|70|C|{4}{R}|Creature — Giant Berserker|4|4| +Into the Core|Mirrodin Besieged|67|U|{2}{R}{R}|Instant||| +Caustic Hound|Mirrodin Besieged|40|C|{5}{B}|Creature — Hound|4|4| +Strandwalker|Mirrodin Besieged|137|U|{5}|Artifact — Equipment||| +Frantic Salvage|Mirrodin Besieged|6|C|{3}{W}|Instant||| +Banishment Decree|Mirrodin Besieged|3|C|{3}{W}{W}|Instant||| +Blisterstick Shaman|Mirrodin Besieged|58|C|{2}{R}|Creature — Goblin Shaman|2|1| +Ardent Recruit|Mirrodin Besieged|2|C|{W}|Creature — Human Soldier|1|1| +Ogre Resister|Mirrodin Besieged|72|C|{2}{R}{R}|Creature — Ogre|4|3| +Melira's Keepers|Mirrodin Besieged|83|U|{4}{G}|Creature — Human Warrior|4|4| +Phyresis|Mirrodin Besieged|49|C|{1}{B}|Enchantment — Aura||| +Gore Vassal|Mirrodin Besieged|7|U|{2}{W}|Creature — Hound|2|1| +Go for the Throat|Mirrodin Besieged|43|U|{1}{B}|Instant||| +Brass Squire|Mirrodin Besieged|101|U|{3}|Artifact Creature — Myr|1|3| +Spire Serpent|Mirrodin Besieged|32|C|{4}{U}|Creature — Serpent|3|5| +Mirran Crusader|Mirrodin Besieged|14|R|{1}{W}{W}|Creature — Human Knight|2|2| +Phyrexian Rager|Mirrodin Besieged|51|C|{2}{B}|Creature — Horror|2|2| +Copper Carapace|Mirrodin Besieged|102|C|{1}|Artifact — Equipment||| +Crush|Mirrodin Besieged|61|C|{R}|Instant||| +Hexplate Golem|Mirrodin Besieged|109|C|{7}|Artifact Creature — Golem|5|7| +Choking Fumes|Mirrodin Besieged|4|U|{2}{W}|Instant||| +Kuldotha Flamefiend|Mirrodin Besieged|69|U|{4}{R}{R}|Creature — Elemental|4|4| +Metallic Mastery|Mirrodin Besieged|71|U|{2}{R}|Sorcery||| +Priests of Norn|Mirrodin Besieged|16|C|{2}{W}|Creature — Cleric|1|4| +Razorfield Rhino|Mirrodin Besieged|127|C|{6}|Artifact Creature — Rhino|4|4| +Nested Ghoul|Mirrodin Besieged|48|U|{3}{B}{B}|Creature — Zombie Warrior|4|2| +Flensermite|Mirrodin Besieged|41|C|{1}{B}|Creature — Gremlin|1|1| +Accorder Paladin|Mirrodin Besieged|1|U|{1}{W}|Creature — Human Knight|3|1| +Mirran Mettle|Mirrodin Besieged|84|C|{G}|Instant||| +Blightwidow|Mirrodin Besieged|77|C|{3}{G}|Creature — Spider|2|4| +Turn the Tide|Mirrodin Besieged|35|C|{1}{U}|Instant||| +Core Prowler|Mirrodin Besieged|103|U|{4}|Artifact Creature — Horror|2|2| +Golden Urn|Scars of Mirrodin|158|C|{1}|Artifact||| +Hero of Oxid Ridge|Mirrodin Besieged|66|M|{2}{R}{R}|Creature — Human Knight|4|2| +Creeping Corrosion|Mirrodin Besieged|78|R|{2}{G}{G}|Sorcery||| +Victory's Herald|Mirrodin Besieged|18|R|{3}{W}{W}{W}|Creature — Angel|4|4| +Forest|Mirrodin Besieged|154|L||Basic Land — Forest||| +Dross Ripper|Mirrodin Besieged|106|C|{4}|Artifact Creature — Hound|3|3| +Praetor's Counsel|Mirrodin Besieged|88|M|{5}{G}{G}{G}|Sorcery||| +Knowledge Pool|Mirrodin Besieged|111|R|{6}|Artifact||| +Oculus|Mirrodin Besieged|29|C|{1}{U}|Creature — Homunculus|1|1| +Cryptoplasm|Mirrodin Besieged|23|R|{1}{U}{U}|Creature — Shapeshifter|2|2| +Phyrexian Juggernaut|Mirrodin Besieged|121|U|{6}|Artifact Creature — Juggernaut|5|5| +Thopter Assembly|Mirrodin Besieged|140|R|{6}|Artifact Creature — Thopter|5|5| +Bonehoard|Mirrodin Besieged|100|R|{4}|Artifact — Equipment||| +Tangle Hulk|Mirrodin Besieged|139|C|{5}|Artifact Creature — Beast|5|3| +Shimmer Myr|Mirrodin Besieged|129|R|{3}|Artifact Creature — Myr|2|2| +Corrupted Conscience|Mirrodin Besieged|22|U|{3}{U}{U}|Enchantment — Aura||| +Massacre Wurm|Mirrodin Besieged|46|M|{3}{B}{B}{B}|Creature — Wurm|6|5| +Mountain|Mirrodin Besieged|152|L||Basic Land — Mountain||| +Psychosis Crawler|Mirrodin Besieged|126|R|{5}|Artifact Creature — Horror|*|*| +Phyrexian Rebirth|Mirrodin Besieged|15|R|{4}{W}{W}|Sorcery||| +Bladed Sentinel|Mirrodin Besieged|98|C|{4}|Artifact Creature — Construct|2|4| +Thrun, the Last Troll|Mirrodin Besieged|92|M|{2}{G}{G}|Legendary Creature — Troll Shaman|4|4| +Hellkite Igniter|Mirrodin Besieged|65|R|{5}{R}{R}|Creature — Dragon|5|5| +Galvanoth|Mirrodin Besieged|62|R|{3}{R}{R}|Creature — Beast|3|3| +Slagstorm|Mirrodin Besieged|75|R|{1}{R}{R}|Sorcery||| +Decimator Web|Mirrodin Besieged|105|R|{4}|Artifact||| +Kemba's Legion|Mirrodin Besieged|9|U|{5}{W}{W}|Creature — Cat Soldier|4|6| +Plains|Mirrodin Besieged|146|L||Basic Land — Plains||| +Lumengrid Gargoyle|Mirrodin Besieged|112|U|{6}|Artifact Creature — Gargoyle|4|4| +Phyrexian Hydra|Mirrodin Besieged|85|R|{3}{G}{G}|Creature — Hydra|7|7| +Black Sun's Zenith|Mirrodin Besieged|39|R|{X}{B}{B}|Sorcery||| +Sangromancer|Mirrodin Besieged|53|R|{2}{B}{B}|Creature — Vampire Shaman|3|3| +Consecrated Sphinx|Mirrodin Besieged|21|M|{4}{U}{U}|Creature — Sphinx|4|6| +Hero of Bladehold|Mirrodin Besieged|8|M|{2}{W}{W}|Creature — Human Knight|3|4| +Tezzeret, Agent of Bolas|Mirrodin Besieged|97|M|{2}{U}{B}|Planeswalker — Tezzeret||| +Mountain|Mirrodin Besieged|153|L||Basic Land — Mountain||| +Myr Welder|Mirrodin Besieged|118|R|{3}|Artifact Creature — Myr|1|4| +Mirrorworks|Mirrodin Besieged|114|R|{5}|Artifact||| +Spin Engine|Mirrodin Besieged|135|C|{3}|Artifact Creature — Construct|3|1| +Sword of Feast and Famine|Mirrodin Besieged|138|M|{3}|Artifact — Equipment||| +Mitotic Manipulation|Mirrodin Besieged|27|R|{1}{U}{U}|Sorcery||| +Glissa, the Traitor|Mirrodin Besieged|96|M|{B}{G}{G}|Legendary Creature — Zombie Elf|3|3| +Gruesome Encore|Mirrodin Besieged|44|U|{2}{B}|Sorcery||| +Phyrexian Vatmother|Mirrodin Besieged|52|R|{2}{B}{B}|Creature — Horror|4|5| +Forest|Mirrodin Besieged|155|L||Basic Land — Forest||| +Spine of Ish Sah|Mirrodin Besieged|136|R|{7}|Artifact||| +Alloy Myr|New Phyrexia|129|U|{3}|Artifact Creature — Myr|2|2| +Caged Sun|New Phyrexia|132|R|{6}|Artifact||| +Glistening Oil|New Phyrexia|62|R|{B}{B}|Enchantment — Aura||| +Psychic Surgery|New Phyrexia|44|R|{1}{U}|Enchantment||| +Jin-Gitaxias, Core Augur|New Phyrexia|37|M|{8}{U}{U}|Legendary Creature — Praetor|5|4| +Karn Liberated|New Phyrexia|1|M|{7}|Planeswalker — Karn||| +Elesh Norn, Grand Cenobite|New Phyrexia|9|M|{5}{W}{W}|Legendary Creature — Praetor|4|7| +Auriok Survivors|New Phyrexia|3|U|{5}{W}|Creature — Human Soldier|4|6| +Sickleslicer|New Phyrexia|157|U|{3}|Artifact — Equipment||| +Lashwrithe|New Phyrexia|143|R|{4}|Artifact — Equipment||| +Chancellor of the Spires|New Phyrexia|31|R|{4}{U}{U}{U}|Creature — Sphinx|5|7| +Life's Finale|New Phyrexia|65|R|{4}{B}{B}|Sorcery||| +Exclusion Ritual|New Phyrexia|10|U|{4}{W}{W}|Enchantment||| +Deceiver Exarch|New Phyrexia|33|U|{2}{U}|Creature — Cleric|1|4| +Necropouncer|New Phyrexia|147|U|{6}|Artifact — Equipment||| +Sword of War and Peace|New Phyrexia|161|M|{3}|Artifact — Equipment||| +Reaper of Sheoldred|New Phyrexia|72|U|{4}{B}|Creature — Horror|2|5| +Phyrexian Metamorph|New Phyrexia|42|R|{3}{UP}|Artifact Creature — Shapeshifter|0|0| +Geth's Verdict|New Phyrexia|61|C|{B}{B}|Instant||| +Urabrask the Hidden|New Phyrexia|98|M|{3}{R}{R}|Legendary Creature — Praetor|4|4| +Phyrexian Hulk|New Phyrexia|150|C|{6}|Artifact Creature — Golem|5|4| +Kiln Walker|New Phyrexia|142|U|{3}|Artifact Creature — Construct|0|3| +Volt Charge|New Phyrexia|100|C|{2}{R}|Instant||| +Sheoldred, Whispering One|New Phyrexia|73|M|{5}{B}{B}|Legendary Creature — Praetor|6|6| +Blighted Agent|New Phyrexia|29|C|{1}{U}|Creature — Human Rogue|1|1| +Phyrexian Ingester|New Phyrexia|41|R|{6}{U}|Creature — Beast|3|3| +Rage Extractor|New Phyrexia|91|U|{4}{RP}|Artifact||| +Phyrexian Obliterator|New Phyrexia|68|M|{B}{B}{B}{B}|Creature — Horror|5|5| +Viridian Harvest|New Phyrexia|125|C|{G}|Enchantment — Aura||| +Grim Affliction|New Phyrexia|63|C|{2}{B}|Instant||| +Viridian Betrayers|New Phyrexia|124|C|{1}{G}{G}|Creature — Elf Warrior|3|1| +Forest|Scars of Mirrodin|246|L||Basic Land — Forest||| +Island|Scars of Mirrodin|235|L||Basic Land — Island||| +Mountain|Scars of Mirrodin|242|L||Basic Land — Mountain||| +Mountain|Scars of Mirrodin|243|L||Basic Land — Mountain||| +Swamp|Scars of Mirrodin|239|L||Basic Land — Swamp||| +Forest|Scars of Mirrodin|249|L||Basic Land — Forest||| +Plains|Scars of Mirrodin|232|L||Basic Land — Plains||| +Island|Scars of Mirrodin|234|L||Basic Land — Island||| +Forest|Scars of Mirrodin|247|L||Basic Land — Forest||| +Swamp|Scars of Mirrodin|241|L||Basic Land — Swamp||| +Mountain|Scars of Mirrodin|244|L||Basic Land — Mountain||| +Swamp|Scars of Mirrodin|240|L||Basic Land — Swamp||| +Plains|Scars of Mirrodin|230|L||Basic Land — Plains||| +Island|Scars of Mirrodin|236|L||Basic Land — Island||| +Plains|Scars of Mirrodin|231|L||Basic Land — Plains||| +Forest|Scars of Mirrodin|248|L||Basic Land — Forest||| +Mountain|Scars of Mirrodin|245|L||Basic Land — Mountain||| +Island|Scars of Mirrodin|237|L||Basic Land — Island||| +Plains|Scars of Mirrodin|233|L||Basic Land — Plains||| +Swamp|Scars of Mirrodin|238|L||Basic Land — Swamp||| +Myr Propagator|Scars of Mirrodin|182|R|{3}|Artifact Creature — Myr|1|1| +Cerebral Eruption|Scars of Mirrodin|86|R|{2}{R}{R}|Sorcery||| +Hoard-Smelter Dragon|Scars of Mirrodin|93|R|{4}{R}{R}|Creature — Dragon|5|5| +Geth, Lord of the Vault|Scars of Mirrodin|64|M|{4}{B}{B}|Legendary Creature — Zombie|5|5| +Venser's Journal|Scars of Mirrodin|220|R|{5}|Artifact||| +Engulfing Slagwurm|Scars of Mirrodin|118|R|{5}{G}{G}|Creature — Wurm|7|7| +Asceticism|Scars of Mirrodin|110|R|{3}{G}{G}|Enchantment||| +Argent Sphinx|Scars of Mirrodin|28|R|{2}{U}{U}|Creature — Sphinx|4|3| +Hand of the Praetors|Scars of Mirrodin|66|R|{3}{B}|Creature — Zombie|3|2| +Molten-Tail Masticore|Scars of Mirrodin|177|M|{4}|Artifact Creature — Masticore|4|4| +Kemba, Kha Regent|Scars of Mirrodin|12|R|{1}{W}{W}|Legendary Creature — Cat Cleric|2|4| +Platinum Emperion|Scars of Mirrodin|193|M|{8}|Artifact Creature — Golem|8|8| +Kuldotha Forgemaster|Scars of Mirrodin|169|R|{5}|Artifact Creature — Construct|3|5| +Etched Champion|Scars of Mirrodin|154|R|{3}|Artifact Creature — Soldier|2|2| +Ogre Geargrabber|Scars of Mirrodin|99|U|{4}{R}{R}|Creature — Ogre Warrior|4|4| +Memoricide|Scars of Mirrodin|69|R|{3}{B}|Sorcery||| +Sunblast Angel|Scars of Mirrodin|22|R|{4}{W}{W}|Creature — Angel|4|5| +Myr Reservoir|Scars of Mirrodin|183|R|{3}|Artifact||| +Elspeth, Knight-Errant|Duel Decks: Elspeth vs. Tezzeret|1|M|{2}{W}{W}|Planeswalker — Elspeth||| +Tezzeret the Seeker|Duel Decks: Elspeth vs. Tezzeret|39|M|{3}{U}{U}|Planeswalker — Tezzeret||| +Argentum Armor|Scars of Mirrodin|137|R|{6}|Artifact — Equipment||| +Jackal Pup|Premium Deck Series: Fire and Lightning|2|U|{R}|Creature — Hound|2|1| +Chain Lightning|Premium Deck Series: Fire and Lightning|16|C|{R}|Sorcery||| +Furnace Scamp|New Phyrexia|84|C|{R}|Creature — Beast|1|1| +Shrine of Limitless Power|New Phyrexia|154|U|{3}|Artifact||| +Suture Priest|New Phyrexia|25|C|{1}{W}|Creature — Cleric|1|1| +Shrine of Boundless Growth|New Phyrexia|152|U|{3}|Artifact||| +Vault Skirge|New Phyrexia|76|C|{1}{BP}|Artifact Creature — Imp|1|1| +Defensive Stance|New Phyrexia|34|C|{U}|Enchantment — Aura||| +Impaler Shrike|New Phyrexia|36|C|{2}{U}{U}|Creature — Bird|3|1| +Spined Thopter|New Phyrexia|45|C|{2}{UP}|Artifact Creature — Thopter|2|1| +Spellskite|New Phyrexia|159|R|{2}|Artifact Creature — Horror|0|4| +Shriek Raptor|New Phyrexia|24|C|{3}{W}{W}|Creature — Bird|2|3| +Mycosynth Fiend|New Phyrexia|117|U|{2}{G}|Creature — Horror|2|2| +Etched Monstrosity|New Phyrexia|135|M|{5}|Artifact Creature — Golem|10|10| +Brutalizer Exarch|New Phyrexia|105|U|{5}{G}|Creature — Cleric|3|3| +Blind Zealot|New Phyrexia|52|C|{1}{B}{B}|Creature — Human Cleric|2|2| +Argent Mutation|New Phyrexia|27|U|{2}{U}|Instant||| +Vorinclex, Voice of Hunger|New Phyrexia|127|M|{6}{G}{G}|Legendary Creature — Praetor|7|6| +Geosurge|New Phyrexia|85|U|{R}{R}{R}{R}|Sorcery||| +Birthing Pod|New Phyrexia|104|R|{3}{GP}|Artifact||| +Hex Parasite|New Phyrexia|137|R|{1}|Artifact Creature — Insect|1|1| +Slag Fiend|New Phyrexia|95|R|{R}|Creature — Construct|*|*| +Loxodon Convert|New Phyrexia|14|C|{3}{W}|Creature — Elephant Soldier|4|2| +Phyrexia's Core|New Phyrexia|165|U||Land||| +Psychic Barrier|New Phyrexia|43|C|{U}{U}|Instant||| +Vapor Snag|New Phyrexia|48|C|{U}|Instant||| +Shrine of Burning Rage|New Phyrexia|153|U|{2}|Artifact||| +Scrapyard Salvo|New Phyrexia|94|C|{1}{R}{R}|Sorcery||| +Chancellor of the Dross|New Phyrexia|54|R|{4}{B}{B}{B}|Creature — Vampire|6|6| +Chancellor of the Forge|New Phyrexia|81|R|{4}{R}{R}{R}|Creature — Giant|5|5| +Razor Swine|New Phyrexia|92|C|{2}{R}|Creature — Boar|2|1| +Entomber Exarch|New Phyrexia|59|U|{2}{B}{B}|Creature — Cleric|2|2| +Cathedral Membrane|New Phyrexia|5|U|{1}{WP}|Artifact Creature — Wall|0|3| +Leeching Bite|New Phyrexia|113|C|{1}{G}|Instant||| +Priest of Urabrask|New Phyrexia|90|U|{2}{R}|Creature — Human Cleric|2|1| +Vulshok Refugee|New Phyrexia|101|U|{1}{R}{R}|Creature — Human Warrior|3|2| +Mycosynth Wellspring|New Phyrexia|145|C|{2}|Artifact||| +Numbing Dose|New Phyrexia|40|C|{3}{U}{U}|Enchantment — Aura||| +Porcelain Legionnaire|New Phyrexia|19|C|{2}{WP}|Artifact Creature — Soldier|3|1| +Triumph of the Hordes|New Phyrexia|123|U|{2}{G}{G}|Sorcery||| +Whispering Specter|New Phyrexia|77|U|{1}{B}{B}|Creature — Specter|1|1| +Praetor's Grasp|New Phyrexia|71|R|{1}{B}{B}|Sorcery||| +Fresh Meat|New Phyrexia|109|R|{3}{G}|Instant||| +Lost Leonin|New Phyrexia|13|C|{1}{W}|Creature — Cat Soldier|2|1| +Bludgeon Brawl|New Phyrexia|80|R|{2}{R}|Enchantment||| +Isolation Cell|New Phyrexia|141|U|{4}|Artifact||| +Phyrexian Unlife|New Phyrexia|18|R|{2}{W}|Enchantment||| +Caress of Phyrexia|New Phyrexia|53|U|{3}{B}{B}|Sorcery||| +Chancellor of the Tangle|New Phyrexia|106|R|{4}{G}{G}{G}|Creature — Beast|6|7| +Ichor Explosion|New Phyrexia|64|U|{5}{B}{B}|Sorcery||| +Darksteel Relic|New Phyrexia|134|U|{0}|Artifact||| +Gremlin Mine|New Phyrexia|136|C|{1}|Artifact||| +Inquisitor Exarch|New Phyrexia|12|U|{W}{W}|Creature — Cleric|2|2| +Dispatch|New Phyrexia|7|U|{W}|Instant||| +Evil Presence|New Phyrexia|60|C|{B}|Enchantment — Aura||| +Chained Throatseeker|New Phyrexia|30|C|{5}{U}|Creature — Horror|5|5| +Thundering Tanadon|New Phyrexia|122|C|{4}{GP}{GP}|Artifact Creature — Beast|5|4| +Remember the Fallen|New Phyrexia|21|C|{2}{W}|Sorcery||| +Unwinding Clock|New Phyrexia|164|R|{4}|Artifact||| +Artillerize|New Phyrexia|79|C|{3}{R}|Instant||| +Tormentor Exarch|New Phyrexia|97|U|{3}{R}|Creature — Cleric|2|2| +Chancellor of the Annex|New Phyrexia|6|R|{4}{W}{W}{W}|Creature — Angel|5|6| +Mindculling|New Phyrexia|39|U|{5}{U}|Sorcery||| +Phyrexian Swarmlord|New Phyrexia|119|R|{4}{G}{G}|Creature — Insect Horror|4|4| +Mishra's Factory|Duel Decks: Elspeth vs. Tezzeret|73|U||Land||| +Thirst for Knowledge|Duel Decks: Elspeth vs. Tezzeret|68|U|{2}{U}|Instant||| +Swords to Plowshares|Duel Decks: Elspeth vs. Tezzeret|22|U|{W}|Instant||| +Crusade|Duel Decks: Elspeth vs. Tezzeret|27|R|{W}{W}|Enchantment||| +Phantasmal Dragon|Magic 2012|71|U|{2}{U}{U}|Creature — Dragon Illusion|5|5| +Crimson Mage|Magic 2012|129|U|{1}{R}|Creature — Human Shaman|2|1| +Onyx Mage|Magic 2012|103|U|{1}{B}|Creature — Human Wizard|2|1| +Pride Guardian|Magic 2012|31|C|{W}|Creature — Cat Monk|0|3| +Timely Reinforcements|Magic 2012|40|U|{2}{W}|Sorcery||| +Stingerfling Spider|Magic 2012|197|U|{4}{G}|Creature — Spider|2|5| +Garruk's Horde|Magic 2012|176|R|{5}{G}{G}|Creature — Beast|7|7| +Arbalest Elite|Magic 2012|5|U|{2}{W}{W}|Creature — Human Archer|2|3| +Gladecover Scout|Magic 2012|178|C|{G}|Creature — Elf Scout|1|1| +Aegis Angel|Magic 2012|1|R|{4}{W}{W}|Creature — Angel|5|5| +Drifting Shade|Magic 2012|96|C|{3}{B}|Creature — Shade|1|1| +Sphinx of Uthuun|Magic 2012|76|R|{5}{U}{U}|Creature — Sphinx|5|6| +Guardians' Pledge|Magic 2012|22|C|{1}{W}{W}|Instant||| +Druidic Satchel|Magic 2012|207|R|{3}|Artifact||| +Phantasmal Image|Magic 2012|72|R|{1}{U}|Creature — Illusion|0|0| +Garruk, Primal Hunter|Magic 2012|174|M|{2}{G}{G}{G}|Planeswalker — Garruk||| +Furyborn Hellkite|Magic 2012|135|M|{4}{R}{R}{R}|Creature — Dragon|6|6| +Merfolk Mesmerist|Magic 2012|66|C|{1}{U}|Creature — Merfolk Wizard|1|2| +Crumbling Colossus|Magic 2012|204|U|{5}|Artifact Creature — Golem|7|4| +Mesa Enchantress|Magic 2012|25|R|{1}{W}{W}|Creature — Human Druid|0|2| +Tormented Soul|Magic 2012|114|C|{B}|Creature — Spirit|1|1| +Bloodrage Vampire|Magic 2012|83|C|{2}{B}|Creature — Vampire|3|1| +Vampire Outcasts|Magic 2012|115|U|{2}{B}{B}|Creature — Vampire|2|2| +Rune-Scarred Demon|Magic 2012|106|R|{5}{B}{B}|Creature — Demon|6|6| +Lord of the Unreal|Magic 2012|62|R|{U}{U}|Creature — Human Wizard|2|2| +Day of Judgment|Magic 2012|12|R|{2}{W}{W}|Sorcery||| +Monomania|Magic 2012|102|R|{3}{B}{B}|Sorcery||| +Aven Fleetwing|Magic 2012|44|C|{3}{U}|Creature — Bird Soldier|2|2| +Chandra, the Firebrand|Magic 2012|124|M|{3}{R}|Planeswalker — Chandra||| +Adaptive Automaton|Magic 2012|201|R|{3}|Artifact Creature — Construct|2|2| +Skinshifter|Magic 2012|195|R|{1}{G}|Creature — Human Shaman|1|1| +Doubling Chant|Magic 2012|170|R|{5}{G}|Sorcery||| +Skywinder Drake|Magic 2012|75|C|{2}{U}|Creature — Drake|3|1| +Spirit Mantle|Magic 2012|35|U|{1}{W}|Enchantment — Aura||| +Sutured Ghoul|Magic 2012|112|R|{4}{B}{B}{B}|Creature — Zombie|*|*| +Stonehorn Dignitary|Magic 2012|37|C|{3}{W}|Creature — Rhino Soldier|1|4| +Manalith|Magic 2012|212|C|{3}|Artifact||| +Vengeful Pharaoh|Magic 2012|116|R|{2}{B}{B}{B}|Creature — Zombie|5|4| +Primordial Hydra|Magic 2012|189|M|{X}{G}{G}|Creature — Hydra|0|0| +Serra Angel|Magic 2012|33|U|{3}{W}{W}|Creature — Angel|4|4| +Merfolk Looter|Magic 2012|65|C|{1}{U}|Creature — Merfolk Rogue|1|1| +Lifelink|Magic 2012|24|C|{W}|Enchantment — Aura||| +Wall of Torches|Magic 2012|159|C|{1}{R}|Creature — Wall|4|1| +Trollhide|Magic 2012|199|C|{2}{G}|Enchantment — Aura||| +Divination|Magic 2012|50|C|{2}{U}|Sorcery||| +Celestial Purge|Magic 2012|11|U|{1}{W}|Instant||| +Lurking Crocodile|Magic 2012|184|C|{2}{G}|Creature — Crocodile|2|2| +Scepter of Empires|Magic 2012|216|U|{3}|Artifact||| +Dungrove Elder|Magic 2012|171|R|{2}{G}|Creature — Treefolk|*|*| +Amphin Cutthroat|Magic 2012|43|C|{3}{U}|Creature — Salamander Rogue|2|4| +Divine Favor|Magic 2012|14|C|{1}{W}|Enchantment — Aura||| +Carnage Wurm|Magic 2012|168|U|{6}{G}|Creature — Wurm|6|6| +Chasm Drake|Magic 2012|48|C|{4}{U}|Creature — Drake|3|3| +Visions of Beyond|Magic 2012|80|R|{U}|Instant||| +Blood Ogre|Magic 2012|122|C|{2}{R}|Creature — Ogre Warrior|2|2| +Angelic Destiny|Magic 2012|3|M|{2}{W}{W}|Enchantment — Aura||| +Throne of Empires|Magic 2012|221|R|{4}|Artifact||| +Personal Sanctuary|Magic 2012|30|R|{2}{W}|Enchantment||| +Gideon's Avenger|Magic 2012|17|R|{1}{W}{W}|Creature — Human Soldier|2|2| +Lightning Elemental|Magic 2012|149|C|{3}{R}|Creature — Elemental|4|1| +Rusted Sentinel|Magic 2012|215|U|{4}|Artifact Creature — Golem|3|4| +Arachnus Spinner|Magic 2012|162|R|{5}{G}|Creature — Spider|5|7| +Jace's Archivist|Magic 2012|59|R|{1}{U}{U}|Creature — Vedalken Wizard|2|2| +Flashfreeze|Magic 2012|52|U|{1}{U}|Instant||| +Phantasmal Bear|Magic 2012|70|C|{U}|Creature — Bear Illusion|2|2| +Duskhunter Bat|Magic 2012|97|C|{1}{B}|Creature — Bat|1|1| +Swiftfoot Boots|Magic 2012|219|U|{2}|Artifact — Equipment||| +Alabaster Mage|Magic 2012|2|U|{1}{W}|Creature — Human Wizard|2|1| +Turn to Frog|Magic 2012|78|U|{1}{U}|Instant||| +Azure Mage|Magic 2012|45|U|{1}{U}|Creature — Human Wizard|2|1| +Circle of Flame|Magic 2012|127|U|{1}{R}|Enchantment||| +Stormblood Berserker|Magic 2012|156|U|{1}{R}|Creature — Human Berserker|1|1| +Jade Mage|Magic 2012|181|U|{1}{G}|Creature — Human Shaman|2|1| +Griffin Rider|Magic 2012|20|C|{1}{W}|Creature — Human Knight|1|1| +Arachnus Web|Magic 2012|163|C|{2}{G}|Enchantment — Aura||| +Frost Breath|Magic 2012|54|C|{2}{U}|Instant||| +Hunter's Insight|Magic 2012|180|U|{2}{G}|Instant||| +Dark Favor|Magic 2012|89|C|{1}{B}|Enchantment — Aura||| +Gorehorn Minotaurs|Magic 2012|144|C|{2}{R}{R}|Creature — Minotaur Warrior|3|3| +Stave Off|Magic 2012|36|C|{W}|Instant||| +Greatsword|Magic 2012|209|U|{3}|Artifact — Equipment||| +Crown of Empires|Magic 2012|203|U|{2}|Artifact||| +Chandra's Phoenix|Magic 2012|126|R|{1}{R}{R}|Creature — Phoenix|2|2| +Scrambleverse|Magic 2012|153|R|{6}{R}{R}|Sorcery||| +Unsummon|Magic 2012|79|C|{U}|Instant||| +Buried Ruin|Magic 2012|224|U||Land||| +Hideous Visage|Magic 2012|100|C|{2}{B}|Sorcery||| +Bloodlord of Vaasgoth|Magic 2012|82|M|{3}{B}{B}|Creature — Vampire Warrior|3|3| +Myr Galvanizer|Scars of Mirrodin|181|U|{3}|Artifact Creature — Myr|2|2| +Island|Mirrodin Besieged|149|L||Basic Land — Island||| +Plains|Mirrodin Besieged|147|L||Basic Land — Plains||| +Swamp|Mirrodin Besieged|150|L||Basic Land — Swamp||| +Swamp|Mirrodin Besieged|151|L||Basic Land — Swamp||| +Island|Mirrodin Besieged|148|L||Basic Land — Island||| +Goblin Grenade|Magic 2012|140|U|{R}|Sorcery||| +Chameleon Colossus|Archenemy|52|R|{2}{G}{G}|Creature — Shapeshifter|4|4| +Fertilid|Archenemy|54|C|{2}{G}|Creature — Elemental|0|0| +Taurean Mauler|Archenemy|49|R|{2}{R}|Creature — Shapeshifter|2|2| +Agony Warp|Archenemy|76|C|{U}{B}|Instant||| +Branching Bolt|Archenemy|82|C|{1}{R}{G}|Instant||| +Dragon Fodder|Archenemy|34|C|{1}{R}|Sorcery||| +Dregscape Zombie|Archenemy|14|C|{1}{B}|Creature — Zombie|2|1| +Flameblast Dragon|Archenemy|38|R|{4}{R}{R}|Creature — Dragon|5|5| +Infest|Archenemy|19|U|{1}{B}{B}|Sorcery||| +Metallurgeon|Archenemy|2|U|{1}{W}|Artifact Creature — Human Artificer|1|2| +Obelisk of Esper|Archenemy|113|C|{3}|Artifact||| +Sanctum Gargoyle|Archenemy|5|C|{3}{W}|Artifact Creature — Gargoyle|2|3| +Imperial Hellkite|Archenemy|42|R|{5}{R}{R}|Creature — Dragon|6|6| +Kilnmouth Dragon|Archenemy|44|R|{5}{R}{R}|Creature — Dragon|5|5| +Skirk Marauder|Archenemy|48|C|{1}{R}|Creature — Goblin|2|1| +Graypelt Refuge|Archenemy|125|U||Land||| +Hellkite Charger|Archenemy|41|R|{4}{R}{R}|Creature — Dragon|5|5| +Inferno Trap|Archenemy|43|U|{3}{R}|Instant — Trap||| +Kazandu Refuge|Archenemy|126|U||Land||| +Ryusei, the Falling Star|Archenemy|45|R|{5}{R}|Legendary Creature — Dragon Spirit|5|5| +Two-Headed Dragon|Archenemy|50|R|{4}{R}{R}|Creature — Dragon|4|4| +Dragon Breath|Archenemy|33|C|{1}{R}|Enchantment — Aura||| +Dragonspeaker Shaman|Archenemy|36|U|{1}{R}{R}|Creature — Human Barbarian Shaman|2|2| +Fierce Empath|Archenemy|55|C|{2}{G}|Creature — Elf|1|1| +Cemetery Reaper|Archenemy|12|R|{1}{B}{B}|Creature — Zombie|2|2| +Dragon Whelp|Archenemy|35|U|{2}{R}{R}|Creature — Dragon|2|3| +Fireball|Archenemy|37|U|{X}{R}|Sorcery||| +Fog|Archenemy|56|C|{G}|Instant||| +Sign in Blood|Archenemy|25|C|{B}{B}|Sorcery||| +Terramorphic Expanse|Archenemy|134|C||Land||| +Beacon of Unrest|Archenemy|10|R|{3}{B}{B}|Sorcery||| +Furnace Whelp|Archenemy|39|U|{2}{R}{R}|Creature — Dragon|2|2| +Juggernaut|Archenemy|109|U|{4}|Artifact Creature — Juggernaut|5|3| +Molimo, Maro-Sorcerer|Archenemy|64|R|{4}{G}{G}{G}|Legendary Creature — Elemental|*|*| +Barren Moor|Archenemy|124|C||Land||| +Battering Craghorn|Archenemy|30|C|{2}{R}{R}|Creature — Goat Beast|3|1| +Festering Goblin|Archenemy|16|C|{B}|Creature — Zombie Goblin|1|1| +Kamahl, Fist of Krosa|Archenemy|61|R|{4}{G}{G}|Legendary Creature — Human Druid|4|3| +Krosan Tusker|Archenemy|62|C|{5}{G}{G}|Creature — Boar Beast|6|5| +Secluded Steppe|Archenemy|133|C||Land||| +Skirk Commando|Archenemy|47|C|{1}{R}{R}|Creature — Goblin|2|1| +Tranquil Thicket|Archenemy|135|C||Land||| +Gathan Raiders|Archenemy|40|C|{3}{R}{R}|Creature — Human Warrior|3|3| +Llanowar Reborn|Archenemy|129|U||Land||| +Spin into Myth|Archenemy|8|U|{4}{U}|Instant||| +Armadillo Cloak|Archenemy|78|C|{1}{G}{W}|Enchantment — Aura||| +Breath of Darigaaz|Archenemy|31|U|{1}{R}|Sorcery||| +Fires of Yavimaya|Archenemy|86|U|{1}{R}{G}|Enchantment||| +Heroes' Reunion|Archenemy|87|U|{G}{W}|Instant||| +Wane|Archenemy|101|U|{W}|Instant||| +Gruul Signet|Archenemy|108|C|{2}|Artifact||| +Savage Twister|Archenemy|93|U|{X}{R}{G}|Sorcery||| +Thran Dynamo|Archenemy|121|U|{4}|Artifact||| +Extractor Demon|Archenemy|15|R|{4}{B}{B}|Creature — Demon|5|5| +Infectious Horror|Archenemy|18|C|{3}{B}|Creature — Zombie Horror|2|2| +Magister Sphinx|Archenemy|89|R|{4}{W}{U}{B}|Artifact Creature — Sphinx|5|5| +Master Transmuter|Archenemy|7|R|{3}{U}|Artifact Creature — Human Artificer|1|2| +Path to Exile|Archenemy|4|U|{W}|Instant||| +Volcanic Fallout|Archenemy|51|U|{1}{R}{R}|Instant||| +Chandra's Outrage|Archenemy|32|C|{2}{R}{R}|Instant||| +Plummet|Archenemy|65|C|{1}{G}|Instant||| +Reassembling Skeleton|Archenemy|22|U|{1}{B}|Creature — Skeleton Warrior|1|1| +Architects of Will|Archenemy|77|C|{2}{U}{B}|Artifact Creature — Human Wizard|3|3| +Bituminous Blast|Archenemy|81|U|{3}{B}{R}|Instant||| +Colossal Might|Archenemy|83|C|{R}{G}|Instant||| +Ethersworn Shieldmage|Archenemy|84|C|{1}{W}{U}|Artifact Creature — Vedalken Wizard|2|2| +Fieldmist Borderpost|Archenemy|85|C|{1}{W}{U}|Artifact||| +Mistvein Borderpost|Archenemy|90|C|{1}{U}{B}|Artifact||| +Pale Recluse|Archenemy|91|C|{4}{G}{W}|Creature — Spider|4|5| +Terminate|Archenemy|95|C|{B}{R}|Instant||| +Ζther Spellbomb|Archenemy|102|C|{1}|Artifact||| +Duplicant|Archenemy|106|R|{6}|Artifact Creature — Shapeshifter|2|4| +Leonin Abunas|Archenemy|1|R|{3}{W}|Creature — Cat Cleric|2|5| +Lightning Greaves|Archenemy|110|U|{2}|Artifact — Equipment||| +March of the Machines|Archenemy|6|R|{3}{U}|Enchantment||| +Sun Droplet|Archenemy|117|U|{2}|Artifact||| +Synod Sanctum|Archenemy|120|U|{1}|Artifact||| +Memnarch|Archenemy|112|R|{7}|Legendary Artifact Creature — Wizard|4|5| +Sundering Titan|Archenemy|118|R|{8}|Artifact Creature — Golem|7|10| +Everflowing Chalice|Archenemy|107|U|{0}|Artifact||| +Khalni Garden|Archenemy|127|C||Land||| +Lodestone Golem|Archenemy|111|R|{4}|Artifact Creature — Golem|5|3| +Skullcage|Archenemy|115|U|{4}|Artifact||| +Synod Centurion|Archenemy|119|U|{4}|Artifact Creature — Construct|4|4| +Avatar of Discord|Archenemy|79|R|{BR}{BR}{BR}|Creature — Avatar|5|3| +Azorius Signet|Archenemy|103|C|{2}|Artifact||| +Rakdos Carnarium|Archenemy|132|C||Land||| +Rakdos Guildmage|Archenemy|92|U|{BR}{BR}|Creature — Zombie Shaman|2|2| +Rakdos Signet|Archenemy|114|C|{2}|Artifact||| +Krosan Verge|Archenemy|128|U||Land||| +Nantuko Monastery|Archenemy|131|U||Land||| +Incremental Blight|Archenemy|17|U|{3}{B}{B}|Sorcery||| +Torrent of Souls|Archenemy|96|U|{4}{BR}|Sorcery||| +Dimir Signet|Archenemy|104|C|{2}|Artifact||| +Selesnya Guildmage|Archenemy|94|U|{GW}{GW}|Creature — Elf Wizard|2|2| +Vitu-Ghazi, the City-Tree|Archenemy|136|U||Land||| +Watchwolf|Archenemy|100|U|{G}{W}|Creature — Wolf|3|3| +Unbender Tine|Archenemy|97|U|{2}{W}{U}|Artifact||| +Artisan of Kozilek|Archenemy|123|U|{9}|Creature — Eldrazi|10|9| +Dreamstone Hedron|Archenemy|105|U|{6}|Artifact||| +Spider Umbra|Archenemy|70|C|{G}|Enchantment — Aura||| +Bog Witch|Archenemy|11|C|{2}{B}|Creature — Human Spellshaper|1|1| +Kaervek the Merciless|Archenemy|88|R|{5}{B}{R}|Legendary Creature — Human Shaman|5|4| +Thelonite Hermit|Archenemy|71|R|{3}{G}|Creature — Elf Shaman|1|1| +Urborg Syphon-Mage|Archenemy|27|C|{2}{B}|Creature — Human Spellshaper|2|2| +Yavimaya Dryad|Archenemy|75|U|{1}{G}{G}|Creature — Dryad|2|1| +Seething Song|Archenemy|46|C|{2}{R}|Instant||| +Avatar of Woe|Archenemy|9|R|{6}{B}{B}|Creature — Avatar|6|5| +Hunting Moa|Archenemy|60|U|{2}{G}|Creature — Bird Beast|3|2| +Twisted Abomination|Archenemy|26|C|{5}{B}|Creature — Zombie Mutant|5|3| +Verdeloth the Ancient|Archenemy|72|R|{4}{G}{G}|Legendary Creature — Treefolk|4|7| +Wall of Roots|Archenemy|73|C|{1}{G}|Creature — Plant Wall|0|5| +Corpse Connoisseur|Archenemy|13|U|{4}{B}|Creature — Zombie Wizard|3|3| +Leaf Gilder|Archenemy|63|C|{1}{G}|Creature — Elf Druid|2|1| +Makeshift Mannequin|Archenemy|20|U|{3}{B}|Instant||| +Mosswort Bridge|Archenemy|130|R||Land||| +Primal Command|Archenemy|66|R|{3}{G}{G}|Sorcery||| +Shriekmaw|Archenemy|24|U|{4}{B}|Creature — Elemental|3|2| +Batwing Brume|Archenemy|80|U|{1}{WB}|Instant||| +Unmake|Archenemy|98|C|{WB}{WB}{WB}|Instant||| +Wickerbough Elder|Archenemy|74|C|{3}{G}|Creature — Treefolk Shaman|4|4| +Reanimate|Archenemy|21|U|{B}|Sorcery||| +Rancor|Archenemy|67|C|{G}|Enchantment — Aura||| +Vampiric Dragon|Archenemy|99|R|{6}{B}{R}|Creature — Vampire Dragon|5|5| +Zombie Infestation|Archenemy|28|U|{1}{B}|Enchantment||| +Zombify|Archenemy|29|U|{3}{B}|Sorcery||| +Thunderstaff|Archenemy|122|U|{3}|Artifact||| +Sakura-Tribe Elder|Archenemy|68|C|{1}{G}|Creature — Snake Shaman|1|1| +Forgotten Ancient|Archenemy|57|R|{3}{G}|Creature — Elemental|0|3| +Harmonize|Archenemy|59|U|{2}{G}{G}|Sorcery||| +Gleeful Sabotage|Archenemy|58|C|{1}{G}|Sorcery||| +Oblivion Ring|Archenemy|3|C|{2}{W}|Enchantment||| +Shinen of Life's Roar|Archenemy|69|C|{1}{G}|Creature — Spirit|1|2| +Scion of Darkness|Archenemy|23|R|{5}{B}{B}{B}|Creature — Avatar|6|6| +Phyrexian Revoker|Mirrodin Besieged|122|R|{2}|Artifact Creature — Horror|2|1| +Feral Hydra|Archenemy|53|R|{X}{G}|Creature — Hydra Beast|0|0| +Martyrs of Korlis|Masters Edition IV|20|U|{3}{W}{W}|Creature — Human|1|6| +Urza's Mine|Masters Edition IV|257|L||Land — Urza’s Mine||| +Urza's Mine|Masters Edition IV|257|L||Land — Urza’s Mine||| +Urza's Mine|Masters Edition IV|257|L||Land — Urza’s Mine||| +Urza's Mine|Masters Edition IV|257|L||Land — Urza’s Mine||| +Urza's Power Plant|Masters Edition IV|258|L||Land — Urza’s Power-Plant||| +Urza's Power Plant|Masters Edition IV|258|L||Land — Urza’s Power-Plant||| +Urza's Power Plant|Masters Edition IV|258|L||Land — Urza’s Power-Plant||| +Urza's Power Plant|Masters Edition IV|258|L||Land — Urza’s Power-Plant||| +Urza's Tower|Masters Edition IV|259|L||Land — Urza’s Tower||| +Urza's Tower|Masters Edition IV|259|L||Land — Urza’s Tower||| +Urza's Tower|Masters Edition IV|259|L||Land — Urza’s Tower||| +Urza's Tower|Masters Edition IV|259|L||Land — Urza’s Tower||| +Healing Salve|Masters Edition IV|14|C|{W}|Instant||| +Sengir Vampire|Masters Edition IV|96|U|{3}{B}{B}|Creature — Vampire|4|4| +City of Brass|Masters Edition IV|243|R||Land||| +Sandstorm|Masters Edition IV|164|C|{G}|Instant||| +Ogre Taskmaster|Masters Edition IV|128|C|{3}{R}|Creature — Ogre|4|3| +Grapeshot Catapult|Masters Edition IV|204|U|{4}|Artifact Creature — Construct|2|3| +Tawnos's Wand|Masters Edition IV|231|C|{4}|Artifact||| +Dragon Engine|Masters Edition IV|197|C|{3}|Artifact Creature — Construct|1|3| +Onulet|Masters Edition IV|219|C|{3}|Artifact Creature — Construct|2|2| +Urza's Chalice|Masters Edition IV|236|C|{1}|Artifact||| +Flying Carpet|Masters Edition IV|201|C|{4}|Artifact||| +Tawnos's Weaponry|Masters Edition IV|232|U|{2}|Artifact||| +Icy Manipulator|Masters Edition IV|207|U|{4}|Artifact||| +Juggernaut|Masters Edition IV|209|U|{4}|Artifact Creature — Juggernaut|5|3| +Orcish Mechanics|Masters Edition IV|129|U|{2}{R}|Creature — Orc|1|1| +Prodigal Sorcerer|Masters Edition IV|58|U|{2}{U}|Creature — Human Wizard|1|1| +Argivian Blacksmith|Masters Edition IV|4|U|{1}{W}{W}|Creature — Human Artificer|2|2| +Goblin Piker|Magic 2012|141|C|{1}{R}|Creature — Goblin Warrior|2|1| +Goblin Chieftain|Magic 2012|138|R|{1}{R}{R}|Creature — Goblin|2|2| +Titanic Growth|Magic 2012|198|C|{1}{G}|Instant||| +Colossus of Sardia|Masters Edition IV|193|R|{9}|Artifact Creature — Golem|9|9| +Forest|Archenemy|150|L||Basic Land — Forest||| +Forest|Archenemy|149|L||Basic Land — Forest||| +Forest|Archenemy|148|L||Basic Land — Forest||| +Island|Archenemy|139|L||Basic Land — Island||| +Island|Archenemy|141|L||Basic Land — Island||| +Island|Archenemy|140|L||Basic Land — Island||| +Mountain|Archenemy|145|L||Basic Land — Mountain||| +Mountain|Archenemy|147|L||Basic Land — Mountain||| +Mountain|Archenemy|146|L||Basic Land — Mountain||| +Plains|Archenemy|137|L||Basic Land — Plains||| +Plains|Archenemy|138|L||Basic Land — Plains||| +Swamp|Archenemy|142|L||Basic Land — Swamp||| +Swamp|Archenemy|143|L||Basic Land — Swamp||| +Swamp|Archenemy|144|L||Basic Land — Swamp||| +Redirect|Magic 2012|74|R|{U}{U}|Instant||| +Alaborn Musketeer|Masters Edition IV|1|C|{1}{W}|Creature — Human Soldier|2|1| +Alluring Scent|Masters Edition IV|141|C|{1}{G}{G}|Sorcery||| +Foul Spirit|Masters Edition IV|81|C|{2}{B}|Creature — Spirit|3|2| +Sleight of Hand|Masters Edition IV|62|C|{U}|Sorcery||| +Talas Researcher|Masters Edition IV|66|U|{4}{U}|Creature — Human Pirate Wizard|1|1| +Theft of Dreams|Masters Edition IV|67|U|{2}{U}|Sorcery||| +Goblin Bully|Masters Edition IV|117|C|{1}{R}|Creature — Goblin|2|1| +Dark Ritual|Masters Edition IV|74|C|{B}|Instant||| +Fireball|Masters Edition IV|115|U|{X}{R}|Sorcery||| +Squall|Masters Edition IV|168|U|{2}{G}|Sorcery||| +Warp Artifact|Masters Edition IV|100|C|{B}{B}|Enchantment — Aura||| +Deathmark|Magic 2012|90|U|{B}|Sorcery||| +Thing from the Deep|Masters Edition IV|68|R|{6}{U}{U}{U}|Creature — Leviathan|9|9| +Deathcoil Wurm|Masters Edition IV|149|R|{6}{G}{G}|Creature — Wurm|7|6| +Diabolic Tutor|Magic 2012|92|U|{2}{B}{B}|Sorcery||| +Angel's Feather|Magic 2012|202|U|{2}|Artifact||| +Kraken's Eye|Magic 2012|211|U|{2}|Artifact||| +Demon's Horn|Magic 2012|205|U|{2}|Artifact||| +Dragon's Claw|Magic 2012|206|U|{2}|Artifact||| +Wurm's Tooth|Magic 2012|223|U|{2}|Artifact||| +Elixir of Immortality|Magic 2012|208|U|{1}|Artifact||| +Gravedigger|Magic 2012|99|C|{3}{B}|Creature — Zombie|2|2| +Beast Within|New Phyrexia|103|U|{2}{G}|Instant||| +Ebon Dragon|Masters Edition IV|80|R|{5}{B}{B}|Creature — Dragon|5|4| +Sylvan Tutor|Masters Edition IV|169|U|{G}|Sorcery||| +Fireball|Magic 2012|131|U|{X}{R}|Sorcery||| +Artifact Blast|Masters Edition IV|108|C|{R}|Instant||| +Dakmor Plague|Masters Edition IV|73|U|{3}{B}{B}|Sorcery||| +Phantasmal Terrain|Masters Edition IV|56|C|{U}{U}|Enchantment — Aura||| +Master's Call|Mirrodin Besieged|13|C|{2}{W}|Instant||| +White Sun's Zenith|Mirrodin Besieged|19|R|{X}{W}{W}{W}|Instant||| +Blue Sun's Zenith|Mirrodin Besieged|20|R|{X}{U}{U}{U}|Instant||| +Spread the Sickness|Mirrodin Besieged|56|C|{4}{B}|Sorcery||| +Red Sun's Zenith|Mirrodin Besieged|74|R|{X}{R}|Sorcery||| +Green Sun's Zenith|Mirrodin Besieged|81|R|{X}{G}|Sorcery||| +Flayer Husk|Mirrodin Besieged|107|C|{1}|Artifact — Equipment||| +Pierce Strider|Mirrodin Besieged|123|U|{4}|Artifact Creature — Construct|3|3| +Skinwing|Mirrodin Besieged|133|U|{4}|Artifact — Equipment||| +Blightsteel Colossus|Mirrodin Besieged|99|M|{12}|Artifact Creature — Golem|11|11| +Giant Tortoise|Masters Edition IV|50|C|{1}{U}|Creature — Turtle|1|1| +Sea Serpent|Masters Edition IV|60|C|{5}{U}|Creature — Serpent|5|5| +Steam Catapult|Masters Edition IV|29|R|{3}{W}{W}|Creature — Human Soldier|2|3| +Black Knight|Masters Edition IV|71|U|{B}{B}|Creature — Human Knight|2|2| +White Knight|Masters Edition IV|33|U|{W}{W}|Creature — Human Knight|2|2| +Bee Sting|Masters Edition IV|144|U|{3}{G}|Sorcery||| +Ironhoof Ox|Masters Edition IV|158|C|{3}{G}{G}|Creature — Ox|4|4| +Tablet of Epityr|Masters Edition IV|230|C|{1}|Artifact||| +Savannah Lions|Masters Edition IV|24|U|{W}|Creature — Cat|2|1| +Wild Griffin|Masters Edition IV|35|C|{2}{W}|Creature — Griffin|2|2| +Lava Axe|Magic 2012|148|C|{4}{R}|Sorcery||| +Llanowar Elves|Magic 2012|182|C|{G}|Creature — Elf Druid|1|1| +Runeclaw Bear|Magic 2012|193|C|{1}{G}|Creature — Bear|2|2| +Naturalize|Magic 2012|185|C|{1}{G}|Instant||| +Cudgel Troll|Magic 2012|169|U|{2}{G}{G}|Creature — Troll|4|3| +Birds of Paradise|Magic 2012|165|R|{G}|Creature — Bird|0|1| +Grand Abolisher|Magic 2012|19|R|{W}{W}|Creature — Human Cleric|2|2| +Prowling Nightstalker|Masters Edition IV|93|C|{3}{B}|Creature — Nightstalker|2|2| +Elite Cat Warrior|Masters Edition IV|151|C|{2}{G}|Creature — Cat Warrior|2|3| +Wild Ox|Masters Edition IV|174|U|{3}{G}|Creature — Ox|3|3| +Glacial Fortress|Magic 2012|227|R||Land||| +Drowned Catacomb|Magic 2012|226|R||Land||| +Dragonskull Summit|Magic 2012|225|R||Land||| +Rootbound Crag|Magic 2012|228|R||Land||| +Sunpetal Grove|Magic 2012|229|R||Land||| +Air Elemental|Masters Edition IV|37|U|{3}{U}{U}|Creature — Elemental|4|4| +Alaborn Trooper|Masters Edition IV|2|C|{2}{W}|Creature — Human Soldier|2|3| +Cloud Spirit|Masters Edition IV|42|C|{2}{U}|Creature — Spirit|3|1| +Stormfront Pegasus|Magic 2012|38|C|{1}{W}|Creature — Pegasus|2|1| +Armored Warhorse|Magic 2012|7|C|{W}{W}|Creature — Horse|2|3| +Siege Mastodon|Magic 2012|34|C|{4}{W}|Creature — Elephant|3|5| +Griffin Sentinel|Magic 2012|21|C|{2}{W}|Creature — Griffin|1|3| +Sorcerer's Strongbox|Archenemy|116|U|{4}|Artifact||| +Loyal Sentry|Duel Decks: Elspeth vs. Tezzeret|5|R|{W}|Creature — Human Soldier|1|1| +Razormane Masticore|Duel Decks: Elspeth vs. Tezzeret|56|R|{5}|Artifact Creature — Masticore|5|5| +Goldmeadow Harrier|Duel Decks: Elspeth vs. Tezzeret|3|C|{W}|Creature — Kithkin Soldier|1|1| +Moonglove Extract|Duel Decks: Elspeth vs. Tezzeret|67|C|{3}|Artifact||| +Elite Vanguard|Duel Decks: Elspeth vs. Tezzeret|2|U|{W}|Creature — Human Soldier|2|1| +Elixir of Immortality|Duel Decks: Elspeth vs. Tezzeret|62|U|{1}|Artifact||| +Infantry Veteran|Duel Decks: Elspeth vs. Tezzeret|4|C|{W}|Creature — Human Soldier|1|1| +Juggernaut|Duel Decks: Elspeth vs. Tezzeret|52|U|{4}|Artifact Creature — Juggernaut|5|3| +Steel Overseer|Duel Decks: Elspeth vs. Tezzeret|44|R|{2}|Artifact Creature — Construct|1|1| +Triskelion|Duel Decks: Elspeth vs. Tezzeret|57|R|{6}|Artifact Creature — Construct|1|1| +Mosquito Guard|Duel Decks: Elspeth vs. Tezzeret|6|C|{W}|Creature — Kithkin Soldier|1|1| +Rustic Clachan|Duel Decks: Elspeth vs. Tezzeret|34|R||Land||| +Swell of Courage|Duel Decks: Elspeth vs. Tezzeret|31|U|{3}{W}{W}|Instant||| +Ζther Spellbomb|Duel Decks: Elspeth vs. Tezzeret|61|C|{1}|Artifact||| +Blinding Beam|Duel Decks: Elspeth vs. Tezzeret|28|C|{2}{W}|Instant||| +Clockwork Condor|Duel Decks: Elspeth vs. Tezzeret|50|C|{4}|Artifact Creature — Bird|0|0| +Island|Duel Decks: Elspeth vs. Tezzeret|79|L||Basic Land — Island||| +Island|Duel Decks: Elspeth vs. Tezzeret|76|L||Basic Land — Island||| +Island|Duel Decks: Elspeth vs. Tezzeret|78|L||Basic Land — Island||| +Island|Duel Decks: Elspeth vs. Tezzeret|77|L||Basic Land — Island||| +Raise the Alarm|Duel Decks: Elspeth vs. Tezzeret|25|C|{1}{W}|Instant||| +Razor Barrier|Duel Decks: Elspeth vs. Tezzeret|26|C|{1}{W}|Instant||| +Stalking Stones|Duel Decks: Elspeth vs. Tezzeret|75|U||Land||| +Steel Wall|Duel Decks: Elspeth vs. Tezzeret|41|C|{1}|Artifact Creature — Wall|0|4| +Thoughtcast|Duel Decks: Elspeth vs. Tezzeret|71|C|{4}{U}|Sorcery||| +Arcbound Worker|Duel Decks: Elspeth vs. Tezzeret|40|C|{1}|Artifact Creature — Construct|0|0| +Darksteel Citadel|Duel Decks: Elspeth vs. Tezzeret|72|C||Artifact Land||| +Echoing Truth|Duel Decks: Elspeth vs. Tezzeret|66|C|{1}{U}|Instant||| +Glory Seeker|Duel Decks: Elspeth vs. Tezzeret|7|C|{1}{W}|Creature — Human Soldier|2|2| +Runed Servitor|Duel Decks: Elspeth vs. Tezzeret|42|U|{2}|Artifact Creature — Construct|2|2| +Qumulox|Duel Decks: Elspeth vs. Tezzeret|59|U|{6}{U}{U}|Creature — Beast|5|4| +Seat of the Synod|Duel Decks: Elspeth vs. Tezzeret|74|C||Artifact Land||| +Silver Myr|Duel Decks: Elspeth vs. Tezzeret|43|C|{2}|Artifact Creature — Myr|1|1| +Serrated Biskelion|Duel Decks: Elspeth vs. Tezzeret|46|U|{3}|Artifact Creature — Construct|2|2| +Master of Etherium|Duel Decks: Elspeth vs. Tezzeret|48|R|{2}{U}|Artifact Creature — Vedalken Wizard|*|*| +Trinket Mage|Duel Decks: Elspeth vs. Tezzeret|49|C|{2}{U}|Creature — Human Wizard|2|2| +Faerie Mechanist|Duel Decks: Elspeth vs. Tezzeret|54|C|{3}{U}|Artifact Creature — Faerie Artificer|2|2| +Celestial Crusader|Duel Decks: Elspeth vs. Tezzeret|14|U|{2}{W}{W}|Creature — Spirit|2|2| +Clockwork Hydra|Duel Decks: Elspeth vs. Tezzeret|55|U|{5}|Artifact Creature — Hydra|0|0| +Everflowing Chalice|Duel Decks: Elspeth vs. Tezzeret|60|U|{0}|Artifact||| +Plains|Duel Decks: Elspeth vs. Tezzeret|38|L||Basic Land — Plains||| +Plains|Duel Decks: Elspeth vs. Tezzeret|36|L||Basic Land — Plains||| +Plains|Duel Decks: Elspeth vs. Tezzeret|37|L||Basic Land — Plains||| +Plains|Duel Decks: Elspeth vs. Tezzeret|35|L||Basic Land — Plains||| +Trip Noose|Duel Decks: Elspeth vs. Tezzeret|65|U|{2}|Artifact||| +Temple Acolyte|Duel Decks: Elspeth vs. Tezzeret|9|C|{1}{W}|Creature — Human Cleric|1|3| +Journey to Nowhere|Duel Decks: Elspeth vs. Tezzeret|23|C|{1}{W}|Enchantment||| +Kabira Crossroads|Duel Decks: Elspeth vs. Tezzeret|33|C||Land||| +Kor Hookmaster|Duel Decks: Elspeth vs. Tezzeret|12|C|{2}{W}|Creature — Kor Soldier|2|2| +Kor Skyfisher|Duel Decks: Elspeth vs. Tezzeret|8|C|{1}{W}|Creature — Kor Soldier|2|3| +Abolish|Duel Decks: Elspeth vs. Tezzeret|29|U|{1}{W}{W}|Instant||| +Foil|Duel Decks: Elspeth vs. Tezzeret|70|U|{2}{U}{U}|Instant||| +Conclave Equenaut|Duel Decks: Elspeth vs. Tezzeret|19|C|{4}{W}{W}|Creature — Human Soldier|3|3| +Conclave Phalanx|Duel Decks: Elspeth vs. Tezzeret|16|U|{4}{W}|Creature — Human Soldier|2|4| +Burrenton Bombardier|Duel Decks: Elspeth vs. Tezzeret|11|C|{2}{W}|Creature — Kithkin Soldier|2|2| +Seasoned Marshal|Duel Decks: Elspeth vs. Tezzeret|15|U|{2}{W}{W}|Creature — Human Soldier|2|2| +Catapult Master|Duel Decks: Elspeth vs. Tezzeret|18|R|{3}{W}{W}|Creature — Human Soldier|3|3| +Daru Encampment|Duel Decks: Elspeth vs. Tezzeret|32|U||Land||| +Angel of Salvation|Duel Decks: Elspeth vs. Tezzeret|20|R|{6}{W}{W}|Creature — Angel|5|5| +Saltblast|Duel Decks: Elspeth vs. Tezzeret|30|U|{3}{W}{W}|Sorcery||| +Sunlance|Duel Decks: Elspeth vs. Tezzeret|21|C|{W}|Sorcery||| +Frogmite|Duel Decks: Elspeth vs. Tezzeret|51|C|{4}|Artifact Creature — Frog|2|2| +Argivian Restoration|Duel Decks: Elspeth vs. Tezzeret|69|U|{2}{U}{U}|Sorcery||| +Spiraling Duelist|Mirrodin Besieged|76|U|{2}{R}{R}|Creature — Human Berserker|3|1| +Leonin Relic-Warder|Mirrodin Besieged|10|U|{W}{W}|Creature — Cat Cleric|2|2| +Vedalken Anatomist|Mirrodin Besieged|36|U|{2}{U}|Creature — Vedalken Wizard|1|2| +Tangle Mantis|Mirrodin Besieged|91|C|{2}{G}{G}|Creature — Insect|3|4| +Morbid Plunder|Mirrodin Besieged|47|C|{1}{B}{B}|Sorcery||| +Zombie Goliath|Magic 2012|119|C|{4}{B}|Creature — Zombie Giant|4|3| +Doom Blade|Magic 2012|95|C|{1}{B}|Instant||| +Taste of Blood|Magic 2012|113|C|{B}|Sorcery||| +Devouring Swarm|Magic 2012|91|C|{1}{B}{B}|Creature — Insect|2|1| +Reassembling Skeleton|Magic 2012|104|U|{1}{B}|Creature — Skeleton Warrior|1|1| +Bonebreaker Giant|Magic 2012|123|C|{4}{R}|Creature — Giant|4|4| +Chandra's Outrage|Magic 2012|125|C|{2}{R}{R}|Instant||| +Firebreathing|Magic 2012|132|C|{R}|Enchantment — Aura||| +Act of Treason|Magic 2012|121|C|{2}{R}|Sorcery||| +Combust|Magic 2012|128|U|{1}{R}|Instant||| +Energy Chamber|Duel Decks: Elspeth vs. Tezzeret|64|U|{2}|Artifact||| +Synod Centurion|Duel Decks: Elspeth vs. Tezzeret|53|U|{4}|Artifact Creature — Construct|4|4| +Mighty Leap|Duel Decks: Elspeth vs. Tezzeret|24|C|{1}{W}|Instant||| +Kor Aeronaut|Duel Decks: Elspeth vs. Tezzeret|10|U|{W}{W}|Creature — Kor Soldier|2|2| +Esperzoa|Duel Decks: Elspeth vs. Tezzeret|47|U|{2}{U}|Artifact Creature — Jellyfish|4|3| +Stormfront Riders|Duel Decks: Elspeth vs. Tezzeret|17|U|{4}{W}|Creature — Human Soldier|4|3| +Garruk's Companion|Magic 2012|175|C|{G}{G}|Creature — Beast|3|2| +Fog|Magic 2012|173|C|{G}|Instant||| +Bountiful Harvest|Magic 2012|166|C|{4}{G}|Sorcery||| +Reclaim|Magic 2012|191|C|{G}|Instant||| +Lure|Magic 2012|183|U|{1}{G}{G}|Enchantment — Aura||| +Acidic Slime|Magic 2012|161|U|{3}{G}{G}|Creature — Ooze|2|2| +Assembly-Worker|Duel Decks: Elspeth vs. Tezzeret|45|U|{3}|Artifact Creature — Assembly-Worker|2|2| +Contagion Clasp|Duel Decks: Elspeth vs. Tezzeret|63|U|{2}|Artifact||| +Kemba's Skyguard|Duel Decks: Elspeth vs. Tezzeret|13|C|{1}{W}{W}|Creature — Cat Knight|2|2| +Pentavus|Duel Decks: Elspeth vs. Tezzeret|58|R|{7}|Artifact Creature — Construct|0|0| +Ζther Adept|Magic 2012|41|C|{1}{U}{U}|Creature — Human Wizard|2|2| +Coral Merfolk|Magic 2012|49|C|{1}{U}|Creature — Merfolk|2|1| +Cancel|Magic 2012|47|C|{1}{U}{U}|Instant||| +Jace's Erasure|Magic 2012|60|C|{1}{U}|Enchantment||| +Worldslayer|Magic 2012|222|R|{5}|Artifact — Equipment||| +Djinn of Wishes|Magic 2012|51|R|{3}{U}{U}|Creature — Djinn|4|4| +Puresteel Paladin|New Phyrexia|20|R|{W}{W}|Creature — Human Knight|2|2| +Island|New Phyrexia|169|L||Basic Land — Island||| +Mountain|New Phyrexia|172|L||Basic Land — Mountain||| +Jor Kadeen, the Prevailer|New Phyrexia|128|R|{3}{R}{W}|Legendary Creature — Human Warrior|5|4| +Hovermyr|New Phyrexia|138|C|{2}|Artifact Creature — Myr|1|2| +Plains|New Phyrexia|167|L||Basic Land — Plains||| +Swamp|New Phyrexia|170|L||Basic Land — Swamp||| +Swamp|New Phyrexia|171|L||Basic Land — Swamp||| +Ruthless Invasion|New Phyrexia|93|C|{3}{RP}|Sorcery||| +Island|New Phyrexia|168|L||Basic Land — Island||| +Fallen Ferromancer|New Phyrexia|82|U|{3}{R}|Creature — Human Shaman|1|1| +Xenograft|New Phyrexia|51|R|{4}{U}|Enchantment||| +Tezzeret's Gambit|New Phyrexia|47|U|{3}{UP}|Sorcery||| +Victorious Destruction|New Phyrexia|99|C|{4}{R}|Sorcery||| +Plains|New Phyrexia|166|L||Basic Land — Plains||| +Benalish Veteran|Magic 2012|10|C|{2}{W}|Creature — Human Soldier|2|2| +Sundial of the Infinite|Magic 2012|218|R|{2}|Artifact||| +Master Thief|Magic 2012|64|U|{2}{U}{U}|Creature — Human Rogue|2|2| +Gideon's Lawkeeper|Magic 2012|18|C|{W}|Creature — Human Soldier|1|1| +Alliance of Arms|Magic: The Gathering-Commander|4|R|{W}|Sorcery||| +Dread Cacodemon|Magic: The Gathering-Commander|79|R|{7}{B}{B}{B}|Creature — Demon|8|8| +The Mimeoplasm|Magic: The Gathering-Commander|210|M|{2}{G}{U}{B}|Legendary Creature — Ooze|0|0| +Magmatic Force|Magic: The Gathering-Commander|128|R|{5}{R}{R}{R}|Creature — Elemental|7|7| +Trench Gorger|Magic: The Gathering-Commander|65|R|{6}{U}{U}|Creature — Leviathan|6|6| +Archangel of Strife|Magic: The Gathering-Commander|7|R|{5}{W}{W}|Creature — Angel|6|6| +Hydra Omnivore|Magic: The Gathering-Commander|161|R|{4}{G}{G}|Creature — Hydra|8|8| +Crescendo of War|Magic: The Gathering-Commander|12|R|{3}{W}|Enchantment||| +Flusterstorm|Magic: The Gathering-Commander|46|R|{U}|Instant||| +Celestial Force|Magic: The Gathering-Commander|10|R|{5}{W}{W}{W}|Creature — Elemental|7|7| +Shared Trauma|Magic: The Gathering-Commander|99|R|{B}|Sorcery||| +Armageddon|Masters Edition IV|5|R|{3}{W}|Sorcery||| +Mahamoti Djinn|Masters Edition IV|52|R|{4}{U}{U}|Creature — Djinn|5|6| +Shivan Dragon|Masters Edition IV|136|R|{4}{R}{R}|Creature — Dragon|5|5| +Devastation|Masters Edition IV|112|R|{5}{R}{R}|Sorcery||| +Dread Reaper|Masters Edition IV|78|R|{3}{B}{B}{B}|Creature — Horror|6|5| +Harsh Justice|Masters Edition IV|13|R|{2}{W}|Instant||| +Urza's Miter|Masters Edition IV|237|R|{3}|Artifact||| +Al-abara's Carpet|Masters Edition IV|177|R|{5}|Artifact||| +Alchor's Tomb|Masters Edition IV|178|R|{4}|Artifact||| +Mana Matrix|Masters Edition IV|213|R|{6}|Artifact||| +Vibrating Sphere|Masters Edition IV|238|R|{4}|Artifact||| +Warstorm Surge|Magic 2012|160|R|{5}{R}|Enchantment||| +Pacifism|Magic 2012|28|C|{1}{W}|Enchantment — Aura||| +Goblin Fireslinger|Magic 2012|139|C|{R}|Creature — Goblin Warrior|1|1| +Goblin Bangchuckers|Magic 2012|137|U|{2}{R}{R}|Creature — Goblin Warrior|2|2| +Death by Dragons|Magic: The Gathering-Commander|118|U|{4}{R}{R}|Sorcery||| +Edric, Spymaster of Trest|Magic: The Gathering-Commander|196|R|{1}{G}{U}|Legendary Creature — Elf Rogue|2|2| +Mountain|New Phyrexia|173|L||Basic Land — Mountain||| +Slash Panther|New Phyrexia|96|C|{4}{RP}|Artifact Creature — Cat|4|2| +Mental Misstep|New Phyrexia|38|U|{UP}|Instant||| +Noxious Revival|New Phyrexia|118|U|{GP}|Instant||| +Spinebiter|New Phyrexia|121|U|{4}{G}{G}|Creature — Beast|3|4| +Conversion Chamber|New Phyrexia|133|U|{3}|Artifact||| +Forest|New Phyrexia|175|L||Basic Land — Forest||| +Marrow Shards|New Phyrexia|15|U|{WP}|Instant||| +Gut Shot|New Phyrexia|86|U|{RP}|Instant||| +Corrosive Gale|New Phyrexia|107|U|{X}{GP}|Sorcery||| +Act of Aggression|New Phyrexia|78|U|{3}{RP}{RP}|Instant||| +War Report|New Phyrexia|26|C|{3}{W}|Instant||| +Pith Driller|New Phyrexia|69|C|{4}{BP}|Artifact Creature — Horror|2|4| +Forest|New Phyrexia|174|L||Basic Land — Forest||| +Dismember|New Phyrexia|57|U|{1}{BP}{BP}|Instant||| +Forced Worship|New Phyrexia|11|C|{1}{W}|Enchantment — Aura||| +Harbor Serpent|Magic 2012|56|C|{4}{U}{U}|Creature — Serpent|5|5| +Negate|Magic 2012|69|C|{1}{U}|Instant||| +Wring Flesh|Magic 2012|118|C|{B}|Instant||| +Slaughter Cry|Magic 2012|155|C|{2}{R}|Instant||| +Manic Vandal|Magic 2012|151|C|{2}{R}|Creature — Human Warrior|2|2| +Wing Splicer|New Phyrexia|50|U|{3}{U}|Creature — Human Artificer|1|1| +Sensor Splicer|New Phyrexia|22|C|{4}{W}|Creature — Artificer|1|1| +Maul Splicer|New Phyrexia|114|C|{6}{G}|Creature — Human Artificer|1|1| +Surgical Extraction|New Phyrexia|74|R|{BP}|Instant||| +Omen Machine|New Phyrexia|148|R|{6}|Artifact||| +Despise|New Phyrexia|56|U|{B}|Sorcery||| +Blinding Souleater|New Phyrexia|131|C|{3}|Artifact Creature — Cleric|1|3| +Viral Drake|New Phyrexia|49|U|{3}{U}|Creature — Drake|1|4| +Soul Conduit|New Phyrexia|158|R|{6}|Artifact||| +Norn's Annex|New Phyrexia|17|R|{3}{WP}{WP}|Artifact||| +Moltensteel Dragon|New Phyrexia|88|R|{4}{RP}{RP}|Artifact Creature — Dragon|4|4| +Glistener Elf|New Phyrexia|111|C|{G}|Creature — Elf Warrior|1|1| +Spire Monitor|New Phyrexia|46|C|{4}{U}|Creature — Drake|3|3| +Postmortem Lunge|New Phyrexia|70|U|{X}{BP}|Sorcery||| +Batterskull|New Phyrexia|130|M|{5}|Artifact — Equipment||| +Gitaxian Probe|New Phyrexia|35|C|{UP}|Sorcery||| +Immolating Souleater|New Phyrexia|139|C|{2}|Artifact Creature — Hound|1|1| +Shattered Angel|New Phyrexia|23|U|{3}{W}{W}|Creature — Angel|3|3| +Enslave|New Phyrexia|58|U|{4}{B}{B}|Enchantment — Aura||| +Master Splicer|New Phyrexia|16|U|{3}{W}|Creature — Human Artificer|1|1| +Greenhilt Trainee|New Phyrexia|112|U|{3}{G}|Creature — Elf Warrior|2|3| +Rotted Hystrix|New Phyrexia|120|C|{4}{G}|Creature — Beast|3|6| +Death-Hood Cobra|New Phyrexia|108|C|{1}{G}|Creature — Snake|2|2| +Insatiable Souleater|New Phyrexia|140|C|{4}|Artifact Creature — Beast|5|1| +Invader Parasite|New Phyrexia|87|R|{3}{R}{R}|Creature — Insect|3|2| +Blade Splicer|New Phyrexia|4|R|{2}{W}|Creature — Human Artificer|1|1| +Torpor Orb|New Phyrexia|162|R|{2}|Artifact||| +Mutagenic Growth|New Phyrexia|116|C|{GP}|Instant||| +Mortis Dogs|New Phyrexia|66|C|{3}{B}|Creature — Hound|2|2| +Trespassing Souleater|New Phyrexia|163|C|{3}|Artifact Creature — Construct|2|2| +Pristine Talisman|New Phyrexia|151|C|{3}|Artifact||| +Due Respect|New Phyrexia|8|U|{1}{W}|Instant||| +Mindcrank|New Phyrexia|144|U|{2}|Artifact||| +Vital Splicer|New Phyrexia|126|U|{3}{G}|Creature — Human Artificer|1|1| +Corrupted Resolve|New Phyrexia|32|U|{1}{U}|Instant||| +Toxic Nim|New Phyrexia|75|C|{4}{B}{B}|Creature — Zombie|4|1| +Ogre Menial|New Phyrexia|89|C|{3}{R}|Creature — Ogre|0|4| +Dementia Bat|New Phyrexia|55|C|{4}{B}|Creature — Bat|2|2| +Pestilent Souleater|New Phyrexia|149|C|{5}|Artifact Creature — Insect|3|3| +Flameborn Viron|New Phyrexia|83|C|{4}{R}{R}|Creature — Insect|6|4| +Scavenging Ooze|Magic: The Gathering-Commander|170|R|{1}{G}|Creature — Ooze|2|2| +Stranglehold|Magic: The Gathering-Commander|136|R|{3}{R}|Enchantment||| +Acorn Catapult|Magic: The Gathering-Commander|241|R|{4}|Artifact||| +Champion's Helm|Magic: The Gathering-Commander|244|R|{3}|Artifact — Equipment||| +Homeward Path|Magic: The Gathering-Commander|277|R||Land||| +Syphon Flesh|Magic: The Gathering-Commander|103|U|{4}{B}|Sorcery||| +Rampant Growth|Magic 2012|190|C|{1}{G}|Sorcery||| +Giant Spider|Magic 2012|177|C|{3}{G}|Creature — Spider|2|4| +Greater Basilisk|Magic 2012|179|C|{3}{G}{G}|Creature — Basilisk|3|5| +Plummet|Magic 2012|187|C|{1}{G}|Instant||| +Honor of the Pure|Magic 2012|23|R|{1}{W}|Enchantment||| +Martyr's Cry|Masters Edition IV|19|R|{W}{W}|Sorcery||| +Leeches|Masters Edition IV|18|R|{1}{W}{W}|Sorcery||| +Acid Rain|Masters Edition IV|36|R|{3}{U}|Sorcery||| +Cloud Dragon|Masters Edition IV|41|R|{5}{U}|Creature — Illusion Dragon|5|4| +Rain of Daggers|Masters Edition IV|94|R|{4}{B}{B}|Sorcery||| +Minion of Tevesh Szat|Masters Edition IV|91|R|{4}{B}{B}{B}|Creature — Demon Minion|4|4| +Last Chance|Masters Edition IV|125|R|{R}{R}|Sorcery||| +Force of Nature|Masters Edition IV|154|R|{2}{G}{G}{G}{G}|Creature — Elemental|8|8| +Living Lands|Masters Edition IV|161|R|{3}{G}|Enchantment||| +Smoke|Masters Edition IV|137|R|{R}{R}|Enchantment||| +Reverberate|Magic 2012|152|R|{R}{R}|Instant||| +Levitation|Magic 2012|61|U|{2}{U}{U}|Enchantment||| +Cemetery Reaper|Magic 2012|86|R|{1}{B}{B}|Creature — Zombie|2|2| +Thran Golem|Magic 2012|220|U|{5}|Artifact Creature — Golem|3|3| +Incinerate|Magic 2012|146|C|{1}{R}|Instant||| +Grim Lavamancer|Magic 2012|145|R|{R}|Creature — Human Wizard|1|1| +Sorin's Vengeance|Magic 2012|111|R|{4}{B}{B}{B}|Sorcery||| +Child of Night|Magic 2012|87|C|{1}{B}|Creature — Vampire|2|1| +Mind Rot|Magic 2012|101|C|{2}{B}|Sorcery||| +Oblivion Ring|Magic 2012|27|U|{2}{W}|Enchantment||| +Tectonic Rift|Magic 2012|157|U|{3}{R}|Sorcery||| +Ghitu Encampment|Premium Deck Series: Fire and Lightning|29|U||Land||| +Mogg Fanatic|Premium Deck Series: Fire and Lightning|3|U|{R}|Creature — Goblin|1|1| +Spark Elemental|Premium Deck Series: Fire and Lightning|4|U|{R}|Creature — Elemental|3|1| +Sudden Impact|Premium Deck Series: Fire and Lightning|25|U|{3}{R}|Instant||| +Fire Servant|Premium Deck Series: Fire and Lightning|15|U|{3}{R}{R}|Creature — Elemental|4|3| +Fireball|Premium Deck Series: Fire and Lightning|27|U|{X}{R}|Sorcery||| +Lightning Bolt|Premium Deck Series: Fire and Lightning|17|C|{R}|Instant||| +Reverberate|Premium Deck Series: Fire and Lightning|20|R|{R}{R}|Instant||| +Grim Lavamancer|Premium Deck Series: Fire and Lightning|1|R|{R}|Creature — Human Wizard|1|1| +Jaya Ballard, Task Mage|Premium Deck Series: Fire and Lightning|10|R|{1}{R}{R}|Legendary Creature — Human Spellshaper|2|2| +Keldon Marauders|Premium Deck Series: Fire and Lightning|7|C|{1}{R}|Creature — Human Warrior|3|3| +Mogg Flunkies|Premium Deck Series: Fire and Lightning|8|C|{1}{R}|Creature — Goblin|3|3| +Hellspark Elemental|Premium Deck Series: Fire and Lightning|6|U|{1}{R}|Creature — Elemental|3|1| +Browbeat|Premium Deck Series: Fire and Lightning|21|U|{2}{R}|Sorcery||| +Keldon Champion|Premium Deck Series: Fire and Lightning|14|U|{2}{R}{R}|Creature — Human Barbarian|3|2| +Price of Progress|Premium Deck Series: Fire and Lightning|18|U|{1}{R}|Instant||| +Teetering Peaks|Premium Deck Series: Fire and Lightning|30|C||Land||| +Thunderbolt|Premium Deck Series: Fire and Lightning|19|C|{1}{R}|Instant||| +Cinder Pyromancer|Premium Deck Series: Fire and Lightning|9|C|{2}{R}|Creature — Elemental Shaman|0|1| +Flames of the Blood Hand|Premium Deck Series: Fire and Lightning|22|U|{2}{R}|Instant||| +Vulshok Sorcerer|Premium Deck Series: Fire and Lightning|11|C|{1}{R}{R}|Creature — Human Shaman|1|1| +Pillage|Premium Deck Series: Fire and Lightning|24|U|{1}{R}{R}|Sorcery||| +Hammer of Bogardan|Premium Deck Series: Fire and Lightning|23|R|{1}{R}{R}|Sorcery||| +Ball Lightning|Premium Deck Series: Fire and Lightning|12|R|{R}{R}{R}|Creature — Elemental|6|1| +Boggart Ram-Gang|Premium Deck Series: Fire and Lightning|13|U|{RG}{RG}{RG}|Creature — Goblin Warrior|3|3| +Fireblast|Premium Deck Series: Fire and Lightning|26|C|{4}{R}{R}|Instant||| +Barbarian Ring|Premium Deck Series: Fire and Lightning|28|U||Land||| +Mountain|Premium Deck Series: Fire and Lightning|31|L||Basic Land — Mountain||| +Mountain|Premium Deck Series: Fire and Lightning|32|L||Basic Land — Mountain||| +Mountain|Premium Deck Series: Fire and Lightning|33|L||Basic Land — Mountain||| +Mountain|Premium Deck Series: Fire and Lightning|34|L||Basic Land — Mountain||| +Rites of Flourishing|Magic 2012|192|R|{2}{G}|Enchantment||| +Frost Titan|Magic 2012|55|M|{4}{U}{U}|Creature — Giant|6|6| +Inferno Titan|Magic 2012|147|M|{4}{R}{R}|Creature — Giant|6|6| +Manabarbs|Magic 2012|150|R|{3}{R}|Enchantment||| +Assault Griffin|Magic 2012|8|C|{3}{W}|Creature — Griffin|3|2| +Figure of Destiny|Premium Deck Series: Fire and Lightning|5|R|{RW}|Creature — Kithkin|1|1| +Belltower Sphinx|Magic 2012|46|U|{4}{U}|Creature — Sphinx|2|5| +Mind Unbound|Magic 2012|68|R|{4}{U}{U}|Enchantment||| +Call to the Grave|Magic 2012|85|R|{4}{B}|Enchantment||| +Goblin War Paint|Magic 2012|143|C|{1}{R}|Enchantment — Aura||| +Royal Assassin|Magic 2012|105|R|{1}{B}{B}|Creature — Human Assassin|1|1| +Mana-Charged Dragon|Magic: The Gathering-Commander|129|R|{4}{R}{R}|Creature — Dragon|5|5| +Chaos Warp|Magic: The Gathering-Commander|114|R|{2}{R}|Instant||| +Karador, Ghost Chieftain|Magic: The Gathering-Commander|207|M|{5}{B}{G}{W}|Legendary Creature — Centaur Spirit|3|4| +Riku of Two Reflections|Magic: The Gathering-Commander|220|M|{2}{U}{R}{G}|Legendary Creature — Human Wizard|2|2| +Nin, the Pain Artist|Magic: The Gathering-Commander|213|R|{U}{R}|Legendary Creature — Vedalken Wizard|1|1| +Kaalia of the Vast|Magic: The Gathering-Commander|206|M|{1}{W}{B}{R}|Legendary Creature — Human Cleric|2|2| +Ruhan of the Fomori|Magic: The Gathering-Commander|221|M|{1}{R}{W}{U}|Legendary Creature — Giant Warrior|7|7| +Damia, Sage of Stone|Magic: The Gathering-Commander|191|M|{4}{G}{U}{B}|Legendary Creature — Gorgon Wizard|4|4| +Martyr's Bond|Magic: The Gathering-Commander|19|R|{4}{W}{W}|Enchantment||| +Sewer Nemesis|Magic: The Gathering-Commander|98|R|{3}{B}|Creature — Horror|*|*| +Skullbriar, the Walking Grave|Magic: The Gathering-Commander|227|R|{B}{G}|Legendary Creature — Zombie Elemental|1|1| +Vish Kal, Blood Arbiter|Magic: The Gathering-Commander|234|R|{4}{W}{B}{B}|Legendary Creature — Vampire|5|5| +Basandra, Battle Seraph|Magic: The Gathering-Commander|184|R|{3}{R}{W}|Legendary Creature — Angel|4|4| +Avatar of Slaughter|Magic: The Gathering-Commander|111|R|{6}{R}{R}|Creature — Avatar|8|8| +Zedruu the Greathearted|Magic: The Gathering-Commander|240|M|{1}{R}{W}{U}|Legendary Creature — Minotaur Monk|2|4| +Scythe Specter|Magic: The Gathering-Commander|97|R|{4}{B}{B}|Creature — Specter|4|4| +Ghave, Guru of Spores|Magic: The Gathering-Commander|200|M|{2}{B}{G}{W}|Legendary Creature — Fungus Shaman|0|0| +Animar, Soul of Elements|Magic: The Gathering-Commander|181|M|{U}{R}{G}|Legendary Creature — Elemental|1|1| +Solemn Simulacrum|Magic 2012|217|R|{4}|Artifact Creature — Golem|2|2| +Distress|Magic 2012|94|C|{B}{B}|Sorcery||| +Vow of Duty|Magic: The Gathering-Commander|36|U|{2}{W}|Enchantment — Aura||| +Tariel, Reckoner of Souls|Magic: The Gathering-Commander|229|M|{4}{W}{B}{R}|Legendary Creature — Angel|4|7| +Tribute to the Wild|Magic: The Gathering-Commander|175|U|{1}{G}|Instant||| +Vow of Lightning|Magic: The Gathering-Commander|138|U|{2}{R}|Enchantment — Aura||| +Command Tower|Magic: The Gathering-Commander|269|C||Land||| +Spell Crumple|Magic: The Gathering-Commander|63|U|{1}{U}{U}|Instant||| +Quicksilver Amulet|Magic 2012|214|R|{4}|Artifact||| +Elvish Archdruid|Magic 2012|172|R|{1}{G}{G}|Creature — Elf Druid|2|2| +Smallpox|Magic 2012|108|U|{B}{B}|Sorcery||| +Flight|Magic 2012|53|C|{U}|Enchantment — Aura||| +Rakalite|Masters Edition IV|223|R|{6}|Artifact||| +Vow of Wildness|Magic: The Gathering-Commander|178|U|{2}{G}|Enchantment — Aura||| +Soul Snare|Magic: The Gathering-Commander|32|U|{W}|Enchantment||| +Riddlekeeper|Magic: The Gathering-Commander|59|R|{2}{U}|Creature — Homunculus|1|4| +Hornet Queen|Magic: The Gathering-Commander|159|R|{4}{G}{G}{G}|Creature — Insect|2|2| +Vow of Flight|Magic: The Gathering-Commander|68|U|{2}{U}|Enchantment — Aura||| +Vow of Malice|Magic: The Gathering-Commander|107|U|{2}{B}|Enchantment — Aura||| +Jace, Memory Adept|Magic 2012|58|M|{3}{U}{U}|Planeswalker — Jace||| +Peregrine Griffin|Magic 2012|29|C|{4}{W}|Creature — Griffin|2|4| +Demystify|Magic 2012|13|C|{W}|Instant||| +Gideon Jura|Magic 2012|16|M|{3}{W}{W}|Planeswalker — Gideon||| +Sorin Markov|Magic 2012|109|M|{3}{B}{B}{B}|Planeswalker — Sorin||| +Fiery Hellhound|Magic 2012|130|C|{1}{R}{R}|Creature — Elemental Hound|2|2| +Angel's Mercy|Magic 2012|4|C|{2}{W}{W}|Instant||| +Roc Egg|Magic 2012|32|U|{2}{W}|Creature — Bird|0|3| +Mind Control|Magic 2012|67|U|{3}{U}{U}|Enchantment — Aura||| +Overrun|Magic 2012|186|U|{2}{G}{G}{G}|Sorcery||| +Auramancer|Magic 2012|9|C|{2}{W}|Creature — Human Wizard|2|2| +Elite Vanguard|Magic 2012|15|U|{W}|Creature — Human Soldier|2|1| +Grave Titan|Magic 2012|98|M|{4}{B}{B}|Creature — Giant|6|6| +Mana Leak|Magic 2012|63|C|{1}{U}|Instant||| +Primeval Titan|Magic 2012|188|M|{4}{G}{G}|Creature — Giant|6|6| +Sun Titan|Magic 2012|39|M|{4}{W}{W}|Creature — Giant|6|6| +Minds Aglow|Magic: The Gathering-Commander|51|R|{U}|Sorcery||| +Collective Voyage|Magic: The Gathering-Commander|147|R|{G}|Sorcery||| +Fling|Magic 2012|134|C|{1}{R}|Instant||| +Sacred Wolf|Magic 2012|194|C|{2}{G}|Creature — Wolf|3|1| +Zombie Infestation|Magic 2012|120|U|{1}{B}|Enchantment||| +Mighty Leap|Magic 2012|26|C|{1}{W}|Instant||| +Autumn's Veil|Magic 2012|164|U|{G}|Instant||| +Sorin's Thirst|Magic 2012|110|C|{B}{B}|Instant||| +Warpath Ghoul|Magic 2012|117|C|{2}{B}|Creature — Zombie|3|2| +Goblin Arsonist|Magic 2012|136|C|{R}|Creature — Goblin Shaman|1|1| +Knight of the Reliquary|Duel Decks: Knights vs. Dragons|1|M|{1}{G}{W}|Creature — Human Knight|2|2| +Caravan Escort|Duel Decks: Knights vs. Dragons|2|C|{W}|Creature — Human Knight|1|1| +Lionheart Maverick|Duel Decks: Knights vs. Dragons|3|C|{W}|Creature — Human Knight|1|1| +Knight of Cliffhaven|Duel Decks: Knights vs. Dragons|4|C|{1}{W}|Creature — Kor Knight|2|2| +Knight of Meadowgrain|Duel Decks: Knights vs. Dragons|5|U|{W}{W}|Creature — Kithkin Knight|2|2| +Knight of the White Orchid|Duel Decks: Knights vs. Dragons|6|R|{W}{W}|Creature — Human Knight|2|2| +Leonin Skyhunter|Duel Decks: Knights vs. Dragons|7|U|{W}{W}|Creature — Cat Knight|2|2| +Silver Knight|Duel Decks: Knights vs. Dragons|8|U|{W}{W}|Creature — Human Knight|2|2| +White Knight|Duel Decks: Knights vs. Dragons|9|U|{W}{W}|Creature — Human Knight|2|2| +Knotvine Paladin|Duel Decks: Knights vs. Dragons|10|R|{G}{W}|Creature — Human Knight|2|2| +Steward of Valeron|Duel Decks: Knights vs. Dragons|11|C|{G}{W}|Creature — Human Druid Knight|2|2| +Benalish Lancer|Duel Decks: Knights vs. Dragons|12|C|{2}{W}|Creature — Human Knight|2|2| +Zhalfirin Commander|Duel Decks: Knights vs. Dragons|13|U|{2}{W}|Creature — Human Knight|2|2| +Knight Exemplar|Duel Decks: Knights vs. Dragons|14|R|{1}{W}{W}|Creature — Human Knight|2|2| +Wilt-Leaf Cavaliers|Duel Decks: Knights vs. Dragons|15|U|{GW}{GW}{GW}|Creature — Elf Knight|3|4| +Kabira Vindicator|Duel Decks: Knights vs. Dragons|16|U|{3}{W}|Creature — Human Knight|2|4| +Kinsbaile Cavalier|Duel Decks: Knights vs. Dragons|17|R|{3}{W}|Creature — Kithkin Knight|2|2| +Alaborn Cavalier|Duel Decks: Knights vs. Dragons|18|U|{2}{W}{W}|Creature — Human Knight|2|2| +Skyhunter Patrol|Duel Decks: Knights vs. Dragons|19|C|{2}{W}{W}|Creature — Cat Knight|2|3| +Plover Knights|Duel Decks: Knights vs. Dragons|20|C|{3}{W}{W}|Creature — Kithkin Knight|3|3| +Juniper Order Ranger|Duel Decks: Knights vs. Dragons|21|U|{3}{G}{W}|Creature — Human Knight|2|4| +Paladin of Prahv|Duel Decks: Knights vs. Dragons|22|U|{4}{W}{W}|Creature — Human Knight|3|4| +Harm's Way|Duel Decks: Knights vs. Dragons|23|U|{W}|Instant||| +Reciprocate|Duel Decks: Knights vs. Dragons|24|U|{W}|Instant||| +Edge of Autumn|Duel Decks: Knights vs. Dragons|25|C|{1}{G}|Sorcery||| +Mighty Leap|Duel Decks: Knights vs. Dragons|26|C|{1}{W}|Instant||| +Reprisal|Duel Decks: Knights vs. Dragons|27|U|{1}{W}|Instant||| +Test of Faith|Duel Decks: Knights vs. Dragons|28|U|{1}{W}|Instant||| +Heroes' Reunion|Duel Decks: Knights vs. Dragons|29|U|{G}{W}|Instant||| +Sigil Blessing|Duel Decks: Knights vs. Dragons|30|C|{G}{W}|Instant||| +Loxodon Warhammer|Duel Decks: Knights vs. Dragons|31|R|{3}|Artifact — Equipment||| +Spidersilk Armor|Duel Decks: Knights vs. Dragons|32|C|{2}{G}|Enchantment||| +Griffin Guide|Duel Decks: Knights vs. Dragons|33|U|{2}{W}|Enchantment — Aura||| +Oblivion Ring|Duel Decks: Knights vs. Dragons|34|C|{2}{W}|Enchantment||| +Grasslands|Duel Decks: Knights vs. Dragons|35|U||Land||| +Sejiri Steppe|Duel Decks: Knights vs. Dragons|36|C||Land||| +Selesnya Sanctuary|Duel Decks: Knights vs. Dragons|37|C||Land||| +Treetop Village|Duel Decks: Knights vs. Dragons|38|U||Land||| +Plains|Duel Decks: Knights vs. Dragons|39|L||Basic Land — Plains||| +Plains|Duel Decks: Knights vs. Dragons|40|L||Basic Land — Plains||| +Plains|Duel Decks: Knights vs. Dragons|41|L||Basic Land — Plains||| +Plains|Duel Decks: Knights vs. Dragons|42|L||Basic Land — Plains||| +Forest|Duel Decks: Knights vs. Dragons|43|L||Basic Land — Forest||| +Forest|Duel Decks: Knights vs. Dragons|44|L||Basic Land — Forest||| +Forest|Duel Decks: Knights vs. Dragons|45|L||Basic Land — Forest||| +Forest|Duel Decks: Knights vs. Dragons|46|L||Basic Land — Forest||| +Bogardan Hellkite|Duel Decks: Knights vs. Dragons|47|M|{6}{R}{R}|Creature — Dragon|5|5| +Skirk Prospector|Duel Decks: Knights vs. Dragons|49|C|{R}|Creature — Goblin|1|1| +Cinder Wall|Duel Decks: Knights vs. Dragons|48|C|{R}|Creature — Wall|3|3| +Bloodmark Mentor|Duel Decks: Knights vs. Dragons|50|U|{1}{R}|Creature — Goblin Warrior|1|1| +Dragon Fodder|Duel Decks: Knights vs. Dragons|65|C|{1}{R}|Sorcery||| +Fire-Belly Changeling|Duel Decks: Knights vs. Dragons|51|C|{1}{R}|Creature — Shapeshifter|1|1| +Mudbutton Torchrunner|Duel Decks: Knights vs. Dragons|52|C|{2}{R}|Creature — Goblin Warrior|1|1| +Dragonspeaker Shaman|Duel Decks: Knights vs. Dragons|53|U|{1}{R}{R}|Creature — Human Barbarian Shaman|2|2| +Dragon Whelp|Duel Decks: Knights vs. Dragons|54|U|{2}{R}{R}|Creature — Dragon|2|3| +Henge Guardian|Duel Decks: Knights vs. Dragons|55|U|{5}|Artifact Creature — Dragon Wurm|3|4| +Voracious Dragon|Duel Decks: Knights vs. Dragons|56|R|{3}{R}{R}|Creature — Dragon|4|4| +Bogardan Rager|Duel Decks: Knights vs. Dragons|57|C|{5}{R}|Creature — Elemental|3|4| +Mordant Dragon|Duel Decks: Knights vs. Dragons|58|R|{3}{R}{R}{R}|Creature — Dragon|5|5| +Kilnmouth Dragon|Duel Decks: Knights vs. Dragons|59|R|{5}{R}{R}|Creature — Dragon|5|5| +Shivan Hellkite|Duel Decks: Knights vs. Dragons|60|R|{5}{R}{R}|Creature — Dragon|5|5| +Thunder Dragon|Duel Decks: Knights vs. Dragons|61|R|{5}{R}{R}|Creature — Dragon|5|5| +Armillary Sphere|Duel Decks: Knights vs. Dragons|62|C|{2}|Artifact||| +Dragon's Claw|Duel Decks: Knights vs. Dragons|63|U|{2}|Artifact||| +Breath of Darigaaz|Duel Decks: Knights vs. Dragons|64|U|{1}{R}|Sorcery||| +Punishing Fire|Duel Decks: Knights vs. Dragons|66|U|{1}{R}|Instant||| +Spitting Earth|Duel Decks: Knights vs. Dragons|67|C|{1}{R}|Sorcery||| +Captive Flame|Duel Decks: Knights vs. Dragons|68|U|{2}{R}|Enchantment||| +Ghostfire|Duel Decks: Knights vs. Dragons|69|C|{2}{R}|Instant||| +Seething Song|Duel Decks: Knights vs. Dragons|70|C|{2}{R}|Instant||| +Seismic Strike|Duel Decks: Knights vs. Dragons|71|C|{2}{R}|Instant||| +Claws of Valakut|Duel Decks: Knights vs. Dragons|72|C|{1}{R}{R}|Enchantment — Aura||| +Temporary Insanity|Duel Decks: Knights vs. Dragons|73|U|{3}{R}|Instant||| +Shiv's Embrace|Duel Decks: Knights vs. Dragons|74|U|{2}{R}{R}|Enchantment — Aura||| +Cone of Flame|Duel Decks: Knights vs. Dragons|75|U|{3}{R}{R}|Sorcery||| +Fiery Fall|Duel Decks: Knights vs. Dragons|76|C|{5}{R}|Instant||| +Jaws of Stone|Duel Decks: Knights vs. Dragons|77|U|{5}{R}|Sorcery||| +Mountain|Duel Decks: Knights vs. Dragons|78|L||Basic Land — Mountain||| +Mountain|Duel Decks: Knights vs. Dragons|79|L||Basic Land — Mountain||| +Mountain|Duel Decks: Knights vs. Dragons|80|L||Basic Land — Mountain||| +Mountain|Duel Decks: Knights vs. Dragons|81|L||Basic Land — Mountain||| +Disentomb|Magic 2012|93|C|{B}|Sorcery||| +Brink of Disaster|Magic 2012|84|C|{2}{B}{B}|Enchantment — Aura||| +Consume Spirit|Magic 2012|88|U|{X}{1}{B}|Sorcery||| +Kite Shield|Magic 2012|210|U|{0}|Artifact — Equipment||| +Pentavus|Magic 2012|213|R|{7}|Artifact Creature — Construct|0|0| +Blood Seeker|Magic 2012|81|C|{1}{B}|Creature — Vampire Shaman|1|1| +Sengir Vampire|Magic 2012|107|U|{3}{B}{B}|Creature — Vampire|4|4| +Ponder|Magic 2012|73|C|{U}|Sorcery||| +Forest|Magic 2012|247|L||Basic Land — Forest||| +Forest|Magic 2012|246|L||Basic Land — Forest||| +Forest|Magic 2012|248|L||Basic Land — Forest||| +Forest|Magic 2012|249|L||Basic Land — Forest||| +Island|Magic 2012|235|L||Basic Land — Island||| +Island|Magic 2012|236|L||Basic Land — Island||| +Island|Magic 2012|234|L||Basic Land — Island||| +Island|Magic 2012|237|L||Basic Land — Island||| +Mountain|Magic 2012|245|L||Basic Land — Mountain||| +Mountain|Magic 2012|242|L||Basic Land — Mountain||| +Mountain|Magic 2012|244|L||Basic Land — Mountain||| +Mountain|Magic 2012|243|L||Basic Land — Mountain||| +Plains|Magic 2012|231|L||Basic Land — Plains||| +Plains|Magic 2012|233|L||Basic Land — Plains||| +Plains|Magic 2012|230|L||Basic Land — Plains||| +Plains|Magic 2012|232|L||Basic Land — Plains||| +Swamp|Magic 2012|240|L||Basic Land — Swamp||| +Swamp|Magic 2012|241|L||Basic Land — Swamp||| +Swamp|Magic 2012|239|L||Basic Land — Swamp||| +Swamp|Magic 2012|238|L||Basic Land — Swamp||| +Volcanic Dragon|Magic 2012|158|U|{4}{R}{R}|Creature — Dragon|4|4| +Flameblast Dragon|Magic 2012|133|R|{4}{R}{R}|Creature — Dragon|5|5| +Brindle Boar|Magic 2012|167|C|{2}{G}|Creature — Boar|2|2| +Stampeding Rhino|Magic 2012|196|C|{4}{G}|Creature — Rhino|4|4| +Vastwood Gorger|Magic 2012|200|C|{5}{G}|Creature — Wurm|5|6| +Archon of Justice|Magic 2012|6|R|{3}{W}{W}|Creature — Archon|4|4| +Shock|Magic 2012|154|C|{R}|Instant||| +Goblin Tunneler|Magic 2012|142|C|{1}{R}|Creature — Goblin Rogue|1|1| +Time Reversal|Magic 2012|77|M|{3}{U}{U}|Sorcery||| +Alluring Siren|Magic 2012|42|U|{1}{U}|Creature — Siren|1|1| +Ice Cage|Magic 2012|57|C|{1}{U}|Enchantment — Aura||| +Dreamborn Muse|Magic: The Gathering-Commander|44|R|{2}{U}{U}|Creature — Spirit|2|2| +Furnace Whelp|Magic: The Gathering-Commander|124|U|{2}{R}{R}|Creature — Dragon|2|2| +Grave Pact|Magic: The Gathering-Commander|85|R|{1}{B}{B}{B}|Enchantment||| +Mortivore|Magic: The Gathering-Commander|89|R|{2}{B}{B}|Creature — Lhurgoyf|*|*| +Nantuko Husk|Magic: The Gathering-Commander|90|U|{2}{B}|Creature — Zombie Insect|2|2| +Troll Ascetic|Magic: The Gathering-Commander|176|R|{1}{G}{G}|Creature — Troll Shaman|3|2| +Voice of All|Magic: The Gathering-Commander|35|R|{2}{W}{W}|Creature — Angel|2|2| +Windborn Muse|Magic: The Gathering-Commander|38|R|{3}{W}|Creature — Spirit|2|3| +Eternal Witness|Magic: The Gathering-Commander|152|U|{1}{G}{G}|Creature — Human Shaman|2|1| +Fallen Angel|Magic: The Gathering-Commander|82|R|{3}{B}{B}|Creature — Angel|3|3| +Lhurgoyf|Magic: The Gathering-Commander|165|R|{2}{G}{G}|Creature — Lhurgoyf|*|1+*| +Fellwar Stone|Magic: The Gathering-Commander|248|U|{2}|Artifact||| +Fleshbag Marauder|Magic: The Gathering-Commander|83|U|{2}{B}|Creature — Zombie Warrior|3|1| +Memory Erosion|Magic: The Gathering-Commander|50|R|{1}{U}{U}|Enchantment||| +Necrogenesis|Magic: The Gathering-Commander|212|U|{B}{G}|Enchantment||| +Oblivion Ring|Magic: The Gathering-Commander|23|C|{2}{W}|Enchantment||| +Death Mutation|Magic: The Gathering-Commander|192|U|{6}{B}{G}|Sorcery||| +Ice|Magic: The Gathering-Commander|198|U|{1}{U}|Instant||| +Orim's Thunder|Magic: The Gathering-Commander|24|C|{2}{W}|Instant||| +Prophetic Bolt|Magic: The Gathering-Commander|219|R|{3}{U}{R}|Instant||| +Colossal Might|Magic: The Gathering-Commander|190|C|{R}{G}|Instant||| +Sigil Captain|Magic: The Gathering-Commander|225|U|{1}{G}{W}{W}|Creature — Rhino Soldier|3|3| +Terminate|Magic: The Gathering-Commander|231|C|{B}{R}|Instant||| +Valley Rannet|Magic: The Gathering-Commander|232|C|{4}{R}{G}|Creature — Beast|6|3| +Vengeful Rebirth|Magic: The Gathering-Commander|233|U|{4}{R}{G}|Sorcery||| +Wall of Denial|Magic: The Gathering-Commander|237|U|{1}{W}{U}|Creature — Wall|0|8| +Patron of the Nezumi|Magic: The Gathering-Commander|93|R|{5}{B}{B}|Legendary Creature — Spirit|6|6| +Ghostly Prison|Magic: The Gathering-Commander|14|U|{2}{W}|Enchantment||| +Kodama's Reach|Magic: The Gathering-Commander|163|C|{2}{G}|Sorcery — Arcane||| +Nighteyes the Desecrator|Magic: The Gathering-Commander|92|U|{1}{B}|Legendary Creature — Rat Wizard|4|2| +Sakura-Tribe Elder|Magic: The Gathering-Commander|169|C|{1}{G}|Creature — Snake Shaman|1|1| +Armillary Sphere|Magic: The Gathering-Commander|242|C|{2}|Artifact||| +Extractor Demon|Magic: The Gathering-Commander|81|R|{4}{B}{B}|Creature — Demon|5|5| +Malfegor|Magic: The Gathering-Commander|208|M|{2}{B}{B}{R}{R}|Legendary Creature — Demon Dragon|6|6| +Path to Exile|Magic: The Gathering-Commander|25|U|{W}|Instant||| +Rupture Spire|Magic: The Gathering-Commander|285|C||Land||| +Jφtun Grunt|Magic: The Gathering-Commander|16|U|{1}{W}|Creature — Giant Soldier|4|4| +Perilous Research|Magic: The Gathering-Commander|54|U|{1}{U}|Instant||| +Aura Shards|Magic: The Gathering-Commander|182|U|{1}{G}{W}|Enchantment||| +Breath of Darigaaz|Magic: The Gathering-Commander|112|U|{1}{R}|Sorcery||| +Fact or Fiction|Magic: The Gathering-Commander|45|U|{3}{U}|Instant||| +Repulse|Magic: The Gathering-Commander|58|C|{2}{U}|Instant||| +Aquastrand Spider|Magic: The Gathering-Commander|141|C|{1}{G}|Creature — Spider Mutant|0|0| +Azorius Chancery|Magic: The Gathering-Commander|265|C||Land||| +Azorius Guildmage|Magic: The Gathering-Commander|183|U|{WU}{WU}|Creature — Vedalken Wizard|2|2| +Court Hussar|Magic: The Gathering-Commander|43|U|{2}{U}|Creature — Vedalken Knight|1|3| +Rakdos Carnarium|Magic: The Gathering-Commander|284|C||Land||| +Rakdos Signet|Magic: The Gathering-Commander|257|C|{2}|Artifact||| +Simic Growth Chamber|Magic: The Gathering-Commander|288|C||Land||| +Simic Signet|Magic: The Gathering-Commander|259|C|{2}|Artifact||| +Simic Sky Swallower|Magic: The Gathering-Commander|226|R|{5}{G}{U}|Creature — Leviathan|6|6| +Skyscribing|Magic: The Gathering-Commander|61|U|{X}{U}{U}|Sorcery||| +Vision Skeins|Magic: The Gathering-Commander|67|C|{1}{U}|Instant||| +Wrecking Ball|Magic: The Gathering-Commander|238|C|{2}{B}{R}|Instant||| +Darksteel Ingot|Magic: The Gathering-Commander|245|C|{3}|Artifact||| +Skullclamp|Magic: The Gathering-Commander|260|U|{1}|Artifact — Equipment||| +Call the Skybreaker|Magic: The Gathering-Commander|188|R|{5}{UR}{UR}|Sorcery||| +Desecrator Hag|Magic: The Gathering-Commander|193|C|{2}{BG}{BG}|Creature — Hag|2|2| +Dominus of Fealty|Magic: The Gathering-Commander|194|R|{UR}{UR}{UR}{UR}{UR}|Creature — Spirit Avatar|4|4| +Duergar Hedge-Mage|Magic: The Gathering-Commander|195|U|{2}{RW}|Creature — Dwarf Shaman|2|2| +Gwyllion Hedge-Mage|Magic: The Gathering-Commander|202|U|{2}{WB}|Creature — Hag Wizard|2|2| +Nucklavee|Magic: The Gathering-Commander|214|U|{4}{UR}{UR}|Creature — Beast|4|4| +Magus of the Vineyard|Magic: The Gathering-Commander|166|R|{G}|Creature — Human Wizard|1|1| +Zoetic Cavern|Magic: The Gathering-Commander|298|U||Land||| +Angel of Despair|Magic: The Gathering-Commander|180|R|{3}{W}{W}{B}{B}|Creature — Angel|5|5| +Electrolyze|Magic: The Gathering-Commander|197|U|{1}{U}{R}|Instant||| +Gruul Signet|Magic: The Gathering-Commander|250|C|{2}|Artifact||| +Gruul Turf|Magic: The Gathering-Commander|276|C||Land||| +Izzet Boilerworks|Magic: The Gathering-Commander|278|C||Land||| +Izzet Chronarch|Magic: The Gathering-Commander|205|C|{3}{U}{R}|Creature — Human Wizard|2|2| +Izzet Signet|Magic: The Gathering-Commander|252|C|{2}|Artifact||| +Mortify|Magic: The Gathering-Commander|211|U|{1}{W}{B}|Instant||| +Orzhov Basilica|Magic: The Gathering-Commander|283|C||Land||| +Orzhov Guildmage|Magic: The Gathering-Commander|217|U|{WB}{WB}|Creature — Human Wizard|2|2| +Orzhov Signet|Magic: The Gathering-Commander|255|C|{2}|Artifact||| +Savage Twister|Magic: The Gathering-Commander|222|U|{X}{R}{G}|Sorcery||| +Storm Herd|Magic: The Gathering-Commander|34|R|{8}{W}{W}|Sorcery||| +Vedalken Plotter|Magic: The Gathering-Commander|66|U|{2}{U}|Creature — Vedalken Wizard|1|1| +Anger|Magic: The Gathering-Commander|109|U|{3}{R}|Creature — Incarnation|2|2| +Brawn|Magic: The Gathering-Commander|145|U|{3}{G}|Creature — Incarnation|3|3| +Spurnmage Advocate|Magic: The Gathering-Commander|33|U|{W}|Creature — Human Nomad|1|1| +Stitch Together|Magic: The Gathering-Commander|102|U|{B}{B}|Sorcery||| +Wonder|Magic: The Gathering-Commander|71|U|{3}{U}|Creature — Incarnation|2|2| +Chromeshell Crab|Magic: The Gathering-Commander|41|R|{4}{U}|Creature — Crab Beast|3|3| +Ζthersnipe|Magic: The Gathering-Commander|39|C|{5}{U}|Creature — Elemental|4|4| +Arbiter of Knollridge|Magic: The Gathering-Commander|6|R|{6}{W}|Creature — Giant Wizard|5|5| +Austere Command|Magic: The Gathering-Commander|8|R|{4}{W}{W}|Sorcery||| +Brion Stoutarm|Magic: The Gathering-Commander|187|R|{2}{R}{W}|Legendary Creature — Giant Warrior|4|4| +Faultgrinder|Magic: The Gathering-Commander|122|C|{6}{R}|Creature — Elemental|4|4| +Footbottom Feast|Magic: The Gathering-Commander|84|C|{2}{B}|Instant||| +Lash Out|Magic: The Gathering-Commander|127|C|{1}{R}|Instant||| +Mulldrifter|Magic: The Gathering-Commander|52|C|{4}{U}|Creature — Elemental|2|2| +Pollen Lullaby|Magic: The Gathering-Commander|26|U|{1}{W}|Instant||| +Scattering Stroke|Magic: The Gathering-Commander|60|U|{2}{U}{U}|Instant||| +Shriekmaw|Magic: The Gathering-Commander|100|U|{4}{B}|Creature — Elemental|3|2| +Vivid Crag|Magic: The Gathering-Commander|293|U||Land||| +Vivid Creek|Magic: The Gathering-Commander|294|U||Land||| +Vivid Grove|Magic: The Gathering-Commander|295|U||Land||| +Vivid Marsh|Magic: The Gathering-Commander|296|U||Land||| +Vivid Meadow|Magic: The Gathering-Commander|297|U||Land||| +Whirlpool Whelm|Magic: The Gathering-Commander|69|C|{1}{U}|Instant||| +Wild Ricochet|Magic: The Gathering-Commander|139|R|{2}{R}{R}|Instant||| +Deadly Recluse|Magic: The Gathering-Commander|149|C|{1}{G}|Creature — Spider|1|2| +Dragon Whelp|Magic: The Gathering-Commander|120|U|{2}{R}{R}|Creature — Dragon|2|3| +Earthquake|Magic: The Gathering-Commander|121|R|{X}{R}|Sorcery||| +Howling Mine|Magic: The Gathering-Commander|251|R|{2}|Artifact||| +Acidic Slime|Magic: The Gathering-Commander|140|U|{3}{G}{G}|Creature — Ooze|2|2| +Angelic Arbiter|Magic: The Gathering-Commander|5|R|{5}{W}{W}|Creature — Angel|5|6| +Conundrum Sphinx|Magic: The Gathering-Commander|42|R|{2}{U}{U}|Creature — Sphinx|4|4| +Cultivate|Magic: The Gathering-Commander|148|C|{2}{G}|Sorcery||| +Diabolic Tutor|Magic: The Gathering-Commander|77|U|{2}{B}{B}|Sorcery||| +Doom Blade|Magic: The Gathering-Commander|78|C|{1}{B}|Instant||| +Garruk Wildspeaker|Magic: The Gathering-Commander|157|M|{2}{G}{G}|Planeswalker — Garruk||| +Gravedigger|Magic: The Gathering-Commander|86|C|{3}{B}|Creature — Zombie|2|2| +Rise from the Grave|Magic: The Gathering-Commander|96|U|{4}{B}|Sorcery||| +Serra Angel|Magic: The Gathering-Commander|30|U|{3}{W}{W}|Creature — Angel|4|4| +Sign in Blood|Magic: The Gathering-Commander|101|C|{B}{B}|Sorcery||| +Terramorphic Expanse|Magic: The Gathering-Commander|291|C||Land||| +Ray of Command|Magic: The Gathering-Commander|56|C|{3}{U}|Instant||| +Afterlife|Magic: The Gathering-Commander|2|U|{2}{W}|Instant||| +Brainstorm|Magic: The Gathering-Commander|40|C|{U}|Instant||| +Invigorate|Magic: The Gathering-Commander|162|C|{2}{G}|Instant||| +Squallmonger|Magic: The Gathering-Commander|173|U|{3}{G}|Creature — Monger|3|3| +Fertilid|Magic: The Gathering-Commander|154|C|{2}{G}|Creature — Elemental|0|0| +Spitebellows|Magic: The Gathering-Commander|135|U|{5}{R}|Creature — Elemental|6|1| +Lightning Greaves|Magic: The Gathering-Commander|253|U|{2}|Artifact — Equipment||| +Oblivion Stone|Magic: The Gathering-Commander|254|R|{3}|Artifact||| +Reiver Demon|Magic: The Gathering-Commander|95|R|{4}{B}{B}{B}{B}|Creature — Demon|6|6| +Solemn Simulacrum|Magic: The Gathering-Commander|262|R|{4}|Artifact Creature — Golem|2|2| +Shattered Angel|Magic: The Gathering-Commander|31|U|{3}{W}{W}|Creature — Angel|3|3| +Buried Alive|Magic: The Gathering-Commander|74|U|{2}{B}|Sorcery||| +Akroma's Vengeance|Magic: The Gathering-Commander|3|R|{4}{W}{W}|Sorcery||| +Barren Moor|Magic: The Gathering-Commander|266|C||Land||| +Explosive Vegetation|Magic: The Gathering-Commander|153|U|{3}{G}|Sorcery||| +Forgotten Cave|Magic: The Gathering-Commander|273|C||Land||| +Insurrection|Magic: The Gathering-Commander|126|R|{5}{R}{R}{R}|Sorcery||| +Krosan Tusker|Magic: The Gathering-Commander|164|C|{5}{G}{G}|Creature — Boar Beast|6|5| +Lonely Sandbar|Magic: The Gathering-Commander|281|C||Land||| +Oblation|Magic: The Gathering-Commander|22|R|{2}{W}|Instant||| +Righteous Cause|Magic: The Gathering-Commander|29|U|{3}{W}{W}|Enchantment||| +Secluded Steppe|Magic: The Gathering-Commander|286|C||Land||| +Slipstream Eel|Magic: The Gathering-Commander|62|C|{5}{U}{U}|Creature — Fish Beast|6|6| +Symbiotic Wurm|Magic: The Gathering-Commander|174|R|{5}{G}{G}{G}|Creature — Wurm|7|7| +Syphon Mind|Magic: The Gathering-Commander|104|C|{3}{B}|Sorcery||| +Trade Secrets|Magic: The Gathering-Commander|64|R|{1}{U}{U}|Sorcery||| +Tranquil Thicket|Magic: The Gathering-Commander|292|C||Land||| +Akroma, Angel of Fury|Magic: The Gathering-Commander|108|R|{5}{R}{R}{R}|Legendary Creature — Angel|6|6| +Deadwood Treefolk|Magic: The Gathering-Commander|150|U|{5}{G}|Creature — Treefolk|3|6| +Harmonize|Magic: The Gathering-Commander|158|U|{2}{G}{G}|Sorcery||| +Intet, the Dreamer|Magic: The Gathering-Commander|204|R|{3}{U}{R}{G}|Legendary Creature — Dragon|6|6| +Numot, the Devastator|Magic: The Gathering-Commander|215|R|{3}{R}{W}{U}|Legendary Creature — Dragon|6|6| +Oros, the Avenger|Magic: The Gathering-Commander|216|R|{3}{W}{B}{R}|Legendary Creature — Dragon|6|6| +Pyrohemia|Magic: The Gathering-Commander|132|U|{2}{R}{R}|Enchantment||| +Teneb, the Harvester|Magic: The Gathering-Commander|230|R|{3}{B}{G}{W}|Legendary Creature — Dragon|6|6| +Vorosh, the Hunter|Magic: The Gathering-Commander|235|R|{3}{G}{U}{B}|Legendary Creature — Dragon|6|6| +Avatar of Fury|Magic: The Gathering-Commander|110|R|{6}{R}{R}|Creature — Avatar|6|6| +Flametongue Kavu|Magic: The Gathering-Commander|123|U|{3}{R}|Creature — Kavu|4|2| +Hull Breach|Magic: The Gathering-Commander|203|C|{R}{G}|Sorcery||| +Bathe in Light|Magic: The Gathering-Commander|9|U|{1}{W}|Instant||| +Boros Garrison|Magic: The Gathering-Commander|268|C||Land||| +Boros Guildmage|Magic: The Gathering-Commander|186|U|{RW}{RW}|Creature — Human Wizard|2|2| +Boros Signet|Magic: The Gathering-Commander|243|C|{2}|Artifact||| +Chorus of the Conclave|Magic: The Gathering-Commander|189|R|{4}{G}{G}{W}{W}|Legendary Creature — Dryad|3|8| +Cleansing Beam|Magic: The Gathering-Commander|116|U|{4}{R}|Instant||| +Dimir Aqueduct|Magic: The Gathering-Commander|270|C||Land||| +Dimir Signet|Magic: The Gathering-Commander|246|C|{2}|Artifact||| +Fists of Ironwood|Magic: The Gathering-Commander|156|C|{1}{G}|Enchantment — Aura||| +Golgari Guildmage|Magic: The Gathering-Commander|201|U|{BG}{BG}|Creature — Elf Shaman|2|2| +Golgari Rot Farm|Magic: The Gathering-Commander|275|C||Land||| +Golgari Signet|Magic: The Gathering-Commander|249|C|{2}|Artifact||| +Hex|Magic: The Gathering-Commander|87|R|{4}{B}{B}|Sorcery||| +Hour of Reckoning|Magic: The Gathering-Commander|15|R|{4}{W}{W}{W}|Sorcery||| +Master Warcraft|Magic: The Gathering-Commander|209|R|{2}{RW}{RW}|Instant||| +Selesnya Evangel|Magic: The Gathering-Commander|223|C|{G}{W}|Creature — Elf Shaman|1|2| +Selesnya Guildmage|Magic: The Gathering-Commander|224|U|{GW}{GW}|Creature — Elf Wizard|2|2| +Selesnya Sanctuary|Magic: The Gathering-Commander|287|C||Land||| +Selesnya Signet|Magic: The Gathering-Commander|258|C|{2}|Artifact||| +Svogthos, the Restless Tomb|Magic: The Gathering-Commander|289|U||Land||| +Szadek, Lord of Secrets|Magic: The Gathering-Commander|228|R|{3}{U}{U}{B}{B}|Legendary Creature — Vampire|5|5| +Vulturous Zombie|Magic: The Gathering-Commander|236|R|{3}{B}{G}|Creature — Plant Zombie|3|3| +Artisan of Kozilek|Magic: The Gathering-Commander|1|U|{9}|Creature — Eldrazi|10|9| +Awakening Zone|Magic: The Gathering-Commander|142|R|{2}{G}|Enchantment||| +Disaster Radius|Magic: The Gathering-Commander|119|R|{5}{R}{R}|Sorcery||| +Dreamstone Hedron|Magic: The Gathering-Commander|247|U|{6}|Artifact||| +Evolving Wilds|Magic: The Gathering-Commander|272|C||Land||| +Guard Gomazoa|Magic: The Gathering-Commander|49|U|{2}{U}|Creature — Jellyfish|1|3| +Prophetic Prism|Magic: The Gathering-Commander|256|C|{2}|Artifact||| +Rapacious One|Magic: The Gathering-Commander|133|U|{5}{R}|Creature — Eldrazi Drone|5|4| +Wall of Omens|Magic: The Gathering-Commander|37|U|{1}{W}|Creature — Wall|0|4| +Bladewing the Risen|Magic: The Gathering-Commander|185|R|{3}{B}{B}{R}{R}|Legendary Creature — Zombie Dragon|4|4| +Chartooth Cougar|Magic: The Gathering-Commander|115|C|{5}{R}|Creature — Cat Beast|4|4| +Elvish Aberration|Magic: The Gathering-Commander|151|U|{5}{G}|Creature — Elf Mutant|4|5| +Fierce Empath|Magic: The Gathering-Commander|155|C|{2}{G}|Creature — Elf|1|1| +Hunting Pack|Magic: The Gathering-Commander|160|U|{5}{G}{G}|Instant||| +Temple of the False God|Magic: The Gathering-Commander|290|U||Land||| +Firespout|Magic: The Gathering-Commander|199|U|{2}{RG}|Sorcery||| +Plumeveil|Magic: The Gathering-Commander|218|U|{WU}{WU}{WU}|Creature — Elemental|4|4| +Prison Term|Magic: The Gathering-Commander|27|U|{1}{W}{W}|Enchantment — Aura||| +Murmurs from Beyond|Magic: The Gathering-Commander|53|C|{2}{U}|Instant — Arcane||| +Oni of Wild Places|Magic: The Gathering-Commander|130|U|{5}{R}|Creature — Demon Spirit|6|5| +Razorjaw Oni|Magic: The Gathering-Commander|94|U|{3}{B}|Creature — Demon Spirit|4|5| +Reins of Power|Magic: The Gathering-Commander|57|R|{2}{U}{U}|Instant||| +Ruination|Magic: The Gathering-Commander|134|R|{3}{R}|Sorcery||| +Evincar's Justice|Magic: The Gathering-Commander|80|C|{2}{B}{B}|Sorcery||| +Living Death|Magic: The Gathering-Commander|88|R|{3}{B}{B}|Sorcery||| +Propaganda|Magic: The Gathering-Commander|55|U|{2}{U}|Enchantment||| +Dreadship Reef|Magic: The Gathering-Commander|271|U||Land||| +Fungal Reaches|Magic: The Gathering-Commander|274|U||Land||| +Molten Slagheap|Magic: The Gathering-Commander|282|U||Land||| +Penumbra Spider|Magic: The Gathering-Commander|167|C|{2}{G}{G}|Creature — Spider|2|4| +Return to Dust|Magic: The Gathering-Commander|28|U|{2}{W}{W}|Instant||| +Sulfurous Blast|Magic: The Gathering-Commander|137|U|{2}{R}{R}|Instant||| +Triskelavus|Magic: The Gathering-Commander|263|R|{7}|Artifact Creature — Construct|1|1| +Avatar of Woe|Magic: The Gathering-Commander|73|R|{6}{B}{B}|Creature — Avatar|6|5| +Spike Feeder|Magic: The Gathering-Commander|172|U|{1}{G}{G}|Creature — Spike|0|0| +Attrition|Magic: The Gathering-Commander|72|R|{1}{B}{B}|Enchantment||| +False Prophet|Magic: The Gathering-Commander|13|R|{2}{W}{W}|Creature — Human Cleric|2|2| +Yavimaya Elder|Magic: The Gathering-Commander|179|C|{1}{G}{G}|Creature — Human Druid|2|1| +Mother of Runes|Magic: The Gathering-Commander|21|U|{W}|Creature — Human Cleric|1|1| +Congregate|Magic: The Gathering-Commander|11|C|{3}{W}|Instant||| +Dark Hatchling|Magic: The Gathering-Commander|76|R|{4}{B}{B}|Creature — Horror|3|3| +Fog Bank|Magic: The Gathering-Commander|47|U|{1}{U}|Creature — Wall|0|2| +Goblin Cadets|Magic: The Gathering-Commander|125|U|{R}|Creature — Goblin|2|1| +Monk Realist|Magic: The Gathering-Commander|20|C|{1}{W}|Creature — Human Monk Cleric|1|1| +Unnerve|Magic: The Gathering-Commander|105|C|{3}{B}|Sorcery||| +Windfall|Magic: The Gathering-Commander|70|U|{2}{U}|Sorcery||| +Sol Ring|Magic: The Gathering-Commander|261|U|{1}|Artifact||| +Veteran Explorer|Magic: The Gathering-Commander|177|U|{G}|Creature — Human Soldier Scout|1|1| +Bestial Menace|Magic: The Gathering-Commander|144|U|{3}{G}{G}|Sorcery||| +Bojuka Bog|Magic: The Gathering-Commander|267|C||Land||| +Butcher of Malakir|Magic: The Gathering-Commander|75|R|{5}{B}{B}|Creature — Vampire Warrior|5|4| +Chain Reaction|Magic: The Gathering-Commander|113|R|{2}{R}{R}|Sorcery||| +Comet Storm|Magic: The Gathering-Commander|117|M|{X}{R}{R}|Instant||| +Lightkeeper of Emeria|Magic: The Gathering-Commander|18|U|{3}{W}|Creature — Angel|2|4| +Nemesis Trap|Magic: The Gathering-Commander|91|U|{4}{B}{B}|Instant — Trap||| +Wrexial, the Risen Deep|Magic: The Gathering-Commander|239|M|{3}{U}{U}{B}|Legendary Creature — Kraken|5|8| +Akoum Refuge|Magic: The Gathering-Commander|264|U||Land||| +Baloth Woodcrasher|Magic: The Gathering-Commander|143|U|{4}{G}{G}|Creature — Beast|4|4| +Cobra Trap|Magic: The Gathering-Commander|146|U|{4}{G}{G}|Instant — Trap||| +Gomazoa|Magic: The Gathering-Commander|48|U|{2}{U}|Creature — Jellyfish|0|3| +Journey to Nowhere|Magic: The Gathering-Commander|17|C|{1}{W}|Enchantment||| +Jwar Isle Refuge|Magic: The Gathering-Commander|279|U||Land||| +Kazandu Refuge|Magic: The Gathering-Commander|280|U||Land||| +Punishing Fire|Magic: The Gathering-Commander|131|U|{1}{R}|Instant||| +Relic Crush|Magic: The Gathering-Commander|168|C|{4}{G}|Instant||| +Vampire Nighthawk|Magic: The Gathering-Commander|106|U|{1}{B}{B}|Creature — Vampire Shaman|2|3| +Forest|Magic: The Gathering-Commander|317|L||Basic Land — Forest||| +Forest|Magic: The Gathering-Commander|316|L||Basic Land — Forest||| +Forest|Magic: The Gathering-Commander|318|L||Basic Land — Forest||| +Forest|Magic: The Gathering-Commander|315|L||Basic Land — Forest||| +Island|Magic: The Gathering-Commander|303|L||Basic Land — Island||| +Island|Magic: The Gathering-Commander|306|L||Basic Land — Island||| +Island|Magic: The Gathering-Commander|305|L||Basic Land — Island||| +Island|Magic: The Gathering-Commander|304|L||Basic Land — Island||| +Mountain|Magic: The Gathering-Commander|313|L||Basic Land — Mountain||| +Mountain|Magic: The Gathering-Commander|312|L||Basic Land — Mountain||| +Mountain|Magic: The Gathering-Commander|311|L||Basic Land — Mountain||| +Mountain|Magic: The Gathering-Commander|314|L||Basic Land — Mountain||| +Plains|Magic: The Gathering-Commander|302|L||Basic Land — Plains||| +Plains|Magic: The Gathering-Commander|300|L||Basic Land — Plains||| +Plains|Magic: The Gathering-Commander|299|L||Basic Land — Plains||| +Plains|Magic: The Gathering-Commander|301|L||Basic Land — Plains||| +Swamp|Magic: The Gathering-Commander|307|L||Basic Land — Swamp||| +Swamp|Magic: The Gathering-Commander|310|L||Basic Land — Swamp||| +Swamp|Magic: The Gathering-Commander|309|L||Basic Land — Swamp||| +Swamp|Magic: The Gathering-Commander|308|L||Basic Land — Swamp||| +Spawnwrithe|Magic: The Gathering-Commander|171|R|{2}{G}|Creature — Elemental|2|2|