From 6435b9950ab6635393a5edfdda99d4898244a419 Mon Sep 17 00:00:00 2001 From: spjspj Date: Fri, 4 Aug 2017 17:13:25 +1000 Subject: [PATCH] Add in Penny Dreadful EDH format (plus filter options for deck editor). --- .../mage/client/deckeditor/CardSelector.form | 28 +- .../mage/client/deckeditor/CardSelector.java | 71 +- .../deckeditor/pennydreadful.properties | 9588 +++++++++++++++++ .../src/mage/deck/PennyDreadfulCommander.java | 180 + .../pom.xml | 49 + .../PennyDreadfulCommanderFreeForAll.java | 78 + ...PennyDreadfulCommanderFreeForAllMatch.java | 60 + .../PennyDreadfulCommanderFreeForAllType.java | 58 + .../target/maven-archiver/pom.properties | 5 + Mage.Server.Plugins/pom.xml | 1 + Mage.Server/config/config.xml | 2 + Mage.Server/pom.xml | 6 + Mage.Server/release/config/config.xml | 2 + .../mage/deck/pennydreadful.properties | 9588 +++++++++++++++++ 14 files changed, 19702 insertions(+), 14 deletions(-) create mode 100644 Mage.Client/src/main/resources/mage/client/deckeditor/pennydreadful.properties create mode 100644 Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/PennyDreadfulCommander.java create mode 100644 Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/pom.xml create mode 100644 Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAll.java create mode 100644 Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllMatch.java create mode 100644 Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllType.java create mode 100644 Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/target/maven-archiver/pom.properties create mode 100644 Mage.Server/src/main/resources/mage/deck/pennydreadful.properties diff --git a/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.form b/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.form index 1cf837043f..8fa93c55b0 100644 --- a/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.form +++ b/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.form @@ -206,6 +206,18 @@ + + + + + + + + + + + + @@ -528,16 +540,18 @@ - + - - - - - - + + + + + + + + diff --git a/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.java b/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.java index c2a7c23456..80b936a178 100644 --- a/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.java +++ b/Mage.Client/src/main/java/mage/client/deckeditor/CardSelector.java @@ -36,6 +36,7 @@ package mage.client.deckeditor; import java.awt.*; import java.awt.event.*; import java.util.*; +import java.util.Map.Entry; import javax.swing.*; import javax.swing.table.DefaultTableCellRenderer; import mage.MageObject; @@ -74,6 +75,7 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene private BigCard bigCard; private boolean limited = false; private final SortSetting sortSetting; + private static final Map pdAllowed = new HashMap<>(); private final ActionListener searchAction = evt -> jButtonSearchActionPerformed(evt); @@ -372,6 +374,12 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene try { java.util.List filteredCards = new ArrayList<>(); setCursor(new Cursor(Cursor.WAIT_CURSOR)); + + boolean chkPD = chkPennyDreadful.isSelected(); + if (chkPD) { + generatePennyDreadfulHash(); + } + if (limited) { for (Card card : cards) { if (filter.match(card, null)) { @@ -383,6 +391,11 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene for (CardInfo cardInfo : foundCards) { Card card = cardInfo.getMockCard(); if (filter.match(card, null)) { + if (chkPD) { + if (!pdAllowed.containsKey(card.getName())) { + continue; + } + } filteredCards.add(card); } } @@ -419,6 +432,22 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene } } + public void generatePennyDreadfulHash() { + if (pdAllowed.size() > 0) { + return; + } + + Properties properties = new Properties(); + try { + properties.load(CardSelector.class.getResourceAsStream("pennydreadful.properties")); + } catch (Exception e) { + e.printStackTrace(); + } + for (final Entry entry : properties.entrySet()) { + pdAllowed.put((String) entry.getKey(), 1); + } + } + /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always @@ -439,6 +468,7 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene jSeparator1 = new javax.swing.JToolBar.Separator(); cbExpansionSet = new javax.swing.JComboBox<>(); jSeparator2 = new javax.swing.JToolBar.Separator(); + chkPennyDreadful = new javax.swing.JCheckBox(); btnBooster = new javax.swing.JButton(); btnClear = new javax.swing.JButton(); tbTypes = new javax.swing.JToolBar(); @@ -583,6 +613,27 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene tbColor.add(cbExpansionSet); tbColor.add(jSeparator2); + + chkPennyDreadful.setText("Penny Dreadful"); + chkPennyDreadful.setToolTipText("Will only allow Penny Dreadful legal cards to be shown."); + chkPennyDreadful.setFocusable(false); + chkPennyDreadful.setHorizontalTextPosition(javax.swing.SwingConstants.RIGHT); + chkPennyDreadful.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); + chkPennyDreadful.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + chkPilesActionPerformed(evt); + } + }); + + JPopupMenu filterByFormatPopup = new JPopupMenu(); + filterByFormatPopup.add(chkPennyDreadful); + filterByFormatPopup.setLayout(new GridBagLayout()); + + ButtonGroup selectByTypeModeGroup = new ButtonGroup(); + JButton filterByFormatButton = new JButton ("Filter by Format"); + makeButtonPopup(filterByFormatButton, filterByFormatPopup); + tbColor.add(filterByFormatButton); + btnBooster.setText("Open Booster"); btnBooster.setToolTipText("(CURRENTLY NOT WORKING) Generates a booster of the selected set and adds the cards to the card selector."); btnBooster.setFocusable(false); @@ -939,16 +990,17 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene .addComponent(chkRules, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(chkNames, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addGroup(cardSelectorBottomPanelLayout.createSequentialGroup() - .addGroup(cardSelectorBottomPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addGroup(cardSelectorBottomPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jButtonRemoveFromMain, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jButtonAddToSideboard, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jButtonRemoveFromSideboard, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) - .addComponent(jTextFieldSearch, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) - .addComponent(jButtonSearch) - .addComponent(jButtonClean) - .addComponent(cardCount) - .addComponent(jButtonAddToMain, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) - .addComponent(cardCountLabel)) + .addGroup(cardSelectorBottomPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(jTextFieldSearch, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(jButtonSearch) + .addComponent(jButtonClean) + .addComponent(cardCount) + .addComponent(jButtonAddToMain, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(cardCountLabel))) .addGap(0, 0, Short.MAX_VALUE))) .addContainerGap()) ); @@ -1204,6 +1256,7 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene private javax.swing.JComboBox cbExpansionSet; private javax.swing.JComboBox cbSortBy; private javax.swing.JCheckBox chkNames; + private javax.swing.JCheckBox chkPennyDreadful; private javax.swing.JCheckBox chkPiles; private javax.swing.JCheckBox chkRules; private javax.swing.JCheckBox chkTypes; @@ -1287,4 +1340,8 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene public void dragCardDrop(MouseEvent e, DragCardSource source, Collection cards) { // Need to add cards back to tally } + + private static void makeButtonPopup(final AbstractButton button, final JPopupMenu popup) { + button.addActionListener(e -> popup.show(button, 0, button.getHeight())); + } } diff --git a/Mage.Client/src/main/resources/mage/client/deckeditor/pennydreadful.properties b/Mage.Client/src/main/resources/mage/client/deckeditor/pennydreadful.properties new file mode 100644 index 0000000000..6c0c38eb26 --- /dev/null +++ b/Mage.Client/src/main/resources/mage/client/deckeditor/pennydreadful.properties @@ -0,0 +1,9588 @@ +Abandon\ Hope=1 +Abandon\ Reason=1 +Abandoned\ Outpost=1 +Abattoir\ Ghoul=1 +Abbey\ Gargoyles=1 +Abbey\ Griffin=1 +Aberrant\ Researcher=1 +Abhorrent\ Overlord=1 +Abomination\ of\ Gudul=1 +About\ Face=1 +Absolver\ Thrull=1 +Absorb\ Vis=1 +Abstruse\ Interference=1 +Abuna\ Acolyte=1 +Abundant\ Maw=1 +Abyssal\ Horror=1 +Abyssal\ Nocturnus=1 +Abyssal\ Specter=1 +Abzan\ Advantage=1 +Abzan\ Ascendancy=1 +Abzan\ Banner=1 +Abzan\ Battle\ Priest=1 +Abzan\ Beastmaster=1 +Abzan\ Charm=1 +Abzan\ Falconer=1 +Abzan\ Guide=1 +Abzan\ Kin-Guard=1 +Abzan\ Runemark=1 +Abzan\ Skycaptain=1 +Academy\ Elite=1 +Academy\ Raider=1 +Academy\ Researchers=1 +Accelerated\ Mutation=1 +Accomplished\ Automaton=1 +Accorder\ Paladin=1 +Accorder's\ Shield=1 +Accursed\ Spirit=1 +Accursed\ Witch=1 +Acid\ Web\ Spider=1 +Acid-Spewer\ Dragon=1 +Acidic\ Slime=1 +Acidic\ Sliver=1 +Acolyte\ of\ the\ Inferno=1 +Acolyte's\ Reward=1 +Acrobatic\ Maneuver=1 +Act\ of\ Aggression=1 +Act\ of\ Treason=1 +Act\ on\ Impulse=1 +Active\ Volcano=1 +Adamaro,\ First\ to\ Desire=1 +Adarkar\ Sentinel=1 +Adarkar\ Windform=1 +Adder-Staff\ Boggart=1 +Addle=1 +Advance\ Scout=1 +Advanced\ Hoverguard=1 +Advanced\ Stitchwing=1 +Advent\ of\ the\ Wurm=1 +Adverse\ Conditions=1 +Advice\ from\ the\ Fae=1 +Advocate\ of\ the\ Beast=1 +Aegis\ Angel=1 +Aegis\ Automaton=1 +Aeolipile=1 +Aeon\ Chronicler=1 +Aerial\ Formation=1 +Aerial\ Maneuver=1 +Aerial\ Modification=1 +Aerial\ Predation=1 +Aerial\ Responder=1 +Aerial\ Volley=1 +Aerie\ Bowmasters=1 +Aerie\ Mystics=1 +Aerie\ Ouphes=1 +Aerie\ Worshippers=1 +Aeronaut\ Admiral=1 +Aeronaut\ Tinkerer=1 +Aesthir\ Glider=1 +Aether\ Adept=1 +Aether\ Charge=1 +Aether\ Chaser=1 +Aether\ Figment=1 +Aether\ Flash=1 +Aether\ Herder=1 +Aether\ Inspector=1 +Aether\ Meltdown=1 +Aether\ Membrane=1 +Aether\ Mutation=1 +Aether\ Poisoner=1 +Aether\ Shockwave=1 +Aether\ Spellbomb=1 +Aether\ Sting=1 +Aether\ Storm=1 +Aether\ Swooper=1 +Aether\ Theorist=1 +Aether\ Tide=1 +Aether\ Tradewinds=1 +Aether\ Web=1 +Aetherborn\ Marauder=1 +Aethergeode\ Miner=1 +Aethermage's\ Touch=1 +Aetherplasm=1 +Aethersnipe=1 +Aethersquall\ Ancient=1 +Aetherstorm\ Roc=1 +Aetherstream\ Leopard=1 +Aethertide\ Whale=1 +Aethertorch\ Renegade=1 +Aethertow=1 +Affa\ Guard\ Hound=1 +Affa\ Protector=1 +Afflict=1 +Afflicted\ Deserter=1 +Afterlife=1 +Aftershock=1 +Agent\ of\ Erebos=1 +Agent\ of\ Horizons=1 +Agent\ of\ Masks=1 +Agent\ of\ Shauku=1 +Agent\ of\ the\ Fates=1 +Aggressive\ Urge=1 +Agility=1 +Agonizing\ Demise=1 +Agonizing\ Memories=1 +Agony\ Warp=1 +Agoraphobia=1 +Agrus\ Kos,\ Wojek\ Veteran=1 +Ahn-Crop\ Champion=1 +Aid\ from\ the\ Cowl=1 +Aim\ High=1 +Ainok\ Artillerist=1 +Ainok\ Bond-Kin=1 +Ainok\ Guide=1 +Ainok\ Survivalist=1 +Ainok\ Tracker=1 +Air\ Elemental=1 +Air\ Servant=1 +Airborne\ Aid=1 +Airdrop\ Aeronauts=1 +Airdrop\ Condor=1 +Ajani's\ Chosen=1 +Ajani's\ Mantra=1 +Ajani's\ Presence=1 +Ajani's\ Sunstriker=1 +Akki\ Avalanchers=1 +Akki\ Blizzard-Herder=1 +Akki\ Drillmaster=1 +Akki\ Lavarunner=1 +Akki\ Rockspeaker=1 +Akki\ Underling=1 +Akki\ Underminer=1 +Akoum\ Battlesinger=1 +Akoum\ Boulderfoot=1 +Akoum\ Flameseeker=1 +Akoum\ Hellkite=1 +Akoum\ Stonewaker=1 +Akrasan\ Squire=1 +Akroan\ Conscriptor=1 +Akroan\ Crusader=1 +Akroan\ Hoplite=1 +Akroan\ Horse=1 +Akroan\ Jailer=1 +Akroan\ Line\ Breaker=1 +Akroan\ Mastiff=1 +Akroan\ Phalanx=1 +Akroan\ Sergeant=1 +Akroan\ Skyguard=1 +Akroma's\ Blessing=1 +Akroma's\ Devoted=1 +Aku\ Djinn=1 +Akuta,\ Born\ of\ Ash=1 +Alabaster\ Kirin=1 +Alabaster\ Potion=1 +Alabaster\ Wall=1 +Alaborn\ Musketeer=1 +Alaborn\ Trooper=1 +Aladdin's\ Ring=1 +Alarum=1 +Albino\ Troll=1 +Alchemist's\ Apprentice=1 +Alchemist's\ Greeting=1 +Alchor's\ Tomb=1 +Algae\ Gharial=1 +Alhammarret,\ High\ Arbiter=1 +Aligned\ Hedron\ Network=1 +Alive\ //\ Well=1 +All\ Suns'\ Dawn=1 +Alley\ Evasion=1 +Alley\ Strangler=1 +Allied\ Reinforcements=1 +Allied\ Strategies=1 +Alloy\ Myr=1 +Alluring\ Scent=1 +Alluring\ Siren=1 +Alms=1 +Alms\ Beast=1 +Alms\ of\ the\ Vein=1 +Alpha\ Authority=1 +Alpha\ Brawl=1 +Alpha\ Kavu=1 +Alpha\ Status=1 +Alpha\ Tyrranax=1 +Alpine\ Grizzly=1 +Altac\ Bloodseeker=1 +Altar\ Golem=1 +Altar\ of\ Shadows=1 +Altar\ of\ the\ Brood=1 +Altar\ of\ the\ Lost=1 +Altar's\ Reap=1 +Altered\ Ego=1 +Amass\ the\ Components=1 +Ambassador\ Laquatus=1 +Ambassador\ Oak=1 +Ambitious\ Aetherborn=1 +Ambuscade\ Shaman=1 +Ambush\ Krotiq=1 +Ambush\ Party=1 +Ambush\ Viper=1 +Amoeboid\ Changeling=1 +Amphibious\ Kavu=1 +Amphin\ Cutthroat=1 +Amphin\ Pathmage=1 +Ampryn\ Tactician=1 +Amrou\ Kithkin=1 +Amrou\ Scout=1 +Amrou\ Seekers=1 +Amulet\ of\ Kroog=1 +An-Zerrin\ Ruins=1 +Ana\ Battlemage=1 +Ana\ Disciple=1 +Ana\ Sanctuary=1 +Anaba\ Ancestor=1 +Anaba\ Bodyguard=1 +Anaba\ Shaman=1 +Anaba\ Spirit\ Crafter=1 +Anaconda=1 +Anathemancer=1 +Anax\ and\ Cymede=1 +Ancestor's\ Chosen=1 +Ancestor's\ Prophet=1 +Ancestral\ Memories=1 +Ancestral\ Statue=1 +Ancestral\ Vengeance=1 +Anchor\ to\ the\ Aether=1 +Ancient\ Amphitheater=1 +Ancient\ Carp=1 +Ancient\ Crab=1 +Ancient\ Grudge=1 +Ancient\ Hellkite=1 +Ancient\ Kavu=1 +Ancient\ Silverback=1 +Ancient\ Spider=1 +Angel\ of\ Deliverance=1 +Angel\ of\ Flight\ Alabaster=1 +Angel\ of\ Glory's\ Rise=1 +Angel\ of\ Light=1 +Angel\ of\ Mercy=1 +Angel\ of\ Renewal=1 +Angel\ of\ Retribution=1 +Angel's\ Feather=1 +Angel's\ Herald=1 +Angel's\ Tomb=1 +Angel's\ Trumpet=1 +Angelfire\ Crusader=1 +Angelheart\ Vial=1 +Angelic\ Arbiter=1 +Angelic\ Armaments=1 +Angelic\ Benediction=1 +Angelic\ Blessing=1 +Angelic\ Captain=1 +Angelic\ Curator=1 +Angelic\ Edict=1 +Angelic\ Gift=1 +Angelic\ Page=1 +Angelic\ Purge=1 +Angelic\ Shield=1 +Angelic\ Skirmisher=1 +Angelic\ Voices=1 +Angelic\ Wall=1 +Angler\ Drake=1 +Angry\ Mob=1 +Animal\ Magnetism=1 +Animate\ Artifact=1 +Animate\ Wall=1 +Animation\ Module=1 +Animist's\ Awakening=1 +Ankle\ Shanker=1 +Annihilate=1 +Annihilating\ Fire=1 +Anodet\ Lurker=1 +Anoint=1 +Anointer\ of\ Champions=1 +Anointer\ Priest=1 +Ant\ Queen=1 +Anthem\ of\ Rakdos=1 +Anthousa,\ Setessan\ Hero=1 +Anthroplasm=1 +Anticipate=1 +Antler\ Skulkin=1 +Anurid\ Barkripper=1 +Anurid\ Murkdiver=1 +Anurid\ Scavenger=1 +Anvilwrought\ Raptor=1 +Apathy=1 +Apex\ Hawks=1 +Aphetto\ Alchemist=1 +Aphetto\ Dredging=1 +Aphetto\ Vulture=1 +Aphotic\ Wisps=1 +Apocalypse\ Hydra=1 +Apothecary\ Geist=1 +Appetite\ for\ Brains=1 +Appetite\ for\ the\ Unnatural=1 +Apprentice\ Wizard=1 +Approach\ of\ the\ Second\ Sun=1 +Aquamoeba=1 +Aquamorph\ Entity=1 +Aquastrand\ Spider=1 +Aqueous\ Form=1 +Aquitect's\ Will=1 +Araba\ Mothrider=1 +Arachnoid=1 +Arachnus\ Spinner=1 +Arachnus\ Web=1 +Aradara\ Express=1 +Arashi,\ the\ Sky\ Asunder=1 +Arashin\ Foremost=1 +Arashin\ Sovereign=1 +Arashin\ War\ Beast=1 +Arbalest\ Elite=1 +Arbiter\ of\ Knollridge=1 +Arbiter\ of\ the\ Ideal=1 +Arbor\ Colossus=1 +Arborback\ Stomper=1 +Arc\ Blade=1 +Arc\ Lightning=1 +Arc\ Runner=1 +Arc\ Trail=1 +Arc-Slogger=1 +Arcane\ Melee=1 +Arcane\ Sanctum=1 +Arcane\ Teachings=1 +Arcanis\ the\ Omnipotent=1 +Arcbond=1 +Arcbound\ Bruiser=1 +Arcbound\ Crusher=1 +Arcbound\ Fiend=1 +Arcbound\ Hybrid=1 +Arcbound\ Lancer=1 +Arcbound\ Overseer=1 +Arcbound\ Slith=1 +Arcbound\ Stinger=1 +Arcbound\ Wanderer=1 +Arcbound\ Worker=1 +Archdemon\ of\ Unx=1 +Archers\ of\ Qarsi=1 +Archers'\ Parapet=1 +Archery\ Training=1 +Archetype\ of\ Aggression=1 +Archetype\ of\ Courage=1 +Archetype\ of\ Endurance=1 +Archetype\ of\ Finality=1 +Archetype\ of\ Imagination=1 +Architect\ of\ the\ Untamed=1 +Archivist=1 +Archmage\ Ascension=1 +Archon\ of\ Justice=1 +Archon\ of\ Redemption=1 +Archon\ of\ the\ Triumvirate=1 +Archweaver=1 +Archwing\ Dragon=1 +Arctic\ Aven=1 +Arctic\ Merfolk=1 +Arctic\ Nishoba=1 +Arctic\ Wolves=1 +Ardent\ Militia=1 +Arena\ Athlete=1 +Argent\ Mutation=1 +Argent\ Sphinx=1 +Argentum\ Armor=1 +Argivian\ Blacksmith=1 +Argothian\ Pixies=1 +Argothian\ Swine=1 +Argothian\ Treefolk=1 +Ark\ of\ Blight=1 +Armament\ Corps=1 +Armament\ Master=1 +Armament\ of\ Nyx=1 +Armed\ //\ Dangerous=1 +Armed\ Response=1 +Armistice=1 +Armor\ of\ Faith=1 +Armor\ of\ Thorns=1 +Armor\ Sliver=1 +Armorcraft\ Judge=1 +Armored\ Ascension=1 +Armored\ Cancrix=1 +Armored\ Griffin=1 +Armored\ Pegasus=1 +Armored\ Skaab=1 +Armored\ Transport=1 +Armored\ Warhorse=1 +Armored\ Wolf-Rider=1 +Armorer\ Guildmage=1 +Armory\ Guard=1 +Armory\ of\ Iroas=1 +Arms\ Dealer=1 +Army\ Ants=1 +Arrest=1 +Arrogant\ Bloodlord=1 +Arrow\ Storm=1 +Arrow\ Volley\ Trap=1 +Artful\ Maneuver=1 +Artifact\ Blast=1 +Artificer's\ Epiphany=1 +Artificer's\ Hex=1 +Artificial\ Evolution=1 +Artillerize=1 +Artisan\ of\ Forms=1 +Artisan\ of\ Kozilek=1 +Artisan's\ Sorrow=1 +Ascended\ Lawmage=1 +Ascending\ Aven=1 +Asha's\ Favor=1 +Ashcoat\ Bear=1 +Ashen\ Firebeast=1 +Ashen\ Ghoul=1 +Ashen-Skin\ Zubera=1 +Ashenmoor\ Gouger=1 +Ashiok's\ Adept=1 +Ashling\ the\ Pilgrim=1 +Ashling's\ Prerogative=1 +Ashmouth\ Hound=1 +Ashnod's\ Cylix=1 +Ashnod's\ Transmogrant=1 +Aspect\ of\ Gorgon=1 +Aspect\ of\ Mongoose=1 +Asphodel\ Wanderer=1 +Asphyxiate=1 +Aspiring\ Aeronaut=1 +Assassinate=1 +Assault\ //\ Battery=1 +Assault\ Griffin=1 +Assault\ Zeppelid=1 +Assemble\ the\ Legion=1 +Assembled\ Alphas=1 +Assembly-Worker=1 +Assert\ Authority=1 +Astral\ Slide=1 +Astral\ Steel=1 +Astrolabe=1 +Asylum\ Visitor=1 +Atarka\ Efreet=1 +Atarka\ Monument=1 +Atarka\ Pummeler=1 +Attended\ Knight=1 +Audacious\ Infiltrator=1 +Auger\ Spree=1 +Augmenting\ Automaton=1 +Augur\ il-Vec=1 +Augury\ Owl=1 +Auntie's\ Snitch=1 +Aura\ Barbs=1 +Aura\ Extraction=1 +Aura\ Finesse=1 +Aura\ Graft=1 +Auramancer=1 +Auramancer's\ Guise=1 +Auratog=1 +Auratouched\ Mage=1 +Auriok\ Bladewarden=1 +Auriok\ Edgewright=1 +Auriok\ Glaivemaster=1 +Auriok\ Replica=1 +Auriok\ Salvagers=1 +Auriok\ Sunchaser=1 +Auriok\ Survivors=1 +Auriok\ Transfixer=1 +Auriok\ Windwalker=1 +Aurochs=1 +Aurora\ Griffin=1 +Autochthon\ Wurm=1 +Autumn's\ Veil=1 +Autumnal\ Gloom=1 +Avacyn,\ Guardian\ Angel=1 +Avacyn's\ Collar=1 +Avacyn's\ Judgment=1 +Avacyn's\ Pilgrim=1 +Avacynian\ Missionaries=1 +Avalanche\ Tusker=1 +Avarax=1 +Avarice\ Amulet=1 +Avarice\ Totem=1 +Avatar\ of\ Hope=1 +Avatar\ of\ Might=1 +Aven\ Archer=1 +Aven\ Augur=1 +Aven\ Battle\ Priest=1 +Aven\ Brigadier=1 +Aven\ Cloudchaser=1 +Aven\ Envoy=1 +Aven\ Farseer=1 +Aven\ Fateshaper=1 +Aven\ Fisher=1 +Aven\ Fleetwing=1 +Aven\ Flock=1 +Aven\ Fogbringer=1 +Aven\ Initiate=1 +Aven\ Liberator=1 +Aven\ Mimeomancer=1 +Aven\ Redeemer=1 +Aven\ Riftwatcher=1 +Aven\ Shrine=1 +Aven\ Skirmisher=1 +Aven\ Smokeweaver=1 +Aven\ Squire=1 +Aven\ Sunstriker=1 +Aven\ Tactician=1 +Aven\ Trailblazer=1 +Aven\ Trooper=1 +Aven\ Warhawk=1 +Aven\ Wind\ Guide=1 +Aven\ Windreader=1 +Avenging\ Angel=1 +Avenging\ Arrow=1 +Avenging\ Druid=1 +Avian\ Changeling=1 +Aviary\ Mechanic=1 +Avoid\ Fate=1 +Awaken\ the\ Ancient=1 +Awaken\ the\ Bear=1 +Awakener\ Druid=1 +Awe\ for\ the\ Guilds=1 +Awe\ Strike=1 +Axebane\ Guardian=1 +Axebane\ Stag=1 +Axegrinder\ Giant=1 +Axelrod\ Gunnarson=1 +Aysen\ Bureaucrats=1 +Aysen\ Crusader=1 +Ayumi,\ the\ Last\ Visitor=1 +Azimaet\ Drake=1 +Azor's\ Elocutors=1 +Azorius\ Aethermage=1 +Azorius\ Arrester=1 +Azorius\ Charm=1 +Azorius\ Cluestone=1 +Azorius\ First-Wing=1 +Azorius\ Guildgate=1 +Azorius\ Guildmage=1 +Azorius\ Herald=1 +Azorius\ Justiciar=1 +Azorius\ Keyrune=1 +Azorius\ Signet=1 +Azure\ Drake=1 +Azure\ Mage=1 +Back\ from\ the\ Brink=1 +Back\ to\ Nature=1 +Backwoods\ Survivalists=1 +Bad\ River=1 +Baku\ Altar=1 +Bala\ Ged\ Thief=1 +Balance\ of\ Power=1 +Balduvian\ Barbarians=1 +Balduvian\ Conjurer=1 +Balduvian\ Fallen=1 +Balduvian\ Frostwaker=1 +Balduvian\ Hydra=1 +Balduvian\ Rage=1 +Balduvian\ Warlord=1 +Baleful\ Ammit=1 +Baleful\ Eidolon=1 +Baleful\ Force=1 +Baleful\ Stare=1 +Ballista\ Charger=1 +Ballista\ Squad=1 +Balloon\ Peddler=1 +Ballynock\ Cohort=1 +Baloth\ Cage\ Trap=1 +Baloth\ Null=1 +Baloth\ Pup=1 +Baloth\ Woodcrasher=1 +Balshan\ Collaborator=1 +Balshan\ Griffin=1 +Bamboozle=1 +Bandage=1 +Bane\ of\ Bala\ Ged=1 +Baneful\ Omen=1 +Banewasp\ Affliction=1 +Banisher\ Priest=1 +Banishing\ Stroke=1 +Banishment\ Decree=1 +Banners\ Raised=1 +Banshee=1 +Banshee\ of\ the\ Dread\ Choir=1 +Banshee's\ Blade=1 +Bant\ Battlemage=1 +Bant\ Panorama=1 +Bant\ Sojourners=1 +Bar\ the\ Door=1 +Barbarian\ Bully=1 +Barbarian\ Lunatic=1 +Barbarian\ Outcast=1 +Barbarian\ Riftcutter=1 +Barbed\ Lightning=1 +Barbed\ Sextant=1 +Barbed\ Shocker=1 +Barbed\ Sliver=1 +Barkhide\ Mauler=1 +Barkshell\ Blessing=1 +Barktooth\ Warbeard=1 +Barony\ Vampire=1 +Barrage\ of\ Boulders=1 +Barrage\ of\ Expendables=1 +Barrage\ Ogre=1 +Barrage\ Tyrant=1 +Barren\ Glory=1 +Barren\ Moor=1 +Barricade\ Breaker=1 +Barrin's\ Codex=1 +Barrin's\ Unmaking=1 +Bartel\ Runeaxe=1 +Barter\ in\ Blood=1 +Baru,\ Fist\ of\ Krosa=1 +Basal\ Sliver=1 +Basal\ Thrull=1 +Basandra,\ Battle\ Seraph=1 +Bash\ to\ Bits=1 +Basilica\ Guards=1 +Basilica\ Screecher=1 +Basking\ Rootwalla=1 +Bassara\ Tower\ Archer=1 +Bastion\ Enforcer=1 +Bastion\ Inventor=1 +Bastion\ Mastodon=1 +Bathe\ in\ Dragonfire=1 +Bathe\ in\ Light=1 +Baton\ of\ Courage=1 +Batterhorn=1 +Battering\ Krasis=1 +Battering\ Sliver=1 +Battle\ Brawler=1 +Battle\ Hurda=1 +Battle\ Mastery=1 +Battle\ of\ Wits=1 +Battle\ Rampart=1 +Battle\ Sliver=1 +Battle\ Squadron=1 +Battle\ Strain=1 +Battle-Mad\ Ronin=1 +Battle-Rattle\ Shaman=1 +Battlefield\ Medic=1 +Battlefield\ Scavenger=1 +Battlefield\ Thaumaturge=1 +Battlefront\ Krushok=1 +Battlegate\ Mimic=1 +Battlegrace\ Angel=1 +Battleground\ Geist=1 +Battlegrowth=1 +Battletide\ Alchemist=1 +Battlewand\ Oak=1 +Battlewise\ Aven=1 +Battlewise\ Hoplite=1 +Battlewise\ Valor=1 +Batwing\ Brume=1 +Bayou\ Dragonfly=1 +Beacon\ Behemoth=1 +Beacon\ Hawk=1 +Beacon\ of\ Destiny=1 +Beacon\ of\ Destruction=1 +Bear's\ Companion=1 +Bearer\ of\ Silence=1 +Bearer\ of\ the\ Heavens=1 +Beast\ Attack=1 +Beast\ Hunt=1 +Beast\ of\ Burden=1 +Beastbreaker\ of\ Bala\ Ged=1 +Beastcaller\ Savant=1 +Beastmaster's\ Magemark=1 +Bee\ Sting=1 +Beetleback\ Chief=1 +Beetleform\ Mage=1 +Befoul=1 +Behemoth\ Sledge=1 +Behind\ the\ Scenes=1 +Belfry\ Spirit=1 +Belligerent\ Hatchling=1 +Belligerent\ Sliver=1 +Belligerent\ Whiptail=1 +Bellowing\ Fiend=1 +Bellowing\ Saddlebrute=1 +Bellowing\ Tanglewurm=1 +Bellows\ Lizard=1 +Belltoll\ Dragon=1 +Belltower\ Sphinx=1 +Beloved\ Chaplain=1 +Ben-Ben,\ Akki\ Hermit=1 +Benalish\ Commander=1 +Benalish\ Emissary=1 +Benalish\ Heralds=1 +Benalish\ Hero=1 +Benalish\ Infantry=1 +Benalish\ Knight=1 +Benalish\ Lancer=1 +Benalish\ Missionary=1 +Benalish\ Trapper=1 +Benalish\ Veteran=1 +Benediction\ of\ Moons=1 +Benefaction\ of\ Rhonas=1 +Benefactor's\ Draught=1 +Benevolent\ Ancestor=1 +Benevolent\ Bodyguard=1 +Benthic\ Explorers=1 +Benthic\ Giant=1 +Benthic\ Infiltrator=1 +Benthicore=1 +Bereavement=1 +Berserk\ Murlodont=1 +Berserkers'\ Onslaught=1 +Bestial\ Fury=1 +Bestial\ Menace=1 +Betrayal\ of\ Flesh=1 +Bident\ of\ Thassa=1 +Bile\ Blight=1 +Bile\ Urchin=1 +Binding\ Grasp=1 +Binding\ Mummy=1 +Biomantic\ Mastery=1 +Biomass\ Mutation=1 +Bioplasm=1 +Bioshift=1 +Biovisionary=1 +Bird\ Maiden=1 +Birthing\ Hulk=1 +Biting\ Rain=1 +Biting\ Tether=1 +Bitter\ Revelation=1 +Bitterblade\ Warrior=1 +Bitterheart\ Witch=1 +Bituminous\ Blast=1 +Black\ Cat=1 +Black\ Knight=1 +Black\ Oak\ of\ Odunos=1 +Black\ Poplar\ Shaman=1 +Blackcleave\ Goblin=1 +Blade\ of\ the\ Sixth\ Pride=1 +Bladed\ Bracers=1 +Bladed\ Pinions=1 +Blademane\ Baku=1 +Blades\ of\ Velis\ Vel=1 +Bladetusk\ Boar=1 +Bladewing's\ Thrall=1 +Blanchwood\ Armor=1 +Blanchwood\ Treefolk=1 +Blast\ of\ Genius=1 +Blastfire\ Bolt=1 +Blastoderm=1 +Blaze=1 +Blaze\ Commando=1 +Blaze\ of\ Glory=1 +Blazethorn\ Scarecrow=1 +Blazing\ Blade\ Askari=1 +Blazing\ Hellhound=1 +Blazing\ Specter=1 +Blazing\ Torch=1 +Blazing\ Volley=1 +Bleak\ Coven\ Vampires=1 +Blessed\ Breath=1 +Blessed\ Orator=1 +Blessed\ Reincarnation=1 +Blessed\ Reversal=1 +Blessed\ Spirits=1 +Blessing=1 +Blessing\ of\ Leeches=1 +Blessing\ of\ the\ Nephilim=1 +Blessings\ of\ Nature=1 +Blight\ Herder=1 +Blight\ Sickle=1 +Blightcaster=1 +Blighted\ Bat=1 +Blighted\ Cataract=1 +Blighted\ Fen=1 +Blighted\ Gorge=1 +Blighted\ Shaman=1 +Blighted\ Steppe=1 +Blighted\ Woodland=1 +Blightsoil\ Druid=1 +Blightspeaker=1 +Blightwidow=1 +Blind\ Creeper=1 +Blind\ Hunter=1 +Blind\ Phantasm=1 +Blind\ Zealot=1 +Blind-Spot\ Giant=1 +Blinding\ Drone=1 +Blinding\ Flare=1 +Blinding\ Mage=1 +Blinding\ Powder=1 +Blinding\ Souleater=1 +Blinding\ Spray=1 +Blinking\ Spirit=1 +Blinkmoth\ Infusion=1 +Blinkmoth\ Well=1 +Blister\ Beetle=1 +Blistercoil\ Weird=1 +Blistergrub=1 +Blistering\ Barrier=1 +Blistering\ Dieflyn=1 +Blisterpod=1 +Blitz\ Hellion=1 +Blizzard\ Specter=1 +Bloated\ Toad=1 +Blockade\ Runner=1 +Blockbuster=1 +Blood\ Bairn=1 +Blood\ Cultist=1 +Blood\ Funnel=1 +Blood\ Host=1 +Blood\ Knight=1 +Blood\ Mist=1 +Blood\ Ogre=1 +Blood\ Reckoning=1 +Blood\ Rites=1 +Blood\ Seeker=1 +Blood\ Speaker=1 +Blood\ Tribute=1 +Blood\ Tyrant=1 +Blood\ Vassal=1 +Blood-Chin\ Fanatic=1 +Blood-Chin\ Rager=1 +Blood-Cursed\ Knight=1 +Blood-Toll\ Harpy=1 +Bloodbond\ March=1 +Bloodbond\ Vampire=1 +Bloodbriar=1 +Bloodcrazed\ Hoplite=1 +Bloodcrazed\ Neonate=1 +Bloodfire\ Colossus=1 +Bloodfire\ Dwarf=1 +Bloodfire\ Enforcers=1 +Bloodfire\ Expert=1 +Bloodfire\ Infusion=1 +Bloodfire\ Kavu=1 +Bloodfire\ Mentor=1 +Bloodflow\ Connoisseur=1 +Bloodgift\ Demon=1 +Bloodhall\ Ooze=1 +Bloodhunter\ Bat=1 +Bloodhusk\ Ritualist=1 +Bloodied\ Ghost=1 +Bloodletter\ Quill=1 +Bloodline\ Shaman=1 +Bloodlust\ Inciter=1 +Bloodmad\ Vampire=1 +Bloodmark\ Mentor=1 +Bloodpyre\ Elemental=1 +Bloodrage\ Vampire=1 +Bloodrite\ Invoker=1 +Bloodrock\ Cyclops=1 +Bloodscent=1 +Bloodshed\ Fever=1 +Bloodshot\ Trainee=1 +Bloodthirsty\ Ogre=1 +Bloodthorn\ Taunter=1 +Bloodthrone\ Vampire=1 +Bludgeon\ Brawl=1 +Blunt\ the\ Assault=1 +Blustersquall=1 +Boar\ Umbra=1 +Bog\ Down=1 +Bog\ Glider=1 +Bog\ Gnarr=1 +Bog\ Imp=1 +Bog\ Initiate=1 +Bog\ Raiders=1 +Bog\ Serpent=1 +Bog\ Smugglers=1 +Bog\ Wraith=1 +Bog-Strider\ Ash=1 +Bogardan\ Firefiend=1 +Bogardan\ Lancer=1 +Bogbrew\ Witch=1 +Boggart\ Birth\ Rite=1 +Boggart\ Brute=1 +Boggart\ Forager=1 +Boggart\ Harbinger=1 +Boggart\ Loggers=1 +Boggart\ Mob=1 +Boggart\ Ram-Gang=1 +Boggart\ Shenanigans=1 +Boggart\ Sprite-Chaser=1 +Boiling\ Earth=1 +Boiling\ Seas=1 +Bojuka\ Brigand=1 +Bold\ Defense=1 +Bold\ Impaler=1 +Boldwyr\ Heavyweights=1 +Boldwyr\ Intimidator=1 +Bolt\ of\ Keranos=1 +Boltwing\ Marauder=1 +Bomat\ Bazaar\ Barge=1 +Bomber\ Corps=1 +Bond\ Beetle=1 +Bond\ of\ Agony=1 +Bonded\ Construct=1 +Bonded\ Fetch=1 +Bonds\ of\ Faith=1 +Bonds\ of\ Mortality=1 +Bonds\ of\ Quicksilver=1 +Bone\ Flute=1 +Bone\ Harvest=1 +Bone\ Picker=1 +Bone\ Splinters=1 +Bone\ to\ Ash=1 +Bonehoard=1 +Boneknitter=1 +Boneshard\ Slasher=1 +Bonesplitter\ Sliver=1 +Boneyard\ Wurm=1 +Bontu's\ Monument=1 +Booby\ Trap=1 +Book\ Burning=1 +Book\ of\ Rass=1 +Boompile=1 +Boon\ of\ Emrakul=1 +Boon\ of\ Erebos=1 +Boon\ Satyr=1 +Boonweaver\ Giant=1 +Borborygmos=1 +Border\ Patrol=1 +Borderland\ Behemoth=1 +Borderland\ Minotaur=1 +Borderland\ Ranger=1 +Boreal\ Centaur=1 +Boreal\ Griffin=1 +Boris\ Devilboon=1 +Boros\ Battleshaper=1 +Boros\ Cluestone=1 +Boros\ Elite=1 +Boros\ Fury-Shield=1 +Boros\ Guildgate=1 +Boros\ Guildmage=1 +Boros\ Keyrune=1 +Boros\ Mastiff=1 +Boros\ Recruit=1 +Boros\ Signet=1 +Boros\ Swiftblade=1 +Borrowed\ Grace=1 +Borrowed\ Hostility=1 +Borrowed\ Malevolence=1 +Borrowing\ 100,000\ Arrows=1 +Bosh,\ Iron\ Golem=1 +Bottle\ Gnomes=1 +Bottled\ Cloister=1 +Boulder\ Salvo=1 +Boulderfall=1 +Bound\ //\ Determined=1 +Bound\ by\ Moonsilver=1 +Bound\ in\ Silence=1 +Bounding\ Krasis=1 +Bounteous\ Kirin=1 +Bow\ of\ Nylea=1 +Bower\ Passage=1 +Brackwater\ Elemental=1 +Braids,\ Conjurer\ Adept=1 +Braidwood\ Sextant=1 +Brain\ Freeze=1 +Brain\ Gorgers=1 +Brain\ in\ a\ Jar=1 +Brain\ Maggot=1 +Brain\ Pry=1 +Brain\ Weevil=1 +Brainbite=1 +Brainspoil=1 +Bramble\ Elemental=1 +Bramblecrush=1 +Bramblesnap=1 +Branching\ Bolt=1 +Branchsnap\ Lorian=1 +Brass\ Gnat=1 +Brass\ Herald=1 +Brass\ Man=1 +Brass\ Squire=1 +Brassclaw\ Orcs=1 +Bravado=1 +Brave\ the\ Elements=1 +Brave\ the\ Sands=1 +Brawler's\ Plate=1 +Brawn=1 +Brazen\ Scourge=1 +Brazen\ Wolves=1 +Breach=1 +Breaching\ Hippocamp=1 +Break\ of\ Day=1 +Break\ Through\ the\ Line=1 +Breaker\ of\ Armies=1 +Breakneck\ Rider=1 +Breath\ of\ Fury=1 +Breath\ of\ Life=1 +Breath\ of\ Malfegor=1 +Breathstealer=1 +Bred\ for\ the\ Hunt=1 +Breeding\ Pit=1 +Breezekeeper=1 +Briarberry\ Cohort=1 +Briarbridge\ Patrol=1 +Briarhorn=1 +Briarknit\ Kami=1 +Briarpack\ Alpha=1 +Briber's\ Purse=1 +Brightflame=1 +Brigid,\ Hero\ of\ Kinsbaile=1 +Brilliant\ Halo=1 +Brilliant\ Spectrum=1 +Brilliant\ Ultimatum=1 +Brimstone\ Mage=1 +Brimstone\ Volley=1 +Brindle\ Boar=1 +Brindle\ Shoat=1 +Brine\ Elemental=1 +Brine\ Seer=1 +Brine\ Shaman=1 +Bring\ Low=1 +Bringer\ of\ the\ Red\ Dawn=1 +Brink\ of\ Disaster=1 +Brink\ of\ Madness=1 +Brion\ Stoutarm=1 +Brittle\ Effigy=1 +Broken\ Concentration=1 +Broken\ Fall=1 +Broken\ Visage=1 +Bronze\ Horse=1 +Bronze\ Sable=1 +Bronzebeak\ Moa=1 +Brood\ Birthing=1 +Brood\ Butcher=1 +Brood\ Keeper=1 +Brood\ Monitor=1 +Broodbirth\ Viper=1 +Broodhatch\ Nantuko=1 +Broodhunter\ Wurm=1 +Brooding\ Saurian=1 +Broodmate\ Dragon=1 +Broodstar=1 +Broodwarden=1 +Brothers\ of\ Fire=1 +Brothers\ Yamazaki=1 +Brown\ Ouphe=1 +Browse=1 +Brush\ with\ Death=1 +Brutal\ Deceiver=1 +Brutal\ Expulsion=1 +Brutalizer\ Exarch=1 +Brute\ Force=1 +Brute\ Strength=1 +Bubbling\ Beebles=1 +Bubbling\ Cauldron=1 +Budoka\ Gardener=1 +Budoka\ Pupil=1 +Builder's\ Blessing=1 +Built\ to\ Last=1 +Bull\ Aurochs=1 +Bull\ Cerodon=1 +Bull\ Elephant=1 +Bull\ Hippo=1 +Bullwhip=1 +Buoyancy=1 +Burden\ of\ Greed=1 +Burden\ of\ Guilt=1 +Burn\ Away=1 +Burn\ from\ Within=1 +Burn\ the\ Impure=1 +Burn\ Trail=1 +Burning\ Anger=1 +Burning\ Earth=1 +Burning\ of\ Xinye=1 +Burning\ Oil=1 +Burning\ Vengeance=1 +Burning-Tree\ Bloodscale=1 +Burnished\ Hart=1 +Burnout=1 +Burr\ Grafter=1 +Burrenton\ Bombardier=1 +Burrenton\ Shield-Bearers=1 +Burst\ Lightning=1 +Burst\ of\ Energy=1 +Burst\ of\ Speed=1 +Burst\ of\ Strength=1 +Bushi\ Tenderfoot=1 +Butcher\ of\ Malakir=1 +Butcher\ of\ the\ Horde=1 +Butcher\ Orgg=1 +Butcher's\ Cleaver=1 +Butcher's\ Glee=1 +Byway\ Courier=1 +Cabal\ Archon=1 +Cabal\ Conditioning=1 +Cabal\ Executioner=1 +Cabal\ Inquisitor=1 +Cabal\ Interrogator=1 +Cabal\ Ritual=1 +Cabal\ Slaver=1 +Cabal\ Surgeon=1 +Cabal\ Trainee=1 +Cache\ Raiders=1 +Cached\ Defenses=1 +Cackling\ Counterpart=1 +Cackling\ Fiend=1 +Cackling\ Flames=1 +Cadaver\ Imp=1 +Cadaverous\ Knight=1 +Cage\ of\ Hands=1 +Cagemail=1 +Cairn\ Wanderer=1 +Calciderm=1 +Calcite\ Snapper=1 +Calculated\ Dismissal=1 +Caldera\ Hellion=1 +Caldera\ Kavu=1 +Caldera\ Lake=1 +Call\ for\ Unity=1 +Call\ of\ the\ Conclave=1 +Call\ of\ the\ Full\ Moon=1 +Call\ of\ the\ Herd=1 +Call\ of\ the\ Nightwing=1 +Call\ the\ Bloodline=1 +Call\ the\ Gatewatch=1 +Call\ the\ Scions=1 +Call\ the\ Skybreaker=1 +Call\ to\ Arms=1 +Call\ to\ Glory=1 +Call\ to\ Heel=1 +Call\ to\ Mind=1 +Call\ to\ Serve=1 +Call\ to\ the\ Grave=1 +Call\ to\ the\ Kindred=1 +Caller\ of\ Gales=1 +Caller\ of\ the\ Pack=1 +Callous\ Oppressor=1 +Callow\ Jushi=1 +Caltrops=1 +Campaign\ of\ Vengeance=1 +Cancel=1 +Candles\ of\ Leng=1 +Candles'\ Glow=1 +Canker\ Abomination=1 +Cankerous\ Thirst=1 +Cannibalize=1 +Canopy\ Claws=1 +Canopy\ Cover=1 +Canopy\ Crawler=1 +Canopy\ Gorger=1 +Canopy\ Spider=1 +Canopy\ Surge=1 +Canyon\ Drake=1 +Canyon\ Lurkers=1 +Canyon\ Minotaur=1 +Capashen\ Knight=1 +Capashen\ Standard=1 +Capashen\ Templar=1 +Capashen\ Unicorn=1 +Capricious\ Efreet=1 +Captain\ of\ the\ Mists=1 +Captain\ of\ the\ Watch=1 +Captain's\ Call=1 +Captain's\ Maneuver=1 +Captivating\ Glance=1 +Captive\ Flame=1 +Captured\ by\ the\ Consulate=1 +Captured\ Sunlight=1 +Carapace=1 +Caravan\ Escort=1 +Caravan\ Hurda=1 +Caravan\ Vigil=1 +Carbonize=1 +Careful\ Consideration=1 +Caregiver=1 +Caress\ of\ Phyrexia=1 +Caribou\ Range=1 +Carnage\ Altar=1 +Carnage\ Gladiator=1 +Carnage\ Wurm=1 +Carnassid=1 +Carnifex\ Demon=1 +Carnival\ Hellsteed=1 +Carnivorous\ Moss-Beast=1 +Carnivorous\ Plant=1 +Carnophage=1 +Carom=1 +Carrier\ Thrall=1 +Carrion\ Ants=1 +Carrion\ Beetles=1 +Carrion\ Call=1 +Carrion\ Crow=1 +Carrion\ Howler=1 +Carrion\ Rats=1 +Carrion\ Thrash=1 +Carrion\ Wall=1 +Carry\ Away=1 +Cartographer=1 +Cartouche\ of\ Ambition=1 +Cartouche\ of\ Knowledge=1 +Cartouche\ of\ Solidarity=1 +Cartouche\ of\ Strength=1 +Carven\ Caryatid=1 +Cascading\ Cataracts=1 +Cast\ into\ Darkness=1 +Castle=1 +Cat\ Burglar=1 +Catacomb\ Sifter=1 +Catacomb\ Slug=1 +Catalog=1 +Catapult\ Squad=1 +Catch\ //\ Release=1 +Cateran\ Brute=1 +Cateran\ Persuader=1 +Caterwauling\ Boggart=1 +Cathar's\ Companion=1 +Cathar's\ Shield=1 +Cathartic\ Adept=1 +Cathartic\ Reunion=1 +Cathedral\ Membrane=1 +Cathodion=1 +Caught\ in\ the\ Brights=1 +Caustic\ Caterpillar=1 +Caustic\ Crawler=1 +Caustic\ Hound=1 +Caustic\ Tar=1 +Cautery\ Sliver=1 +Cavalry\ Pegasus=1 +Cave\ Sense=1 +Cave\ Tiger=1 +Cavern\ Crawler=1 +Cavern\ Lampad=1 +Cavern\ Thoctar=1 +Cease-Fire=1 +Ceaseless\ Searblades=1 +Celestial\ Archon=1 +Celestial\ Crusader=1 +Celestial\ Flare=1 +Celestial\ Mantle=1 +Celestial\ Purge=1 +Celestial\ Sword=1 +Cellar\ Door=1 +Cemetery\ Reaper=1 +Cemetery\ Recruitment=1 +Cenn's\ Heir=1 +Cenn's\ Tactician=1 +Centaur\ Battlemaster=1 +Centaur\ Chieftain=1 +Centaur\ Courser=1 +Centaur\ Glade=1 +Centaur\ Healer=1 +Centaur\ Omenreader=1 +Centaur\ Rootcaster=1 +Centaur\ Safeguard=1 +Centaur\ Veteran=1 +Centaur's\ Herald=1 +Center\ Soul=1 +Cephalid\ Aristocrat=1 +Cephalid\ Broker=1 +Cephalid\ Inkshrouder=1 +Cephalid\ Looter=1 +Cephalid\ Pathmage=1 +Cephalid\ Retainer=1 +Cephalid\ Sage=1 +Cephalid\ Scout=1 +Cephalid\ Shrine=1 +Cephalid\ Snitch=1 +Cerebral\ Eruption=1 +Cerodon\ Yearling=1 +Certain\ Death=1 +Cerulean\ Sphinx=1 +Ceta\ Disciple=1 +Ceta\ Sanctuary=1 +Chain\ of\ Acid=1 +Chain\ of\ Plasma=1 +Chain\ of\ Smog=1 +Chainbreaker=1 +Chained\ to\ the\ Rocks=1 +Chainflinger=1 +Chamber\ of\ Manipulation=1 +Champion\ of\ Arashin=1 +Champion\ of\ Rhonas=1 +Champion's\ Drake=1 +Chancellor\ of\ the\ Spires=1 +Chandra\ Nalaar=1 +Chandra's\ Fury=1 +Chandra's\ Ignition=1 +Chandra's\ Outrage=1 +Chandra's\ Pyrohelix=1 +Chandra's\ Revolution=1 +Chandra's\ Spitfire=1 +Change\ of\ Heart=1 +Changeling\ Berserker=1 +Changeling\ Hero=1 +Changeling\ Sentinel=1 +Changeling\ Titan=1 +Channel\ Harm=1 +Channel\ the\ Suns=1 +Chant\ of\ the\ Skifsang=1 +Chant\ of\ Vitu-Ghazi=1 +Chaos\ Imps=1 +Chaotic\ Backlash=1 +Chaplain's\ Blessing=1 +Charge\ Across\ the\ Araba=1 +Charging\ Badger=1 +Charging\ Cinderhorn=1 +Charging\ Griffin=1 +Charging\ Paladin=1 +Charging\ Rhino=1 +Chariot\ of\ Victory=1 +Charm\ Peddler=1 +Charmbreaker\ Devils=1 +Charnelhoard\ Wurm=1 +Chartooth\ Cougar=1 +Chasm\ Drake=1 +Chasm\ Guide=1 +Chemister's\ Trick=1 +Chief\ of\ the\ Edge=1 +Chief\ of\ the\ Foundry=1 +Chief\ of\ the\ Scale=1 +Child\ of\ Gaea=1 +Child\ of\ Night=1 +Child\ of\ Thorns=1 +Chill\ Haunting=1 +Chill\ of\ Foreboding=1 +Chilling\ Grasp=1 +Chilling\ Shade=1 +Chime\ of\ Night=1 +Chimeric\ Coils=1 +Chimeric\ Idol=1 +Chimeric\ Mass=1 +Chimeric\ Staff=1 +Chisei,\ Heart\ of\ Oceans=1 +Chitinous\ Cloak=1 +Cho-Manno,\ Revolutionary=1 +Choking\ Fumes=1 +Choking\ Restraints=1 +Choking\ Tethers=1 +Chorus\ of\ Might=1 +Chorus\ of\ the\ Conclave=1 +Chorus\ of\ the\ Tides=1 +Chosen\ by\ Heliod=1 +Chosen\ of\ Markov=1 +Chrome\ Steed=1 +Chromescale\ Drake=1 +Chronic\ Flooding=1 +Chronicler\ of\ Heroes=1 +Chronomantic\ Escape=1 +Chronomaton=1 +Chronosavant=1 +Chronostutter=1 +Chub\ Toad=1 +Churning\ Eddy=1 +Cinder\ Barrens=1 +Cinder\ Cloud=1 +Cinder\ Crawler=1 +Cinder\ Elemental=1 +Cinder\ Hellion=1 +Cinder\ Marsh=1 +Cinder\ Shade=1 +Cinder\ Storm=1 +Cinder\ Wall=1 +Circle\ of\ Affliction=1 +Circle\ of\ Elders=1 +Circle\ of\ Flame=1 +Circle\ of\ Protection:\ Artifacts=1 +Circle\ of\ Protection:\ Shadow=1 +Circle\ of\ Protection:\ White=1 +Circle\ of\ Solace=1 +Circling\ Vultures=1 +Circu,\ Dimir\ Lobotomist=1 +Circular\ Logic=1 +Citadel\ Castellan=1 +Citanul\ Druid=1 +Citanul\ Woodreaders=1 +Civic\ Guildmage=1 +Civic\ Saber=1 +Civic\ Wayfinder=1 +Civilized\ Scholar=1 +Claim\ of\ Erebos=1 +Clan\ Defiance=1 +Clarion\ Ultimatum=1 +Clash\ of\ Realities=1 +Clash\ of\ Wills=1 +Claustrophobia=1 +Claws\ of\ Wirewood=1 +Clay\ Statue=1 +Cleansing\ Beam=1 +Clear\ a\ Path=1 +Clear\ Shot=1 +Cleaver\ Riot=1 +Clergy\ en-Vec=1 +Cleric\ of\ the\ Forward\ Order=1 +Clickslither=1 +Cliff\ Threader=1 +Cliffhaven\ Vampire=1 +Cliffrunner\ Behemoth=1 +Cliffside\ Lookout=1 +Clinging\ Anemones=1 +Clinging\ Darkness=1 +Clip\ Wings=1 +Cloak\ of\ Confusion=1 +Cloak\ of\ Mists=1 +Cloaked\ Siren=1 +Clock\ of\ Omens=1 +Clockspinning=1 +Clockwork\ Avian=1 +Clockwork\ Beast=1 +Clockwork\ Beetle=1 +Clockwork\ Condor=1 +Clockwork\ Dragon=1 +Clockwork\ Gnomes=1 +Clockwork\ Hydra=1 +Clockwork\ Steed=1 +Clone=1 +Clone\ Shell=1 +Clot\ Sliver=1 +Cloud\ Crusader=1 +Cloud\ Djinn=1 +Cloud\ Dragon=1 +Cloud\ Elemental=1 +Cloud\ Manta=1 +Cloud\ Spirit=1 +Cloud\ Sprite=1 +Cloudchaser\ Eagle=1 +Cloudchaser\ Kestrel=1 +Cloudcrest\ Lake=1 +Cloudcrown\ Oak=1 +Cloudgoat\ Ranger=1 +Cloudheath\ Drake=1 +Cloudhoof\ Kirin=1 +Cloudpost=1 +Cloudreach\ Cavalry=1 +Cloudseeder=1 +Cloudthresher=1 +Cloven\ Casting=1 +Clutch\ of\ Currents=1 +Clutch\ of\ the\ Undercity=1 +Clutch\ of\ Undeath=1 +Coal\ Stoker=1 +Coalhauler\ Swine=1 +Coalition\ Flag=1 +Coalition\ Honor\ Guard=1 +Coalition\ Victory=1 +Coast\ Watcher=1 +Coastal\ Discovery=1 +Coastal\ Drake=1 +Coastal\ Hornclaw=1 +Coat\ with\ Venom=1 +Coax\ from\ the\ Blind\ Eternities=1 +Cobblebrute=1 +Cobbled\ Wings=1 +Cobra\ Trap=1 +Cockatrice=1 +Codex\ Shredder=1 +Coerced\ Confession=1 +Coercion=1 +Cogwork\ Assembler=1 +Cogworker's\ Puzzleknot=1 +Coiled\ Tinviper=1 +Coiling\ Oracle=1 +Coils\ of\ the\ Medusa=1 +Colfenor's\ Plans=1 +Colos\ Yearling=1 +Colossal\ Heroics=1 +Colossal\ Might=1 +Colossal\ Whale=1 +Colossapede=1 +Colossus\ of\ Akros=1 +Colossus\ of\ Sardia=1 +Coma\ Veil=1 +Combat\ Medic=1 +Combust=1 +Commander\ Greven\ il-Vec=1 +Commander's\ Authority=1 +Commando\ Raid=1 +Common\ Bond=1 +Commune\ with\ Lava=1 +Commune\ with\ Nature=1 +Commune\ with\ the\ Gods=1 +Comparative\ Analysis=1 +Compelling\ Argument=1 +Compelling\ Deterrence=1 +Complete\ Disregard=1 +Composite\ Golem=1 +Compost=1 +Compulsive\ Research=1 +Compulsory\ Rest=1 +Conclave\ Naturalists=1 +Conclave\ Phalanx=1 +Conclave's\ Blessing=1 +Concordia\ Pegasus=1 +Concussive\ Bolt=1 +Conduit\ of\ Ruin=1 +Conduit\ of\ Storms=1 +Cone\ of\ Flame=1 +Confessor=1 +Confirm\ Suspicions=1 +Confiscate=1 +Confiscation\ Coup=1 +Confront\ the\ Unknown=1 +Confusion\ in\ the\ Ranks=1 +Congregate=1 +Congregation\ at\ Dawn=1 +Conifer\ Strider=1 +Conjured\ Currency=1 +Conjurer's\ Ban=1 +Conquer=1 +Conquering\ Manticore=1 +Consecrate\ Land=1 +Consecrated\ by\ Blood=1 +Consign\ to\ Dream=1 +Consign\ to\ Dust=1 +Constricting\ Sliver=1 +Constricting\ Tendrils=1 +Consul's\ Lieutenant=1 +Consul's\ Shieldguard=1 +Consulate\ Crackdown=1 +Consulate\ Dreadnought=1 +Consulate\ Skygate=1 +Consulate\ Surveillance=1 +Consulate\ Turret=1 +Consult\ the\ Necrosages=1 +Consume\ Spirit=1 +Consume\ Strength=1 +Consuming\ Aberration=1 +Consuming\ Bonfire=1 +Consuming\ Fervor=1 +Consuming\ Sinkhole=1 +Consuming\ Vapors=1 +Consuming\ Vortex=1 +Consumptive\ Goo=1 +Contagion\ Clasp=1 +Contagious\ Nim=1 +Containment\ Membrane=1 +Contaminated\ Bond=1 +Contaminated\ Ground=1 +Contemplation=1 +Contempt=1 +Contested\ Cliffs=1 +Contingency\ Plan=1 +Contraband\ Kingpin=1 +Contradict=1 +Controlled\ Instincts=1 +Controvert=1 +Conundrum\ Sphinx=1 +Convalescence=1 +Conversion=1 +Conversion\ Chamber=1 +Convicted\ Killer=1 +Conviction=1 +Convolute=1 +Convulsing\ Licid=1 +Coordinated\ Assault=1 +Coordinated\ Barrage=1 +Copper\ Carapace=1 +Copper\ Myr=1 +Copper\ Tablet=1 +Copperhoof\ Vorrac=1 +Copperhorn\ Scout=1 +Coral\ Barrier=1 +Coral\ Eel=1 +Coral\ Merfolk=1 +Coral\ Trickster=1 +Coralhelm\ Commander=1 +Coralhelm\ Guide=1 +Core\ Prowler=1 +Corpse\ Blockade=1 +Corpse\ Churn=1 +Corpse\ Connoisseur=1 +Corpse\ Cur=1 +Corpse\ Hauler=1 +Corpse\ Traders=1 +Corpsejack\ Menace=1 +Corpseweft=1 +Corpulent\ Corpse=1 +Corrosive\ Gale=1 +Corrupt=1 +Corrupted\ Conscience=1 +Corrupted\ Grafstone=1 +Corrupted\ Harvester=1 +Corrupted\ Resolve=1 +Corrupted\ Roots=1 +Corrupted\ Zendikon=1 +Corrupting\ Licid=1 +Cosi's\ Ravager=1 +Cosmic\ Larva=1 +Counsel\ of\ the\ Soratami=1 +Counterbore=1 +Counterlash=1 +Countermand=1 +Countless\ Gears\ Renegade=1 +Courageous\ Outrider=1 +Courier\ Griffin=1 +Courier's\ Capsule=1 +Court\ Archers=1 +Court\ Homunculus=1 +Court\ Street\ Denizen=1 +Covenant\ of\ Blood=1 +Covenant\ of\ Minds=1 +Cowardice=1 +Cowed\ by\ Wisdom=1 +Cower\ in\ Fear=1 +Cowl\ Prowler=1 +Crab\ Umbra=1 +Crabapple\ Cohort=1 +Crackdown\ Construct=1 +Crackling\ Club=1 +Crackling\ Doom=1 +Crackling\ Perimeter=1 +Crackling\ Triton=1 +Cradle\ Guard=1 +Cradle\ of\ the\ Accursed=1 +Cradle\ of\ Vitality=1 +Cradle\ to\ Grave=1 +Crafty\ Pathmage=1 +Crag\ Puca=1 +Cragganwick\ Cremator=1 +Cranial\ Archive=1 +Crash=1 +Crashing\ Centaur=1 +Crater\ Elemental=1 +Crater\ Hellion=1 +Crater's\ Claws=1 +Craterize=1 +Craven\ Giant=1 +Craw\ Giant=1 +Craw\ Wurm=1 +Crawling\ Filth=1 +Crawling\ Sensation=1 +Crazed\ Firecat=1 +Crazed\ Goblin=1 +Creakwood\ Ghoul=1 +Creeping\ Dread=1 +Creeping\ Mold=1 +Creeping\ Renaissance=1 +Creepy\ Doll=1 +Cremate=1 +Crescendo\ of\ War=1 +Crib\ Swap=1 +Crimson\ Manticore=1 +Crimson\ Muckwader=1 +Crimson\ Roc=1 +Crippling\ Blight=1 +Crippling\ Chill=1 +Crocanura=1 +Crocodile\ of\ the\ Crossing=1 +Crookclaw\ Transmuter=1 +Crop\ Sigil=1 +Crossbow\ Ambush=1 +Crossbow\ Infantry=1 +Crossroads\ Consecrator=1 +Crosstown\ Courier=1 +Crosswinds=1 +Crovax\ the\ Cursed=1 +Crovax,\ Ascendant\ Hero=1 +Crow\ of\ Dark\ Tidings=1 +Crowd\ of\ Cinders=1 +Crowd's\ Favor=1 +Crown\ of\ Awe=1 +Crown\ of\ Convergence=1 +Crown\ of\ Empires=1 +Crown\ of\ Flames=1 +Crown\ of\ Fury=1 +Crown\ of\ Suspicion=1 +Crowned\ Ceratok=1 +Crucible\ of\ Fire=1 +Crude\ Rampart=1 +Cruel\ Bargain=1 +Cruel\ Deceiver=1 +Cruel\ Feeding=1 +Cruel\ Finality=1 +Cruel\ Revival=1 +Cruel\ Sadist=1 +Cruel\ Ultimatum=1 +Crumble=1 +Crumble\ to\ Dust=1 +Crumbling\ Colossus=1 +Crumbling\ Necropolis=1 +Crumbling\ Vestige=1 +Crusader\ of\ Odric=1 +Crush=1 +Crusher\ Zendikon=1 +Crushing\ Pain=1 +Crushing\ Vines=1 +Cry\ of\ Contrition=1 +Cryoclasm=1 +Crypsis=1 +Crypt\ Champion=1 +Crypt\ Creeper=1 +Cryptic\ Annelid=1 +Cryptic\ Cruiser=1 +Cryptic\ Serpent=1 +Cryptolith\ Fragment=1 +Cryptoplasm=1 +Cryptwailing=1 +Crystal\ Ball=1 +Crystal\ Rod=1 +Crystal\ Seer=1 +Crystal\ Shard=1 +Crystalline\ Nautilus=1 +Crystallization=1 +Cudgel\ Troll=1 +Culling\ Dais=1 +Culling\ Drone=1 +Culling\ Mark=1 +Culling\ Scales=1 +Culling\ Sun=1 +Cult\ of\ the\ Waxing\ Moon=1 +Cultbrand\ Cinder=1 +Cultist's\ Staff=1 +Cultivator\ Drone=1 +Cultivator\ of\ Blades=1 +Cumber\ Stone=1 +Cunning=1 +Cunning\ Bandit=1 +Cunning\ Breezedancer=1 +Cunning\ Lethemancer=1 +Cunning\ Sparkmage=1 +Cunning\ Strike=1 +Curio\ Vendor=1 +Curiosity=1 +Curious\ Homunculus=1 +Curse\ of\ Bloodletting=1 +Curse\ of\ Echoes=1 +Curse\ of\ Oblivion=1 +Curse\ of\ Stalked\ Prey=1 +Curse\ of\ the\ Cabal=1 +Curse\ of\ the\ Nightly\ Hunt=1 +Curse\ of\ the\ Swine=1 +Curse\ of\ Thirst=1 +Curse\ of\ Vengeance=1 +Curse\ of\ Wizardry=1 +Cursebreak=1 +Cursed\ Flesh=1 +Cursed\ Minotaur=1 +Cursed\ Rack=1 +Cursed\ Ronin=1 +Cursed\ Scroll=1 +Curtain\ of\ Light=1 +Custodi\ Soulbinders=1 +Custodian\ of\ the\ Trove=1 +Cut\ the\ Earthly\ Bond=1 +Cutthroat\ il-Dal=1 +Cutthroat\ Maneuver=1 +Cyclical\ Evolution=1 +Cyclone=1 +Cyclone\ Sire=1 +Cyclopean\ Giant=1 +Cyclopean\ Mummy=1 +Cyclopean\ Snare=1 +Cyclops\ Gladiator=1 +Cyclops\ of\ Eternal\ Fury=1 +Cyclops\ Tyrant=1 +Cylian\ Elf=1 +Cylian\ Sunsinger=1 +Cystbearer=1 +Cytoplast\ Manipulator=1 +Cytoplast\ Root-Kin=1 +Cytoshape=1 +Cytospawn\ Shambler=1 +D'Avenant\ Healer=1 +Dack's\ Duplicate=1 +Daggerdrome\ Imp=1 +Daghatar\ the\ Adamant=1 +Daily\ Regimen=1 +Dakmor\ Lancer=1 +Dakra\ Mystic=1 +Damnable\ Pact=1 +Dampen\ Thought=1 +Dampening\ Pulse=1 +Dance\ of\ Shadows=1 +Dance\ of\ the\ Skywise=1 +Dance\ with\ Devils=1 +Dancing\ Scimitar=1 +Dand?n=1 +Dangerous\ Wager=1 +Daredevil\ Dragster=1 +Darigaaz's\ Attendant=1 +Darigaaz's\ Charm=1 +Daring\ Apprentice=1 +Daring\ Demolition=1 +Daring\ Leap=1 +Daring\ Skyjek=1 +Daring\ Sleuth=1 +Daring\ Thief=1 +Dark\ Banishing=1 +Dark\ Betrayal=1 +Dark\ Dabbling=1 +Dark\ Favor=1 +Dark\ Heart\ of\ the\ Wood=1 +Dark\ Privilege=1 +Dark\ Prophecy=1 +Dark\ Revenant=1 +Dark\ Ritual=1 +Dark\ Supplicant=1 +Dark\ Temper=1 +Darkheart\ Sliver=1 +Darkling\ Stalker=1 +Darklit\ Gargoyle=1 +Darkslick\ Drake=1 +Darksteel\ Axe=1 +Darksteel\ Brute=1 +Darksteel\ Gargoyle=1 +Darksteel\ Juggernaut=1 +Darksteel\ Myr=1 +Darksteel\ Pendant=1 +Darksteel\ Relic=1 +Darksteel\ Sentinel=1 +Darkthicket\ Wolf=1 +Darkwatch\ Elves=1 +Darting\ Merfolk=1 +Daru\ Cavalier=1 +Daru\ Encampment=1 +Daru\ Mender=1 +Daru\ Sanctifier=1 +Daru\ Spiritualist=1 +Daunting\ Defender=1 +Dauntless\ Cathar=1 +Dauntless\ Dourbark=1 +Dauntless\ Onslaught=1 +Dauntless\ River\ Marshal=1 +Dauthi\ Cutthroat=1 +Dauthi\ Jackal=1 +Dauthi\ Marauder=1 +Dauthi\ Mercenary=1 +Dauthi\ Mindripper=1 +Dauthi\ Trapper=1 +Dauthi\ Warlord=1 +Dawn\ Gryff=1 +Dawn\ to\ Dusk=1 +Dawnbringer\ Charioteers=1 +Dawnfeather\ Eagle=1 +Dawnfluke=1 +Dawnglow\ Infusion=1 +Dawnray\ Archer=1 +Dawnstrike\ Paladin=1 +Dawntreader\ Elk=1 +Daxos\ of\ Meletis=1 +Day\ of\ Destiny=1 +Daybreak\ Ranger=1 +Dazzling\ Beauty=1 +Dazzling\ Ramparts=1 +Dazzling\ Reflection=1 +Dead\ Drop=1 +Dead\ Reckoning=1 +Dead\ Ringers=1 +Dead\ Weight=1 +Dead-Iron\ Sledge=1 +Deadbridge\ Goliath=1 +Deadbridge\ Shaman=1 +Deadeye\ Harpooner=1 +Deadeye\ Navigator=1 +Deadlock\ Trap=1 +Deadly\ Allure=1 +Deadly\ Grub=1 +Deadly\ Insect=1 +Deadly\ Recluse=1 +Deadly\ Wanderings=1 +Deadshot=1 +Deadwood\ Treefolk=1 +Dearly\ Departed=1 +Death\ Bomb=1 +Death\ Charmer=1 +Death\ Cultist=1 +Death\ Denied=1 +Death\ Frenzy=1 +Death\ Grasp=1 +Death\ Mutation=1 +Death\ Pits\ of\ Rath=1 +Death\ Pulse=1 +Death\ Rattle=1 +Death\ Speakers=1 +Death\ Stroke=1 +Death\ Ward=1 +Death\ Wind=1 +Death-Hood\ Cobra=1 +Death-Mask\ Duplicant=1 +Death's\ Approach=1 +Death's\ Duet=1 +Death's\ Presence=1 +Death's-Head\ Buzzard=1 +Deathbellow\ Raider=1 +Deathbringer\ Regent=1 +Deathcap\ Cultivator=1 +Deathcoil\ Wurm=1 +Deathcult\ Rogue=1 +Deathforge\ Shaman=1 +Deathgaze\ Cockatrice=1 +Deathgreeter=1 +Deathknell\ Kami=1 +Deathless\ Angel=1 +Deathless\ Behemoth=1 +Deathmark=1 +Deathmark\ Prelate=1 +Deathmask\ Nezumi=1 +Deathpact\ Angel=1 +Deathreap\ Ritual=1 +Deathrender=1 +Deathspore\ Thallid=1 +Debilitating\ Injury=1 +Debtor's\ Pulpit=1 +Deceiver\ Exarch=1 +Deceiver\ of\ Form=1 +Decimator\ Beetle=1 +Decimator\ Web=1 +Decision\ Paralysis=1 +Decoction\ Module=1 +Decommission=1 +Decompose=1 +Decomposition=1 +Deconstruct=1 +Decorated\ Griffin=1 +Decree\ of\ Justice=1 +Dedicated\ Martyr=1 +Deem\ Worthy=1 +Deep-Sea\ Kraken=1 +Deep-Sea\ Terror=1 +Deep-Slumber\ Titan=1 +Deepcavern\ Imp=1 +Deepchannel\ Mentor=1 +Deepfathom\ Skulker=1 +Deepfire\ Elemental=1 +Deepwater\ Hypnotist=1 +Deepwood\ Drummer=1 +Deepwood\ Ghoul=1 +Deepwood\ Wolverine=1 +Defang=1 +Defeat=1 +Defend\ the\ Hearth=1 +Defender\ of\ Law=1 +Defensive\ Formation=1 +Defiant\ Bloodlord=1 +Defiant\ Elf=1 +Defiant\ Greatmaw=1 +Defiant\ Ogre=1 +Defiant\ Salvager=1 +Defiant\ Strike=1 +Defiant\ Vanguard=1 +Defiling\ Tears=1 +Deflection=1 +Deft\ Dismissal=1 +Deft\ Duelist=1 +Deftblade\ Elite=1 +Defy\ Death=1 +Dega\ Disciple=1 +Dega\ Sanctuary=1 +Degavolver=1 +Deglamer=1 +Dehydration=1 +Deicide=1 +Delirium\ Skeins=1 +Deluge=1 +Delusions\ of\ Mediocrity=1 +Dematerialize=1 +Dementia\ Bat=1 +Dementia\ Sliver=1 +Demolish=1 +Demolition\ Stomper=1 +Demon's\ Grasp=1 +Demon's\ Herald=1 +Demon's\ Horn=1 +Demon's\ Jester=1 +Demonfire=1 +Demonic\ Appetite=1 +Demonic\ Collusion=1 +Demonic\ Rising=1 +Demonic\ Taskmaster=1 +Demonic\ Torment=1 +Demonlord\ of\ Ashmouth=1 +Demonmail\ Hauberk=1 +Demonspine\ Whip=1 +Demoralize=1 +Demystify=1 +Denizen\ of\ the\ Deep=1 +Dense\ Canopy=1 +Deny\ Existence=1 +Deny\ Reality=1 +Depala,\ Pilot\ Exemplar=1 +Deputy\ of\ Acquittals=1 +Deranged\ Assistant=1 +Deranged\ Hermit=1 +Deranged\ Outcast=1 +Deranged\ Whelp=1 +Derelor=1 +Descendant\ of\ Kiyomaro=1 +Descendant\ of\ Masumaro=1 +Desecration\ Demon=1 +Desecration\ Elemental=1 +Desecration\ Plague=1 +Desert\ Cerodon=1 +Desert\ Twister=1 +Deserter's\ Quarters=1 +Desolation\ Giant=1 +Desolation\ Twin=1 +Desperate\ Gambit=1 +Desperate\ Ravings=1 +Desperate\ Sentry=1 +Desperate\ Stand=1 +Despise=1 +Despoiler\ of\ Souls=1 +Despondency=1 +Destined\ //\ Lead=1 +Destroy\ the\ Evidence=1 +Destructive\ Force=1 +Destructive\ Urge=1 +Destructor\ Dragon=1 +Detonate=1 +Detritivore=1 +Deviant\ Glee=1 +Devil's\ Play=1 +Devils'\ Playground=1 +Devilthorn\ Fox=1 +Devoted\ Crop-Mate=1 +Devoted\ Retainer=1 +Devour\ in\ Flames=1 +Devour\ in\ Shadow=1 +Devouring\ Greed=1 +Devouring\ Light=1 +Devouring\ Swarm=1 +Devout\ Chaplain=1 +Devout\ Harpist=1 +Devout\ Witness=1 +Dewdrop\ Spy=1 +Dhund\ Operative=1 +Diabolic\ Machine=1 +Diabolic\ Revelation=1 +Diabolic\ Tutor=1 +Diabolic\ Vision=1 +Diamond\ Faerie=1 +Dichotomancy=1 +Dictate\ of\ Karametra=1 +Dictate\ of\ the\ Twin\ Gods=1 +Die\ Young=1 +Diffusion\ Sliver=1 +Dimensional\ Breach=1 +Dimensional\ Infiltrator=1 +Dimir\ Charm=1 +Dimir\ Cluestone=1 +Dimir\ Guildgate=1 +Dimir\ Guildmage=1 +Dimir\ House\ Guard=1 +Dimir\ Infiltrator=1 +Dimir\ Keyrune=1 +Dimir\ Machinations=1 +Dimir\ Signet=1 +Din\ of\ the\ Fireherd=1 +Dinrova\ Horror=1 +Diplomacy\ of\ the\ Wastes=1 +Diregraf\ Ghoul=1 +Dirtwater\ Wraith=1 +Dirty\ Wererat=1 +Disappearing\ Act=1 +Disarm=1 +Disaster\ Radius=1 +Disciple\ of\ Deceit=1 +Disciple\ of\ Grace=1 +Disciple\ of\ Griselbrand=1 +Disciple\ of\ Kangee=1 +Disciple\ of\ Law=1 +Disciple\ of\ Malice=1 +Disciple\ of\ Phenax=1 +Disciple\ of\ Tevesh\ Szat=1 +Disciple\ of\ the\ Old\ Ways=1 +Disciple\ of\ the\ Vault=1 +Discombobulate=1 +Disdainful\ Stroke=1 +Disease\ Carriers=1 +Disembowel=1 +Disempower=1 +Disentomb=1 +Disharmony=1 +Dismal\ Failure=1 +Dismantle=1 +Dismiss\ into\ Dream=1 +Disorder=1 +Disowned\ Ancestor=1 +Dispeller's\ Capsule=1 +Dispense\ Justice=1 +Dispersal\ Technician=1 +Disperse=1 +Displace=1 +Displacement\ Wave=1 +Display\ of\ Dominance=1 +Disrupting\ Scepter=1 +Disruption\ Aura=1 +Dissension\ in\ the\ Ranks=1 +Dissenter's\ Deliverance=1 +Dissipate=1 +Dissipation\ Field=1 +Dissolve=1 +Distemper\ of\ the\ Blood=1 +Distorting\ Lens=1 +Distress=1 +Disturbing\ Plot=1 +Divebomber\ Griffin=1 +Divergent\ Growth=1 +Diversionary\ Tactics=1 +Divination=1 +Divine\ Deflection=1 +Divine\ Favor=1 +Divine\ Intervention=1 +Divine\ Light=1 +Divine\ Offering=1 +Divine\ Reckoning=1 +Divine\ Verdict=1 +Diviner\ Spirit=1 +Diviner's\ Wand=1 +Diving\ Griffin=1 +Dizzy\ Spell=1 +Dizzying\ Gaze=1 +Djeru's\ Resolve=1 +Djinn\ Illuminatus=1 +Djinn\ of\ Wishes=1 +Docent\ of\ Perfection=1 +Dodecapod=1 +Dogpile=1 +Dolmen\ Gate=1 +Domesticated\ Hydra=1 +Domestication=1 +Dominator\ Drone=1 +Domineer=1 +Dong\ Zhou,\ the\ Tyrant=1 +Doom\ Cannon=1 +Doomed\ Dissenter=1 +Doomgape=1 +Doomwake\ Giant=1 +Door\ to\ Nothingness=1 +Doorkeeper=1 +Dormant\ Gomazoa=1 +Dormant\ Sliver=1 +Dosan's\ Oldest\ Chant=1 +Double\ Cleave=1 +Double\ Negative=1 +Doubling\ Chant=1 +Doubtless\ One=1 +Douse\ in\ Gloom=1 +Down\ //\ Dirty=1 +Downpour=1 +Downsize=1 +Dowsing\ Shaman=1 +Draconic\ Roar=1 +Dracoplasm=1 +Drag\ Down=1 +Drag\ Under=1 +Dragon\ Appeasement=1 +Dragon\ Arch=1 +Dragon\ Bell\ Monk=1 +Dragon\ Blood=1 +Dragon\ Egg=1 +Dragon\ Engine=1 +Dragon\ Fodder=1 +Dragon\ Grip=1 +Dragon\ Hatchling=1 +Dragon\ Hunter=1 +Dragon\ Mantle=1 +Dragon\ Mask=1 +Dragon\ Roost=1 +Dragon\ Scales=1 +Dragon\ Throne\ of\ Tarkir=1 +Dragon\ Whelp=1 +Dragon-Scarred\ Bear=1 +Dragon-Style\ Twins=1 +Dragon's\ Eye\ Savants=1 +Dragon's\ Eye\ Sentry=1 +Dragon's\ Herald=1 +Dragonloft\ Idol=1 +Dragonlord's\ Prerogative=1 +Dragonlord's\ Servant=1 +Dragonrage=1 +Dragonscale\ Boon=1 +Dragonscale\ General=1 +Dragonsoul\ Knight=1 +Dragonstalker=1 +Drain\ Life=1 +Drain\ the\ Well=1 +Draining\ Whelk=1 +Drainpipe\ Vermin=1 +Drake\ Familiar=1 +Drake\ Umbra=1 +Drake-Skull\ Cameo=1 +Drakewing\ Krasis=1 +Dralnu,\ Lich\ Lord=1 +Dralnu's\ Pet=1 +Dramatic\ Rescue=1 +Dramatic\ Reversal=1 +Drana,\ Kalastria\ Bloodchief=1 +Drana's\ Chosen=1 +Drana's\ Emissary=1 +Drastic\ Revelation=1 +Dread=1 +Dread\ Defiler=1 +Dread\ Drone=1 +Dread\ Reaper=1 +Dread\ Return=1 +Dread\ Slag=1 +Dread\ Slaver=1 +Dread\ Statuary=1 +Dread\ Warlock=1 +Dread\ Wight=1 +Dreadbringer\ Lampads=1 +Dreadship\ Reef=1 +Dreadwaters=1 +Dreadwing=1 +Dream\ Cache=1 +Dream\ Chisel=1 +Dream\ Leash=1 +Dream\ Prowler=1 +Dream\ Thief=1 +Dream\ Twist=1 +Dream's\ Grip=1 +Dreamcatcher=1 +Dreampod\ Druid=1 +Dreams\ of\ the\ Dead=1 +Dreamscape\ Artist=1 +Dreamspoiler\ Witches=1 +Dreamstone\ Hedron=1 +Dreamwinder=1 +Dreg\ Mangler=1 +Dreg\ Reaver=1 +Dregscape\ Zombie=1 +Drekavac=1 +Drelnoch=1 +Drift\ of\ the\ Dead=1 +Drifter\ il-Dal=1 +Drifting\ Shade=1 +Drill-Skimmer=1 +Drinker\ of\ Sorrow=1 +Dripping-Tongue\ Zubera=1 +Driver\ of\ the\ Dead=1 +Drogskol\ Cavalry=1 +Drogskol\ Shieldmate=1 +Dromad\ Purebred=1 +Dromar's\ Attendant=1 +Dromoka\ Captain=1 +Dromoka\ Dunecaster=1 +Dromoka\ Monument=1 +Dromoka\ Warrior=1 +Dromoka's\ Gift=1 +Dromosaur=1 +Droning\ Bureaucrats=1 +Drooling\ Groodion=1 +Drooling\ Ogre=1 +Dross\ Golem=1 +Dross\ Harvester=1 +Dross\ Hopper=1 +Dross\ Scorpion=1 +Drove\ of\ Elves=1 +Drown\ in\ Filth=1 +Drown\ in\ Sorrow=1 +Drowned\ Rusalka=1 +Drowner\ Initiate=1 +Drowner\ of\ Secrets=1 +Drownyard\ Behemoth=1 +Drownyard\ Explorers=1 +Drudge\ Beetle=1 +Drudge\ Reavers=1 +Drudge\ Skeletons=1 +Druid\ Lyrist=1 +Druid\ of\ the\ Anima=1 +Druid\ of\ the\ Cowl=1 +Druid's\ Deliverance=1 +Druid's\ Familiar=1 +Druidic\ Satchel=1 +Druids'\ Repository=1 +Drumhunter=1 +Drunau\ Corpse\ Trawler=1 +Dry\ Spell=1 +Dryad\ Sophisticate=1 +Dryad's\ Caress=1 +Dual\ Casting=1 +Dual\ Shot=1 +Dubious\ Challenge=1 +Duct\ Crawler=1 +Duelist's\ Heritage=1 +Duergar\ Assailant=1 +Duergar\ Cave-Guard=1 +Duergar\ Mine-Captain=1 +Dukhara\ Peafowl=1 +Dukhara\ Scavenger=1 +Dune\ Beetle=1 +Duneblast=1 +Dunerider\ Outlaw=1 +Dungeon\ Geists=1 +Dungeon\ Shade=1 +Durable\ Handicraft=1 +Durkwood\ Baloth=1 +Durkwood\ Tracker=1 +Dusk\ Feaster=1 +Dusk\ Imp=1 +Duskdale\ Wurm=1 +Duskhunter\ Bat=1 +Duskmantle\ Guildmage=1 +Duskmantle\ Prowler=1 +Duskmantle,\ House\ of\ Shadow=1 +Duskrider\ Falcon=1 +Duskrider\ Peregrine=1 +Duskwalker=1 +Duskwatch\ Recruiter=1 +Duskworker=1 +Dust\ Elemental=1 +Dust\ of\ Moments=1 +Dust\ Stalker=1 +Dutiful\ Attendant=1 +Dutiful\ Return=1 +Duty-Bound\ Dead=1 +Dwarven\ Berserker=1 +Dwarven\ Blastminer=1 +Dwarven\ Catapult=1 +Dwarven\ Demolition\ Team=1 +Dwarven\ Driller=1 +Dwarven\ Grunt=1 +Dwarven\ Landslide=1 +Dwarven\ Nomad=1 +Dwarven\ Patrol=1 +Dwarven\ Recruiter=1 +Dwarven\ Scorcher=1 +Dwarven\ Shrine=1 +Dwarven\ Soldier=1 +Dwarven\ Strike\ Force=1 +Dwarven\ Vigilantes=1 +Dying\ Wail=1 +Dying\ Wish=1 +Dynacharge=1 +Eager\ Cadet=1 +Eager\ Construct=1 +Early\ Frost=1 +Earsplitting\ Rats=1 +Earthblighter=1 +Earthbrawn=1 +Earthen\ Arms=1 +Earthen\ Goo=1 +Earthshaker=1 +Eastern\ Paladin=1 +Eaten\ by\ Spiders=1 +Eater\ of\ Hope=1 +Ebon\ Dragon=1 +Ebon\ Drake=1 +Ebonblade\ Reaper=1 +Ebony\ Horse=1 +Ebony\ Rhino=1 +Ebony\ Treefolk=1 +Echo\ Circlet=1 +Echo\ Mage=1 +Echoes\ of\ the\ Kin\ Tree=1 +Echoing\ Calm=1 +Echoing\ Courage=1 +Echoing\ Ruin=1 +Eddytrail\ Hawk=1 +Edifice\ of\ Authority=1 +Eel\ Umbra=1 +Eerie\ Interlude=1 +Eerie\ Procession=1 +Efficient\ Construction=1 +Efreet\ Weaponmaster=1 +Ego\ Erasure=1 +Eidolon\ of\ Countless\ Battles=1 +Eiganjo\ Free-Riders=1 +Eight-and-a-Half-Tails=1 +Eightfold\ Maze=1 +Eland\ Umbra=1 +Elder\ Cathar=1 +Elder\ Land\ Wurm=1 +Elder\ Mastery=1 +Elder\ of\ Laurels=1 +Elder\ Pine\ of\ Jukai=1 +Eldrazi\ Aggressor=1 +Eldrazi\ Devastator=1 +Eldrazi\ Obligator=1 +Eldrazi\ Skyspawner=1 +Electrify=1 +Electropotence=1 +Electrostatic\ Bolt=1 +Electryte=1 +Elegant\ Edgecrafters=1 +Elemental\ Appeal=1 +Elemental\ Bond=1 +Elemental\ Mastery=1 +Elemental\ Resonance=1 +Elemental\ Uprising=1 +Elephant\ Ambush=1 +Elephant\ Graveyard=1 +Elephant\ Guide=1 +Elgaud\ Inquisitor=1 +Elgaud\ Shieldmate=1 +Eliminate\ the\ Competition=1 +Elite\ Arcanist=1 +Elite\ Archers=1 +Elite\ Cat\ Warrior=1 +Elite\ Inquisitor=1 +Elite\ Javelineer=1 +Elite\ Skirmisher=1 +Elite\ Vanguard=1 +Elixir\ of\ Immortality=1 +Elkin\ Bottle=1 +Elsewhere\ Flask=1 +Elusive\ Krasis=1 +Elusive\ Spellfist=1 +Elusive\ Tormentor=1 +Elven\ Cache=1 +Elven\ Palisade=1 +Elven\ Riders=1 +Elven\ Rite=1 +Elves\ of\ Deep\ Shadow=1 +Elvish\ Aberration=1 +Elvish\ Bard=1 +Elvish\ Berserker=1 +Elvish\ Branchbender=1 +Elvish\ Eulogist=1 +Elvish\ Fury=1 +Elvish\ Handservant=1 +Elvish\ Harbinger=1 +Elvish\ Herder=1 +Elvish\ Hexhunter=1 +Elvish\ Hunter=1 +Elvish\ Lookout=1 +Elvish\ Lyrist=1 +Elvish\ Pathcutter=1 +Elvish\ Promenade=1 +Elvish\ Ranger=1 +Elvish\ Scrapper=1 +Elvish\ Skysweeper=1 +Elvish\ Warrior=1 +Emancipation\ Angel=1 +Embalmed\ Brawler=1 +Embalmer's\ Tools=1 +Ember\ Beast=1 +Ember\ Gale=1 +Ember\ Hauler=1 +Ember\ Shot=1 +Ember\ Swallower=1 +Ember-Eye\ Wolf=1 +Ember-Fist\ Zubera=1 +Emberhorn\ Minotaur=1 +Embermaw\ Hellion=1 +Emberstrike\ Duo=1 +Emblazoned\ Golem=1 +Emblem\ of\ the\ Warmind=1 +Embodiment\ of\ Fury=1 +Embodiment\ of\ Insight=1 +Embodiment\ of\ Spring=1 +Embolden=1 +Embraal\ Bruiser=1 +Embraal\ Gear-Smasher=1 +Emeria\ Shepherd=1 +Emissary\ of\ Despair=1 +Emissary\ of\ Hope=1 +Emissary\ of\ the\ Sleepless=1 +Emmara\ Tandris=1 +Emmessi\ Tome=1 +Emperor\ Crocodile=1 +Empty\ the\ Catacombs=1 +Empty-Shrine\ Kannushi=1 +Empyreal\ Voyager=1 +Empyrial\ Armor=1 +Empyrial\ Plate=1 +Emrakul's\ Evangel=1 +Emrakul's\ Influence=1 +Encase\ in\ Ice=1 +Enchantment\ Alteration=1 +Enclave\ Cryptologist=1 +Enclave\ Elite=1 +Encroach=1 +Encroaching\ Wastes=1 +Encrust=1 +End\ Hostilities=1 +Endangered\ Armodon=1 +Endemic\ Plague=1 +Endless\ Obedience=1 +Endless\ Scream=1 +Endoskeleton=1 +Endrek\ Sahr,\ Master\ Breeder=1 +Endure=1 +Enduring\ Scalelord=1 +Enemy\ of\ the\ Guildpact=1 +Energy\ Arc=1 +Enervate=1 +Enfeeblement=1 +Engineered\ Might=1 +Engulfing\ Flames=1 +Engulfing\ Slagwurm=1 +Enhanced\ Awareness=1 +Enigma\ Drake=1 +Enigma\ Eidolon=1 +Enigma\ Sphinx=1 +Enlightened\ Ascetic=1 +Enlightened\ Maniac=1 +Enlisted\ Wurm=1 +Enormous\ Baloth=1 +Enraged\ Giant=1 +Enraging\ Licid=1 +Enshrouding\ Mist=1 +Enslave=1 +Enslaved\ Dwarf=1 +Ensouled\ Scimitar=1 +Entangling\ Trap=1 +Enthralling\ Victor=1 +Entomber\ Exarch=1 +Entrails\ Feaster=1 +Envelop=1 +Ephara's\ Enlightenment=1 +Ephara's\ Radiance=1 +Ephara's\ Warden=1 +Ephemeral\ Shields=1 +Ephemeron=1 +Epic\ Proportions=1 +Epiphany\ at\ the\ Drownyard=1 +Epiphany\ Storm=1 +Epitaph\ Golem=1 +Epochrasite=1 +Equestrian\ Skill=1 +Era\ of\ Innovation=1 +Eradicate=1 +Erase=1 +Erdwal\ Illuminator=1 +Erdwal\ Ripper=1 +Erebos's\ Emissary=1 +Erg\ Raiders=1 +Erhnam\ Djinn=1 +Errand\ of\ Duty=1 +Errant\ Doomsayers=1 +Errant\ Ephemeron=1 +Errantry=1 +Erratic\ Explosion=1 +Erratic\ Mutation=1 +Ertai's\ Trickery=1 +Escape\ Artist=1 +Escape\ Routes=1 +Esper\ Battlemage=1 +Esper\ Cormorants=1 +Esper\ Panorama=1 +Esper\ Stormblade=1 +Esperzoa=1 +Essence\ Backlash=1 +Essence\ Bottle=1 +Essence\ Depleter=1 +Essence\ Extraction=1 +Essence\ Feed=1 +Essence\ Filter=1 +Essence\ Flare=1 +Essence\ Flux=1 +Essence\ Fracture=1 +Essence\ Harvest=1 +Essence\ Leak=1 +Etched\ Monstrosity=1 +Etched\ Oracle=1 +Eternal\ Dragon=1 +Eternal\ Thirst=1 +Eternity\ Snare=1 +Ethercaste\ Knight=1 +Ethereal\ Ambush=1 +Ethereal\ Guidance=1 +Ethereal\ Usher=1 +Etherium\ Astrolabe=1 +Ethersworn\ Shieldmage=1 +Etherwrought\ Page=1 +Evanescent\ Intellect=1 +Evangel\ of\ Heliod=1 +Evangelize=1 +Even\ the\ Odds=1 +Ever\ After=1 +Everbark\ Shaman=1 +Everflame\ Eidolon=1 +Everflowing\ Chalice=1 +Evernight\ Shade=1 +Evil\ Eye\ of\ Orms-by-Gore=1 +Evil\ Eye\ of\ Urborg=1 +Evil\ Twin=1 +Eviscerator=1 +Evolution\ Charm=1 +Evolutionary\ Escalation=1 +Evolving\ Wilds=1 +Exalted\ Dragon=1 +Exava,\ Rakdos\ Blood\ Witch=1 +Excavator=1 +Excise=1 +Exclusion\ Ritual=1 +Excommunicate=1 +Excoriate=1 +Excruciator=1 +Execute=1 +Executioner's\ Capsule=1 +Executioner's\ Hood=1 +Executioner's\ Swing=1 +Exemplar\ of\ Strength=1 +Exert\ Influence=1 +Exile=1 +Exile\ into\ Darkness=1 +Exiled\ Boggart=1 +Exiled\ Doomsayer=1 +Exorcist=1 +Exoskeletal\ Armor=1 +Exotic\ Curse=1 +Expedite=1 +Expedition\ Envoy=1 +Expedition\ Raptor=1 +Expendable\ Troops=1 +Experimental\ Aviator=1 +Exploding\ Borders=1 +Explore=1 +Explosive\ Apparatus=1 +Explosive\ Growth=1 +Explosive\ Revelation=1 +Expose\ Evil=1 +Extinguish\ All\ Hope=1 +Extra\ Arms=1 +Extract\ from\ Darkness=1 +Extractor\ Demon=1 +Extricator\ of\ Sin=1 +Extruder=1 +Exuberant\ Firestoker=1 +Exultant\ Cultist=1 +Eye\ Gouge=1 +Eye\ of\ the\ Storm=1 +Eyeblight\ Assassin=1 +Eyeblight\ Massacre=1 +Eyeblight's\ Ending=1 +Eyeless\ Watcher=1 +Eyes\ in\ the\ Skies=1 +Eyes\ of\ the\ Watcher=1 +Ezuri's\ Archers=1 +Ezuri's\ Brigade=1 +Fa'adiyah\ Seer=1 +Fabrication\ Module=1 +Faceless\ Butcher=1 +Faceless\ Devourer=1 +Faces\ of\ the\ Past=1 +Facevaulter=1 +Fade\ from\ Memory=1 +Fade\ into\ Antiquity=1 +Faerie\ Harbinger=1 +Faerie\ Impostor=1 +Faerie\ Invaders=1 +Faerie\ Mechanist=1 +Faerie\ Noble=1 +Faerie\ Squadron=1 +Faerie\ Swarm=1 +Faerie\ Tauntings=1 +Faerie\ Trickery=1 +Failed\ Inspection=1 +Failure\ //\ Comply=1 +Fairgrounds\ Trumpeter=1 +Faith\ of\ the\ Devoted=1 +Faith\ Unbroken=1 +Faith's\ Fetters=1 +Faith's\ Shield=1 +Faithbearer\ Paladin=1 +Faithful\ Squire=1 +Falkenrath\ Marauders=1 +Falkenrath\ Noble=1 +Falkenrath\ Reaver=1 +Falkenrath\ Torturer=1 +Fall\ of\ the\ Gavel=1 +Fall\ of\ the\ Hammer=1 +Fall\ of\ the\ Titans=1 +Fallen\ Angel=1 +Fallen\ Askari=1 +Fallen\ Ferromancer=1 +Fallen\ Ideal=1 +Falling\ Timber=1 +Fallow\ Wurm=1 +Fallowsage=1 +False\ Memories=1 +Familiar\ Ground=1 +Familiar's\ Ruse=1 +Famine=1 +Famished\ Ghoul=1 +Fan\ Bearer=1 +Fanatic\ of\ Mogis=1 +Fanatic\ of\ Xenagos=1 +Fang\ Skulkin=1 +Fangren\ Firstborn=1 +Fangren\ Hunter=1 +Fangren\ Pathcutter=1 +Fanning\ the\ Flames=1 +Far\ //\ Away=1 +Farbog\ Revenant=1 +Farrel's\ Zealot=1 +Fatal\ Attraction=1 +Fatal\ Mutation=1 +Fate\ Foretold=1 +Fate\ Forgotten=1 +Fate\ Transfer=1 +Fate\ Unraveler=1 +Fated\ Infatuation=1 +Fated\ Intervention=1 +Fated\ Retribution=1 +Fated\ Return=1 +Fateful\ Showdown=1 +Fatespinner=1 +Fatestitcher=1 +Fathom\ Feeder=1 +Fathom\ Mage=1 +Fathom\ Seer=1 +Fathom\ Trawl=1 +Fatigue=1 +Faultgrinder=1 +Favor\ of\ the\ Woods=1 +Fear=1 +Fearsome\ Temper=1 +Feast\ of\ Blood=1 +Feast\ of\ Dreams=1 +Feast\ of\ Flesh=1 +Feast\ of\ Worms=1 +Feast\ on\ the\ Fallen=1 +Feast\ or\ Famine=1 +Feat\ of\ Resistance=1 +Feebleness=1 +Feed\ the\ Pack=1 +Feedback\ Bolt=1 +Feeding\ Frenzy=1 +Feeling\ of\ Dread=1 +Feldon's\ Cane=1 +Felhide\ Brawler=1 +Felhide\ Minotaur=1 +Felhide\ Petrifier=1 +Felhide\ Spiritbinder=1 +Felidar\ Cub=1 +Felidar\ Guardian=1 +Felidar\ Sovereign=1 +Femeref\ Archers=1 +Femeref\ Knight=1 +Femeref\ Scouts=1 +Fen\ Hauler=1 +Fen\ Stalker=1 +Fencer's\ Magemark=1 +Fencing\ Ace=1 +Fend\ Off=1 +Fendeep\ Summoner=1 +Feral\ Animist=1 +Feral\ Contest=1 +Feral\ Hydra=1 +Feral\ Incarnation=1 +Feral\ Instinct=1 +Feral\ Invocation=1 +Feral\ Krushok=1 +Feral\ Lightning=1 +Feral\ Thallid=1 +Ferocious\ Charge=1 +Ferocity=1 +Ferropede=1 +Ferrovore=1 +Fertile\ Thicket=1 +Fervent\ Cathar=1 +Fervent\ Denial=1 +Fervor=1 +Festercreep=1 +Festergloom=1 +Festerhide\ Boar=1 +Festering\ Goblin=1 +Festering\ March=1 +Festering\ Mummy=1 +Festering\ Newt=1 +Festering\ Wound=1 +Festival\ of\ the\ Guildpact=1 +Fetid\ Imp=1 +Fettergeist=1 +Feudkiller's\ Verdict=1 +Fevered\ Strength=1 +Fiddlehead\ Kami=1 +Field\ Creeper=1 +Field\ of\ Souls=1 +Fiend\ Binder=1 +Fiend\ of\ the\ Shadows=1 +Fierce\ Invocation=1 +Fiery\ Bombardment=1 +Fiery\ Conclusion=1 +Fiery\ Fall=1 +Fiery\ Gambit=1 +Fiery\ Hellhound=1 +Fiery\ Impulse=1 +Fiery\ Justice=1 +Fiery\ Mantle=1 +Fiery\ Temper=1 +Fighting\ Chance=1 +Fighting\ Drake=1 +Filigree\ Crawler=1 +Filigree\ Familiar=1 +Filigree\ Sages=1 +Filthy\ Cur=1 +Final\ Punishment=1 +Final\ Revels=1 +Final\ Reward=1 +Final-Sting\ Faerie=1 +Fire\ Ants=1 +Fire\ at\ Will=1 +Fire\ Drake=1 +Fire\ Imp=1 +Fire\ Juggler=1 +Fire\ Servant=1 +Fire\ Sprites=1 +Fire\ Tempest=1 +Fire\ Whip=1 +Fire-Belly\ Changeling=1 +Fire-Field\ Ogre=1 +Fireball=1 +Firebrand\ Ranger=1 +Firebreathing=1 +Firedrinker\ Satyr=1 +Firefiend\ Elemental=1 +Firefist\ Striker=1 +Firefly=1 +Fireforger's\ Puzzleknot=1 +Firefright\ Mage=1 +Firehoof\ Cavalry=1 +Firemane\ Angel=1 +Firemane\ Avenger=1 +Firemantle\ Mage=1 +Firemaw\ Kavu=1 +Firemind's\ Foresight=1 +Firescreamer=1 +Fireshrieker=1 +Fireslinger=1 +Firewake\ Sliver=1 +Firewing\ Phoenix=1 +First\ Response=1 +Fishliver\ Oil=1 +Fissure=1 +Fistful\ of\ Force=1 +Fists\ of\ Ironwood=1 +Fists\ of\ the\ Demigod=1 +Fit\ of\ Rage=1 +Five-Alarm\ Fire=1 +Flailing\ Drake=1 +Flame\ Fusillade=1 +Flame\ Jab=1 +Flame\ Jet=1 +Flame\ Spirit=1 +Flame\ Wave=1 +Flame-Kin\ War\ Scout=1 +Flame-Kin\ Zealot=1 +Flame-Wreathed\ Phoenix=1 +Flameblade\ Adept=1 +Flameblade\ Angel=1 +Flameblast\ Dragon=1 +Flameborn\ Hellion=1 +Flamebreak=1 +Flamecast\ Wheel=1 +Flamecore\ Elemental=1 +Flamekin\ Bladewhirl=1 +Flamekin\ Brawler=1 +Flamekin\ Spitfire=1 +Flamerush\ Rider=1 +Flames\ of\ the\ Firebrand=1 +Flameshadow\ Conjuring=1 +Flamespeaker\ Adept=1 +Flamespeaker's\ Will=1 +Flametongue\ Kavu=1 +Flaming\ Sword=1 +Flash\ Conscription=1 +Flash\ Foliage=1 +Flash\ of\ Defiance=1 +Flashfires=1 +Flashfreeze=1 +Flatten=1 +Flay=1 +Flayed\ Nim=1 +Flayer\ Drone=1 +Flaying\ Tendrils=1 +Fledgling\ Djinn=1 +Fledgling\ Dragon=1 +Fledgling\ Imp=1 +Fledgling\ Mawcor=1 +Fleecemane\ Lion=1 +Fleetfeather\ Cockatrice=1 +Fleetfeather\ Sandals=1 +Fleetfoot\ Panther=1 +Fleeting\ Aven=1 +Fleeting\ Distraction=1 +Fleeting\ Image=1 +Fleeting\ Memories=1 +Fleetwheel\ Cruiser=1 +Flensermite=1 +Flesh\ //\ Blood=1 +Flesh\ Allergy=1 +Flesh\ Reaver=1 +Flesh\ to\ Dust=1 +Flesh-Eater\ Imp=1 +Fleshbag\ Marauder=1 +Fleshformer=1 +Fleshpulper\ Giant=1 +Fleshwrither=1 +Flickerform=1 +Flickering\ Spirit=1 +Flight=1 +Flight\ Spellbomb=1 +Fling=1 +Flinthoof\ Boar=1 +Flitterstep\ Eidolon=1 +Floating\ Shield=1 +Floating-Dream\ Zubera=1 +Floodbringer=1 +Floodchaser=1 +Floodtide\ Serpent=1 +Floodwater\ Dam=1 +Floodwaters=1 +Flow\ of\ Ideas=1 +Flowstone\ Blade=1 +Flowstone\ Charger=1 +Flowstone\ Crusher=1 +Flowstone\ Embrace=1 +Flowstone\ Flood=1 +Flowstone\ Giant=1 +Flowstone\ Mauler=1 +Flowstone\ Salamander=1 +Flowstone\ Sculpture=1 +Flowstone\ Shambler=1 +Flowstone\ Slide=1 +Flurry\ of\ Horns=1 +Flurry\ of\ Wings=1 +Flying\ Carpet=1 +Flying\ Crane\ Technique=1 +Flying\ Men=1 +Fodder\ Cannon=1 +Fodder\ Launch=1 +Foe-Razer\ Regent=1 +Fog=1 +Fog\ Elemental=1 +Fog\ of\ Gnats=1 +Fog\ Patch=1 +Fogwalker=1 +Fold\ into\ Aether=1 +Folk\ Medicine=1 +Folk\ of\ the\ Pines=1 +Followed\ Footsteps=1 +Fomori\ Nomad=1 +Font\ of\ Fertility=1 +Font\ of\ Fortunes=1 +Font\ of\ Ire=1 +Font\ of\ Return=1 +Font\ of\ Vigor=1 +Fool's\ Demise=1 +Fool's\ Tome=1 +Foot\ Soldiers=1 +Foothill\ Guide=1 +Foratog=1 +Forbid=1 +Forbidden\ Lore=1 +Forbidding\ Watchtower=1 +Force\ Away=1 +Force\ of\ Nature=1 +Force\ of\ Savagery=1 +Forced\ Adaptation=1 +Forced\ Retreat=1 +Forced\ Worship=1 +Forcemage\ Advocate=1 +Forerunner\ of\ Slaughter=1 +Foresee=1 +Forest=1 +Forfend=1 +Forge\ Devil=1 +Forgeborn\ Oreads=1 +Forgestoker\ Dragon=1 +Forgotten\ Creation=1 +Foriysian\ Interceptor=1 +Foriysian\ Totem=1 +Fork\ in\ the\ Road=1 +Forked\ Lightning=1 +Forlorn\ Pseudamma=1 +Formless\ Nurturing=1 +Forsake\ the\ Worldly=1 +Forsaken\ Drifters=1 +Forsaken\ Sanctuary=1 +Fortified\ Rampart=1 +Fortify=1 +Fortress\ Cyclops=1 +Fortuitous\ Find=1 +Fortune's\ Favor=1 +Fossil\ Find=1 +Foster=1 +Foul\ Emissary=1 +Foul\ Familiar=1 +Foul\ Imp=1 +Foul\ Orchard=1 +Foul\ Presence=1 +Foul\ Renewal=1 +Foul\ Spirit=1 +Foul-Tongue\ Invocation=1 +Foul-Tongue\ Shriek=1 +Foundry\ Assembler=1 +Foundry\ Champion=1 +Foundry\ Hornet=1 +Foundry\ Inspector=1 +Foundry\ of\ the\ Consuls=1 +Foundry\ Screecher=1 +Fountain\ of\ Youth=1 +Fourth\ Bridge\ Prowler=1 +Frantic\ Purification=1 +Frantic\ Salvage=1 +Frazzle=1 +Freejam\ Regent=1 +Freewind\ Equenaut=1 +Freewind\ Falcon=1 +Frenetic\ Ogre=1 +Frenetic\ Sliver=1 +Frenzied\ Fugue=1 +Frenzied\ Goblin=1 +Frenzied\ Tilling=1 +Frenzy\ Sliver=1 +Fresh\ Meat=1 +Fretwork\ Colony=1 +Freyalise's\ Radiance=1 +Freyalise's\ Winds=1 +Friendly\ Fire=1 +Frightcrawler=1 +Frightful\ Delusion=1 +Frightshroud\ Courier=1 +Frog\ Tongue=1 +From\ Beyond=1 +From\ Under\ the\ Floorboards=1 +Frontier\ Bivouac=1 +Frontier\ Guide=1 +Frontier\ Mastodon=1 +Frontline\ Medic=1 +Frontline\ Rebel=1 +Frontline\ Sage=1 +Frontline\ Strategist=1 +Frost\ Breath=1 +Frost\ Giant=1 +Frost\ Lynx=1 +Frost\ Ogre=1 +Frost\ Raptor=1 +Frostburn\ Weird=1 +Frostling=1 +Frostweb\ Spider=1 +Frostwielder=1 +Frostwind\ Invoker=1 +Frozen\ Aether=1 +Fruit\ of\ the\ First\ Tree=1 +Fuel\ for\ the\ Cause=1 +Fugitive\ Druid=1 +Fugitive\ Wizard=1 +Full\ Moon's\ Rise=1 +Fumarole=1 +Funeral\ March=1 +Fungal\ Behemoth=1 +Fungal\ Reaches=1 +Fungal\ Sprouting=1 +Fungus\ Sliver=1 +Fungusaur=1 +Furious\ Reprisal=1 +Furnace\ Brood=1 +Furnace\ Celebration=1 +Furnace\ Dragon=1 +Furnace\ of\ Rath=1 +Furnace\ Scamp=1 +Furnace\ Spirit=1 +Furnace\ Whelp=1 +Furor\ of\ the\ Bitten=1 +Furtive\ Homunculus=1 +Fury\ Charm=1 +Fury\ Sliver=1 +Furyblade\ Vampire=1 +Furystoke\ Giant=1 +Fusion\ Elemental=1 +Future\ Sight=1 +Gaea's\ Anthem=1 +Gaea's\ Avenger=1 +Gaea's\ Balance=1 +Gaea's\ Blessing=1 +Gaea's\ Bounty=1 +Gaea's\ Embrace=1 +Gaea's\ Liege=1 +Gaea's\ Might=1 +Gaea's\ Revenge=1 +Gaea's\ Skyfolk=1 +Gainsay=1 +Gale\ Force=1 +Galepowder\ Mage=1 +Galestrike=1 +Gallantry=1 +Gallows\ at\ Willow\ Hill=1 +Gallows\ Warden=1 +Galvanic\ Arc=1 +Galvanic\ Bombardment=1 +Galvanic\ Juggernaut=1 +Galvanoth=1 +Game-Trail\ Changeling=1 +Gang\ of\ Elk=1 +Gangrenous\ Zombies=1 +Gargoyle\ Castle=1 +Gargoyle\ Sentinel=1 +Garruk's\ Companion=1 +Garruk's\ Horde=1 +Garruk's\ Packleader=1 +Garza\ Zol,\ Plague\ Queen=1 +Gaseous\ Form=1 +Gate\ Hound=1 +Gate\ Smasher=1 +Gate\ to\ the\ Aether=1 +Gate\ to\ the\ Afterlife=1 +Gatecreeper\ Vine=1 +Gatekeeper\ of\ Malakir=1 +Gateway\ Shade=1 +Gathan\ Raiders=1 +Gather\ Courage=1 +Gather\ Specimens=1 +Gather\ the\ Pack=1 +Gatherer\ of\ Graces=1 +Gatstaf\ Arsonists=1 +Gatstaf\ Shepherd=1 +Gauntlets\ of\ Chaos=1 +Gavony\ Unhallowed=1 +Gaze\ of\ Adamaro=1 +Gaze\ of\ Justice=1 +Gearseeker\ Serpent=1 +Gearshift\ Ace=1 +Geier\ Reach\ Bandit=1 +Geist\ of\ the\ Archives=1 +Geist\ of\ the\ Lonely\ Vigil=1 +Geist\ of\ the\ Moors=1 +Geist-Fueled\ Scarecrow=1 +Geist-Honored\ Monk=1 +Geistblast=1 +Geistcatcher's\ Rig=1 +Geistflame=1 +Gelatinous\ Genesis=1 +Gelid\ Shackles=1 +Gem\ of\ Becoming=1 +Gemhide\ Sliver=1 +Gemini\ Engine=1 +Gempalm\ Sorcerer=1 +Gempalm\ Strider=1 +Gemstone\ Array=1 +General's\ Kabuto=1 +Generator\ Servant=1 +Genju\ of\ the\ Cedars=1 +Genju\ of\ the\ Falls=1 +Genju\ of\ the\ Fens=1 +Genju\ of\ the\ Fields=1 +Genju\ of\ the\ Spires=1 +Geosurge=1 +Geralf's\ Mindcrusher=1 +Gerrard's\ Battle\ Cry=1 +Gerrard's\ Command=1 +Gerrard's\ Irregulars=1 +Gerrard's\ Wisdom=1 +Geth's\ Grimoire=1 +Geyser\ Glider=1 +Geyserfield\ Stalker=1 +Ghalma's\ Warden=1 +Ghastly\ Discovery=1 +Ghastly\ Remains=1 +Ghazb?n\ Ogre=1 +Ghirapur\ Gearcrafter=1 +Ghirapur\ Guide=1 +Ghirapur\ Orrery=1 +Ghirapur\ Osprey=1 +Ghitu\ Fire-Eater=1 +Ghitu\ Firebreathing=1 +Ghitu\ Slinger=1 +Ghitu\ War\ Cry=1 +Ghor-Clan\ Bloodscale=1 +Ghor-Clan\ Rampager=1 +Ghost\ Council\ of\ Orzhova=1 +Ghost\ Ship=1 +Ghost\ Warden=1 +Ghost-Lit\ Raider=1 +Ghost-Lit\ Redeemer=1 +Ghost-Lit\ Stalker=1 +Ghost-Lit\ Warder=1 +Ghostblade\ Eidolon=1 +Ghostfire=1 +Ghostfire\ Blade=1 +Ghostflame\ Sliver=1 +Ghosthelm\ Courier=1 +Ghostly\ Changeling=1 +Ghostly\ Possession=1 +Ghostly\ Sentinel=1 +Ghostly\ Touch=1 +Ghostly\ Visit=1 +Ghostly\ Wings=1 +Ghosts\ of\ the\ Damned=1 +Ghosts\ of\ the\ Innocent=1 +Ghoulcaller's\ Accomplice=1 +Ghoulcaller's\ Bell=1 +Ghoulcaller's\ Chant=1 +Ghoulraiser=1 +Ghoulsteed=1 +Ghoultree=1 +Giant\ Ambush\ Beetle=1 +Giant\ Badger=1 +Giant\ Caterpillar=1 +Giant\ Cockroach=1 +Giant\ Crab=1 +Giant\ Dustwasp=1 +Giant\ Growth=1 +Giant\ Harbinger=1 +Giant\ Mantis=1 +Giant\ Octopus=1 +Giant\ Oyster=1 +Giant\ Scorpion=1 +Giant\ Solifuge=1 +Giant\ Spectacle=1 +Giant\ Spider=1 +Giant\ Strength=1 +Giant\ Tortoise=1 +Giant\ Warthog=1 +Giantbaiting=1 +Gibbering\ Descent=1 +Gibbering\ Fiend=1 +Gibbering\ Kami=1 +Gideon's\ Avenger=1 +Gideon's\ Lawkeeper=1 +Gideon's\ Phalanx=1 +Gideon's\ Reproach=1 +Gift\ of\ Estates=1 +Gift\ of\ Immortality=1 +Gift\ of\ Orzhova=1 +Gift\ of\ Paradise=1 +Gift\ of\ the\ Deity=1 +Gift\ of\ the\ Gargantuan=1 +Gift\ of\ Tusks=1 +Gigantiform=1 +Gigantomancer=1 +Gigapede=1 +Gild=1 +Gilt-Leaf\ Ambush=1 +Gilt-Leaf\ Seer=1 +Gilt-Leaf\ Winnower=1 +Gisa's\ Bidding=1 +Give\ //\ Take=1 +Give\ No\ Ground=1 +Glacial\ Crasher=1 +Glacial\ Crevasses=1 +Glacial\ Plating=1 +Glacial\ Ray=1 +Glacial\ Stalker=1 +Glacial\ Wall=1 +Glade\ Gnarr=1 +Glade\ Watcher=1 +Gladehart\ Cavalry=1 +Glamer\ Spinners=1 +Glamerdye=1 +Glare\ of\ Heresy=1 +Glare\ of\ Subdual=1 +Glarewielder=1 +Glaring\ Aegis=1 +Glaring\ Spotlight=1 +Glassblower's\ Puzzleknot=1 +Glassdust\ Hulk=1 +Glasses\ of\ Urza=1 +Glaze\ Fiend=1 +Gleam\ of\ Authority=1 +Gleam\ of\ Battle=1 +Gleam\ of\ Resistance=1 +Gleancrawler=1 +Glen\ Elendra\ Pranksters=1 +Gliding\ Licid=1 +Glimmerdust\ Nap=1 +Glimmerpoint\ Stag=1 +Glimpse\ the\ Future=1 +Glimpse\ the\ Sun\ God=1 +Glint=1 +Glint\ Hawk\ Idol=1 +Glint-Eye\ Nephilim=1 +Glint-Sleeve\ Artisan=1 +Glissa\ Sunseeker=1 +Glissa's\ Courier=1 +Glissa's\ Scorn=1 +Glitterfang=1 +Glittering\ Lynx=1 +Gloomdrifter=1 +Gloomwidow=1 +Gloomwidow's\ Feast=1 +Glorious\ Anthem=1 +Glorious\ Charge=1 +Glory\ of\ Warfare=1 +Glory\ Seeker=1 +Gloryscale\ Viashino=1 +Glowering\ Rogon=1 +Gluttonous\ Cyclops=1 +Gluttonous\ Slime=1 +Gluttonous\ Zombie=1 +Glyph\ Keeper=1 +Gnarled\ Mass=1 +Gnarled\ Scarhide=1 +Gnarlid\ Pack=1 +Gnarlroot\ Trapper=1 +Gnarlwood\ Dryad=1 +Gnat\ Alley\ Creeper=1 +Gnat\ Miser=1 +Gnathosaur=1 +Gnawing\ Zombie=1 +Goatnapper=1 +Gobbling\ Ooze=1 +Gobhobbler\ Rats=1 +Goblin\ Archaeologist=1 +Goblin\ Arsonist=1 +Goblin\ Artillery=1 +Goblin\ Assault=1 +Goblin\ Balloon\ Brigade=1 +Goblin\ Bangchuckers=1 +Goblin\ Berserker=1 +Goblin\ Boom\ Keg=1 +Goblin\ Brawler=1 +Goblin\ Brigand=1 +Goblin\ Bully=1 +Goblin\ Burrows=1 +Goblin\ Cadets=1 +Goblin\ Cannon=1 +Goblin\ Cavaliers=1 +Goblin\ Chariot=1 +Goblin\ Commando=1 +Goblin\ Deathraiders=1 +Goblin\ Digging\ Team=1 +Goblin\ Diplomats=1 +Goblin\ Dirigible=1 +Goblin\ Dynamo=1 +Goblin\ Electromancer=1 +Goblin\ Elite\ Infantry=1 +Goblin\ Fire\ Fiend=1 +Goblin\ Fireslinger=1 +Goblin\ Firestarter=1 +Goblin\ Flectomancer=1 +Goblin\ Freerunner=1 +Goblin\ Furrier=1 +Goblin\ Gardener=1 +Goblin\ Gaveleer=1 +Goblin\ General=1 +Goblin\ Glider=1 +Goblin\ Glory\ Chaser=1 +Goblin\ Grappler=1 +Goblin\ Kaboomist=1 +Goblin\ Legionnaire=1 +Goblin\ Lore=1 +Goblin\ Machinist=1 +Goblin\ Matron=1 +Goblin\ Medics=1 +Goblin\ Mountaineer=1 +Goblin\ Outlander=1 +Goblin\ Patrol=1 +Goblin\ Piker=1 +Goblin\ Raider=1 +Goblin\ Rally=1 +Goblin\ Razerunners=1 +Goblin\ Replica=1 +Goblin\ Rimerunner=1 +Goblin\ Ringleader=1 +Goblin\ Roughrider=1 +Goblin\ Settler=1 +Goblin\ Shortcutter=1 +Goblin\ Shrine=1 +Goblin\ Ski\ Patrol=1 +Goblin\ Sky\ Raider=1 +Goblin\ Skycutter=1 +Goblin\ Snowman=1 +Goblin\ Spelunkers=1 +Goblin\ Spy=1 +Goblin\ Spymaster=1 +Goblin\ Swine-Rider=1 +Goblin\ Test\ Pilot=1 +Goblin\ Trenches=1 +Goblin\ Tunneler=1 +Goblin\ War\ Buggy=1 +Goblin\ War\ Paint=1 +Goblin\ War\ Wagon=1 +Goblin\ Warchief=1 +Goblins\ of\ the\ Flarg=1 +Goblinslide=1 +God-Favored\ General=1 +Godo's\ Irregulars=1 +Gods\ Willing=1 +Gods'\ Eye,\ Gate\ to\ the\ Reikai=1 +Godtoucher=1 +Goham\ Djinn=1 +Gold\ Myr=1 +Gold-Forged\ Sentinel=1 +Golden\ Hind=1 +Golden\ Urn=1 +Goldenglow\ Moth=1 +Goldenhide\ Ox=1 +Goldmeadow\ Dodger=1 +Goldmeadow\ Harrier=1 +Goldmeadow\ Lookout=1 +Goldmeadow\ Stalwart=1 +Goldnight\ Commander=1 +Goldnight\ Redeemer=1 +Golem\ Artisan=1 +Golem\ Foundry=1 +Golem-Skin\ Gauntlets=1 +Golem's\ Heart=1 +Golgari\ Cluestone=1 +Golgari\ Germination=1 +Golgari\ Guildgate=1 +Golgari\ Guildmage=1 +Golgari\ Keyrune=1 +Golgari\ Rotwurm=1 +Golgari\ Signet=1 +Goliath\ Beetle=1 +Goliath\ Sphinx=1 +Goliath\ Spider=1 +Gomazoa=1 +Gone\ Missing=1 +Gonti's\ Machinations=1 +Gore\ Vassal=1 +Gore-House\ Chainwalker=1 +Gorehorn\ Minotaurs=1 +Goretusk\ Firebeast=1 +Gorgon\ Flail=1 +Gorgon\ Recluse=1 +Gorgon's\ Head=1 +Gorilla\ Chieftain=1 +Gorilla\ Titan=1 +Gorilla\ Warrior=1 +Gossamer\ Chains=1 +Gossamer\ Phantasm=1 +Govern\ the\ Guildless=1 +Grab\ the\ Reins=1 +Graceblade\ Artisan=1 +Graceful\ Adept=1 +Graceful\ Reprieve=1 +Graf\ Harvest=1 +Graf\ Mole=1 +Graf\ Rats=1 +Grafted\ Exoskeleton=1 +Grand\ Coliseum=1 +Grandmother\ Sengir=1 +Granite\ Grip=1 +Granite\ Shard=1 +Granulate=1 +Grapeshot\ Catapult=1 +Grapple\ with\ the\ Past=1 +Grappler\ Spider=1 +Grappling\ Hook=1 +Grasp\ of\ Phantoms=1 +Grasp\ of\ the\ Hieromancer=1 +Grasping\ Dunes=1 +Grasslands=1 +Grave\ Betrayal=1 +Grave\ Birthing=1 +Grave\ Bramble=1 +Grave\ Consequences=1 +Grave\ Defiler=1 +Grave\ Servitude=1 +Grave\ Strength=1 +Grave-Shell\ Scarab=1 +Gravebind=1 +Graveblade\ Marauder=1 +Gravedigger=1 +Gravegouger=1 +Gravelgill\ Axeshark=1 +Gravelgill\ Duo=1 +Graven\ Dominator=1 +Gravepurge=1 +Graverobber\ Spider=1 +Gravespawn\ Sovereign=1 +Gravetiller\ Wurm=1 +Graveyard\ Shovel=1 +Gravitational\ Shift=1 +Gravity\ Negator=1 +Gravity\ Well=1 +Graypelt\ Hunter=1 +Graypelt\ Refuge=1 +Grayscaled\ Gharial=1 +Grazing\ Gladehart=1 +Grazing\ Kelpie=1 +Great\ Oak\ Guardian=1 +Great\ Teacher's\ Decree=1 +Greatbow\ Doyen=1 +Greater\ Forgeling=1 +Greater\ Harvester=1 +Greater\ Mossdog=1 +Greater\ Sandwurm=1 +Greater\ Stone\ Spirit=1 +Greatsword=1 +Greel's\ Caress=1 +Greenhilt\ Trainee=1 +Greenseeker=1 +Greenside\ Watcher=1 +Greenweaver\ Druid=1 +Greenwheel\ Liberator=1 +Gremlin\ Infestation=1 +Gremlin\ Mine=1 +Grid\ Monitor=1 +Gridlock=1 +Grief\ Tyrant=1 +Griffin\ Dreamfinder=1 +Griffin\ Guide=1 +Griffin\ Sentinel=1 +Grifter's\ Blade=1 +Grim\ Affliction=1 +Grim\ Backwoods=1 +Grim\ Contest=1 +Grim\ Discovery=1 +Grim\ Flowering=1 +Grim\ Guardian=1 +Grim\ Haruspex=1 +Grim\ Reminder=1 +Grim\ Return=1 +Grim\ Roustabout=1 +Grim\ Strider=1 +Grindclock=1 +Grinning\ Demon=1 +Grinning\ Ignus=1 +Grip\ of\ Amnesia=1 +Grip\ of\ Desolation=1 +Grip\ of\ Phyresis=1 +Grip\ of\ the\ Roil=1 +Griptide=1 +Grisly\ Spectacle=1 +Grisly\ Transformation=1 +Gristle\ Grinner=1 +Grixis\ Battlemage=1 +Grixis\ Charm=1 +Grixis\ Grimblade=1 +Grixis\ Illusionist=1 +Grixis\ Panorama=1 +Grixis\ Slavedriver=1 +Grizzled\ Angler=1 +Grizzled\ Leotau=1 +Grizzled\ Outcasts=1 +Grizzly\ Bears=1 +Grizzly\ Fate=1 +Grollub=1 +Grotag\ Siege-Runner=1 +Grotag\ Thrasher=1 +Grotesque\ Hybrid=1 +Grotesque\ Mutation=1 +Ground\ Assault=1 +Ground\ Rift=1 +Groundling\ Pouncer=1 +Groundshaker\ Sliver=1 +Groundskeeper=1 +Grove\ of\ the\ Guardian=1 +Grove\ Rumbler=1 +Grovetender\ Druids=1 +Growing\ Ranks=1 +Gruesome\ Deformity=1 +Gruesome\ Discovery=1 +Gruesome\ Encore=1 +Gruesome\ Slaughter=1 +Gruul\ Charm=1 +Gruul\ Cluestone=1 +Gruul\ Guildgate=1 +Gruul\ Guildmage=1 +Gruul\ Keyrune=1 +Gruul\ Ragebeast=1 +Gruul\ Signet=1 +Gruul\ War\ Chant=1 +Gruul\ War\ Plow=1 +Gryff's\ Boon=1 +Guan\ Yu,\ Sainted\ Warrior=1 +Guan\ Yu's\ 1,000-Li\ March=1 +Guard\ Dogs=1 +Guard\ Duty=1 +Guard\ Gomazoa=1 +Guardian\ Automaton=1 +Guardian\ of\ Cloverdell=1 +Guardian\ of\ Pilgrims=1 +Guardian\ of\ Solitude=1 +Guardian\ of\ Tazeem=1 +Guardian\ of\ the\ Ages=1 +Guardian\ of\ the\ Gateless=1 +Guardian\ Shield-Bearer=1 +Guardian's\ Magemark=1 +Guardians\ of\ Akrasa=1 +Guardians\ of\ Meletis=1 +Gudul\ Lurker=1 +Guerrilla\ Tactics=1 +Guided\ Strike=1 +Guild\ Feud=1 +Guildscorn\ Ward=1 +Guile=1 +Guilty\ Conscience=1 +Guise\ of\ Fire=1 +Guma=1 +Gurmag\ Drowner=1 +Gurmag\ Swiftwing=1 +Gust\ Walker=1 +Gust-Skimmer=1 +Gustcloak\ Cavalier=1 +Gustcloak\ Harrier=1 +Gustcloak\ Savior=1 +Gustrider\ Exuberant=1 +Gutless\ Ghoul=1 +Gutter\ Grime=1 +Gutter\ Skulk=1 +Gutwrencher\ Oni=1 +Guul\ Draz\ Overseer=1 +Guul\ Draz\ Specter=1 +Gwafa\ Hazid,\ Profiteer=1 +Gwyllion\ Hedge-Mage=1 +Gyre\ Sage=1 +Haazda\ Exonerator=1 +Haazda\ Shield\ Mate=1 +Hada\ Spy\ Patrol=1 +Hag\ Hedge-Mage=1 +Hagra\ Diabolist=1 +Hagra\ Sharpshooter=1 +Hail\ of\ Arrows=1 +Hair-Strung\ Koto=1 +Halam\ Djinn=1 +Halberdier=1 +Halcyon\ Glaze=1 +Halimar\ Excavator=1 +Halimar\ Tidecaller=1 +Halimar\ Wavewatch=1 +Hall\ of\ Triumph=1 +Hallow=1 +Hallowed\ Ground=1 +Hallowed\ Healer=1 +Halo\ Hunter=1 +Halt\ Order=1 +Hamlet\ Captain=1 +Hamletback\ Goliath=1 +Hammer\ of\ Bogardan=1 +Hammer\ of\ Purphoros=1 +Hammer\ of\ Ruin=1 +Hammerfist\ Giant=1 +Hammerhand=1 +Hammerhead\ Shark=1 +Hammerheim\ Deadeye=1 +Hana\ Kami=1 +Hanabi\ Blast=1 +Hand\ of\ Emrakul=1 +Hand\ of\ Justice=1 +Hand\ of\ Silumgar=1 +Hand\ of\ the\ Praetors=1 +Hands\ of\ Binding=1 +Hankyu=1 +Hanweir\ Lancer=1 +Hanweir\ Watchkeep=1 +Hapatra's\ Mark=1 +Hapless\ Researcher=1 +Harbinger\ of\ Spring=1 +Harbinger\ of\ the\ Hunt=1 +Harbor\ Serpent=1 +Hardened\ Berserker=1 +Harm's\ Way=1 +Harmattan\ Efreet=1 +Harmless\ Assault=1 +Harmless\ Offering=1 +Harmonic\ Convergence=1 +Harmonize=1 +Harness\ by\ Force=1 +Harness\ the\ Storm=1 +Harpoon\ Sniper=1 +Harrier\ Griffin=1 +Harrow=1 +Harrowing\ Journey=1 +Harsh\ Justice=1 +Harsh\ Scrutiny=1 +Haru-Onna=1 +Harvest\ Gwyllion=1 +Harvest\ Hand=1 +Harvest\ Pyre=1 +Harvest\ Season=1 +Harvester\ Druid=1 +Harvester\ Troll=1 +Harvestguard\ Alseids=1 +Hasran\ Ogress=1 +Hatchet\ Bully=1 +Hate\ Weaver=1 +Haunted\ Cadaver=1 +Haunted\ Cloak=1 +Haunted\ Dead=1 +Haunted\ Guardian=1 +Haunted\ Plate\ Mail=1 +Haunter\ of\ Nightveil=1 +Haunting\ Echoes=1 +Haunting\ Hymn=1 +Havengul\ Runebinder=1 +Havengul\ Vampire=1 +Havoc\ Demon=1 +Havoc\ Festival=1 +Havoc\ Sower=1 +Hawkeater\ Moth=1 +Hazardous\ Conditions=1 +Hazerider\ Drake=1 +Hazoret's\ Favor=1 +Hazoret's\ Monument=1 +Hazy\ Homunculus=1 +He\ Who\ Hungers=1 +Head\ Games=1 +Headhunter=1 +Headless\ Skaab=1 +Headlong\ Rush=1 +Heal=1 +Healer\ of\ the\ Pride=1 +Healer's\ Headdress=1 +Healing\ Hands=1 +Healing\ Leaves=1 +Healing\ Salve=1 +Heap\ Doll=1 +Heart\ of\ Light=1 +Heart\ Sliver=1 +Heart-Piercer\ Bow=1 +Heart-Piercer\ Manticore=1 +Hearth\ Kami=1 +Hearthcage\ Giant=1 +Hearthfire\ Hobgoblin=1 +Heartseeker=1 +Heartstabber\ Mosquito=1 +Heartwood\ Dryad=1 +Heat\ of\ Battle=1 +Heat\ Ray=1 +Heat\ Shimmer=1 +Heat\ Wave=1 +Heaven\ //\ Earth=1 +Heavy\ Arbalest=1 +Heavy\ Ballista=1 +Heavy\ Infantry=1 +Hedge\ Troll=1 +Hedonist's\ Trove=1 +Hedron\ Alignment=1 +Hedron\ Blade=1 +Hedron\ Crawler=1 +Hedron\ Matrix=1 +Hedron\ Scrabbler=1 +Hedron-Field\ Purists=1 +Heed\ the\ Mists=1 +Heidar,\ Rimewind\ Master=1 +Heir\ of\ Falkenrath=1 +Heir\ of\ the\ Wilds=1 +Hekma\ Sentinels=1 +Heliod's\ Emissary=1 +Helionaut=1 +Heliophial=1 +Helium\ Squirter=1 +Helldozer=1 +Hellhole\ Flailer=1 +Hellhole\ Rats=1 +Hellion\ Crucible=1 +Hellion\ Eruption=1 +Hellkite\ Charger=1 +Hellkite\ Hatchling=1 +Hellkite\ Igniter=1 +Hellraiser\ Goblin=1 +Hellrider=1 +Helm\ of\ the\ Ghastlord=1 +Helm\ of\ the\ Gods=1 +Hematite\ Golem=1 +Henge\ Guardian=1 +Herald\ of\ Anafenza=1 +Herald\ of\ Dromoka=1 +Herald\ of\ Kozilek=1 +Herald\ of\ the\ Fair=1 +Herald\ of\ the\ Host=1 +Herald\ of\ Torment=1 +Herald\ of\ War=1 +Herbal\ Poultice=1 +Herd\ Gnarr=1 +Herdchaser\ Dragon=1 +Heretic's\ Punishment=1 +Hermetic\ Study=1 +Hermit\ of\ the\ Natterknolls=1 +Hero\ of\ Goma\ Fada=1 +Hero\ of\ Leina\ Tower=1 +Hero's\ Demise=1 +Hero's\ Downfall=1 +Hero's\ Resolve=1 +Heroes\ Remembered=1 +Heroes'\ Podium=1 +Heroes'\ Reunion=1 +Heroic\ Defiance=1 +Heron's\ Grace\ Champion=1 +Hesitation=1 +Hewed\ Stone\ Retainers=1 +Hex=1 +Hexplate\ Golem=1 +Hibernation's\ End=1 +Hidden\ Ancients=1 +Hidden\ Dragonslayer=1 +Hidden\ Guerrillas=1 +Hidden\ Herbalists=1 +Hidden\ Horror=1 +Hidden\ Retreat=1 +Hidden\ Stag=1 +Hidden\ Strings=1 +Hideous\ End=1 +Hideous\ Laughter=1 +Hideous\ Visage=1 +High\ Ground=1 +High\ Priest\ of\ Penance=1 +High\ Sentinels\ of\ Arashin=1 +Highborn\ Ghoul=1 +Highland\ Berserker=1 +Highland\ Game=1 +Highland\ Lake=1 +Highspire\ Artisan=1 +Highspire\ Infusion=1 +Highspire\ Mantis=1 +Hightide\ Hermit=1 +Highway\ Robber=1 +Higure,\ the\ Still\ Wind=1 +Hijack=1 +Hikari,\ Twilight\ Guardian=1 +Hill\ Giant=1 +Hillcomber\ Giant=1 +Hindering\ Touch=1 +Hindervines=1 +Hint\ of\ Insanity=1 +Hinterland\ Drake=1 +Hinterland\ Hermit=1 +Hinterland\ Logger=1 +Hired\ Muscle=1 +Hired\ Torturer=1 +Hisoka,\ Minamo\ Sensei=1 +Hisoka's\ Guard=1 +Hissing\ Iguanar=1 +Hissing\ Miasma=1 +Hit\ //\ Run=1 +Hitchclaw\ Recluse=1 +Hivestone=1 +Hixus,\ Prison\ Warden=1 +Hoard-Smelter\ Dragon=1 +Hoarder's\ Greed=1 +Hobgoblin\ Dragoon=1 +Hold\ at\ Bay=1 +Hold\ the\ Gates=1 +Hold\ the\ Line=1 +Holdout\ Settlement=1 +Holistic\ Wisdom=1 +Hollow\ Dogs=1 +Hollowborn\ Barghest=1 +Hollowhenge\ Spirit=1 +Hollowsage=1 +Holy\ Mantle=1 +Holy\ Strength=1 +Homarid\ Spawning\ Bed=1 +Homicidal\ Seclusion=1 +Homing\ Sliver=1 +Honden\ of\ Cleansing\ Fire=1 +Honden\ of\ Infinite\ Rage=1 +Honden\ of\ Life's\ Web=1 +Honden\ of\ Night's\ Reach=1 +Honden\ of\ Seeing\ Winds=1 +Honed\ Khopesh=1 +Honor\ Guard=1 +Honor's\ Reward=1 +Honorable\ Passage=1 +Honored\ Crop-Captain=1 +Honored\ Hierarch=1 +Honored\ Hydra=1 +Hooded\ Assassin=1 +Hooded\ Brawler=1 +Hooded\ Kavu=1 +Hoofprints\ of\ the\ Stag=1 +Hooting\ Mandrills=1 +Hope\ Against\ Hope=1 +Hope\ and\ Glory=1 +Hope\ Charm=1 +Hopeful\ Eidolon=1 +Hopping\ Automaton=1 +Horde\ Ambusher=1 +Horde\ of\ Boggarts=1 +Horde\ of\ Notions=1 +Hordeling\ Outburst=1 +Horizon\ Chimera=1 +Horizon\ Drake=1 +Horizon\ Scholar=1 +Horizon\ Seed=1 +Horizon\ Spellbomb=1 +Horncaller's\ Chant=1 +Horned\ Cheetah=1 +Horned\ Helm=1 +Horned\ Turtle=1 +Hornet\ Cannon=1 +Hornet\ Sting=1 +Horobi,\ Death's\ Wail=1 +Horobi's\ Whisper=1 +Horrible\ Hordes=1 +Horribly\ Awry=1 +Horrifying\ Revelation=1 +Horror\ of\ the\ Broken\ Lands=1 +Horror\ of\ the\ Dim=1 +Horseshoe\ Crab=1 +Hostile\ Realm=1 +Hostility=1 +Hot\ Soup=1 +Hotheaded\ Giant=1 +Hound\ of\ Griselbrand=1 +Hound\ of\ the\ Farbogs=1 +Hour\ of\ Need=1 +Hoverguard\ Sweepers=1 +Hovermyr=1 +Howl\ from\ Beyond=1 +Howl\ of\ the\ Horde=1 +Howl\ of\ the\ Night\ Pack=1 +Howlgeist=1 +Howling\ Banshee=1 +Howlpack\ Resurgence=1 +Howlpack\ Wolf=1 +Howltooth\ Hollow=1 +Hubris=1 +Hulking\ Cyclops=1 +Hulking\ Devil=1 +Hulking\ Ogre=1 +Hum\ of\ the\ Radix=1 +Humble=1 +Humble\ Budoka=1 +Humble\ the\ Brute=1 +Humbler\ of\ Mortals=1 +Hunding\ Gjornersen=1 +Hundred-Handed\ One=1 +Hundred-Talon\ Kami=1 +Hundroog=1 +Hunger\ of\ the\ Nim=1 +Hungering\ Yeti=1 +Hungry\ Flames=1 +Hungry\ Mist=1 +Hungry\ Spriggan=1 +Hunt\ Down=1 +Hunt\ the\ Hunter=1 +Hunt\ the\ Weak=1 +Hunted\ Dragon=1 +Hunted\ Ghoul=1 +Hunted\ Lammasu=1 +Hunted\ Troll=1 +Hunted\ Wumpus=1 +Hunter\ of\ Eyeblights=1 +Hunter's\ Ambush=1 +Hunter's\ Insight=1 +Hunter's\ Prowess=1 +Hunting\ Cheetah=1 +Hunting\ Drake=1 +Hunting\ Kavu=1 +Hunting\ Moa=1 +Hunting\ Pack=1 +Hunting\ Triad=1 +Hunting\ Wilds=1 +Hurloon\ Minotaur=1 +Hurly-Burly=1 +Hussar\ Patrol=1 +Hyalopterous\ Lemure=1 +Hydroform=1 +Hydrolash=1 +Hydromorph\ Guardian=1 +Hydromorph\ Gull=1 +Hydrosurge=1 +Hyena\ Pack=1 +Hymn\ of\ Rebirth=1 +Hypersonic\ Dragon=1 +Hypervolt\ Grasp=1 +Hypnotic\ Cloud=1 +Hypnotic\ Siren=1 +Hypnotic\ Specter=1 +Hypochondria=1 +Hythonia\ the\ Cruel=1 +Ib\ Halfheart,\ Goblin\ Tactician=1 +Icatian\ Lieutenant=1 +Icatian\ Phalanx=1 +Icatian\ Priest=1 +Icatian\ Scout=1 +Icatian\ Town=1 +Ice\ Cage=1 +Ice\ Cauldron=1 +Ice\ Cave=1 +Ice\ Over=1 +Iceberg=1 +Icefall=1 +Icefall\ Regent=1 +Icefeather\ Aven=1 +Ichor\ Rats=1 +Ichor\ Slick=1 +Icy\ Blast=1 +Icy\ Manipulator=1 +Icy\ Prison=1 +Identity\ Thief=1 +Idle\ Thoughts=1 +Ifh-B?ff\ Efreet=1 +Igneous\ Golem=1 +Igneous\ Pouncer=1 +Ignite\ Disorder=1 +Ignite\ Memories=1 +Ignorant\ Bliss=1 +Iizuka\ the\ Ruthless=1 +Ikiral\ Outrider=1 +Ill-Tempered\ Cyclops=1 +Illness\ in\ the\ Ranks=1 +Illuminate=1 +Illuminated\ Folio=1 +Illuminated\ Wings=1 +Illusion\ //\ Reality=1 +Illusionary\ Servant=1 +Illusionary\ Wall=1 +Illusionist's\ Bracers=1 +Illusionist's\ Stratagem=1 +Illusory\ Angel=1 +Illusory\ Demon=1 +Illusory\ Gains=1 +Illusory\ Wrappings=1 +Imagecrafter=1 +Imaginary\ Pet=1 +Imi\ Statue=1 +Immobilizer\ Eldrazi=1 +Immobilizing\ Ink=1 +Immortal\ Coil=1 +Immortal\ Servitude=1 +Impatience=1 +Impeccable\ Timing=1 +Impelled\ Giant=1 +Imperiosaur=1 +Impetuous\ Devils=1 +Impetuous\ Sunchaser=1 +Implement\ of\ Combustion=1 +Implement\ of\ Examination=1 +Implement\ of\ Ferocity=1 +Implement\ of\ Malice=1 +Implode=1 +Impromptu\ Raid=1 +Improvised\ Armor=1 +Imps'\ Taunt=1 +In\ Oketra's\ Name=1 +Inaction\ Injunction=1 +Iname,\ Death\ Aspect=1 +Iname,\ Life\ Aspect=1 +Incandescent\ Soulstoke=1 +Incendiary=1 +Incendiary\ Sabotage=1 +Incinerate=1 +Incite=1 +Incite\ Hysteria=1 +Incite\ War=1 +Incorrigible\ Youths=1 +Increasing\ Devotion=1 +Increasing\ Savagery=1 +Incremental\ Blight=1 +Incremental\ Growth=1 +Incubator\ Drone=1 +Incurable\ Ogre=1 +Incursion\ Specialist=1 +Indebted\ Samurai=1 +Indentured\ Oaf=1 +Indestructibility=1 +Index=1 +Indigo\ Faerie=1 +Indomitable\ Archangel=1 +Indomitable\ Will=1 +Indrik\ Stomphowler=1 +Induce\ Paranoia=1 +Indulgent\ Aristocrat=1 +Indulgent\ Tormentor=1 +Inescapable\ Brute=1 +Inexorable\ Blob=1 +Inexorable\ Tide=1 +Infantry\ Veteran=1 +Infected\ Vermin=1 +Infectious\ Bloodlust=1 +Infectious\ Horror=1 +Infernal\ Caretaker=1 +Infernal\ Harvest=1 +Infernal\ Kirin=1 +Infernal\ Plunge=1 +Infernal\ Scarring=1 +Inferno\ Trap=1 +Infest=1 +Infested\ Roothold=1 +Infiltrate=1 +Infiltration\ Lens=1 +Infiltrator\ il-Kor=1 +Infiltrator's\ Magemark=1 +Infinite\ Obliteration=1 +Infinite\ Reflection=1 +Inflame=1 +Information\ Dealer=1 +Infuse\ with\ the\ Elements=1 +Infused\ Arrows=1 +Ingenious\ Skaab=1 +Inheritance=1 +Initiate\ of\ Blood=1 +Initiate's\ Companion=1 +Ink\ Dissolver=1 +Ink-Treader\ Nephilim=1 +Inkfathom\ Infiltrator=1 +Inkfathom\ Witch=1 +Inner\ Struggle=1 +Inner-Chamber\ Guard=1 +Inner-Flame\ Igniter=1 +Innocence\ Kami=1 +Inquisitor\ Exarch=1 +Inquisitor's\ Flail=1 +Inquisitor's\ Ox=1 +Inquisitor's\ Snare=1 +Insatiable\ Gorgers=1 +Insatiable\ Harpy=1 +Insatiable\ Souleater=1 +Insidious\ Will=1 +Insolence=1 +Insolent\ Neonate=1 +Inspiration=1 +Inspired\ Charge=1 +Inspired\ Sprite=1 +Inspiring\ Call=1 +Inspiring\ Captain=1 +Inspirit=1 +Instigator\ Gang=1 +Instill\ Furor=1 +Instill\ Infection=1 +Insubordination=1 +Intangible\ Virtue=1 +Interpret\ the\ Signs=1 +Intervene=1 +Intet,\ the\ Dreamer=1 +Intimidation\ Bolt=1 +Intimidator\ Initiate=1 +Into\ the\ Core=1 +Into\ the\ Fray=1 +Into\ the\ Maw\ of\ Hell=1 +Into\ the\ Void=1 +Into\ the\ Wilds=1 +Intrepid\ Hero=1 +Intrepid\ Provisioner=1 +Invader\ Parasite=1 +Invasive\ Species=1 +Invasive\ Surgery=1 +Inventor's\ Apprentice=1 +Inventor's\ Goggles=1 +Invert\ the\ Skies=1 +Invigorating\ Boon=1 +Invigorating\ Falls=1 +Invisibility=1 +Invocation\ of\ Saint\ Traft=1 +Invoke\ the\ Firemind=1 +Iona's\ Blessing=1 +Iona's\ Judgment=1 +Ire\ of\ Kaminari=1 +Ire\ Shaman=1 +Iridescent\ Drake=1 +Iroas's\ Champion=1 +Iron\ League\ Steed=1 +Iron\ Myr=1 +Iron\ Star=1 +Iron\ Will=1 +Iron-Barb\ Hellion=1 +Iron-Heart\ Chimera=1 +Ironclad\ Revolutionary=1 +Ironclad\ Slayer=1 +Ironclaw\ Orcs=1 +Ironfist\ Crusher=1 +Ironhoof\ Ox=1 +Ironshell\ Beetle=1 +Irontread\ Crusher=1 +Ironwright's\ Cleansing=1 +Irradiate=1 +Irresistible\ Prey=1 +Isao,\ Enlightened\ Bushi=1 +Ishi-Ishi,\ Akki\ Crackshot=1 +Island=1 +Isleback\ Spawn=1 +Isolation\ Cell=1 +Isolation\ Zone=1 +Isperia\ the\ Inscrutable=1 +Isperia's\ Skywatch=1 +It\ of\ the\ Horrid\ Swarm=1 +Ith,\ High\ Arcanist=1 +Ivory\ Charm=1 +Ivory\ Cup=1 +Ivory\ Gargoyle=1 +Ivory\ Giant=1 +Ivory\ Guardians=1 +Ivory\ Tower=1 +Ivorytusk\ Fortress=1 +Ivy\ Dancer=1 +Ivy\ Lane\ Denizen=1 +Ivy\ Seer=1 +Iwamori\ of\ the\ Open\ Fist=1 +Ixidor,\ Reality\ Sculptor=1 +Ixidor's\ Will=1 +Ixidron=1 +Izzet\ Chronarch=1 +Izzet\ Guildgate=1 +Izzet\ Guildmage=1 +Izzet\ Keyrune=1 +Jabari's\ Banner=1 +Jace's\ Ingenuity=1 +Jace's\ Mindseeker=1 +Jace's\ Scrutiny=1 +Jackal\ Pup=1 +Jackalope\ Herd=1 +Jaddi\ Lifestrider=1 +Jaddi\ Offshoot=1 +Jade\ Idol=1 +Jade\ Leech=1 +Jade\ Mage=1 +Jade\ Monolith=1 +Jade\ Statue=1 +Jaded\ Response=1 +Jagged\ Lightning=1 +Jagged\ Poppet=1 +Jagged-Scar\ Archers=1 +Jagwasp\ Swarm=1 +Jalira,\ Master\ Polymorphist=1 +Jamuraan\ Lion=1 +Janjeet\ Sentry=1 +Jar\ of\ Eyeballs=1 +Jarad's\ Orders=1 +Jareth,\ Leonine\ Titan=1 +Jasmine\ Seer=1 +Jaws\ of\ Stone=1 +Jayemdae\ Tome=1 +Jedit\ Ojanen=1 +Jedit\ Ojanen\ of\ Efrava=1 +Jedit's\ Dragoons=1 +Jeering\ Instigator=1 +Jelenn\ Sphinx=1 +Jerrard\ of\ the\ Closed\ Fist=1 +Jeskai\ Banner=1 +Jeskai\ Charm=1 +Jeskai\ Elder=1 +Jeskai\ Infiltrator=1 +Jeskai\ Student=1 +Jeskai\ Windscout=1 +Jetting\ Glasskite=1 +Jhessian\ Balmgiver=1 +Jhessian\ Infiltrator=1 +Jhessian\ Lookout=1 +Jhessian\ Thief=1 +Jhessian\ Zombies=1 +Jhoira's\ Timebug=1 +Jhoira's\ Toolbox=1 +Jilt=1 +Jinxed\ Choker=1 +Jinxed\ Idol=1 +Jiwari,\ the\ Earth\ Aflame=1 +Johtull\ Wurm=1 +Join\ the\ Ranks=1 +Jolrael,\ Empress\ of\ Beasts=1 +Jolt=1 +Jor\ Kadeen,\ the\ Prevailer=1 +Joraga\ Auxiliary=1 +Joraga\ Bard=1 +Joraga\ Invocation=1 +Jori\ En,\ Ruin\ Diver=1 +Jorubai\ Murk\ Lurker=1 +J?tun\ Grunt=1 +J?tun\ Owl\ Keeper=1 +Journey\ of\ Discovery=1 +Joven's\ Ferrets=1 +Joyous\ Respite=1 +Judge\ of\ Currents=1 +Judge\ Unworthy=1 +Jugan,\ the\ Rising\ Star=1 +Juggernaut=1 +Jukai\ Messenger=1 +Jump=1 +Jund\ Battlemage=1 +Jund\ Charm=1 +Jund\ Hackblade=1 +Jund\ Panorama=1 +Jungle\ Barrier=1 +Jungle\ Lion=1 +Jungle\ Shrine=1 +Jungle\ Weaver=1 +Jungle\ Wurm=1 +Juniper\ Order\ Advocate=1 +Junk\ Golem=1 +Junktroller=1 +Junkyo\ Bell=1 +Jun?n\ Efreet=1 +Jushi\ Apprentice=1 +Just\ Fate=1 +Just\ the\ Wind=1 +Juvenile\ Gloomwidow=1 +Juxtapose=1 +Jwar\ Isle\ Avenger=1 +Kabira\ Vindicator=1 +Kabuto\ Moth=1 +Kaervek\ the\ Merciless=1 +Kagemaro,\ First\ to\ Suffer=1 +Kagemaro's\ Clutch=1 +Kaijin\ of\ the\ Vanishing\ Touch=1 +Kalastria\ Healer=1 +Kalastria\ Nightwatch=1 +Kaleidostone=1 +Kalonian\ Behemoth=1 +Kalonian\ Twingrove=1 +Kamahl,\ Pit\ Fighter=1 +Kamahl's\ Desire=1 +Kamahl's\ Sledge=1 +Kami\ of\ Ancient\ Law=1 +Kami\ of\ Empty\ Graves=1 +Kami\ of\ Lunacy=1 +Kami\ of\ Old\ Stone=1 +Kami\ of\ the\ Hunt=1 +Kami\ of\ the\ Painted\ Road=1 +Kami\ of\ the\ Palace\ Fields=1 +Kami\ of\ the\ Tended\ Garden=1 +Kapsho\ Kitefins=1 +Karametra's\ Acolyte=1 +Karametra's\ Favor=1 +Karma=1 +Karn,\ Silver\ Golem=1 +Karona's\ Zealot=1 +Karplusan\ Giant=1 +Karplusan\ Strider=1 +Karplusan\ Wolverine=1 +Kashi-Tribe\ Reaver=1 +Kashi-Tribe\ Warriors=1 +Kathari\ Bomber=1 +Kathari\ Remnant=1 +Kathari\ Screecher=1 +Kavu\ Aggressor=1 +Kavu\ Chameleon=1 +Kavu\ Climber=1 +Kavu\ Glider=1 +Kavu\ Howler=1 +Kavu\ Mauler=1 +Kavu\ Predator=1 +Kavu\ Primarch=1 +Kavu\ Recluse=1 +Kavu\ Runner=1 +Kavu\ Scout=1 +Kazandu\ Tuskcaller=1 +Kazuul\ Warlord=1 +Kazuul's\ Toll\ Collector=1 +Kederekt\ Creeper=1 +Kederekt\ Leviathan=1 +Keeneye\ Aven=1 +Keening\ Apparition=1 +Keening\ Banshee=1 +Keening\ Stone=1 +Keeper\ of\ Kookus=1 +Keeper\ of\ Progenitus=1 +Keeper\ of\ the\ Beasts=1 +Keeper\ of\ the\ Dead=1 +Keeper\ of\ the\ Flame=1 +Keeper\ of\ the\ Lens=1 +Keeper\ of\ the\ Light=1 +Keeper\ of\ the\ Mind=1 +Keepsake\ Gorgon=1 +Kefnet's\ Monument=1 +Kei\ Takahashi=1 +Keldon\ Champion=1 +Keldon\ Halberdier=1 +Keldon\ Mantle=1 +Keldon\ Megaliths=1 +Keldon\ Necropolis=1 +Keldon\ Vandals=1 +Keldon\ Warlord=1 +Kemba,\ Kha\ Regent=1 +Kemba's\ Legion=1 +Kemba's\ Skyguard=1 +Kemuri-Onna=1 +Kessig\ Cagebreakers=1 +Kessig\ Dire\ Swine=1 +Kessig\ Forgemaster=1 +Kessig\ Malcontents=1 +Kessig\ Prowler=1 +Kessig\ Recluse=1 +Keymaster\ Rogue=1 +Kezzerdrix=1 +Khab?l\ Ghoul=1 +Khalni\ Gem=1 +Khenra\ Charioteer=1 +Kheru\ Bloodsucker=1 +Kheru\ Dreadmaw=1 +Kheru\ Lich\ Lord=1 +Kheru\ Spellsnatcher=1 +Kiku's\ Shadow=1 +Kill\ Shot=1 +Kill-Suit\ Cultist=1 +Killer\ Bees=1 +Killer\ Whale=1 +Killing\ Glare=1 +Kiln\ Walker=1 +Kin-Tree\ Invocation=1 +Kin-Tree\ Warden=1 +Kindle=1 +Kindle\ the\ Carnage=1 +Kindled\ Fury=1 +Kindly\ Stranger=1 +King\ Cheetah=1 +Kingfisher=1 +Kingpin's\ Pet=1 +Kinsbaile\ Balloonist=1 +Kinsbaile\ Borderguard=1 +Kinsbaile\ Skirmisher=1 +Kinscaer\ Harpoonist=1 +Kiora's\ Dismissal=1 +Kiora's\ Follower=1 +Kird\ Chieftain=1 +Kiri-Onna=1 +Kirtar's\ Desire=1 +Kiss\ of\ the\ Amesha=1 +Kite\ Shield=1 +Kitesail=1 +Kitesail\ Apprentice=1 +Kitesail\ Scout=1 +Kithkin\ Armor=1 +Kithkin\ Daggerdare=1 +Kithkin\ Greatheart=1 +Kithkin\ Harbinger=1 +Kithkin\ Healer=1 +Kithkin\ Mourncaller=1 +Kithkin\ Spellduster=1 +Kithkin\ Zealot=1 +Kithkin\ Zephyrnaut=1 +Kitsune\ Blademaster=1 +Kitsune\ Bonesetter=1 +Kitsune\ Dawnblade=1 +Kitsune\ Diviner=1 +Kitsune\ Healer=1 +Kitsune\ Loreweaver=1 +Kitsune\ Mystic=1 +Kitsune\ Palliator=1 +Kitsune\ Riftwalker=1 +Kiyomaro,\ First\ to\ Stand=1 +Kjeldoran\ Dead=1 +Kjeldoran\ Elite\ Guard=1 +Kjeldoran\ Frostbeast=1 +Kjeldoran\ Gargoyle=1 +Kjeldoran\ Home\ Guard=1 +Kjeldoran\ Javelineer=1 +Kjeldoran\ Outrider=1 +Kjeldoran\ Royal\ Guard=1 +Kjeldoran\ Skycaptain=1 +Kjeldoran\ War\ Cry=1 +Knight\ Errant=1 +Knight\ of\ Cliffhaven=1 +Knight\ of\ Dusk=1 +Knight\ of\ Infamy=1 +Knight\ of\ Meadowgrain=1 +Knight\ of\ Obligation=1 +Knight\ of\ Stromgald=1 +Knight\ of\ Sursi=1 +Knight\ of\ the\ Holy\ Nimbus=1 +Knight\ of\ the\ Mists=1 +Knight\ of\ the\ Pilgrim's\ Road=1 +Knight\ of\ the\ Skyward\ Eye=1 +Knight\ of\ Valor=1 +Knight-Captain\ of\ Eos=1 +Knighthood=1 +Knightly\ Valor=1 +Knights\ of\ Thorn=1 +Knollspine\ Dragon=1 +Knollspine\ Invocation=1 +Knotvine\ Mystic=1 +Knowledge\ and\ Power=1 +Knowledge\ Vault=1 +Knucklebone\ Witch=1 +Kobold\ Drill\ Sergeant=1 +Kobold\ Overlord=1 +Kobold\ Taskmaster=1 +Kodama\ of\ the\ Center\ Tree=1 +Kodama\ of\ the\ North\ Tree=1 +Kodama\ of\ the\ South\ Tree=1 +Kodama's\ Might=1 +Kolaghan\ Aspirant=1 +Kolaghan\ Forerunners=1 +Kolaghan\ Monument=1 +Kolaghan\ Skirmisher=1 +Kolaghan\ Stormsinger=1 +Konda,\ Lord\ of\ Eiganjo=1 +Konda's\ Hatamoto=1 +=1 +Kor\ Bladewhirl=1 +Kor\ Castigator=1 +Kor\ Chant=1 +Kor\ Dirge=1 +Kor\ Duelist=1 +Kor\ Entanglers=1 +Kor\ Hookmaster=1 +Kor\ Line-Slinger=1 +Kor\ Outfitter=1 +Kor\ Scythemaster=1 +Kor\ Sky\ Climber=1 +Korozda\ Gorgon=1 +Korozda\ Guildmage=1 +Korozda\ Monitor=1 +Koth's\ Courier=1 +Kothophed,\ Soul\ Hoarder=1 +Kozilek's\ Channeler=1 +Kozilek's\ Pathfinder=1 +Kozilek's\ Predator=1 +Kozilek's\ Sentinel=1 +Kozilek's\ Shrieker=1 +Kozilek's\ Translator=1 +Kragma\ Butcher=1 +Kragma\ Warcaller=1 +Kraken\ Hatchling=1 +Kraken\ of\ the\ Straits=1 +Kraken's\ Eye=1 +Krakilin=1 +Krark-Clan\ Engineers=1 +Krark-Clan\ Ogre=1 +Krark-Clan\ Stoker=1 +Krasis\ Incubation=1 +Krenko's\ Enforcer=1 +Krosan\ Archer=1 +Krosan\ Avenger=1 +Krosan\ Cloudscraper=1 +Krosan\ Colossus=1 +Krosan\ Constrictor=1 +Krosan\ Drover=1 +Krosan\ Reclamation=1 +Krosan\ Warchief=1 +Krosan\ Wayfarer=1 +Krovikan\ Fetish=1 +Krovikan\ Rot=1 +Krovikan\ Scoundrel=1 +Krovikan\ Sorcerer=1 +Krovikan\ Vampire=1 +Krovikan\ Whispers=1 +Kruin\ Outlaw=1 +Kruin\ Striker=1 +Krumar\ Bond-Kin=1 +Kruphix's\ Insight=1 +Kudzu=1 +Kujar\ Seedsculptor=1 +Kukemssa\ Serpent=1 +Kuldotha\ Flamefiend=1 +Kuldotha\ Forgemaster=1 +Kuldotha\ Phoenix=1 +Kuldotha\ Ringleader=1 +Kumano,\ Master\ Yamabushi=1 +Kuon,\ Ogre\ Ascendant=1 +Kurgadon=1 +Kurkesh,\ Onakke\ Ancient=1 +Kuro,\ Pitlord=1 +Kuro's\ Taken=1 +Kusari-Gama=1 +Kyoki,\ Sanity's\ Eclipse=1 +Kyren\ Glider=1 +Kyren\ Sniper=1 +Kytheon's\ Irregulars=1 +Kytheon's\ Tactics=1 +Lab\ Rats=1 +Laboratory\ Brute=1 +Labyrinth\ Guardian=1 +Labyrinth\ Minotaur=1 +Laccolith\ Grunt=1 +Laccolith\ Rig=1 +Laccolith\ Whelp=1 +Lady\ Caleria=1 +Lady\ Evangela=1 +Lady\ Orca=1 +Lagonna-Band\ Elder=1 +Lairwatch\ Giant=1 +Lake\ of\ the\ Dead=1 +Lambholt\ Elder=1 +Lambholt\ Pacifist=1 +Lamplighter\ of\ Selhoff=1 +Lancers\ en-Kor=1 +Landbind\ Ritual=1 +Landslide=1 +Lantern\ Scout=1 +Lantern\ Spirit=1 +Lantern-Lit\ Graveyard=1 +Laquatus's\ Champion=1 +Laquatus's\ Creativity=1 +Larger\ Than\ Life=1 +Lash\ Out=1 +Lashknife=1 +Lashknife\ Barrier=1 +Lashweed\ Lurker=1 +Last\ Breath=1 +Last\ Caress=1 +Last\ Gasp=1 +Last\ Kiss=1 +Last\ Thoughts=1 +Last\ Word=1 +Last-Ditch\ Effort=1 +Lat-Nam's\ Legacy=1 +Latch\ Seeker=1 +Latchkey\ Faerie=1 +Lathnu\ Sailback=1 +Latulla's\ Orders=1 +Launch=1 +Launch\ Party=1 +Launch\ the\ Fleet=1 +Lava\ Axe=1 +Lava\ Blister=1 +Lava\ Burst=1 +Lava\ Flow=1 +Lava\ Hounds=1 +Lavaball\ Trap=1 +Lavaborn\ Muse=1 +Lavacore\ Elemental=1 +Lavafume\ Invoker=1 +Lavamancer's\ Skill=1 +Lavastep\ Raider=1 +Lawless\ Broker=1 +Lay\ Claim=1 +Lay\ of\ the\ Land=1 +Lay\ Waste=1 +Lead\ Astray=1 +Lead\ by\ Example=1 +Lead-Belly\ Chimera=1 +Leaden\ Fists=1 +Leaden\ Myr=1 +Leaf\ Arrow=1 +Leaf\ Dancer=1 +Leaf\ Gilder=1 +Leafcrown\ Dryad=1 +Leafdrake\ Roost=1 +Leaping\ Lizard=1 +Leaping\ Master=1 +Learn\ from\ the\ Past=1 +Leashling=1 +Leatherback\ Baloth=1 +Leave\ in\ the\ Dust=1 +Leave\ No\ Trace=1 +Leech\ Bonder=1 +Leeching\ Licid=1 +Leeching\ Sliver=1 +Leering\ Emblem=1 +Legerdemain=1 +Leonin\ Armorguard=1 +Leonin\ Bladetrap=1 +Leonin\ Bola=1 +Leonin\ Den-Guard=1 +Leonin\ Elder=1 +Leonin\ Iconoclast=1 +Leonin\ Scimitar=1 +Leonin\ Skyhunter=1 +Leonin\ Snarecaster=1 +Leonin\ Squire=1 +Leonin\ Sun\ Standard=1 +Leshrac's\ Rite=1 +Lesser\ Werewolf=1 +Lethargy\ Trap=1 +Leviathan=1 +Levitation=1 +Leyline\ of\ Lightning=1 +Leyline\ of\ Vitality=1 +Leyline\ Phantom=1 +Liar's\ Pendulum=1 +Liberated\ Dwarf=1 +Lich's\ Tomb=1 +Life\ and\ Limb=1 +Life\ Chisel=1 +Lifecraft\ Awakening=1 +Lifecraft\ Cavalry=1 +Lifecrafter's\ Gift=1 +Lifegift=1 +Lifelink=1 +Lifesmith=1 +Lifespark\ Spellbomb=1 +Lifespinner=1 +Lifespring\ Druid=1 +Lifted\ by\ Clouds=1 +Light\ of\ Sanction=1 +Lightkeeper\ of\ Emeria=1 +Lightmine\ Field=1 +Lightning\ Berserker=1 +Lightning\ Blast=1 +Lightning\ Coils=1 +Lightning\ Dragon=1 +Lightning\ Elemental=1 +Lightning\ Javelin=1 +Lightning\ Prowess=1 +Lightning\ Reaver=1 +Lightning\ Reflexes=1 +Lightning\ Rift=1 +Lightning\ Shrieker=1 +Lightning\ Strike=1 +Lightning\ Surge=1 +Lightning\ Talons=1 +Lightning\ Volley=1 +Lightwalker=1 +Liliana's\ Elite=1 +Liliana's\ Indignation=1 +Liliana's\ Reaver=1 +Liliana's\ Shade=1 +Lilting\ Refrain=1 +Lim-D?l\ the\ Necromancer=1 +Lim-D?l's\ Cohort=1 +Lim-D?l's\ High\ Guard=1 +Limits\ of\ Solidarity=1 +Linessa,\ Zephyr\ Mage=1 +Lingering\ Death=1 +Lingering\ Mirage=1 +Lingering\ Tormentor=1 +Lionheart\ Maverick=1 +Liquify=1 +Liquimetal\ Coating=1 +Lithomancer's\ Focus=1 +Liturgy\ of\ Blood=1 +Liu\ Bei,\ Lord\ of\ Shu=1 +Live\ Fast=1 +Livewire\ Lash=1 +Living\ Airship=1 +Living\ Destiny=1 +Living\ Hive=1 +Living\ Inferno=1 +Living\ Lore=1 +Living\ Totem=1 +Living\ Wall=1 +Livonya\ Silone=1 +Llanowar\ Cavalry=1 +Llanowar\ Dead=1 +Llanowar\ Empath=1 +Llanowar\ Mentor=1 +Llanowar\ Reborn=1 +Llanowar\ Sentinel=1 +Llanowar\ Vanguard=1 +Loam\ Dryad=1 +Loam\ Dweller=1 +Loam\ Larva=1 +Loam\ Lion=1 +Loamdragger\ Giant=1 +Loathsome\ Catoblepas=1 +Lobber\ Crew=1 +Loch\ Korrigan=1 +Locket\ of\ Yesterdays=1 +Lockjaw\ Snapper=1 +Lodestone\ Myr=1 +Lone\ Revenant=1 +Lone\ Rider=1 +Lone\ Wolf=1 +Long\ Road\ Home=1 +Long-Finned\ Skywhale=1 +Long-Forgotten\ Gohei=1 +Longbow\ Archer=1 +Longhorn\ Firebeast=1 +Longshot\ Squad=1 +Looming\ Shade=1 +Looming\ Spires=1 +Looter\ il-Kor=1 +Lord\ of\ Shatterskull\ Pass=1 +Lord\ of\ the\ Pit=1 +Lore\ Broker=1 +Lorescale\ Coatl=1 +Loreseeker's\ Stone=1 +Lose\ Calm=1 +Lose\ Hope=1 +Lost\ Auramancers=1 +Lost\ in\ a\ Labyrinth=1 +Lost\ in\ the\ Mist=1 +Lost\ in\ the\ Woods=1 +Lost\ in\ Thought=1 +Lost\ Leonin=1 +Lost\ Order\ of\ Jarkeld=1 +Lotus\ Path\ Djinn=1 +Lotus-Eye\ Mystics=1 +Lowland\ Basilisk=1 +Lowland\ Giant=1 +Lowland\ Oaf=1 +Lowland\ Tracker=1 +Loxodon\ Gatekeeper=1 +Loxodon\ Hierarch=1 +Loxodon\ Mender=1 +Loxodon\ Mystic=1 +Loxodon\ Peacekeeper=1 +Loxodon\ Punisher=1 +Loxodon\ Stalwart=1 +Loxodon\ Warhammer=1 +Loyal\ Cathar=1 +Loyal\ Pegasus=1 +Loyal\ Sentry=1 +Lu\ Bu,\ Master-at-Arms=1 +Lu\ Meng,\ Wu\ General=1 +Lucent\ Liminid=1 +Ludevic's\ Test\ Subject=1 +Lumberknot=1 +Lumengrid\ Drake=1 +Lumengrid\ Gargoyle=1 +Lumengrid\ Sentinel=1 +Lumengrid\ Warden=1 +Luminate\ Primordial=1 +Luminesce=1 +Luminous\ Angel=1 +Luminous\ Guardian=1 +Luminous\ Wake=1 +Lunar\ Avenger=1 +Lunar\ Force=1 +Lunar\ Mystic=1 +Lunarch\ Mantle=1 +Lunge=1 +Lure=1 +Lurebound\ Scarecrow=1 +Lurking\ Arynx=1 +Lurking\ Crocodile=1 +Lurking\ Informant=1 +Lurking\ Jackals=1 +Lurking\ Skirge=1 +Lush\ Growth=1 +Lust\ for\ War=1 +Luxa\ River\ Shrine=1 +Lyev\ Decree=1 +Lyev\ Skyknight=1 +Lymph\ Sliver=1 +Lys\ Alana\ Bowmaster=1 +Lys\ Alana\ Scarblade=1 +Macabre\ Waltz=1 +Macetail\ Hystrodon=1 +Machinate=1 +Mad\ Auntie=1 +Mad\ Dog=1 +Mad\ Prophet=1 +Madblind\ Mountain=1 +Madcap\ Experiment=1 +Madcap\ Skills=1 +Madrush\ Cyclops=1 +Maelstrom\ Djinn=1 +Mage\ il-Vec=1 +Mage\ Slayer=1 +Mage-Ring\ Bully=1 +Mage-Ring\ Network=1 +Mage-Ring\ Responder=1 +Mage's\ Guile=1 +Magebane\ Armor=1 +Magewright's\ Stone=1 +Maggot\ Carrier=1 +Maggot\ Therapy=1 +Magister\ of\ Worth=1 +Magister\ Sphinx=1 +Magma\ Giant=1 +Magma\ Phoenix=1 +Magmaquake=1 +Magmasaur=1 +Magmatic\ Chasm=1 +Magmatic\ Core=1 +Magmatic\ Insight=1 +Magmaw=1 +Magnetic\ Mine=1 +Magnetic\ Theft=1 +Magnifying\ Glass=1 +Magnivore=1 +Magosi,\ the\ Waterveil=1 +Magus\ of\ the\ Abyss=1 +Magus\ of\ the\ Arena=1 +Magus\ of\ the\ Bazaar=1 +Magus\ of\ the\ Disk=1 +Magus\ of\ the\ Jar=1 +Magus\ of\ the\ Library=1 +Magus\ of\ the\ Mirror=1 +Magus\ of\ the\ Scroll=1 +Magus\ of\ the\ Tabernacle=1 +Mahamoti\ Djinn=1 +Make\ a\ Stand=1 +Make\ Mischief=1 +Make\ Obsolete=1 +Makeshift\ Mannequin=1 +Makeshift\ Mauler=1 +Makindi\ Aeronaut=1 +Makindi\ Griffin=1 +Makindi\ Patrol=1 +Makindi\ Shieldmate=1 +Makindi\ Sliderunner=1 +Malach\ of\ the\ Dawn=1 +Malakir\ Cullblade=1 +Malakir\ Familiar=1 +Malakir\ Soothsayer=1 +Malevolent\ Whispers=1 +Malfunction=1 +Malicious\ Advice=1 +Mammoth\ Umbra=1 +Man-o'-War=1 +Mana\ Bloom=1 +Mana\ Breach=1 +Mana\ Cylix=1 +Mana\ Leech=1 +Mana\ Prism=1 +Mana\ Seism=1 +Mana\ Skimmer=1 +Manabarbs=1 +Manacles\ of\ Decay=1 +Manaforce\ Mace=1 +Manaforge\ Cinder=1 +Manaplasm=1 +Mangara\ of\ Corondor=1 +Manglehorn=1 +Maniacal\ Rage=1 +Manic\ Scribe=1 +Manic\ Vandal=1 +Mannichi,\ the\ Fevered\ Dream=1 +Manor\ Gargoyle=1 +Manor\ Skeleton=1 +Manta\ Ray=1 +Manta\ Riders=1 +Manticore\ of\ the\ Gauntlet=1 +Mantis\ Engine=1 +Mantle\ of\ Leadership=1 +Mantle\ of\ Webs=1 +Marang\ River\ Skeleton=1 +Marble\ Chalice=1 +March\ from\ the\ Tomb=1 +March\ of\ the\ Returned=1 +Mardu\ Ascendancy=1 +Mardu\ Banner=1 +Mardu\ Blazebringer=1 +Mardu\ Charm=1 +Mardu\ Hateblade=1 +Mardu\ Heart-Piercer=1 +Mardu\ Hordechief=1 +Mardu\ Roughrider=1 +Mardu\ Runemark=1 +Mardu\ Skullhunter=1 +Mardu\ Warshrieker=1 +Marhault\ Elsdragon=1 +Marionette\ Master=1 +Marisi's\ Twinclaws=1 +Maritime\ Guard=1 +Marjhan=1 +Mark\ of\ Eviction=1 +Mark\ of\ Fury=1 +Mark\ of\ Mutiny=1 +Mark\ of\ Sakiko=1 +Mark\ of\ the\ Oni=1 +Mark\ of\ the\ Vampire=1 +Marked\ by\ Honor=1 +Marker\ Beetles=1 +Market\ Festival=1 +Markov\ Blademaster=1 +Markov\ Crusader=1 +Markov\ Dreadknight=1 +Markov\ Patrician=1 +Markov\ Warlord=1 +Maro=1 +Marrow\ Bats=1 +Marrow\ Chomper=1 +Marrow\ Shards=1 +Marsh\ Casualties=1 +Marsh\ Flitter=1 +Marsh\ Hulk=1 +Marsh\ Lurker=1 +Marsh\ Threader=1 +Marshaling\ Cry=1 +Marshdrinker\ Giant=1 +Marshmist\ Titan=1 +Martial\ Glory=1 +Martial\ Law=1 +Martyr\ of\ Bones=1 +Martyr\ of\ Spores=1 +Martyr's\ Cause=1 +Martyred\ Rusalka=1 +Martyrs\ of\ Korlis=1 +Martyrs'\ Tomb=1 +Masako\ the\ Humorless=1 +Mask\ of\ Avacyn=1 +Mask\ of\ Memory=1 +Mask\ of\ Riddles=1 +Mask\ of\ the\ Mimic=1 +Masked\ Admirers=1 +Masked\ Gorgon=1 +Mass\ Calcify=1 +Mass\ of\ Ghouls=1 +Mass\ Polymorph=1 +Massive\ Raid=1 +Master\ Decoy=1 +Master\ Healer=1 +Master\ of\ Diversion=1 +Master\ of\ Pearls=1 +Master\ of\ Predicaments=1 +Master\ Splicer=1 +Master\ the\ Way=1 +Master\ Thief=1 +Master\ Trinketeer=1 +Master\ Warcraft=1 +Master's\ Call=1 +Mastery\ of\ the\ Unseen=1 +Masticore=1 +Masumaro,\ First\ to\ Live=1 +Matca\ Rioters=1 +Matopi\ Golem=1 +Matsu-Tribe\ Birdstalker=1 +Matsu-Tribe\ Decoy=1 +Matsu-Tribe\ Sniper=1 +Maul\ Splicer=1 +Maulfist\ Doorbuster=1 +Maulfist\ Revolutionary=1 +Maulfist\ Squad=1 +Mausoleum\ Guard=1 +Mausoleum\ Turnkey=1 +Maverick\ Thopterist=1 +Maw\ of\ Kozilek=1 +Maw\ of\ the\ Obzedat=1 +Mawcor=1 +Maze\ Behemoth=1 +Maze\ Glider=1 +Maze\ of\ Shadows=1 +Maze\ Sentinel=1 +Meadowboon=1 +Meandering\ River=1 +Meandering\ Towershell=1 +Meddle=1 +Medicine\ Bag=1 +Medicine\ Runner=1 +Meditation\ Puzzle=1 +Medomai\ the\ Ageless=1 +Megantic\ Sliver=1 +Megatog=1 +Meglonoth=1 +Megrim=1 +Melancholy=1 +Melek,\ Izzet\ Paragon=1 +Meletis\ Astronomer=1 +Meletis\ Charlatan=1 +Melira's\ Keepers=1 +Meloku\ the\ Clouded\ Mirror=1 +Melt\ Terrain=1 +Memoricide=1 +Memory\ Erosion=1 +Memory\ Sluice=1 +Memory's\ Journey=1 +Menacing\ Ogre=1 +Mending\ Hands=1 +Mending\ Touch=1 +Meng\ Huo,\ Barbarian\ King=1 +Mental\ Agony=1 +Mental\ Discipline=1 +Mental\ Vapors=1 +Mephitic\ Ooze=1 +Mer-Ek\ Nightblade=1 +Merchant\ of\ Secrets=1 +Merchant's\ Dockhand=1 +Merciless\ Javelineer=1 +Merciless\ Resolve=1 +Mercurial\ Chemister=1 +Mercurial\ Geists=1 +Mercurial\ Kite=1 +Mercurial\ Pretender=1 +Mercy\ Killing=1 +Merfolk\ Assassin=1 +Merfolk\ Looter=1 +Merfolk\ Mesmerist=1 +Merfolk\ Observer=1 +Merfolk\ of\ the\ Depths=1 +Merfolk\ of\ the\ Pearl\ Trident=1 +Merfolk\ Seastalkers=1 +Merfolk\ Seer=1 +Merfolk\ Skyscout=1 +Merfolk\ Sovereign=1 +Merfolk\ Spy=1 +Merfolk\ Thaumaturgist=1 +Merfolk\ Wayfinder=1 +Merieke\ Ri\ Berit=1 +Merrow\ Bonegnawer=1 +Merrow\ Commerce=1 +Merrow\ Grimeblotter=1 +Merrow\ Harbinger=1 +Merrow\ Levitator=1 +Merrow\ Wavebreakers=1 +Merrow\ Witsniper=1 +Mesa\ Enchantress=1 +Mesa\ Pegasus=1 +Mesmeric\ Sliver=1 +Mesmeric\ Trance=1 +Messenger\ Drake=1 +Messenger\ Falcons=1 +Messenger's\ Speed=1 +Metal\ Fatigue=1 +Metallic\ Mastery=1 +Metallurgeon=1 +Metalspinner's\ Puzzleknot=1 +Metamorphose=1 +Metathran\ Elite=1 +Metathran\ Soldier=1 +Metathran\ Transport=1 +Meteor\ Shower=1 +Meteorite=1 +Metropolis\ Sprite=1 +Miasmic\ Mummy=1 +Midnight\ Banshee=1 +Midnight\ Charm=1 +Midnight\ Covenant=1 +Midnight\ Duelist=1 +Midnight\ Entourage=1 +Midnight\ Haunting=1 +Midnight\ Oil=1 +Midnight\ Recovery=1 +Midnight\ Ritual=1 +Midnight\ Scavengers=1 +Might\ Beyond\ Reason=1 +Might\ Makes\ Right=1 +Might\ of\ Oaks=1 +Might\ of\ Old\ Krosa=1 +Might\ of\ the\ Masses=1 +Might\ of\ the\ Nephilim=1 +Might\ Sliver=1 +Might\ Weaver=1 +Mightstone=1 +Mighty\ Emergence=1 +Mighty\ Leap=1 +Mijae\ Djinn=1 +Militant\ Inquisitor=1 +Military\ Intelligence=1 +Militia's\ Pride=1 +Millennial\ Gargoyle=1 +Millikin=1 +Millstone=1 +Mimeofacture=1 +Miming\ Slime=1 +Mina\ and\ Denn,\ Wildborn=1 +Minamo\ Scrollkeeper=1 +Minamo\ Sightbender=1 +Mind\ Bend=1 +Mind\ Burst=1 +Mind\ Control=1 +Mind\ Extraction=1 +Mind\ Grind=1 +Mind\ Maggots=1 +Mind\ Peel=1 +Mind\ Raker=1 +Mind\ Rot=1 +Mind\ Sculpt=1 +Mind\ Shatter=1 +Mind\ Sludge=1 +Mind\ Spring=1 +Mind\ Unbound=1 +Mindblaze=1 +Mindclaw\ Shaman=1 +Mindculling=1 +Mindlash\ Sliver=1 +Mindleech\ Mass=1 +Mindless\ Automaton=1 +Mindless\ Null=1 +Mindlock\ Orb=1 +Mindmelter=1 +Mindmoil=1 +Mindreaver=1 +Mindscour\ Dragon=1 +Mindshrieker=1 +Mindsparker=1 +Mindstab=1 +Mindstab\ Thrull=1 +Mindstatic=1 +Mindstorm\ Crown=1 +Mindswipe=1 +Mindwhip\ Sliver=1 +Mine\ Excavation=1 +Miner's\ Bane=1 +Minion\ of\ Leshrac=1 +Minion\ Reflector=1 +Minister\ of\ Impediments=1 +Minister\ of\ Inquiries=1 +Minister\ of\ Pain=1 +Minotaur\ Abomination=1 +Minotaur\ Aggressor=1 +Minotaur\ Explorer=1 +Minotaur\ Illusionist=1 +Minotaur\ Skullcleaver=1 +Minotaur\ Sureshot=1 +Minotaur\ Tactician=1 +Mire\ Boa=1 +Mire\ Kavu=1 +Mire's\ Malice=1 +Mire's\ Toll=1 +Mirko\ Vosk,\ Mind\ Drinker=1 +Mirozel=1 +Mirran\ Mettle=1 +Mirran\ Spy=1 +Mirri,\ Cat\ Warrior=1 +Mirror\ Mockery=1 +Mirror\ of\ Fate=1 +Mirror\ Wall=1 +Mirror-Mad\ Phantasm=1 +Mirrorwood\ Treefolk=1 +Mirrorworks=1 +Mischief\ and\ Mayhem=1 +Mischievous\ Quanar=1 +Misery\ Charm=1 +Misfortune's\ Gain=1 +Misguided\ Rage=1 +Mishra's\ Groundbreaker=1 +Misinformation=1 +Misstep=1 +Mist\ Intruder=1 +Mist\ Leopard=1 +Mist\ of\ Stagnation=1 +Mist\ Raven=1 +Mistcutter\ Hydra=1 +Mistfire\ Adept=1 +Mistfire\ Weaver=1 +Mistform\ Seaswift=1 +Mistform\ Shrieker=1 +Mistform\ Skyreaver=1 +Mistform\ Sliver=1 +Mistform\ Stalker=1 +Mistform\ Ultimus=1 +Mistform\ Wakecaster=1 +Mistform\ Wall=1 +Mistform\ Warchief=1 +Misthoof\ Kirin=1 +Mistmeadow\ Skulk=1 +Mistmeadow\ Witch=1 +Mistmoon\ Griffin=1 +Mistral\ Charger=1 +Mitotic\ Manipulation=1 +Mitotic\ Slime=1 +Mizzium\ Meddler=1 +Mizzium\ Mortars=1 +Mizzium\ Skin=1 +Mizzium\ Transreliquat=1 +Mnemonic\ Nexus=1 +Mnemonic\ Sliver=1 +Mnemonic\ Wall=1 +Moan\ of\ the\ Unhallowed=1 +Mob\ Rule=1 +Mobile\ Fort=1 +Mobile\ Garrison=1 +Mockery\ of\ Nature=1 +Mogg\ Bombers=1 +Mogg\ Cannon=1 +Mogg\ Flunkies=1 +Mogg\ Hollows=1 +Mogg\ Jailer=1 +Mogg\ Maniac=1 +Mogg\ Sentry=1 +Mogis's\ Marauder=1 +Mogis's\ Warhound=1 +Mold\ Adder=1 +Mold\ Shambler=1 +Molder=1 +Molder\ Beast=1 +Molder\ Slug=1 +Moldervine\ Cloak=1 +Moldgraf\ Monstrosity=1 +Moldgraf\ Scavenger=1 +Molimo,\ Maro-Sorcerer=1 +Molten\ Birth=1 +Molten\ Disaster=1 +Molten\ Firebird=1 +Molten\ Frame=1 +Molten\ Hydra=1 +Molten\ Nursery=1 +Molten\ Primordial=1 +Molten\ Psyche=1 +Molten\ Ravager=1 +Molten\ Sentry=1 +Molten\ Slagheap=1 +Moltensteel\ Dragon=1 +Molting\ Skin=1 +Molting\ Snakeskin=1 +Moment\ of\ Heroism=1 +Momentary\ Blink=1 +Momentous\ Fall=1 +Momentum=1 +Monastery\ Flock=1 +Monastery\ Loremaster=1 +Mondronen\ Shaman=1 +Monk\ Idealist=1 +Monk\ Realist=1 +Monomania=1 +Monstrify=1 +Monstrous\ Growth=1 +Monstrous\ Onslaught=1 +Moonbow\ Illusionist=1 +Moonglove\ Changeling=1 +Moonglove\ Extract=1 +Moonglove\ Winnower=1 +Moonhold=1 +Moonlight\ Bargain=1 +Moonlight\ Hunt=1 +Moonlit\ Strider=1 +Moonmist=1 +Moonring\ Island=1 +Moonring\ Mirror=1 +Moonsilver\ Spear=1 +Moorish\ Cavalry=1 +Moorland\ Drifter=1 +Moorland\ Haunt=1 +Morality\ Shift=1 +Morbid\ Bloom=1 +Morbid\ Curiosity=1 +Morbid\ Hunger=1 +Mordant\ Dragon=1 +Morgue\ Burst=1 +Morgue\ Thrull=1 +Morgue\ Toad=1 +Moriok\ Reaver=1 +Moriok\ Replica=1 +Moriok\ Rigger=1 +Moriok\ Scavenger=1 +Morkrut\ Banshee=1 +Morkrut\ Necropod=1 +Moroii=1 +Morselhoarder=1 +Mortal\ Obstinacy=1 +Mortal\ Wound=1 +Mortal's\ Ardor=1 +Mortal's\ Resolve=1 +Mortarpod=1 +Mortician\ Beetle=1 +Mortipede=1 +Mortiphobia=1 +Mortivore=1 +Mortuary\ Mire=1 +Mortus\ Strider=1 +Mosquito\ Guard=1 +Moss\ Diamond=1 +Mossbridge\ Troll=1 +Mossdog=1 +Mothdust\ Changeling=1 +Mothrider\ Samurai=1 +Mountain=1 +Mountain\ Valley=1 +Mountain\ Yeti=1 +Mounted\ Archers=1 +Mourning=1 +Mournwhelk=1 +Mournwillow=1 +Mouth\ //\ Feed=1 +Mtenda\ Herder=1 +Muck\ Drubb=1 +Mudbrawler\ Raiders=1 +Mudbutton\ Clanger=1 +Mudbutton\ Torchrunner=1 +Mudhole=1 +Mugging=1 +Mul\ Daya\ Channelers=1 +Mulch=1 +Multani's\ Acolyte=1 +Multani's\ Harmony=1 +Multani's\ Presence=1 +Multiform\ Wonder=1 +Munda,\ Ambush\ Leader=1 +Munda's\ Vanguard=1 +Mundungu=1 +Murasa\ Pyromancer=1 +Murasa\ Ranger=1 +Murder=1 +Murder\ Investigation=1 +Murderer's\ Axe=1 +Murderous\ Compulsion=1 +Murk\ Strider=1 +Murmuring\ Phantasm=1 +Murmurs\ from\ Beyond=1 +Muscle\ Burst=1 +Muscle\ Sliver=1 +Mutant's\ Prey=1 +Muzzle=1 +Mwonvuli\ Beast\ Tracker=1 +Mycoid\ Shepherd=1 +Mycologist=1 +Myojin\ of\ Cleansing\ Fire=1 +Myojin\ of\ Infinite\ Rage=1 +Myojin\ of\ Night's\ Reach=1 +Myr\ Adapter=1 +Myr\ Galvanizer=1 +Myr\ Incubator=1 +Myr\ Landshaper=1 +Myr\ Moonvessel=1 +Myr\ Propagator=1 +Myr\ Prototype=1 +Myr\ Reservoir=1 +Myr\ Retriever=1 +Myr\ Sire=1 +Myr\ Turbine=1 +Myr\ Welder=1 +Myrsmith=1 +Mysteries\ of\ the\ Deep=1 +Mystic\ Decree=1 +Mystic\ Familiar=1 +Mystic\ Genesis=1 +Mystic\ Meditation=1 +Mystic\ Melting=1 +Mystic\ of\ the\ Hidden\ Way=1 +Mystic\ Penitent=1 +Mystic\ Restraints=1 +Mystic\ Veil=1 +Mystic\ Visionary=1 +Mystic\ Zealot=1 +Mystical\ Teachings=1 +Mystifying\ Maze=1 +Mythic\ Proportions=1 +Nacatl\ Hunt-Pride=1 +Nacatl\ Outlander=1 +Nacatl\ Savage=1 +Nacatl\ War-Pride=1 +Naga\ Oracle=1 +Naga\ Vitalist=1 +Nagao,\ Bound\ by\ Honor=1 +Nagging\ Thoughts=1 +Nahiri's\ Machinations=1 +Naked\ Singularity=1 +Nameless\ Inversion=1 +Nameless\ One=1 +Nantuko\ Calmer=1 +Nantuko\ Disciple=1 +Nantuko\ Elder=1 +Nantuko\ Husk=1 +Nantuko\ Monastery=1 +Nantuko\ Shade=1 +Nantuko\ Shaman=1 +Nantuko\ Tracer=1 +Nantuko\ Vigilante=1 +Narcissism=1 +Narcolepsy=1 +Narnam\ Cobra=1 +Narnam\ Renegade=1 +Narwhal=1 +Nath's\ Elite=1 +Natural\ Connection=1 +Natural\ Obsolescence=1 +Natural\ Spring=1 +Naturalize=1 +Nature's\ Blessing=1 +Nature's\ Kiss=1 +Nature's\ Lore=1 +Nature's\ Panoply=1 +Nature's\ Ruin=1 +Nature's\ Spiral=1 +Nature's\ Way=1 +Nature's\ Will=1 +Naya\ Battlemage=1 +Naya\ Charm=1 +Naya\ Hushblade=1 +Naya\ Panorama=1 +Naya\ Sojourners=1 +Near-Death\ Experience=1 +Nearheath\ Chaplain=1 +Nearheath\ Pilgrim=1 +Nearheath\ Stalker=1 +Nebelgast\ Herald=1 +Nebuchadnezzar=1 +Necra\ Disciple=1 +Necra\ Sanctuary=1 +Necravolver=1 +Necrite=1 +Necrobite=1 +Necrogen\ Scudder=1 +Necrogen\ Spellbomb=1 +Necrogenesis=1 +Necrologia=1 +Necromancer's\ Assistant=1 +Necromancer's\ Covenant=1 +Necromancer's\ Magemark=1 +Necromancer's\ Stockpile=1 +Necromantic\ Summons=1 +Necromantic\ Thirst=1 +Necromaster\ Dragon=1 +Necroplasm=1 +Necropolis\ Fiend=1 +Necropotence=1 +Necropouncer=1 +Necrotic\ Plague=1 +Necrotic\ Sliver=1 +Need\ for\ Speed=1 +Needle\ Storm=1 +Needlebite\ Trap=1 +Needlebug=1 +Nef-Crop\ Entangler=1 +Nefarox,\ Overlord\ of\ Grixis=1 +Nefashu=1 +Neglected\ Heirloom=1 +Neheb,\ the\ Worthy=1 +Neko-Te=1 +Nekrataal=1 +Nemesis\ Mask=1 +Nemesis\ of\ Mortals=1 +Nemesis\ Trap=1 +Nephalia\ Academy=1 +Nephalia\ Drownyard=1 +Nephalia\ Moondrakes=1 +Nephalia\ Seakite=1 +Nephalia\ Smuggler=1 +Nessian\ Asp=1 +Nessian\ Courser=1 +Nessian\ Demolok=1 +Nessian\ Game\ Warden=1 +Nessian\ Wilds\ Ravager=1 +Nest\ Invader=1 +Nest\ of\ Scarabs=1 +Nested\ Ghoul=1 +Netcaster\ Spider=1 +Netherborn\ Phalanx=1 +Netter\ en-Dal=1 +Nettle\ Drone=1 +Nettletooth\ Djinn=1 +Nettlevine\ Blight=1 +Nettling\ Curse=1 +Neurok\ Commando=1 +Neurok\ Familiar=1 +Neurok\ Invisimancer=1 +Neurok\ Replica=1 +Neurok\ Transmuter=1 +Neutralizing\ Blast=1 +Neverending\ Torment=1 +New\ Benalia=1 +New\ Prahv\ Guildmage=1 +Nezumi\ Bone-Reader=1 +Nezumi\ Cutthroat=1 +Nezumi\ Graverobber=1 +Nezumi\ Shadow-Watcher=1 +Niblis\ of\ Dusk=1 +Niblis\ of\ Frost=1 +Niblis\ of\ the\ Breath=1 +Niblis\ of\ the\ Urn=1 +Night\ //\ Day=1 +Night\ Dealings=1 +Night\ Market\ Aeronaut=1 +Night\ Market\ Guard=1 +Night\ Market\ Lookout=1 +Nightbird's\ Clutches=1 +Nightcreep=1 +Nightfire\ Giant=1 +Nightguard\ Patrol=1 +Nighthaze=1 +Nighthowler=1 +Nightmare=1 +Nightmare\ Incursion=1 +Nightmare\ Lash=1 +Nightmare\ Void=1 +Nightmarish\ End=1 +Nightscape\ Apprentice=1 +Nightscape\ Battlemage=1 +Nightscape\ Familiar=1 +Nightshade\ Assassin=1 +Nightshade\ Peddler=1 +Nightshade\ Schemers=1 +Nightshade\ Stinger=1 +Nightsnare=1 +Nightsoil\ Kami=1 +Nightveil\ Specter=1 +Nihilistic\ Glee=1 +Nikko-Onna=1 +Nim\ Abomination=1 +Nim\ Deathmantle=1 +Nim\ Devourer=1 +Nim\ Grotesque=1 +Nim\ Lasher=1 +Nim\ Replica=1 +Nimana\ Sell-Sword=1 +Nimble\ Innovator=1 +Nimble-Blade\ Khenra=1 +Nimbus\ of\ the\ Isles=1 +Nimbus\ Swimmer=1 +Nimbus\ Wings=1 +Nine-Ringed\ Bo=1 +Ninth\ Bridge\ Patrol=1 +Nirkana\ Assassin=1 +Nirkana\ Cutthroat=1 +Nissa's\ Chosen=1 +Nissa's\ Expedition=1 +Nissa's\ Judgment=1 +Nissa's\ Pilgrimage=1 +Nissa's\ Revelation=1 +Niv-Mizzet,\ Dracogenius=1 +Niv-Mizzet,\ the\ Firemind=1 +Niveous\ Wisps=1 +Nivix\ Barrier=1 +Nivix\ Guildmage=1 +Nivix,\ Aerie\ of\ the\ Firemind=1 +Nivmagus\ Elemental=1 +No\ Rest\ for\ the\ Wicked=1 +No-Dachi=1 +Nobilis\ of\ War=1 +Noble\ Quarry=1 +Noble\ Stand=1 +Noble\ Templar=1 +Noble\ Vestige=1 +Nocturnal\ Raid=1 +Noggin\ Whack=1 +Noggle\ Bandit=1 +Noggle\ Bridgebreaker=1 +Noggle\ Hedge-Mage=1 +Noggle\ Ransacker=1 +Nomad\ Mythmaker=1 +Nomad\ Outpost=1 +Nomad\ Stadium=1 +Nomadic\ Elf=1 +Nomads\ en-Kor=1 +Nomads'\ Assembly=1 +Noose\ Constrictor=1 +Noosegraf\ Mob=1 +Norwood\ Priestess=1 +Norwood\ Ranger=1 +Nostalgic\ Dreams=1 +Not\ Forgotten=1 +Nourish=1 +Nova\ Chaser=1 +Nova\ Cleric=1 +Novijen\ Sages=1 +Novijen,\ Heart\ of\ Progress=1 +Noxious\ Dragon=1 +Noxious\ Vapors=1 +Noyan\ Dar,\ Roil\ Shaper=1 +Nucklavee=1 +Nuisance\ Engine=1 +Null\ Caller=1 +Null\ Champion=1 +Null\ Profusion=1 +Nullify=1 +Nullmage\ Advocate=1 +Nullmage\ Shepherd=1 +Nullstone\ Gargoyle=1 +Nulltread\ Gargantuan=1 +Numai\ Outcast=1 +Numbing\ Dose=1 +Numot,\ the\ Devastator=1 +Nurturer\ Initiate=1 +Nurturing\ Licid=1 +Nylea's\ Disciple=1 +Nylea's\ Emissary=1 +Nylea's\ Presence=1 +Nyx\ Infusion=1 +Nyx\ Weaver=1 +Nyxborn\ Eidolon=1 +Nyxborn\ Shieldmate=1 +Nyxborn\ Wolf=1 +Oak\ Street\ Innkeeper=1 +Oaken\ Brawler=1 +Oakenform=1 +Oakgnarl\ Warrior=1 +Oakheart\ Dryads=1 +Oashra\ Cultivator=1 +Oasis=1 +Oath\ of\ Chandra=1 +Oath\ of\ Ghouls=1 +Oath\ of\ Gideon=1 +Oath\ of\ Jace=1 +Oath\ of\ Mages=1 +Oath\ of\ the\ Ancient\ Wood=1 +Oathkeeper,\ Takeno's\ Daisho=1 +Oathsworn\ Giant=1 +Ob\ Nixilis,\ Unshackled=1 +Obelisk\ of\ Bant=1 +Obelisk\ of\ Esper=1 +Obelisk\ of\ Grixis=1 +Obelisk\ of\ Jund=1 +Obelisk\ of\ Naya=1 +Obelisk\ of\ Undoing=1 +Oblivion\ Crown=1 +Oblivion\ Strike=1 +Oboro\ Breezecaller=1 +Oboro\ Envoy=1 +Obscuring\ Aether=1 +Observant\ Alseid=1 +Obsessive\ Search=1 +Obsessive\ Skinner=1 +Obsianus\ Golem=1 +Obsidian\ Battle-Axe=1 +Obzedat's\ Aid=1 +Ocular\ Halo=1 +Odds\ //\ Ends=1 +Odious\ Trow=1 +Odric,\ Lunarch\ Marshal=1 +Odric,\ Master\ Tactician=1 +Odunos\ River\ Trawler=1 +Odylic\ Wraith=1 +Offalsnout=1 +Offering\ to\ Asha=1 +Ogre\ Gatecrasher=1 +Ogre\ Geargrabber=1 +Ogre\ Jailbreaker=1 +Ogre\ Marauder=1 +Ogre\ Menial=1 +Ogre\ Recluse=1 +Ogre\ Sentry=1 +Ogre\ Shaman=1 +Ogre\ Slumlord=1 +Ogre's\ Cleaver=1 +Ohran\ Yeti=1 +Ojutai\ Interceptor=1 +Ojutai\ Monument=1 +Ojutai's\ Breath=1 +Ojutai's\ Summons=1 +Oketra's\ Attendant=1 +Okina\ Nightwatch=1 +Okk=1 +Old\ Ghastbark=1 +Olivia's\ Bloodsworn=1 +Olivia's\ Dragoon=1 +Omen\ Machine=1 +Omenspeaker=1 +Omnibian=1 +Ondu\ Champion=1 +Ondu\ Cleric=1 +Ondu\ Giant=1 +Ondu\ Greathorn=1 +Ondu\ Rising=1 +Ondu\ War\ Cleric=1 +One\ Dozen\ Eyes=1 +One\ Thousand\ Lashes=1 +One\ with\ Nature=1 +One-Eyed\ Scarecrow=1 +Ongoing\ Investigation=1 +Oni\ of\ Wild\ Places=1 +Oni\ Possession=1 +Onslaught=1 +Onulet=1 +Onward\ //\ Victory=1 +Onyx\ Goblet=1 +Onyx\ Mage=1 +Oona's\ Gatewarden=1 +Oona's\ Grace=1 +Oona's\ Prowler=1 +Ooze\ Flux=1 +Ooze\ Garden=1 +Opal\ Acrolith=1 +Opal\ Avenger=1 +Opal\ Champion=1 +Opal\ Gargoyle=1 +Opal\ Guardian=1 +Opal\ Lake\ Gatekeepers=1 +Opal\ Titan=1 +Opal-Eye,\ Konda's\ Yojimbo=1 +Opaline\ Bracers=1 +Opaline\ Unicorn=1 +Open\ into\ Wonder=1 +Open\ the\ Armory=1 +Ophidian=1 +Ophidian\ Eye=1 +Opportunist=1 +Opportunity=1 +Oppressive\ Rays=1 +Oppressive\ Will=1 +Opulent\ Palace=1 +Oracle\ of\ Bones=1 +Oracle\ of\ Dust=1 +Oracle\ of\ Nectars=1 +Oracle's\ Vault=1 +Oran-Rief\ Hydra=1 +Oran-Rief\ Invoker=1 +Oran-Rief\ Survivalist=1 +Orator\ of\ Ojutai=1 +Oraxid=1 +Orbs\ of\ Warding=1 +Orbweaver\ Kumo=1 +Orc\ General=1 +Orc\ Sureshot=1 +Orchard\ Spirit=1 +Orchard\ Warden=1 +Orcish\ Artillery=1 +Orcish\ Bloodpainter=1 +Orcish\ Cannonade=1 +Orcish\ Cannoneers=1 +Orcish\ Captain=1 +Orcish\ Conscripts=1 +Orcish\ Farmer=1 +Orcish\ Librarian=1 +Orcish\ Lumberjack=1 +Orcish\ Oriflamme=1 +Orcish\ Spy=1 +Orcish\ Veteran=1 +Ordeal\ of\ Erebos=1 +Ordeal\ of\ Heliod=1 +Ordeal\ of\ Nylea=1 +Ordeal\ of\ Purphoros=1 +Ordeal\ of\ Thassa=1 +Order\ //\ Chaos=1 +Order\ of\ the\ Golden\ Cricket=1 +Order\ of\ the\ Sacred\ Bell=1 +Order\ of\ the\ Sacred\ Torch=1 +Order\ of\ the\ Stars=1 +Order\ of\ the\ White\ Shield=1 +Order\ of\ Whiteclay=1 +Order\ of\ Yawgmoth=1 +Ordruun\ Commando=1 +Ordruun\ Veteran=1 +Ore\ Gorger=1 +Oreskos\ Sun\ Guide=1 +Oreskos\ Swiftclaw=1 +Organ\ Grinder=1 +Orgg=1 +Origin\ Spellbomb=1 +Orim's\ Prayer=1 +Orim's\ Touch=1 +Oriss,\ Samite\ Guardian=1 +Ornamental\ Courage=1 +Ornate\ Kanzashi=1 +Ornery\ Kudu=1 +Ornitharch=1 +Orochi\ Eggwatcher=1 +Orochi\ Leafcaller=1 +Orochi\ Sustainer=1 +Orzhov\ Advokist=1 +Orzhov\ Basilica=1 +Orzhov\ Cluestone=1 +Orzhov\ Euthanist=1 +Orzhov\ Guildgate=1 +Orzhov\ Guildmage=1 +Orzhov\ Keyrune=1 +Orzhov\ Signet=1 +Orzhova,\ the\ Church\ of\ Deals=1 +Osai\ Vultures=1 +Ostiary\ Thrull=1 +Otarian\ Juggernaut=1 +Otherworld\ Atlas=1 +Otherworldly\ Journey=1 +Otherworldly\ Outburst=1 +Ouphe\ Vandals=1 +Outland\ Boar=1 +Outland\ Colossus=1 +Outmaneuver=1 +Outnumber=1 +Outrage\ Shaman=1 +Outrider\ en-Kor=1 +Outrider\ of\ Jhess=1 +Outwit=1 +Ovalchase\ Daredevil=1 +Ovalchase\ Dragster=1 +Overblaze=1 +Overeager\ Apprentice=1 +Overload=1 +Overrule=1 +Overrun=1 +Overwhelm=1 +Overwhelming\ Denial=1 +Overwhelming\ Instinct=1 +Overwhelming\ Stampede=1 +Ovinize=1 +Ovinomancer=1 +Oviya\ Pashiri,\ Sage\ Lifecrafter=1 +Owl\ Familiar=1 +Oxidda\ Golem=1 +Oxidda\ Scrapmelter=1 +Oxidize=1 +Oyobi,\ Who\ Split\ the\ Heavens=1 +Pacification\ Array=1 +Pacifism=1 +Pack\ Guardian=1 +Pack's\ Disdain=1 +Padeem,\ Consul\ of\ Innovation=1 +Pain\ Magnification=1 +Pain\ Seer=1 +Painful\ Lesson=1 +Painsmith=1 +Painted\ Bluffs=1 +Painwracker\ Oni=1 +Palace\ Familiar=1 +Palace\ Guard=1 +Paladin\ of\ Prahv=1 +Pale\ Recluse=1 +Pale\ Rider\ of\ Trostad=1 +Pale\ Wayfarer=1 +Paleoloth=1 +Palisade\ Giant=1 +Palladia-Mors=1 +Palladium\ Myr=1 +Palliation\ Accord=1 +Pallid\ Mycoderm=1 +Panic\ Attack=1 +Panic\ Spellbomb=1 +Panther\ Warriors=1 +Paperfin\ Rascal=1 +Paragon\ of\ Eternal\ Wilds=1 +Paragon\ of\ Fierce\ Defiance=1 +Paragon\ of\ Gathering\ Mists=1 +Paragon\ of\ New\ Dawns=1 +Paragon\ of\ Open\ Graves=1 +Parallax\ Wave=1 +Parallectric\ Feedback=1 +Parallel\ Thoughts=1 +Paralyze=1 +Paralyzing\ Grasp=1 +Paranoid\ Delusions=1 +Paranoid\ Parish-Blade=1 +Paraselene=1 +Parasitic\ Implant=1 +Parasitic\ Strix=1 +Pardic\ Collaborator=1 +Pardic\ Dragon=1 +Pardic\ Firecat=1 +Pardic\ Lancer=1 +Pardic\ Swordsmith=1 +Pariah's\ Shield=1 +Paroxysm=1 +Parting\ Thoughts=1 +Patagia\ Golem=1 +Patagia\ Viper=1 +Patchwork\ Gnomes=1 +Path\ of\ Anger's\ Flame=1 +Path\ of\ Bravery=1 +Path\ of\ Peace=1 +Pathmaker\ Initiate=1 +Pathrazer\ of\ Ulamog=1 +Pathway\ Arrows=1 +Patriarch's\ Desire=1 +Patrol\ Hound=1 +Patrol\ Signaler=1 +Patron\ of\ the\ Akki=1 +Patron\ of\ the\ Kitsune=1 +Patron\ of\ the\ Moon=1 +Patron\ of\ the\ Nezumi=1 +Patron\ of\ the\ Valiant=1 +Patron\ of\ the\ Wild=1 +Pavel\ Maliki=1 +Pay\ No\ Heed=1 +Peace\ and\ Quiet=1 +Peace\ of\ Mind=1 +Peace\ Strider=1 +Peacewalker\ Colossus=1 +Peach\ Garden\ Oath=1 +Peak\ Eruption=1 +Pearl\ Shard=1 +Peel\ from\ Reality=1 +Peema\ Aether-Seer=1 +Peema\ Outrider=1 +Peer\ Pressure=1 +Pegasus\ Charger=1 +Pegasus\ Refuge=1 +Pelakka\ Wurm=1 +Penance=1 +Pendelhaven\ Elder=1 +Pendrell\ Drake=1 +Pennon\ Blade=1 +Pensive\ Minotaur=1 +Pentagram\ of\ the\ Ages=1 +Pentarch\ Paladin=1 +Pentarch\ Ward=1 +Pentavus=1 +Penumbra\ Bobcat=1 +Penumbra\ Kavu=1 +Penumbra\ Spider=1 +Penumbra\ Wurm=1 +Peppersmoke=1 +Peregrination=1 +Peregrine\ Griffin=1 +Peregrine\ Mask=1 +Perilous\ Forays=1 +Perilous\ Myr=1 +Perilous\ Predicament=1 +Perilous\ Shadow=1 +Perimeter\ Captain=1 +Perish\ the\ Thought=1 +Permafrost\ Trap=1 +Permeating\ Mass=1 +Perpetual\ Timepiece=1 +Perplex=1 +Perplexing\ Chimera=1 +Persecute=1 +Persuasion=1 +Pestilence\ Demon=1 +Pestilent\ Souleater=1 +Petalmane\ Baku=1 +Petals\ of\ Insight=1 +Petra\ Sphinx=1 +Petradon=1 +Petravark=1 +Petrified\ Wood-Kin=1 +Pewter\ Golem=1 +Phalanx\ Formation=1 +Phalanx\ Leader=1 +Phantasmal\ Abomination=1 +Phantasmal\ Dragon=1 +Phantasmal\ Fiend=1 +Phantasmal\ Forces=1 +Phantasmal\ Mount=1 +Phantasmal\ Terrain=1 +Phantatog=1 +Phantom\ Centaur=1 +Phantom\ Flock=1 +Phantom\ General=1 +Phantom\ Monster=1 +Phantom\ Nomad=1 +Phantom\ Tiger=1 +Phantom\ Warrior=1 +Phantom\ Whelp=1 +Phantom\ Wings=1 +Phantom\ Wurm=1 +Pharagax\ Giant=1 +Pharika's\ Chosen=1 +Pharika's\ Cure=1 +Pharika's\ Disciple=1 +Pharika's\ Mender=1 +Pheres-Band\ Centaurs=1 +Pheres-Band\ Raiders=1 +Pheres-Band\ Thunderhoof=1 +Pheres-Band\ Tromper=1 +Pheres-Band\ Warchief=1 +Phosphorescent\ Feast=1 +Phthisis=1 +Phylactery\ Lich=1 +Phyresis=1 +Phyrexia's\ Core=1 +Phyrexian\ Battleflies=1 +Phyrexian\ Bloodstock=1 +Phyrexian\ Boon=1 +Phyrexian\ Broodlings=1 +Phyrexian\ Colossus=1 +Phyrexian\ Debaser=1 +Phyrexian\ Defiler=1 +Phyrexian\ Digester=1 +Phyrexian\ Driver=1 +Phyrexian\ Gargantua=1 +Phyrexian\ Ghoul=1 +Phyrexian\ Grimoire=1 +Phyrexian\ Hulk=1 +Phyrexian\ Hydra=1 +Phyrexian\ Ingester=1 +Phyrexian\ Ironfoot=1 +Phyrexian\ Juggernaut=1 +Phyrexian\ Monitor=1 +Phyrexian\ Reaper=1 +Phyrexian\ Scuta=1 +Phyrexian\ Slayer=1 +Phyrexian\ Snowcrusher=1 +Phyrexian\ Splicer=1 +Phyrexian\ Swarmlord=1 +Phyrexian\ Totem=1 +Phyrexian\ Vault=1 +Phyrexian\ War\ Beast=1 +Phytoburst=1 +Phytohydra=1 +Phytotitan=1 +Pia\ Nalaar=1 +Pia's\ Revolution=1 +Pianna,\ Nomad\ Captain=1 +Pick\ the\ Brain=1 +Pieces\ of\ the\ Puzzle=1 +Pierce\ Strider=1 +Piety\ Charm=1 +Pilfered\ Plans=1 +Pilgrim\ of\ Justice=1 +Pilgrim\ of\ the\ Fires=1 +Pilgrim\ of\ Virtue=1 +Pilgrim's\ Eye=1 +Pillar\ of\ Light=1 +Pillar\ of\ War=1 +Pillarfield\ Ox=1 +Pillory\ of\ the\ Sleepless=1 +Pin\ to\ the\ Earth=1 +Pincer\ Spider=1 +Pincher\ Beetles=1 +Pine\ Barrens=1 +Pine\ Walker=1 +Pinecrest\ Ridge=1 +Pinion\ Feast=1 +Pinnacle\ of\ Rage=1 +Pious\ Evangel=1 +Pious\ Kitsune=1 +Piper's\ Melody=1 +Piranha\ Marsh=1 +Pirate\ Ship=1 +Pit\ Fight=1 +Pit\ Imp=1 +Pit\ Keeper=1 +Pit\ Spawn=1 +Pitchburn\ Devils=1 +Pitchstone\ Wall=1 +Pitfall\ Trap=1 +Pith\ Driller=1 +Pitiless\ Horde=1 +Pitiless\ Vizier=1 +Plagiarize=1 +Plague\ Beetle=1 +Plague\ Boiler=1 +Plague\ Dogs=1 +Plague\ Myr=1 +Plague\ of\ Vermin=1 +Plague\ Sliver=1 +Plague\ Spores=1 +Plague\ Stinger=1 +Plague\ Wind=1 +Plague\ Witch=1 +Plagued\ Rusalka=1 +Plaguemaw\ Beast=1 +Plains=1 +Planar\ Chaos=1 +Planar\ Cleansing=1 +Planar\ Despair=1 +Planar\ Gate=1 +Planar\ Guide=1 +Planar\ Outburst=1 +Planar\ Overlay=1 +Planeswalker's\ Mirth=1 +Planeswalker's\ Mischief=1 +Planeswalker's\ Scorn=1 +Plasma\ Elemental=1 +Plated\ Crusher=1 +Plated\ Geopede=1 +Plated\ Pegasus=1 +Plated\ Rootwalla=1 +Plated\ Seastrider=1 +Plated\ Slagwurm=1 +Plaxcaster\ Frogling=1 +Plaxmanta=1 +Plea\ for\ Guidance=1 +Pledge\ of\ Loyalty=1 +Plover\ Knights=1 +Plow\ Through\ Reito=1 +Plumes\ of\ Peace=1 +Plumeveil=1 +Plummet=1 +Plunder=1 +Poison\ the\ Well=1 +Poisonbelly\ Ogre=1 +Polis\ Crusher=1 +Pollen\ Lullaby=1 +Pollen\ Remedy=1 +Pollenbright\ Wings=1 +Polymorphist's\ Jest=1 +Polymorphous\ Rush=1 +Pontiff\ of\ Blight=1 +Ponyback\ Brigade=1 +Pooling\ Venom=1 +Porcelain\ Legionnaire=1 +Pore\ Over\ the\ Pages=1 +Port\ Inspector=1 +Portent\ of\ Betrayal=1 +Possessed\ Aven=1 +Possessed\ Barbarian=1 +Possessed\ Centaur=1 +Possessed\ Nomad=1 +Possessed\ Skaab=1 +Postmortem\ Lunge=1 +Poultice\ Sliver=1 +Pouncing\ Cheetah=1 +Pouncing\ Jaguar=1 +Pouncing\ Kavu=1 +Pouncing\ Wurm=1 +Power\ Armor=1 +Power\ Conduit=1 +Power\ of\ Fire=1 +Power\ Sink=1 +Power\ Taint=1 +Prahv,\ Spires\ of\ Order=1 +Prakhata\ Club\ Security=1 +Prakhata\ Pillar-Bug=1 +Precinct\ Captain=1 +Precise\ Strike=1 +Precursor\ Golem=1 +Predator\ Dragon=1 +Predator,\ Flagship=1 +Predator's\ Rapport=1 +Predator's\ Strike=1 +Predatory\ Advantage=1 +Predatory\ Focus=1 +Predatory\ Hunger=1 +Predatory\ Nightstalker=1 +Predatory\ Rampage=1 +Preeminent\ Captain=1 +Prepare\ //\ Fight=1 +Prescient\ Chimera=1 +Presence\ of\ the\ Master=1 +Presence\ of\ the\ Wise=1 +Press\ for\ Answers=1 +Press\ into\ Service=1 +Press\ the\ Advantage=1 +Pressure\ Point=1 +Prey\ Upon=1 +Prey's\ Vengeance=1 +Prickleboar=1 +Prickly\ Boggart=1 +Pride\ Guardian=1 +Priest\ of\ Iroas=1 +Priest\ of\ the\ Blood\ Rite=1 +Priest\ of\ Urabrask=1 +Priests\ of\ Norn=1 +Primal\ Bellow=1 +Primal\ Clay=1 +Primal\ Cocoon=1 +Primal\ Druid=1 +Primal\ Forcemage=1 +Primal\ Frenzy=1 +Primal\ Huntbeast=1 +Primal\ Rage=1 +Primal\ Visitation=1 +Primal\ Whisperer=1 +Primeval\ Force=1 +Primeval\ Light=1 +Primeval\ Protector=1 +Primoc\ Escapee=1 +Primordial\ Sage=1 +Princess\ Lucrezia=1 +Prism\ Array=1 +Prism\ Ring=1 +Prismatic\ Geoscope=1 +Prison\ Barricade=1 +Prison\ Term=1 +Pristine\ Angel=1 +Pristine\ Skywise=1 +Private\ Research=1 +Prizefighter\ Construct=1 +Processor\ Assault=1 +Prodigal\ Pyromancer=1 +Prodigal\ Sorcerer=1 +Profane\ Command=1 +Profane\ Memento=1 +Profane\ Prayers=1 +Profaner\ of\ the\ Dead=1 +Profit\ //\ Loss=1 +Profound\ Journey=1 +Prognostic\ Sphinx=1 +Promise\ of\ Power=1 +Promised\ Kannushi=1 +Propeller\ Pioneer=1 +Proper\ Burial=1 +Prophet\ of\ Distortion=1 +Prophet\ of\ Kruphix=1 +Prophetic\ Bolt=1 +Prophetic\ Ravings=1 +Protean\ Hydra=1 +Protect\ //\ Serve=1 +Protection\ of\ the\ Hekma=1 +Proteus\ Machine=1 +Protomatter\ Powder=1 +Prototype\ Portal=1 +Providence=1 +Provoke=1 +Prowess\ of\ the\ Fair=1 +Prowler's\ Helm=1 +Prowling\ Nightstalker=1 +Prowling\ Pangolin=1 +Prying\ Questions=1 +Psionic\ Gift=1 +Psionic\ Sliver=1 +Psychatog=1 +Psychic\ Barrier=1 +Psychic\ Drain=1 +Psychic\ Intrusion=1 +Psychic\ Membrane=1 +Psychic\ Miasma=1 +Psychic\ Overload=1 +Psychic\ Possession=1 +Psychic\ Puppetry=1 +Psychic\ Rebuttal=1 +Psychic\ Spiral=1 +Psychic\ Strike=1 +Psychic\ Surgery=1 +Psychic\ Trance=1 +Psychogenic\ Probe=1 +Psychotic\ Episode=1 +Psychotic\ Fury=1 +Psychotic\ Haze=1 +Psychotrope\ Thallid=1 +Public\ Execution=1 +Pull\ from\ Eternity=1 +Pull\ from\ the\ Deep=1 +Pull\ Under=1 +Pulling\ Teeth=1 +Pulmonic\ Sliver=1 +Pulsating\ Illusion=1 +Pulse\ of\ Murasa=1 +Pulse\ of\ the\ Dross=1 +Pulse\ of\ the\ Grid=1 +Pulse\ of\ the\ Tangle=1 +Pulse\ Tracker=1 +Puncture\ Blast=1 +Puncturing\ Light=1 +Punish\ the\ Enemy=1 +Puppet\ Conjurer=1 +Puppeteer=1 +Puppeteer\ Clique=1 +Pure\ //\ Simple=1 +Puresight\ Merrow=1 +Purge=1 +Purge\ the\ Profane=1 +Purging\ Scythe=1 +Purify\ the\ Grave=1 +Purity=1 +Purphoros's\ Emissary=1 +Pursue\ Glory=1 +Pursuit\ of\ Flight=1 +Pursuit\ of\ Knowledge=1 +Pus\ Kami=1 +Put\ Away=1 +Putrefax=1 +Putrefy=1 +Putrid\ Cyclops=1 +Putrid\ Imp=1 +Putrid\ Raptor=1 +Putrid\ Warrior=1 +Pygmy\ Kavu=1 +Pygmy\ Pyrosaur=1 +Pygmy\ Troll=1 +Pyramid\ of\ the\ Pantheon=1 +Pyre\ Charger=1 +Pyre\ Hound=1 +Pyreheart\ Wolf=1 +Pyrewild\ Shaman=1 +Pyric\ Salamander=1 +Pyrite\ Spellbomb=1 +Pyroclasm=1 +Pyroclast\ Consul=1 +Pyroconvergence=1 +Pyrohemia=1 +Pyromancer's\ Assault=1 +Pyromancer's\ Gauntlet=1 +Pyromancer's\ Swath=1 +Pyromania=1 +Pyromatics=1 +Pyrotechnics=1 +Python=1 +Pyxis\ of\ Pandemonium=1 +Qal\ Sisma\ Behemoth=1 +Qarsi\ Deceiver=1 +Qarsi\ High\ Priest=1 +Qarsi\ Sadist=1 +Qasali\ Ambusher=1 +Quag\ Sickness=1 +Quag\ Vampires=1 +Quagmire\ Druid=1 +Quarry\ Colossus=1 +Quarry\ Hauler=1 +Quash=1 +Quenchable\ Fire=1 +Quest\ for\ Renewal=1 +Quest\ for\ the\ Gemblades=1 +Quest\ for\ the\ Goblin\ Lord=1 +Quest\ for\ the\ Gravelord=1 +Quest\ for\ the\ Holy\ Relic=1 +Quest\ for\ Ula's\ Temple=1 +Quick\ Sliver=1 +Quickchange=1 +Quicken=1 +Quickening\ Licid=1 +Quicksand=1 +Quicksilver\ Behemoth=1 +Quicksilver\ Dragon=1 +Quicksilver\ Elemental=1 +Quicksilver\ Fountain=1 +Quicksilver\ Geyser=1 +Quicksmith\ Genius=1 +Quicksmith\ Rebel=1 +Quicksmith\ Spy=1 +Quiet\ Contemplation=1 +Quiet\ Purity=1 +Quiet\ Speculation=1 +Quietus\ Spike=1 +Quill-Slinger\ Boggart=1 +Quilled\ Slagwurm=1 +Quilled\ Sliver=1 +Quilled\ Wolf=1 +Quillmane\ Baku=1 +Quirion\ Dryad=1 +Quirion\ Explorer=1 +Qumulox=1 +Rabble-Rouser=1 +Rabid\ Bite=1 +Rabid\ Bloodsucker=1 +Rabid\ Elephant=1 +Rabid\ Rats=1 +Rabid\ Wolverines=1 +Rabid\ Wombat=1 +Rack\ and\ Ruin=1 +Radha,\ Heir\ to\ Keld=1 +Radiant\ Purge=1 +Radiant,\ Archangel=1 +Radiant's\ Dragoons=1 +Radjan\ Spirit=1 +Ragamuffyn=1 +Rage\ Extractor=1 +Rage\ Forger=1 +Rage\ Nimbus=1 +Rage\ of\ Purphoros=1 +Rage\ Reflection=1 +Rage\ Weaver=1 +Rageblood\ Shaman=1 +Rageform=1 +Ragemonger=1 +Ragged\ Veins=1 +Raging\ Goblin=1 +Raging\ Minotaur=1 +Raging\ Spirit=1 +Ragnar=1 +Rags\ //\ Riches=1 +Raid\ Bombardment=1 +Raiders'\ Spoils=1 +Rain\ of\ Blades=1 +Rain\ of\ Rust=1 +Rain\ of\ Salt=1 +Rain\ of\ Thorns=1 +Rainbow\ Crow=1 +Raise\ Dead=1 +Raise\ the\ Alarm=1 +Raised\ by\ Wolves=1 +Raka\ Disciple=1 +Raka\ Sanctuary=1 +Rakalite=1 +Rakavolver=1 +Rakdos\ Augermage=1 +Rakdos\ Cackler=1 +Rakdos\ Cluestone=1 +Rakdos\ Drake=1 +Rakdos\ Guildgate=1 +Rakdos\ Guildmage=1 +Rakdos\ Ickspitter=1 +Rakdos\ Keyrune=1 +Rakdos\ Pit\ Dragon=1 +Rakdos\ Ragemutt=1 +Rakdos\ Ringleader=1 +Rakdos\ Riteknife=1 +Rakdos\ Shred-Freak=1 +Rakdos\ Signet=1 +Rakdos\ the\ Defiler=1 +Rakeclaw\ Gargantuan=1 +Raking\ Canopy=1 +Rakish\ Heir=1 +Rakka\ Mar=1 +Rakshasa\ Deathdealer=1 +Rakshasa\ Gravecaller=1 +Rakshasa\ Vizier=1 +Rakshasa's\ Disdain=1 +Rakshasa's\ Secret=1 +Rally\ the\ Forces=1 +Rally\ the\ Horde=1 +Rally\ the\ Peasants=1 +Rally\ the\ Righteous=1 +Ramosian\ Revivalist=1 +Rampant\ Growth=1 +Ramroller=1 +Ramses\ Overdark=1 +Rancid\ Rats=1 +Ranger\ en-Vec=1 +Ranger's\ Guile=1 +Ranger's\ Path=1 +Ransack=1 +Rapacious\ One=1 +Rathi\ Dragon=1 +Rathi\ Intimidator=1 +Rathi\ Trapper=1 +Rats\ of\ Rath=1 +Rats'\ Feast=1 +Rattleblaze\ Scarecrow=1 +Rattleclaw\ Mystic=1 +Ravaged\ Highlands=1 +Ravaging\ Blaze=1 +Ravaging\ Riftwurm=1 +Raven\ Familiar=1 +Raven\ Guild\ Initiate=1 +Ravenous\ Bloodseeker=1 +Ravenous\ Demon=1 +Ravenous\ Intruder=1 +Ravenous\ Skirge=1 +Ravenous\ Vampire=1 +Raving\ Oni-Slave=1 +Ray\ of\ Command=1 +Ray\ of\ Dissolution=1 +Ray\ of\ Distortion=1 +Razia,\ Boros\ Archangel=1 +Razia's\ Purification=1 +Razing\ Snidd=1 +Razor\ Barrier=1 +Razor\ Boomerang=1 +Razor\ Swine=1 +Razorfield\ Rhino=1 +Razorfin\ Abolisher=1 +Razorfoot\ Griffin=1 +Razorgrass\ Screen=1 +Razorjaw\ Oni=1 +Razormane\ Masticore=1 +Razortooth\ Rats=1 +Reach\ of\ Branches=1 +Reach\ of\ Shadows=1 +Reach\ Through\ Mists=1 +Read\ the\ Bones=1 +Ready\ //\ Willing=1 +Reality\ Anchor=1 +Reality\ Hemorrhage=1 +Reality\ Spasm=1 +Reality\ Strobe=1 +Realm\ Razer=1 +Realm\ Seekers=1 +Realms\ Uncharted=1 +Realmwright=1 +Reap\ the\ Seagraf=1 +Reap\ What\ Is\ Sown=1 +Reaper\ of\ Flight\ Moonsilver=1 +Reaper\ of\ Sheoldred=1 +Reaper\ of\ the\ Wilds=1 +Reassembling\ Skeleton=1 +Reave\ Soul=1 +Reaver\ Drone=1 +Rebellion\ of\ the\ Flamekin=1 +Reborn\ Hope=1 +Rebuff\ the\ Wicked=1 +Rebuke=1 +Rebuking\ Ceremony=1 +Recantation=1 +Reciprocate=1 +Reckless\ Cohort=1 +Reckless\ Fireweaver=1 +Reckless\ Imp=1 +Reckless\ Ogre=1 +Reckless\ One=1 +Reckless\ Racer=1 +Reckless\ Reveler=1 +Reckless\ Scholar=1 +Reckless\ Spite=1 +Reckless\ Waif=1 +Reckless\ Wurm=1 +Reclaim=1 +Reclaiming\ Vines=1 +Reclusive\ Artificer=1 +Reclusive\ Wight=1 +Recollect=1 +Reconstruction=1 +Recover=1 +Recumbent\ Bliss=1 +Recuperate=1 +Red\ Sun's\ Zenith=1 +Redeem=1 +Redeem\ the\ Lost=1 +Redirect=1 +Reduce\ //\ Rubble=1 +Reduce\ in\ Stature=1 +Reduce\ to\ Ashes=1 +Redwood\ Treefolk=1 +Reef\ Shaman=1 +Reflex\ Sliver=1 +Reflexes=1 +Refocus=1 +Refraction\ Trap=1 +Refresh=1 +Refurbish=1 +Regathan\ Firecat=1 +Regeneration=1 +Regress=1 +Reign\ of\ the\ Pit=1 +Reinforced\ Bulwark=1 +Reinforcements=1 +Reiterate=1 +Reito\ Lantern=1 +Reiver\ Demon=1 +Rekindled\ Flame=1 +Release\ the\ Ants=1 +Relentless\ Assault=1 +Relentless\ Hunter=1 +Relentless\ Skaabs=1 +Relic\ Barrier=1 +Relic\ Putrescence=1 +Relic\ Seeker=1 +Relic\ Ward=1 +Relief\ Captain=1 +Reliquary\ Monk=1 +Remedy=1 +Remember\ the\ Fallen=1 +Reminisce=1 +Remorseless\ Punishment=1 +Rend\ Flesh=1 +Rending\ Vines=1 +Renegade\ Doppelganger=1 +Renegade\ Freighter=1 +Renegade\ Krasis=1 +Renegade\ Tactics=1 +Renegade\ Warlord=1 +Renegade\ Wheelsmith=1 +Renegade's\ Getaway=1 +Renewed\ Faith=1 +Renounce\ the\ Guilds=1 +Renowned\ Weaver=1 +Repay\ in\ Kind=1 +Repeal=1 +Repel=1 +Repel\ Intruders=1 +Repel\ the\ Abominable=1 +Repel\ the\ Darkness=1 +Repentance=1 +Reprisal=1 +Requiem\ Angel=1 +Reroute=1 +Rescind=1 +Rescue=1 +Rescue\ from\ the\ Underworld=1 +Research\ //\ Development=1 +Research\ Assistant=1 +Research\ the\ Deep=1 +Reservoir\ Walker=1 +Resilient\ Wanderer=1 +Resistance\ Fighter=1 +Resize=1 +Resolute\ Archangel=1 +Resolute\ Blademaster=1 +Resounding\ Roar=1 +Resounding\ Silence=1 +Resounding\ Thunder=1 +Resounding\ Wave=1 +Resourceful\ Return=1 +Resplendent\ Mentor=1 +Restless\ Apparition=1 +Restless\ Bones=1 +Restless\ Dreams=1 +Restock=1 +Restoration\ Gearsmith=1 +Restoration\ Specialist=1 +Restore\ the\ Peace=1 +Restrain=1 +Resupply=1 +Resurrection=1 +Resuscitate=1 +Retaliate=1 +Retaliation=1 +Retaliator\ Griffin=1 +Retraction\ Helix=1 +Retreat\ to\ Coralhelm=1 +Retreat\ to\ Emeria=1 +Retreat\ to\ Hagra=1 +Retreat\ to\ Kazandu=1 +Retreat\ to\ Valakut=1 +Retribution=1 +Retribution\ of\ the\ Ancients=1 +Retromancer=1 +Return\ to\ the\ Earth=1 +Returned\ Centaur=1 +Returned\ Phalanx=1 +Returned\ Reveler=1 +Revealing\ Wind=1 +Reveka,\ Wizard\ Savant=1 +Revel\ of\ the\ Fallen\ God=1 +Revelsong\ Horn=1 +Revenant=1 +Revenant\ Patriarch=1 +Revenge\ of\ the\ Hunted=1 +Reverberate=1 +Revered\ Elder=1 +Revered\ Unicorn=1 +Reverent\ Hunter=1 +Reverse\ Damage=1 +Reverse\ the\ Sands=1 +Revive=1 +Revive\ the\ Fallen=1 +Reviving\ Dose=1 +Reviving\ Melody=1 +Reviving\ Vapors=1 +Revoke\ Existence=1 +Revoke\ Privileges=1 +Revolutionary\ Rebuff=1 +Reward\ the\ Faithful=1 +Rewards\ of\ Diversity=1 +Rewind=1 +Rhet-Crop\ Spearmaster=1 +Rhonas's\ Monument=1 +Rhox=1 +Rhox\ Brute=1 +Rhox\ Charger=1 +Rhox\ Maulers=1 +Rhox\ Meditant=1 +Rhox\ Pikemaster=1 +Rhox\ War\ Monk=1 +Rhystic\ Lightning=1 +Rhystic\ Shield=1 +Rib\ Cage\ Spider=1 +Ribbon\ Snake=1 +Ribbons\ of\ the\ Reikai=1 +Riddle\ of\ Lightning=1 +Riddlesmith=1 +Ride\ Down=1 +Riders\ of\ Gavony=1 +Ridge\ Rannet=1 +Ridged\ Kusite=1 +Ridgeline\ Rager=1 +Ridgescale\ Tusker=1 +Ridgetop\ Raptor=1 +Rift\ Elemental=1 +Riftmarked\ Knight=1 +Riftsweeper=1 +Riftwing\ Cloudskate=1 +Righteous\ Aura=1 +Righteous\ Authority=1 +Righteous\ Blow=1 +Righteous\ Charge=1 +Righteousness=1 +Rime\ Transfusion=1 +Rimebound\ Dead=1 +Rimehorn\ Aurochs=1 +Rimewind\ Cryomancer=1 +Rimewind\ Taskmage=1 +Ring\ of\ Evos\ Isle=1 +Ring\ of\ Gix=1 +Ring\ of\ Kalonia=1 +Ring\ of\ Ma'r?f=1 +Ring\ of\ Renewal=1 +Ring\ of\ Thune=1 +Ring\ of\ Xathrid=1 +Ringwarden\ Owl=1 +Riot\ Control=1 +Riot\ Devils=1 +Riot\ Gear=1 +Riot\ Piker=1 +Riot\ Ringleader=1 +Riot\ Spikes=1 +Rip-Clan\ Crasher=1 +Riparian\ Tiger=1 +Ripscale\ Predator=1 +Riptide\ Chimera=1 +Riptide\ Chronologist=1 +Riptide\ Pilferer=1 +Riptide\ Shapeshifter=1 +Rise\ from\ the\ Grave=1 +Rise\ from\ the\ Tides=1 +Rise\ of\ Eagles=1 +Rise\ to\ the\ Challenge=1 +Risen\ Sanctuary=1 +Rishkar's\ Expertise=1 +Rising\ Miasma=1 +Rite\ of\ Ruin=1 +Rite\ of\ the\ Serpent=1 +Rite\ of\ Undoing=1 +Rites\ of\ Initiation=1 +Rites\ of\ Reaping=1 +Rites\ of\ Refusal=1 +Rites\ of\ Spring=1 +Rith's\ Attendant=1 +Ritual\ of\ Restoration=1 +Ritual\ of\ Steel=1 +Ritual\ of\ the\ Machine=1 +Ritual\ of\ the\ Returned=1 +Rivalry=1 +Rivals'\ Duel=1 +Riven\ Turnbull=1 +River\ Bear=1 +River\ Merfolk=1 +River\ Serpent=1 +River's\ Grasp=1 +Riverfall\ Mimic=1 +Riverwheel\ Aerialists=1 +Rix\ Maadi\ Guildmage=1 +Rix\ Maadi,\ Dungeon\ Palace=1 +Roar\ of\ Challenge=1 +Roar\ of\ Reclamation=1 +Roar\ of\ the\ Wurm=1 +Roaring\ Primadox=1 +Roaring\ Slagwurm=1 +Robe\ of\ Mirrors=1 +Roc\ Egg=1 +Roc\ of\ Kher\ Ridges=1 +Rock\ Badger=1 +Rock\ Jockey=1 +Rock\ Slide=1 +Rockcaster\ Platoon=1 +Rockslide\ Ambush=1 +Rocky\ Tar\ Pit=1 +Rod\ of\ Ruin=1 +Rofellos,\ Llanowar\ Emissary=1 +Rogue\ Kavu=1 +Rogue's\ Gloves=1 +Rogue's\ Passage=1 +Roil\ Elemental=1 +Roil\ Spout=1 +Roil's\ Retribution=1 +Roiling\ Horror=1 +Roiling\ Terrain=1 +Roiling\ Waters=1 +Roilmage's\ Trick=1 +Rollick\ of\ Abandon=1 +Rolling\ Spoil=1 +Rolling\ Stones=1 +Rolling\ Temblor=1 +Rolling\ Thunder=1 +Ronin\ Cavekeeper=1 +Ronin\ Cliffrider=1 +Ronin\ Houndmaster=1 +Ronin\ Warclub=1 +Ronom\ Hulk=1 +Ronom\ Unicorn=1 +Roofstalker\ Wight=1 +Rooftop\ Storm=1 +Root\ Greevil=1 +Root\ Out=1 +Root-Kin\ Ally=1 +Rootborn\ Defenses=1 +Rootbreaker\ Wurm=1 +Rootgrapple=1 +Rooting\ Kavu=1 +Rootrunner=1 +Roots=1 +Rootwalla=1 +Rootwater\ Alligator=1 +Rootwater\ Commando=1 +Rootwater\ Depths=1 +Rootwater\ Diver=1 +Rootwater\ Hunter=1 +Rootwater\ Matriarch=1 +Rootwater\ Mystic=1 +Rorix\ Bladewing=1 +Rot\ Farm\ Skeleton=1 +Rot\ Shambler=1 +Roterothopter=1 +Rotfeaster\ Maggot=1 +Rotted\ Hulk=1 +Rotted\ Hystrix=1 +Rottenheart\ Ghoul=1 +Rotting\ Mastodon=1 +Rough\ //\ Tumble=1 +Roughshod\ Mentor=1 +Rouse\ the\ Mob=1 +Royal\ Assassin=1 +Royal\ Trooper=1 +Rubbleback\ Rhino=1 +Rubblebelt\ Maaka=1 +Rubblebelt\ Raiders=1 +Rubblehulk=1 +Rude\ Awakening=1 +Rugged\ Highlands=1 +Ruham\ Djinn=1 +Ruin\ in\ Their\ Wake=1 +Ruin\ Processor=1 +Ruination\ Guide=1 +Ruination\ Wurm=1 +Ruinous\ Gremlin=1 +Ruinous\ Path=1 +Ruins\ of\ Oran-Rief=1 +Ruins\ of\ Trokair=1 +Rukh\ Egg=1 +Rumbling\ Aftershocks=1 +Rumbling\ Baloth=1 +Rummaging\ Goblin=1 +Run\ Wild=1 +Runaway\ Carriage=1 +Rune\ of\ Protection:\ Lands=1 +Rune-Cervin\ Rider=1 +Runeboggle=1 +Runeclaw\ Bear=1 +Runed\ Servitor=1 +Runed\ Stalactite=1 +Runeflare\ Trap=1 +Runehorn\ Hellkite=1 +Runes\ of\ the\ Deus=1 +Runic\ Repetition=1 +Runner's\ Bane=1 +Rush\ of\ Adrenaline=1 +Rush\ of\ Battle=1 +Rush\ of\ Blood=1 +Rush\ of\ Ice=1 +Rush\ of\ Vitality=1 +Rushing-Tide\ Zubera=1 +Rushwood\ Herbalist=1 +Rust\ Elemental=1 +Rust\ Scarab=1 +Rusted\ Relic=1 +Rusted\ Sentinel=1 +Rustic\ Clachan=1 +Rustrazor\ Butcher=1 +Rustspore\ Ram=1 +Ruthless\ Cullblade=1 +Ruthless\ Deathfang=1 +Ruthless\ Disposal=1 +Ruthless\ Instincts=1 +Ruthless\ Invasion=1 +Ruthless\ Ripper=1 +Ruthless\ Sniper=1 +Ryusei,\ the\ Falling\ Star=1 +Saberclaw\ Golem=1 +Sabertooth\ Alley\ Cat=1 +Sabertooth\ Outrider=1 +Sabretooth\ Tiger=1 +Sacellum\ Archers=1 +Sacellum\ Godspeaker=1 +Sachi,\ Daughter\ of\ Seshiro=1 +Sacred\ Armory=1 +Sacred\ Boon=1 +Sacred\ Cat=1 +Sacred\ Excavation=1 +Sacred\ Ground=1 +Sacred\ Nectar=1 +Sacred\ Prey=1 +Sacred\ Rites=1 +Sacred\ Wolf=1 +Saddleback\ Lagac=1 +Sadistic\ Augermage=1 +Safe\ Haven=1 +Safe\ Passage=1 +Safeguard=1 +Safehold\ Duo=1 +Safehold\ Sentry=1 +Safewright\ Quest=1 +Sage\ Aven=1 +Sage\ of\ Epityr=1 +Sage\ of\ Fables=1 +Sage\ of\ Lat-Nam=1 +Sage\ of\ Shaila's\ Claim=1 +Sage\ of\ the\ Inward\ Eye=1 +Sage\ Owl=1 +Sage-Eye\ Avengers=1 +Sage-Eye\ Harrier=1 +Sage's\ Row\ Denizen=1 +Sagu\ Archer=1 +Sagu\ Mauler=1 +Saheeli's\ Artistry=1 +Sakura-Tribe\ Springcaller=1 +Salivating\ Gremlins=1 +Salt\ Flats=1 +Salt\ Road\ Ambushers=1 +Salt\ Road\ Patrol=1 +Salt\ Road\ Quartermasters=1 +Saltblast=1 +Saltcrusted\ Steppe=1 +Saltfield\ Recluse=1 +Saltskitter=1 +Salvage\ Drone=1 +Salvage\ Scout=1 +Salvage\ Scuttler=1 +Salvage\ Slasher=1 +Salvage\ Titan=1 +Samite\ Archer=1 +Samite\ Blessing=1 +Samite\ Censer-Bearer=1 +Samite\ Healer=1 +Samite\ Pilgrim=1 +Samurai\ Enforcers=1 +Samurai\ of\ the\ Pale\ Curtain=1 +Sanctified\ Charge=1 +Sanctifier\ of\ Souls=1 +Sanctimony=1 +Sanctuary\ Cat=1 +Sanctum\ Custodian=1 +Sanctum\ Gargoyle=1 +Sanctum\ Guardian=1 +Sanctum\ Plowbeast=1 +Sandbar\ Crocodile=1 +Sandbar\ Merfolk=1 +Sandbar\ Serpent=1 +Sandblast=1 +Sandcrafter\ Mage=1 +Sands\ of\ Delirium=1 +Sandskin=1 +Sandsower=1 +Sandsteppe\ Citadel=1 +Sandsteppe\ Mastodon=1 +Sandsteppe\ Scavenger=1 +Sandstone\ Bridge=1 +Sandstone\ Deadfall=1 +Sandstone\ Warrior=1 +Sandwurm\ Convergence=1 +Sangrite\ Backlash=1 +Sangrite\ Surge=1 +Sangrophage=1 +Sanguimancy=1 +Sanguinary\ Mage=1 +Sanguine\ Guard=1 +Sanguine\ Praetor=1 +Sanitarium\ Skeleton=1 +Sanity\ Gnawers=1 +Sapphire\ Drake=1 +Saprazzan\ Outrigger=1 +Saprazzan\ Raider=1 +Sapseep\ Forest=1 +Sarcomancy=1 +Sarkhan's\ Rage=1 +Sarkhan's\ Triumph=1 +Sarpadian\ Empires,\ Vol.\ VII=1 +Saruli\ Gatekeepers=1 +Satyr\ Firedancer=1 +Satyr\ Grovedancer=1 +Satyr\ Hedonist=1 +Satyr\ Hoplite=1 +Satyr\ Nyx-Smith=1 +Satyr\ Piper=1 +Satyr\ Rambler=1 +Savage\ Conception=1 +Savage\ Gorilla=1 +Savage\ Knuckleblade=1 +Savage\ Lands=1 +Savage\ Offensive=1 +Savage\ Punch=1 +Savage\ Silhouette=1 +Savage\ Summoning=1 +Savage\ Surge=1 +Savage\ Thallid=1 +Savage\ Twister=1 +Savage\ Ventmaw=1 +Saving\ Grasp=1 +Sawtooth\ Loon=1 +Sawtooth\ Ogre=1 +Scab-Clan\ Giant=1 +Scab-Clan\ Mauler=1 +Scabland=1 +Scald=1 +Scalding\ Salamander=1 +Scaldkin=1 +Scale\ Blessing=1 +Scale\ of\ Chiss-Goria=1 +Scalebane's\ Elite=1 +Scaled\ Behemoth=1 +Scaled\ Hulk=1 +Scaleguard\ Sentinels=1 +Scalpelexis=1 +Scar=1 +Scarab\ Feast=1 +Scarblade\ Elite=1 +Scarecrow=1 +Scarland\ Thrinax=1 +Scarred\ Puma=1 +Scarred\ Vinebreeder=1 +Scars\ of\ the\ Veteran=1 +Scarscale\ Ritual=1 +Scathe\ Zombies=1 +Scatter\ Arc=1 +Scatter\ the\ Seeds=1 +Scatter\ to\ the\ Winds=1 +Scattering\ Stroke=1 +Scattershot=1 +Scavenged\ Weaponry=1 +Scavenger\ Drake=1 +Scavenger\ Folk=1 +Scavenging\ Ghoul=1 +Scent\ of\ Brine=1 +Scent\ of\ Ivy=1 +Scent\ of\ Jasmine=1 +Scent\ of\ Nightshade=1 +Scepter\ of\ Dominance=1 +Scepter\ of\ Empires=1 +Scepter\ of\ Insight=1 +Schismotivate=1 +Scholar\ of\ Athreos=1 +School\ of\ Piranha=1 +Scion\ of\ Glaciers=1 +Scion\ of\ the\ Ur-Dragon=1 +Scion\ of\ the\ Wild=1 +Scion\ of\ Ugin=1 +Scion\ of\ Vitu-Ghazi=1 +Scion\ Summoner=1 +Scorch\ the\ Fields=1 +Scorching\ Lava=1 +Scorching\ Missile=1 +Scorchwalker=1 +Scoria\ Wurm=1 +Scorned\ Villager=1 +Scornful\ Aether-Lich=1 +Scour=1 +Scour\ from\ Existence=1 +Scour\ the\ Laboratory=1 +Scourge\ Devil=1 +Scourge\ of\ Fleets=1 +Scourge\ of\ Geier\ Reach=1 +Scourge\ of\ Kher\ Ridges=1 +Scourge\ of\ Numai=1 +Scourge\ of\ Skola\ Vale=1 +Scourge\ of\ the\ Nobilis=1 +Scourge\ Wolf=1 +Scourgemark=1 +Scourglass=1 +Scouring\ Sands=1 +Scout\ the\ Borders=1 +Scouting\ Trek=1 +Scragnoth=1 +Scrambleverse=1 +Scrap=1 +Scrapbasket=1 +Scrapper\ Champion=1 +Scrapskin\ Drake=1 +Scrapyard\ Mongrel=1 +Scrapyard\ Salvo=1 +Screaming\ Fury=1 +Screaming\ Seahawk=1 +Screamreach\ Brawler=1 +Screams\ of\ the\ Damned=1 +Screeching\ Bat=1 +Screeching\ Buzzard=1 +Screeching\ Drake=1 +Screeching\ Griffin=1 +Screeching\ Harpy=1 +Screeching\ Skaab=1 +Screeching\ Sliver=1 +Scrib\ Nibblers=1 +Scribe\ of\ the\ Mindful=1 +Scrivener=1 +Scroll\ of\ Avacyn=1 +Scroll\ of\ Griselbrand=1 +Scroll\ of\ Origins=1 +Scroll\ Thief=1 +Scrounge=1 +Scrounging\ Bandar=1 +Scryb\ Sprites=1 +Scrying\ Glass=1 +Scute\ Mob=1 +Scuttlemutt=1 +Scuttling\ Death=1 +Scuttling\ Doom\ Engine=1 +Scuzzback\ Marauders=1 +Scuzzback\ Scrapper=1 +Scythe\ Leopard=1 +Scythe\ of\ the\ Wretched=1 +Scythe\ Tiger=1 +Sea\ Drake=1 +Sea\ Gate\ Loremaster=1 +Sea\ God's\ Revenge=1 +Sea\ Monster=1 +Sea\ Serpent=1 +Sea\ Snidd=1 +Sea\ Spirit=1 +Sea\ Sprite=1 +Seacoast\ Drake=1 +Seafloor\ Debris=1 +Seagraf\ Skaab=1 +Seal\ of\ Cleansing=1 +Seal\ of\ Doom=1 +Seal\ of\ Fire=1 +Seal\ of\ Primordium=1 +Seal\ of\ Strength=1 +Sealock\ Monster=1 +S?ance=1 +Search\ the\ City=1 +Search\ Warrant=1 +Searing\ Light=1 +Searing\ Meditation=1 +Searing\ Rays=1 +Searing\ Spear=1 +Searing\ Touch=1 +Seascape\ Aerialist=1 +Seaside\ Citadel=1 +Seaside\ Haven=1 +Seasinger=1 +Seasoned\ Marshal=1 +Second\ Guess=1 +Second\ Harvest=1 +Second\ Sight=1 +Second\ Thoughts=1 +Secret\ Plans=1 +Secret\ Salvage=1 +Secretkeeper=1 +Secrets\ of\ the\ Dead=1 +Security\ Blockade=1 +Sedge\ Scorpion=1 +Sedraxis\ Alchemist=1 +Sedraxis\ Specter=1 +See\ Beyond=1 +Seed\ Guardian=1 +Seed\ Spark=1 +Seedcradle\ Witch=1 +Seedguide\ Ash=1 +Seeds\ of\ Strength=1 +Seek\ the\ Horizon=1 +Seek\ the\ Wilds=1 +Seeker\ of\ Insight=1 +Seeker\ of\ the\ Way=1 +Seer's\ Lantern=1 +Seer's\ Sundial=1 +Seer's\ Vision=1 +Seething\ Pathblazer=1 +Segmented\ Krotiq=1 +Segmented\ Wurm=1 +Seismic\ Elemental=1 +Seismic\ Rupture=1 +Seismic\ Spike=1 +Seismic\ Stomp=1 +Seismic\ Strike=1 +Seize\ the\ Soul=1 +Sejiri\ Merfolk=1 +Select\ for\ Inspection=1 +Selective\ Memory=1 +Selesnya\ Charm=1 +Selesnya\ Cluestone=1 +Selesnya\ Evangel=1 +Selesnya\ Guildgate=1 +Selesnya\ Guildmage=1 +Selesnya\ Keyrune=1 +Selesnya\ Sagittars=1 +Selesnya\ Signet=1 +Self-Assembler=1 +Self-Inflicted\ Wound=1 +Selfless\ Cathar=1 +Selfless\ Exorcist=1 +Selkie\ Hedge-Mage=1 +Sell-Sword\ Brute=1 +Seller\ of\ Songbirds=1 +Send\ to\ Sleep=1 +Sengir\ Autocrat=1 +Sengir\ Nosferatu=1 +Sengir\ Vampire=1 +Senseless\ Rage=1 +Sensor\ Splicer=1 +Sentinel\ of\ the\ Eternal\ Watch=1 +Sentinel\ Spider=1 +Sentinels\ of\ Glen\ Elendra=1 +Sentry\ Oak=1 +Sentry\ of\ the\ Underworld=1 +Separatist\ Voidmage=1 +Septic\ Rats=1 +Sepulchral\ Primordial=1 +Sequestered\ Stash=1 +Seraph=1 +Seraph\ of\ the\ Masses=1 +Seraph\ of\ the\ Suns=1 +Seraph\ of\ the\ Sword=1 +Serendib\ Efreet=1 +Serendib\ Sorcerer=1 +Serene\ Remembrance=1 +Serene\ Steward=1 +Serene\ Sunset=1 +Serpent\ Skin=1 +Serpent\ Warrior=1 +Serpentine\ Basilisk=1 +Serpentine\ Kavu=1 +Serpentine\ Spike=1 +Serra\ Advocate=1 +Serra\ Angel=1 +Serra\ Aviary=1 +Serra\ Bestiary=1 +Serra\ Sphinx=1 +Serra\ Zealot=1 +Serra's\ Blessing=1 +Serra's\ Boon=1 +Serra's\ Embrace=1 +Serra's\ Hymn=1 +Serum\ Tank=1 +Servant\ of\ Nefarox=1 +Servant\ of\ the\ Scale=1 +Servant\ of\ Tymaret=1 +Servant\ of\ Volrath=1 +Servo\ Exhibition=1 +Servo\ Schematic=1 +Set\ Adrift=1 +Setessan\ Battle\ Priest=1 +Setessan\ Griffin=1 +Setessan\ Oathsworn=1 +Setessan\ Starbreaker=1 +Setessan\ Tactics=1 +Seton's\ Desire=1 +Seton's\ Scout=1 +Sever\ Soul=1 +Sever\ the\ Bloodline=1 +Severed\ Legion=1 +Sewn-Eye\ Drake=1 +Shackles=1 +Shade\ of\ Trokair=1 +Shade's\ Breath=1 +Shade's\ Form=1 +Shadow\ Alley\ Denizen=1 +Shadow\ Glider=1 +Shadow\ Guildmage=1 +Shadow\ Rider=1 +Shadow\ Slice=1 +Shadow\ Sliver=1 +Shadowbane=1 +Shadowblood\ Egg=1 +Shadowcloak\ Vampire=1 +Shadowmage\ Infiltrator=1 +Shadows\ of\ the\ Past=1 +Shadowstorm\ Vizier=1 +Shah\ of\ Naar\ Isle=1 +Shaleskin\ Plower=1 +Shaman\ of\ Spring=1 +Shaman\ of\ the\ Pack=1 +Shamble\ Back=1 +Shambleshark=1 +Shambling\ Attendants=1 +Shambling\ Ghoul=1 +Shambling\ Goblin=1 +Shambling\ Remains=1 +Shambling\ Strider=1 +Shanodin\ Dryads=1 +Shape\ Anew=1 +Shape\ of\ the\ Wiitigo=1 +Shape\ Stealer=1 +Shape\ the\ Sands=1 +Shaper\ Guildmage=1 +Shaper\ Parasite=1 +Shapeshifter=1 +Shapeshifter's\ Marrow=1 +Shard\ Convergence=1 +Shard\ of\ Broken\ Glass=1 +Shard\ Phoenix=1 +Shared\ Discovery=1 +Shared\ Fate=1 +Shared\ Trauma=1 +Shatter=1 +Shattered\ Angel=1 +Shattered\ Crypt=1 +Shattered\ Dreams=1 +Shattered\ Perception=1 +Shattering\ Blow=1 +Shatterskull\ Giant=1 +Shatterskull\ Recruit=1 +Shed\ Weakness=1 +Sheer\ Drop=1 +Shefet\ Monitor=1 +Shell\ of\ the\ Last\ Kappa=1 +Shell\ Skulkin=1 +Shelter=1 +Sheltered\ Aerie=1 +Sheltering\ Word=1 +Shepherd\ of\ the\ Lost=1 +Shield\ Bearer=1 +Shield\ Mate=1 +Shield\ of\ Duty\ and\ Reason=1 +Shield\ of\ the\ Ages=1 +Shield\ of\ the\ Avatar=1 +Shield\ of\ the\ Oversoul=1 +Shield\ of\ the\ Righteous=1 +Shield\ Wall=1 +Shielded\ Aether\ Thief=1 +Shielded\ Passage=1 +Shieldhide\ Dragon=1 +Shielding\ Plax=1 +Shieldmage\ Advocate=1 +Shieldmage\ Elder=1 +Shieldmate's\ Blessing=1 +Shields\ of\ Velis\ Vel=1 +Shifting\ Borders=1 +Shifting\ Loyalties=1 +Shifting\ Sky=1 +Shifting\ Wall=1 +Shimatsu\ the\ Bloodcloaked=1 +Shimian\ Specter=1 +Shimmering\ Barrier=1 +Shimmering\ Efreet=1 +Shimmering\ Grotto=1 +Shimmering\ Mirage=1 +Shimmering\ Wings=1 +Shimmerscale\ Drake=1 +Shinen\ of\ Fear's\ Chill=1 +Shinen\ of\ Flight's\ Wings=1 +Shinen\ of\ Stars'\ Light=1 +Shinewend=1 +Shipbreaker\ Kraken=1 +Shipwreck\ Moray=1 +Shipwreck\ Singer=1 +Shisato,\ Whispering\ Hunter=1 +Shiv's\ Embrace=1 +Shivan\ Dragon=1 +Shivan\ Emissary=1 +Shivan\ Hellkite=1 +Shivan\ Meteor=1 +Shivan\ Phoenix=1 +Shivan\ Raptor=1 +Shivan\ Sand-Mage=1 +Shivan\ Wumpus=1 +Shivan\ Wurm=1 +Shivan\ Zombie=1 +Shock=1 +Shockmaw\ Dragon=1 +Shore\ Snapper=1 +Shorecrasher\ Mimic=1 +Shoreline\ Raider=1 +Shoreline\ Salvager=1 +Shoulder\ to\ Shoulder=1 +Shower\ of\ Coals=1 +Shower\ of\ Sparks=1 +Showstopper=1 +Shrapnel\ Blast=1 +Shredding\ Winds=1 +Shreds\ of\ Sanity=1 +Shrewd\ Hatchling=1 +Shrewd\ Negotiation=1 +Shriek\ of\ Dread=1 +Shriekgeist=1 +Shriekhorn=1 +Shrieking\ Grotesque=1 +Shrike\ Harpy=1 +Shrill\ Howler=1 +Shrine\ of\ Boundless\ Growth=1 +Shrine\ of\ Limitless\ Power=1 +Shrine\ of\ Loyal\ Legions=1 +Shrine\ of\ Piercing\ Vision=1 +Shrink=1 +Shriveling\ Rot=1 +Shrouded\ Lore=1 +Shu\ Cavalry=1 +Shu\ Elite\ Companions=1 +Shu\ General=1 +Shuko=1 +Shunt=1 +Shuriken=1 +Shyft=1 +Sibilant\ Spirit=1 +Sibsig\ Icebreakers=1 +Sibsig\ Muckdraggers=1 +Sicken=1 +Sickening\ Dreams=1 +Sickle\ Ripper=1 +Sickleslicer=1 +Sideswipe=1 +Sidisi's\ Faithful=1 +Sidisi's\ Pet=1 +Siege\ Dragon=1 +Siege\ Mastodon=1 +Siege\ Modification=1 +Siege\ of\ Towers=1 +Siege\ Wurm=1 +Siegecraft=1 +Sift=1 +Sift\ Through\ Sands=1 +Sifter\ of\ Skulls=1 +Sigardian\ Priest=1 +Sight\ Beyond\ Sight=1 +Sight\ of\ the\ Scalelords=1 +Sighted-Caste\ Sorcerer=1 +Sightless\ Brawler=1 +Sigil\ Blessing=1 +Sigil\ of\ Distinction=1 +Sigil\ of\ the\ Nayan\ Gods=1 +Sigil\ of\ the\ New\ Dawn=1 +Sigil\ of\ Valor=1 +Sigil\ Tracer=1 +Sigiled\ Behemoth=1 +Sigiled\ Paladin=1 +Sigiled\ Skink=1 +Sigiled\ Starfish=1 +Sign\ in\ Blood=1 +Signal\ the\ Clans=1 +Silburlind\ Snapper=1 +Silence=1 +Silence\ the\ Believers=1 +Silent\ Artisan=1 +Silent\ Attendant=1 +Silent\ Departure=1 +Silent\ Observer=1 +Silent\ Sentinel=1 +Silent\ Skimmer=1 +Silent\ Specter=1 +Silent-Chant\ Zubera=1 +Silhana\ Starfletcher=1 +Silk\ Net=1 +Silkbind\ Faerie=1 +Silkenfist\ Fighter=1 +Silklash\ Spider=1 +Silkweaver\ Elite=1 +Silkwing\ Scout=1 +Silkwrap=1 +Silt\ Crawler=1 +Silumgar\ Assassin=1 +Silumgar\ Butcher=1 +Silumgar\ Monument=1 +Silumgar\ Sorcerer=1 +Silumgar\ Spell-Eater=1 +Silumgar's\ Scorn=1 +Silver\ Knight=1 +Silver\ Myr=1 +Silver\ Wyvern=1 +Silver-Inlaid\ Dagger=1 +Silverback\ Ape=1 +Silvercoat\ Lion=1 +Silverfur\ Partisan=1 +Silvergill\ Douser=1 +Silverskin\ Armor=1 +Silverstorm\ Samurai=1 +Silverstrike=1 +Silvos,\ Rogue\ Elemental=1 +Simian\ Brawler=1 +Simian\ Grunts=1 +Simic\ Cluestone=1 +Simic\ Fluxmage=1 +Simic\ Guildgate=1 +Simic\ Guildmage=1 +Simic\ Initiate=1 +Simic\ Keyrune=1 +Simic\ Manipulator=1 +Simic\ Signet=1 +Simic\ Sky\ Swallower=1 +Simplify=1 +Sin\ Collector=1 +Singe=1 +Singe-Mind\ Ogre=1 +Singing\ Bell\ Strike=1 +Singing\ Tree=1 +Sinister\ Concoction=1 +Sinister\ Possession=1 +Sinking\ Feeling=1 +Sins\ of\ the\ Past=1 +Sinstriker's\ Will=1 +Sir\ Shandlar\ of\ Eberyn=1 +Sire\ of\ the\ Storm=1 +Siren\ of\ the\ Fanged\ Coast=1 +Siren\ of\ the\ Silent\ Song=1 +Siren\ Song\ Lyre=1 +Sisay's\ Ingenuity=1 +Sisay's\ Ring=1 +Sisters\ of\ Stone\ Death=1 +Sivitri\ Scarzam=1 +Sixth\ Sense=1 +Sizzle=1 +Skaab\ Goliath=1 +Skarrg\ Goliath=1 +Skarrg\ Guildmage=1 +Skarrg,\ the\ Rage\ Pits=1 +Skarrgan\ Firebird=1 +Skarrgan\ Skybreaker=1 +Skeletal\ Changeling=1 +Skeletal\ Kathari=1 +Skeletal\ Vampire=1 +Skeleton\ Key=1 +Skeleton\ Scavengers=1 +Skeleton\ Shard=1 +Skeletonize=1 +Skill\ Borrower=1 +Skin\ Invasion=1 +Skinbrand\ Goblin=1 +Skinrender=1 +Skinshifter=1 +Skinwing=1 +Skirge\ Familiar=1 +Skirk\ Alarmist=1 +Skirk\ Drill\ Sergeant=1 +Skirk\ Marauder=1 +Skirk\ Prospector=1 +Skirk\ Ridge\ Exhumer=1 +Skirk\ Shaman=1 +Skirk\ Volcanist=1 +Skirsdag\ Cultist=1 +Skirsdag\ High\ Priest=1 +Skirsdag\ Supplicant=1 +Skittering\ Invasion=1 +Skittering\ Monstrosity=1 +Skittering\ Skirge=1 +Skitterskin=1 +Skittish\ Kavu=1 +Skittish\ Valesk=1 +Skizzik\ Surger=1 +Skulking\ Fugitive=1 +Skulking\ Ghost=1 +Skulking\ Knight=1 +Skull\ Catapult=1 +Skull\ Collector=1 +Skull\ of\ Orm=1 +Skull\ Rend=1 +Skullcage=1 +Skullmane\ Baku=1 +Skullmead\ Cauldron=1 +Skullmulcher=1 +Skullsnatcher=1 +Skulltap=1 +Sky\ Ruin\ Drake=1 +Sky\ Scourer=1 +Sky\ Skiff=1 +Sky\ Spirit=1 +Sky\ Swallower=1 +Sky\ Weaver=1 +Skybind=1 +Skyblinder\ Staff=1 +Skyclaw\ Thrash=1 +Skycloud\ Egg=1 +Skyfire\ Kirin=1 +Skygames=1 +Skyhunter\ Cub=1 +Skyhunter\ Patrol=1 +Skyhunter\ Prowler=1 +Skyhunter\ Skirmisher=1 +Skyknight\ Legionnaire=1 +Skyline\ Cascade=1 +Skymark\ Roc=1 +Skyraker\ Giant=1 +Skyreach\ Manta=1 +Skyreaping=1 +Skyrider\ Elf=1 +Skyscribing=1 +Skyshaper=1 +Skyship\ Plunderer=1 +Skyship\ Stalker=1 +Skyshooter=1 +Skyshroud\ Archer=1 +Skyshroud\ Blessing=1 +Skyshroud\ Elf=1 +Skyshroud\ Falcon=1 +Skyshroud\ Forest=1 +Skyshroud\ Sentinel=1 +Skyshroud\ Troll=1 +Skyshroud\ Troopers=1 +Skysnare\ Spider=1 +Skyspear\ Cavalry=1 +Skyswirl\ Harrier=1 +Skywatcher\ Adept=1 +Skywhaler's\ Shot=1 +Skywinder\ Drake=1 +Skywing\ Aven=1 +Skywise\ Teachings=1 +Slab\ Hammer=1 +Slag\ Fiend=1 +Slagwurm\ Armor=1 +Slash\ Panther=1 +Slate\ Street\ Ruffian=1 +Slaughter=1 +Slaughter\ Drone=1 +Slaughterhorn=1 +Slave\ of\ Bolas=1 +Slavering\ Nulls=1 +Slay=1 +Slayer\ of\ the\ Wicked=1 +Slayer's\ Cleaver=1 +Slayer's\ Plate=1 +Sleep=1 +Sleep\ Paralysis=1 +Sleeper\ Agent=1 +Sleeper's\ Guile=1 +Sleeper's\ Robe=1 +Sleeping\ Potion=1 +Slice\ and\ Dice=1 +Slime\ Molding=1 +Slimy\ Kavu=1 +Slingbow\ Trap=1 +Slingshot\ Goblin=1 +Slinking\ Giant=1 +Slinking\ Serpent=1 +Slip\ Through\ Space=1 +Slipstream\ Eel=1 +Slipstream\ Serpent=1 +Slith\ Ascendant=1 +Slith\ Bloodletter=1 +Slith\ Firewalker=1 +Slith\ Predator=1 +Slith\ Strider=1 +Slither\ Blade=1 +Slitherhead=1 +Slithering\ Shade=1 +Slithery\ Stalker=1 +Sliver\ Construct=1 +Sliversmith=1 +Slobad,\ Goblin\ Tinkerer=1 +Sludge\ Crawler=1 +Sludge\ Strider=1 +Sluggishness=1 +Sluiceway\ Scorpion=1 +Slum\ Reaper=1 +Slumbering\ Tora=1 +Sly\ Requisitioner=1 +Smash=1 +Smash\ to\ Smithereens=1 +Smelt=1 +Smite=1 +Smite\ the\ Monstrous=1 +Smoke\ Teller=1 +Smokebraider=1 +Smokespew\ Invoker=1 +Smokestack=1 +Smolder\ Initiate=1 +Smoldering\ Butcher=1 +Smoldering\ Efreet=1 +Smoldering\ Spires=1 +Smoldering\ Werewolf=1 +Smothering\ Abomination=1 +Snake\ Cult\ Initiation=1 +Snake\ of\ the\ Golden\ Grove=1 +Snake\ Umbra=1 +Snapback=1 +Snapping\ Creeper=1 +Snapping\ Drake=1 +Snapping\ Gnarlid=1 +Snapping\ Thragg=1 +Snapsail\ Glider=1 +Snare\ Thopter=1 +Snarling\ Undorak=1 +Sneaky\ Homunculus=1 +Snorting\ Gahr=1 +Snow\ Fortress=1 +Snowhorn\ Rider=1 +Soaring\ Hope=1 +Soaring\ Seacliff=1 +Soilshaper=1 +Sokenzan\ Renegade=1 +Sokenzan\ Spellblade=1 +Sol\ Grail=1 +Sol'kanar\ the\ Swamp\ King=1 +Solar\ Blast=1 +Solar\ Tide=1 +Solarion=1 +Soldevi\ Digger=1 +Soldevi\ Golem=1 +Soldevi\ Machinist=1 +Soldevi\ Simulacrum=1 +Soldier\ of\ the\ Pantheon=1 +Solemn\ Offering=1 +Solemn\ Recruit=1 +Solfatara=1 +Solidarity=1 +Solidarity\ of\ Heroes=1 +Solitary\ Hunter=1 +Soltari\ Champion=1 +Soltari\ Crusader=1 +Soltari\ Emissary=1 +Soltari\ Lancer=1 +Soltari\ Monk=1 +Soltari\ Priest=1 +Soltari\ Trooper=1 +Somber\ Hoverguard=1 +Somberwald\ Alpha=1 +Somberwald\ Stag=1 +Somnomancer=1 +Somnophore=1 +Song\ of\ Blood=1 +Song\ of\ Serenity=1 +Soot\ Imp=1 +Sootstoke\ Kindler=1 +Sootwalkers=1 +Sophic\ Centaur=1 +Soratami\ Cloud\ Chariot=1 +Soratami\ Mindsweeper=1 +Soratami\ Mirror-Guard=1 +Soratami\ Mirror-Mage=1 +Soratami\ Rainshaper=1 +Soratami\ Savant=1 +Soratami\ Seer=1 +Sorcerer's\ Strongbox=1 +Sorin's\ Thirst=1 +Sorin's\ Vengeance=1 +Sorrow's\ Path=1 +Sosuke,\ Son\ of\ Seshiro=1 +Sosuke's\ Summons=1 +Soul\ Bleed=1 +Soul\ Burn=1 +Soul\ Channeling=1 +Soul\ Collector=1 +Soul\ Conduit=1 +Soul\ Exchange=1 +Soul\ Feast=1 +Soul\ Kiss=1 +Soul\ Net=1 +Soul\ Nova=1 +Soul\ of\ Magma=1 +Soul\ Parry=1 +Soul\ Ransom=1 +Soul\ Reap=1 +Soul\ Scourge=1 +Soul\ Seizer=1 +Soul\ Separator=1 +Soul\ Shepherd=1 +Soul\ Shred=1 +Soul\ Stair\ Expedition=1 +Soul\ Strings=1 +Soul\ Summons=1 +Soul\ Swallower=1 +Soul\ Tithe=1 +Soul's\ Fire=1 +Soul's\ Grace=1 +Soul's\ Majesty=1 +Soulblade\ Djinn=1 +Soulblast=1 +Soulbound\ Guardians=1 +Soulbright\ Flamekin=1 +Soulcage\ Fiend=1 +Soulcatcher=1 +Souldrinker=1 +Soulgorger\ Orgg=1 +Soulless\ Revival=1 +Soulmender=1 +Soulquake=1 +Souls\ of\ the\ Faultless=1 +Soulscour=1 +Soulshriek=1 +Soulstinger=1 +Soulsurge\ Elemental=1 +Soulsworn\ Jury=1 +Soulsworn\ Spirit=1 +Soultether\ Golem=1 +Sound\ the\ Call=1 +Sowing\ Salt=1 +Spare\ from\ Evil=1 +Spark\ Jolt=1 +Spark\ Mage=1 +Spark\ of\ Creativity=1 +Spark\ Spray=1 +Spark\ Trooper=1 +Sparkcaster=1 +Sparkmage\ Apprentice=1 +Sparkmage's\ Gambit=1 +Sparkspitter=1 +Sparring\ Collar=1 +Sparring\ Mummy=1 +Spatial\ Contortion=1 +Spawn\ of\ Thraxes=1 +Spawnbinder\ Mage=1 +Spawnbroker=1 +Spawning\ Bed=1 +Spawning\ Breath=1 +Spawning\ Pit=1 +Spawning\ Pool=1 +Spawnsire\ of\ Ulamog=1 +Spawnwrithe=1 +Spear\ of\ Heliod=1 +Spearbreaker\ Behemoth=1 +Spearpoint\ Oread=1 +Species\ Gorger=1 +Specter's\ Shroud=1 +Spectra\ Ward=1 +Spectral\ Bears=1 +Spectral\ Force=1 +Spectral\ Gateguards=1 +Spectral\ Reserves=1 +Spectral\ Rider=1 +Spectral\ Searchlight=1 +Spectral\ Shepherd=1 +Spectral\ Shield=1 +Spectral\ Shift=1 +Spectral\ Sliver=1 +Speedway\ Fanatic=1 +Spell\ Blast=1 +Spell\ Burst=1 +Spell\ Contortion=1 +Spell\ Rupture=1 +Spell\ Shrivel=1 +Spell\ Snip=1 +Spell\ Syphon=1 +Spellbinder=1 +Spellbook=1 +Spellbound\ Dragon=1 +Spellgorger\ Barbarian=1 +Spellheart\ Chimera=1 +Spelltithe\ Enforcer=1 +Spellweaver\ Helix=1 +Spellwild\ Ouphe=1 +Sphere\ of\ Law=1 +Sphere\ of\ Purity=1 +Sphere\ of\ the\ Suns=1 +Sphere\ of\ Truth=1 +Sphinx\ of\ Jwar\ Isle=1 +Sphinx\ of\ Magosi=1 +Sphinx\ of\ the\ Chimes=1 +Sphinx\ of\ Uthuun=1 +Sphinx\ Summoner=1 +Sphinx's\ Disciple=1 +Spider\ Climb=1 +Spider\ Spawning=1 +Spidersilk\ Net=1 +Spidery\ Grasp=1 +Spike\ Breeder=1 +Spike\ Cannibal=1 +Spike\ Colony=1 +Spike\ Drone=1 +Spike\ Hatcher=1 +Spike\ Jester=1 +Spike\ Rogue=1 +Spike\ Tiller=1 +Spike\ Worker=1 +Spikeshot\ Elder=1 +Spikeshot\ Goblin=1 +Spiketail\ Drakeling=1 +Spiketail\ Hatchling=1 +Spin\ Engine=1 +Spin\ into\ Myth=1 +Spinal\ Graft=1 +Spinal\ Parasite=1 +Spinal\ Villain=1 +Spincrusher=1 +Spindrift\ Drake=1 +Spinebiter=1 +Spined\ Fluke=1 +Spined\ Sliver=1 +Spined\ Thopter=1 +Spined\ Wurm=1 +Spineless\ Thug=1 +Spiny\ Starfish=1 +Spiraling\ Duelist=1 +Spiraling\ Embers=1 +Spire\ Barrage=1 +Spire\ Monitor=1 +Spire\ Owl=1 +Spire\ Patrol=1 +Spire\ Serpent=1 +Spire\ Tracer=1 +Spireside\ Infiltrator=1 +Spirespine=1 +Spirit\ Away=1 +Spirit\ Bonds=1 +Spirit\ Cairn=1 +Spirit\ en-Dal=1 +Spirit\ en-Kor=1 +Spirit\ Flare=1 +Spirit\ Loop=1 +Spirit\ Mirror=1 +Spirit\ of\ the\ Hunt=1 +Spirit\ Shackle=1 +Spirit\ Weaver=1 +Spiritmonger=1 +Spiritualize=1 +Spite\ //\ Malice=1 +Spite\ of\ Mogis=1 +Spitebellows=1 +Spiteflame\ Witch=1 +Spiteful\ Blow=1 +Spiteful\ Motives=1 +Spiteful\ Returned=1 +Spiteful\ Shadows=1 +Spitting\ Earth=1 +Spitting\ Hydra=1 +Spitting\ Sliver=1 +Spitting\ Spider=1 +Splatter\ Thug=1 +Splendid\ Agony=1 +Splinter=1 +Splinterfright=1 +Split-Tail\ Miko=1 +Splitting\ Headache=1 +Splitting\ Slime=1 +Spoils\ of\ Victory=1 +Spontaneous\ Artist=1 +Spontaneous\ Combustion=1 +Spontaneous\ Mutation=1 +Spore\ Burst=1 +Spore\ Cloud=1 +Spore\ Flower=1 +Sporeback\ Troll=1 +Sporesower\ Thallid=1 +Sporoloth\ Ancient=1 +Spotted\ Griffin=1 +Spread\ the\ Sickness=1 +Spreading\ Algae=1 +Spreading\ Flames=1 +Spring\ //\ Mind=1 +Springsage\ Ritual=1 +Sprinting\ Warbrute=1 +Sprite\ Noble=1 +Sprout=1 +Sprouting\ Thrinax=1 +Spurnmage\ Advocate=1 +Squall=1 +Squall\ Drifter=1 +Squall\ Line=1 +Squeaking\ Pie\ Grubfellows=1 +Squeaking\ Pie\ Sneak=1 +Squealing\ Devil=1 +Squee's\ Embrace=1 +Squee's\ Revenge=1 +Squee's\ Toy=1 +Squelching\ Leeches=1 +Squirming\ Mass=1 +Stab\ Wound=1 +Staff\ of\ the\ Death\ Magus=1 +Staff\ of\ the\ Flame\ Magus=1 +Staff\ of\ the\ Mind\ Magus=1 +Staff\ of\ the\ Sun\ Magus=1 +Staff\ of\ the\ Wild\ Magus=1 +Staff\ of\ Zegon=1 +Staggershock=1 +Stain\ the\ Mind=1 +Stalker\ Hag=1 +Stalking\ Drone=1 +Stalking\ Stones=1 +Stalking\ Tiger=1 +Stalking\ Yeti=1 +Stallion\ of\ Ashmouth=1 +Stalwart\ Shield-Bearers=1 +Stampede=1 +Stampeding\ Elk\ Herd=1 +Stampeding\ Rhino=1 +Stampeding\ Serow=1 +Stampeding\ Wildebeests=1 +Stand\ Firm=1 +Stand\ or\ Fall=1 +Stand\ Together=1 +Standardize=1 +Standing\ Troops=1 +Stangg=1 +Starlight=1 +Starlight\ Invoker=1 +Starlit\ Sanctum=1 +Starstorm=1 +Start\ //\ Finish=1 +Start\ Your\ Engines=1 +Starved\ Rusalka=1 +Stasis\ Cell=1 +Statute\ of\ Denial=1 +Staunch\ Defenders=1 +Staunch-Hearted\ Warrior=1 +Stave\ Off=1 +Steadfast\ Cathar=1 +Steadfast\ Guard=1 +Steady\ Progress=1 +Steal\ Artifact=1 +Stealer\ of\ Secrets=1 +Steam\ Augury=1 +Steam\ Blast=1 +Steam\ Catapult=1 +Steam\ Spitter=1 +Steam\ Vines=1 +Steamclaw=1 +Steamcore\ Weird=1 +Steel\ Golem=1 +Steel\ Leaf\ Paladin=1 +Steel\ Sabotage=1 +Steel\ Wall=1 +Steelclad\ Serpent=1 +Steelform\ Sliver=1 +Steeling\ Stance=1 +Steelshaper\ Apprentice=1 +Steeple\ Roc=1 +Stenchskipper=1 +Stensia\ Banquet=1 +Stensia\ Bloodhall=1 +Stensia\ Innkeeper=1 +Stensia\ Masquerade=1 +Steppe\ Glider=1 +Stern\ Constable=1 +Stern\ Mentor=1 +Stern\ Proctor=1 +Steward\ of\ Valeron=1 +Stingerfling\ Spider=1 +Stinging\ Barrier=1 +Stinging\ Licid=1 +Stinging\ Shot=1 +Stingmoggie=1 +Stingscourger=1 +Stinkdrinker\ Daredevil=1 +Stir\ the\ Grave=1 +Stir\ the\ Pride=1 +Stir\ the\ Sands=1 +Stitched\ Drake=1 +Stitched\ Mangler=1 +Stitcher's\ Apprentice=1 +Stitcher's\ Graft=1 +Stitchwing\ Skaab=1 +Stoic\ Angel=1 +Stoic\ Builder=1 +Stoic\ Champion=1 +Stoic\ Ephemera=1 +Stoic\ Rebuttal=1 +Stoke\ the\ Flames=1 +Stolen\ Identity=1 +Stomp\ and\ Howl=1 +Stomper\ Cub=1 +Stomping\ Slabs=1 +Stone\ Calendar=1 +Stone\ Giant=1 +Stone\ Golem=1 +Stone\ Haven\ Medic=1 +Stone\ Kavu=1 +Stone\ Quarry=1 +Stone\ Spirit=1 +Stone-Tongue\ Basilisk=1 +Stonebrow,\ Krosan\ Hero=1 +Stonecloaker=1 +Stoneforge\ Acolyte=1 +Stonefury=1 +Stonehands=1 +Stoneshaker\ Shaman=1 +Stoneshock\ Giant=1 +Stonewise\ Fortifier=1 +Stonewood\ Invocation=1 +Stonewood\ Invoker=1 +Stonework\ Puma=1 +Stonewright=1 +Stonybrook\ Angler=1 +Storm\ Crow=1 +Storm\ Entity=1 +Storm\ Front=1 +Storm\ Shaman=1 +Stormbind=1 +Stormblood\ Berserker=1 +Stormcaller\ of\ Keranos=1 +Stormcaller's\ Boon=1 +Stormchaser\ Chimera=1 +Stormcloud\ Djinn=1 +Stormcrag\ Elemental=1 +Stormfront\ Pegasus=1 +Stormrider\ Rig=1 +Stormrider\ Spirit=1 +Stormscale\ Anarch=1 +Stormscape\ Apprentice=1 +Stormscape\ Battlemage=1 +Stormscape\ Familiar=1 +Stormtide\ Leviathan=1 +Stormwing\ Dragon=1 +Strafe=1 +Strands\ of\ Night=1 +Strands\ of\ Undeath=1 +Strandwalker=1 +Strange\ Augmentation=1 +Strange\ Inversion=1 +Strangling\ Soot=1 +Strata\ Scythe=1 +Stratadon=1 +Stratus\ Dancer=1 +Stratus\ Walk=1 +Stream\ Hopper=1 +Stream\ of\ Consciousness=1 +Stream\ of\ Life=1 +Stream\ of\ Unconsciousness=1 +Streambed\ Aquitects=1 +Street\ Savvy=1 +Street\ Spasm=1 +Street\ Sweeper=1 +Strength\ in\ Numbers=1 +Strength\ of\ Arms=1 +Strength\ of\ Isolation=1 +Strength\ of\ Night=1 +Strength\ of\ the\ Tajuru=1 +Strength\ of\ Unity=1 +Strider\ Harness=1 +Strip\ Bare=1 +Striped\ Bears=1 +Stroke\ of\ Genius=1 +Stromkirk\ Condemned=1 +Stromkirk\ Mentor=1 +Stromkirk\ Noble=1 +Stromkirk\ Occultist=1 +Stromkirk\ Patrol=1 +Strongarm\ Monk=1 +Stronghold\ Discipline=1 +Stronghold\ Overseer=1 +Stronghold\ Rats=1 +Stronghold\ Taskmaster=1 +Structural\ Collapse=1 +Structural\ Distortion=1 +Struggle\ for\ Sanity=1 +Student\ of\ Ojutai=1 +Stuffy\ Doll=1 +Stun=1 +Stun\ Sniper=1 +Stupefying\ Touch=1 +Sturdy\ Hatchling=1 +Sturmgeist=1 +Stymied\ Hopes=1 +Su-Chi=1 +Subjugator\ Angel=1 +Submerged\ Boneyard=1 +Subterranean\ Scout=1 +Subterranean\ Shambler=1 +Subtle\ Strike=1 +Succumb\ to\ Temptation=1 +Sudden\ Death=1 +Sudden\ Disappearance=1 +Sudden\ Impact=1 +Sudden\ Storm=1 +Sudden\ Strength=1 +Suffer\ the\ Past=1 +Suicidal\ Charge=1 +Sulam\ Djinn=1 +Sulfurous\ Blast=1 +Sultai\ Ascendancy=1 +Sultai\ Banner=1 +Sultai\ Charm=1 +Sultai\ Flayer=1 +Sultai\ Runemark=1 +Sultai\ Scavenger=1 +Sultai\ Skullkeeper=1 +Sultai\ Soothsayer=1 +Summit\ Apes=1 +Summit\ Prowler=1 +Summon\ the\ School=1 +Summoner's\ Bane=1 +Summoning\ Trap=1 +Sun\ Clasp=1 +Sun's\ Bounty=1 +Sunastian\ Falconer=1 +Sunbeam\ Spellbomb=1 +Sunblade\ Elf=1 +Sunblast\ Angel=1 +Sunbond=1 +Sunbringer's\ Touch=1 +Suncrusher=1 +Sunder\ from\ Within=1 +Sundering\ Growth=1 +Sundering\ Vitae=1 +Sunflare\ Shaman=1 +Sunforger=1 +Sungrace\ Pegasus=1 +Sungrass\ Egg=1 +Sunhome\ Enforcer=1 +Sunhome\ Guildmage=1 +Sunhome,\ Fortress\ of\ the\ Legion=1 +Sunken\ City=1 +Sunken\ Hope=1 +Sunrise\ Sovereign=1 +Sunscape\ Apprentice=1 +Sunscape\ Battlemage=1 +Sunscorched\ Desert=1 +Sunseed\ Nurturer=1 +Sunspear\ Shikari=1 +Sunspire\ Griffin=1 +Sunspring\ Expedition=1 +Sunstrike\ Legionnaire=1 +Suntail\ Hawk=1 +Suntouched\ Myr=1 +Supernatural\ Stamina=1 +Supply\ //\ Demand=1 +Supply\ Caravan=1 +Supply-Line\ Cranes=1 +Suppress=1 +Suppression\ Bonds=1 +Supreme\ Exemplar=1 +Suq'Ata\ Assassin=1 +Suq'Ata\ Lancer=1 +Sure\ Strike=1 +Surestrike\ Trident=1 +Surge\ Node=1 +Surge\ of\ Righteousness=1 +Surge\ of\ Thoughtweft=1 +Surge\ of\ Zeal=1 +Surgespanner=1 +Surging\ Dementia=1 +Surging\ Flame=1 +Surging\ Might=1 +Surging\ Sentinels=1 +Surprise\ Deployment=1 +Surrak,\ the\ Hunt\ Caller=1 +Surrakar\ Banisher=1 +Surrakar\ Marauder=1 +Surrakar\ Spellblade=1 +Surreal\ Memoir=1 +Surveilling\ Sprite=1 +Survey\ the\ Wreckage=1 +Survival\ Cache=1 +Survive\ the\ Night=1 +Survivor\ of\ the\ Unseen=1 +Suspension\ Field=1 +Suture\ Spirit=1 +Sutured\ Ghoul=1 +Svogthos,\ the\ Restless\ Tomb=1 +Swallowing\ Plague=1 +Swamp=1 +Swamp\ Mosquito=1 +Swarm\ of\ Bloodflies=1 +Swarm\ of\ Rats=1 +Swarm\ Surge=1 +Swarmborn\ Giant=1 +Swat=1 +Sway\ of\ Illusion=1 +Sway\ of\ the\ Stars=1 +Sweatworks\ Brawler=1 +Sweep\ Away=1 +Swell\ of\ Courage=1 +Swell\ of\ Growth=1 +Swerve=1 +Swift\ Justice=1 +Swift\ Kick=1 +Swift\ Maneuver=1 +Swift\ Reckoning=1 +Swift\ Silence=1 +Swift\ Spinner=1 +Swift\ Warkite=1 +Swirl\ the\ Mists=1 +Swirling\ Spriggan=1 +Switcheroo=1 +Sword\ of\ the\ Paruns=1 +Sword\ of\ Vengeance=1 +Swordwise\ Centaur=1 +Sygg,\ River\ Guide=1 +Sylvan\ Basilisk=1 +Sylvan\ Bounty=1 +Sylvan\ Caryatid=1 +Sylvan\ Echoes=1 +Sylvan\ Messenger=1 +Sylvan\ Might=1 +Sylvan\ Primordial=1 +Sylvan\ Ranger=1 +Sylvan\ Scrying=1 +Sylvok\ Explorer=1 +Sylvok\ Replica=1 +Symbiosis=1 +Symbiotic\ Beast=1 +Symbiotic\ Deployment=1 +Symbiotic\ Elf=1 +Symbiotic\ Wurm=1 +Symbol\ of\ Unsummoning=1 +Synchronized\ Strike=1 +Synchronous\ Sliver=1 +Syncopate=1 +Syndic\ of\ Tithes=1 +Syndicate\ Enforcer=1 +Synod\ Artificer=1 +Synod\ Centurion=1 +Synod\ Sanctum=1 +Syphon\ Life=1 +Tablet\ of\ Epityr=1 +Tablet\ of\ the\ Guilds=1 +Tah-Crop\ Elite=1 +Tah-Crop\ Skirmisher=1 +Tahngarth's\ Glare=1 +Tahngarth's\ Rage=1 +Taigam's\ Scheming=1 +Taigam's\ Strike=1 +Tail\ Slash=1 +Tainted\ Remedy=1 +Tainted\ Strike=1 +Taj-Nar\ Swordsmith=1 +Tajic,\ Blade\ of\ the\ Legion=1 +Tajuru\ Archer=1 +Tajuru\ Beastmaster=1 +Tajuru\ Pathwarden=1 +Tajuru\ Preserver=1 +Tajuru\ Stalwart=1 +Tajuru\ Warcaller=1 +Take\ Down=1 +Take\ into\ Custody=1 +Take\ Inventory=1 +Take\ Possession=1 +Take\ Up\ Arms=1 +Takeno,\ Samurai\ General=1 +Takeno's\ Cavalry=1 +Takenuma\ Bleeder=1 +Takklemaggot=1 +Talara's\ Bane=1 +Talas\ Researcher=1 +Talent\ of\ the\ Telepath=1 +Talisman\ of\ Impulse=1 +Talisman\ of\ Unity=1 +Talon\ of\ Pain=1 +Talon\ Trooper=1 +Talonrend=1 +Talrand's\ Invocation=1 +Tamiyo's\ Journal=1 +Tandem\ Lookout=1 +Tandem\ Tactics=1 +Tangle\ Angler=1 +Tangle\ Asp=1 +Tangle\ Golem=1 +Tangle\ Mantis=1 +Tangle\ Spider=1 +Tanglebloom=1 +Tangleclaw\ Werewolf=1 +Tangleroot=1 +Tapestry\ of\ the\ Ages=1 +Tar\ Fiend=1 +Tar\ Pit\ Warrior=1 +Tar\ Pitcher=1 +Tar\ Snare=1 +Tarox\ Bladewing=1 +Tasigur's\ Cruelty=1 +Tasseled\ Dromedary=1 +Taste\ for\ Mayhem=1 +Tatsumasa,\ the\ Dragon's\ Fang=1 +Tattered\ Drake=1 +Tattered\ Haunter=1 +Tatterkite=1 +Tattermunge\ Duo=1 +Tattermunge\ Maniac=1 +Tattermunge\ Witch=1 +Tattoo\ Ward=1 +Taunting\ Elf=1 +Tavern\ Swindler=1 +Tawnos's\ Coffin=1 +Tawnos's\ Wand=1 +Tawnos's\ Weaponry=1 +Teardrop\ Kami=1 +Tears\ of\ Rage=1 +Tears\ of\ Valakut=1 +Tectonic\ Rift=1 +Teferi's\ Care=1 +Teferi's\ Drake=1 +Teferi's\ Honor\ Guard=1 +Tel-Jilad\ Archers=1 +Tel-Jilad\ Chosen=1 +Tel-Jilad\ Fallen=1 +Tel-Jilad\ Justice=1 +Tel-Jilad\ Outrider=1 +Tel-Jilad\ Stylus=1 +Tel-Jilad\ Wolf=1 +Telekinetic\ Sliver=1 +Telepathic\ Spies=1 +Teleportal=1 +Telethopter=1 +Telim'Tor's\ Darts=1 +Teller\ of\ Tales=1 +Telling\ Time=1 +Temmet,\ Vizier\ of\ Naktamun=1 +Tempest\ Drake=1 +Tempest\ of\ Light=1 +Tempest\ Owl=1 +Temple\ of\ Abandon=1 +Temple\ of\ Mystery=1 +Temple\ of\ Silence=1 +Temporal\ Adept=1 +Temporal\ Eddy=1 +Temporal\ Fissure=1 +Temporal\ Isolation=1 +Temporary\ Insanity=1 +Temur\ Ascendancy=1 +Temur\ Banner=1 +Temur\ Charger=1 +Temur\ Charm=1 +Temur\ Runemark=1 +Temur\ War\ Shaman=1 +Tenacious\ Dead=1 +Tenacity=1 +Teneb,\ the\ Harvester=1 +Tenza,\ Godo's\ Maul=1 +Tephraderm=1 +Terashi's\ Cry=1 +Terashi's\ Grasp=1 +Terashi's\ Verdict=1 +Teroh's\ Vanguard=1 +Terra\ Eternal=1 +Terra\ Stomper=1 +Terraformer=1 +Terrarion=1 +Territorial\ Baloth=1 +Territorial\ Gorger=1 +Terror=1 +Terror\ of\ the\ Fairgrounds=1 +Terrus\ Wurm=1 +Test\ of\ Faith=1 +Testament\ of\ Faith=1 +Tethered\ Griffin=1 +Tethered\ Skirge=1 +Tethmos\ High\ Priest=1 +Teysa,\ Envoy\ of\ Ghosts=1 +Tezzeret's\ Ambition=1 +Tezzeret's\ Gambit=1 +Tezzeret's\ Touch=1 +Thalakos\ Dreamsower=1 +Thalakos\ Drifters=1 +Thalakos\ Lowlands=1 +Thalakos\ Mistfolk=1 +Thalakos\ Scout=1 +Thalakos\ Seer=1 +Thalakos\ Sentry=1 +Thallid=1 +Thallid\ Devourer=1 +Thallid\ Germinator=1 +Thallid\ Shell-Dweller=1 +Thassa's\ Bounty=1 +Thassa's\ Devourer=1 +Thassa's\ Emissary=1 +Thassa's\ Ire=1 +Thassa's\ Rebuff=1 +Thaumatog=1 +Thawing\ Glaciers=1 +The\ Fallen=1 +The\ Hive=1 +The\ Lady\ of\ the\ Mountain=1 +The\ Wretched=1 +Theft\ of\ Dreams=1 +Thelon\ of\ Havenwood=1 +Thelonite\ Hermit=1 +Thermal\ Blast=1 +Thermal\ Flux=1 +Thermal\ Navigator=1 +Thick-Skinned\ Goblin=1 +Thicket\ Basilisk=1 +Thief\ of\ Hope=1 +Thieves'\ Fortune=1 +Thieving\ Magpie=1 +Thieving\ Sprite=1 +Think\ Tank=1 +Thirst=1 +Thirsting\ Axe=1 +Thistledown\ Duo=1 +Thopter\ Arrest=1 +Thopter\ Engineer=1 +Thopter\ Spy\ Network=1 +Thopter\ Squadron=1 +Thorn\ Thallid=1 +Thornbow\ Archer=1 +Thorncaster\ Sliver=1 +Thornhide\ Wolves=1 +Thornscape\ Apprentice=1 +Thornscape\ Battlemage=1 +Thorntooth\ Witch=1 +Thornwatch\ Scarecrow=1 +Thornweald\ Archer=1 +Those\ Who\ Serve=1 +Thought\ Courier=1 +Thought\ Devourer=1 +Thought\ Dissector=1 +Thought\ Gorger=1 +Thought\ Harvester=1 +Thought\ Hemorrhage=1 +Thought\ Nibbler=1 +Thought\ Prison=1 +Thoughtbind=1 +Thoughtcutter\ Agent=1 +Thoughtflare=1 +Thoughtleech=1 +Thoughtpicker\ Witch=1 +Thoughtrender\ Lamia=1 +Thoughtweft\ Gambit=1 +Thoughtweft\ Trio=1 +Thousand\ Winds=1 +Thraben\ Foulbloods=1 +Thraben\ Gargoyle=1 +Thraben\ Sentry=1 +Thraben\ Standard\ Bearer=1 +Thran\ Foundry=1 +Thran\ Golem=1 +Thran\ Weaponry=1 +Thrashing\ Mossdog=1 +Threaten=1 +Three\ Dreams=1 +Three\ Tragedies=1 +Thresher\ Lizard=1 +Thrill-Kill\ Assassin=1 +Thriss,\ Nantuko\ Primus=1 +Thrive=1 +Thriving\ Grubs=1 +Thriving\ Ibex=1 +Thriving\ Rats=1 +Thriving\ Rhino=1 +Thriving\ Turtle=1 +Throne\ of\ Bone=1 +Throne\ of\ Empires=1 +Throne\ of\ Geth=1 +Throne\ of\ the\ God-Pharaoh=1 +Throttle=1 +Throwing\ Knife=1 +Thrull\ Champion=1 +Thrull\ Parasite=1 +Thrull\ Retainer=1 +Thrull\ Surgeon=1 +Thrummingbird=1 +Thunder\ Brute=1 +Thunder\ of\ Hooves=1 +Thunder\ Spirit=1 +Thunder\ Strike=1 +Thunder\ Wall=1 +Thunder-Thrash\ Elder=1 +Thunderblade\ Charge=1 +Thunderblust=1 +Thunderbolt=1 +Thunderclap\ Wyvern=1 +Thundercloud\ Elemental=1 +Thundercloud\ Shaman=1 +Thunderheads=1 +Thundering\ Giant=1 +Thundering\ Tanadon=1 +Thunderous\ Might=1 +Thunderscape\ Apprentice=1 +Thunderscape\ Battlemage=1 +Thunderscape\ Master=1 +Thundersong\ Trumpeter=1 +Thunderstaff=1 +Tibor\ and\ Lumia=1 +Tidal\ Bore=1 +Tidal\ Courier=1 +Tidal\ Kraken=1 +Tidal\ Surge=1 +Tidal\ Visionary=1 +Tidal\ Warrior=1 +Tidal\ Wave=1 +Tide\ Drifter=1 +Tide\ of\ War=1 +Tideshaper\ Mystic=1 +Tidewalker=1 +Tidy\ Conclusion=1 +Tightening\ Coils=1 +Timber\ Gorge=1 +Timberland\ Ruins=1 +Timbermare=1 +Timberpack\ Wolf=1 +Time\ and\ Tide=1 +Time\ Bomb=1 +Time\ Ebb=1 +Time\ of\ Heroes=1 +Time\ of\ Need=1 +Time\ Stop=1 +Time\ to\ Feed=1 +Time\ to\ Reflect=1 +Timebender=1 +Timecrafting=1 +Timely\ Hordemate=1 +Timesifter=1 +Tin\ Street\ Hooligan=1 +Tine\ Shrike=1 +Tireless\ Missionaries=1 +Titan\ Forge=1 +Titan's\ Presence=1 +Titan's\ Revenge=1 +Titan's\ Strength=1 +Titania's\ Boon=1 +Titania's\ Chosen=1 +Titanic\ Growth=1 +Titanic\ Ultimatum=1 +Titanium\ Golem=1 +Tivadar\ of\ Thorn=1 +Tivadar's\ Crusade=1 +To\ Arms!=1 +Tobias\ Andrion=1 +Toil\ //\ Trouble=1 +Toil\ to\ Renown=1 +Toils\ of\ Night\ and\ Day=1 +Tolarian\ Drake=1 +Tolarian\ Emissary=1 +Tolarian\ Sentinel=1 +Tomb\ of\ the\ Spirit\ Dragon=1 +Tombfire=1 +Tome\ Scour=1 +Tomorrow,\ Azami's\ Familiar=1 +Tooth\ and\ Claw=1 +Tooth\ Collector=1 +Tooth\ of\ Chiss-Goria=1 +Topan\ Ascetic=1 +Topan\ Freeblade=1 +Topplegeist=1 +Tor\ Wauki=1 +Torch\ Fiend=1 +Torch\ Gauntlet=1 +Torch\ Slinger=1 +Torch\ Song=1 +Torchling=1 +Torii\ Watchward=1 +Torment=1 +Tormented\ Angel=1 +Tormented\ Hero=1 +Tormented\ Pariah=1 +Tormented\ Soul=1 +Tormented\ Thoughts=1 +Tormenting\ Voice=1 +Tormentor\ Exarch=1 +Tornado=1 +Torpid\ Moloch=1 +Torpor\ Dust=1 +Torrent\ of\ Souls=1 +Torrent\ of\ Stone=1 +Torsten\ Von\ Ursus=1 +Tortoise\ Formation=1 +Torture=1 +Toshiro\ Umezawa=1 +Totem-Guide\ Hartebeest=1 +Touch\ of\ Invisibility=1 +Touch\ of\ Moonglove=1 +Touch\ of\ the\ Eternal=1 +Touch\ of\ the\ Void=1 +Tower\ Above=1 +Tower\ Defense=1 +Tower\ Drake=1 +Tower\ Gargoyle=1 +Tower\ Geist=1 +Tower\ of\ Calamities=1 +Tower\ of\ Champions=1 +Tower\ of\ Eons=1 +Tower\ of\ Fortunes=1 +Tower\ of\ Murmurs=1 +Towering\ Baloth=1 +Towering\ Indrik=1 +Town\ Gossipmonger=1 +Toxic\ Iguanar=1 +Toxic\ Nim=1 +Toxic\ Stench=1 +Trace\ of\ Abundance=1 +Tracker=1 +Tracker's\ Instincts=1 +Trade\ Routes=1 +Tradewind\ Rider=1 +Tragic\ Arrogance=1 +Tragic\ Poet=1 +Trail\ of\ Evidence=1 +Trail\ of\ Mystery=1 +Train\ of\ Thought=1 +Trained\ Armodon=1 +Trained\ Caracal=1 +Trained\ Orgg=1 +Trained\ Pronghorn=1 +Traitor's\ Clutch=1 +Traitor's\ Roar=1 +Traitorous\ Blood=1 +Traitorous\ Instinct=1 +Tranquil\ Expanse=1 +Tranquil\ Garden=1 +Tranquil\ Path=1 +Transguild\ Courier=1 +Transguild\ Promenade=1 +Transluminant=1 +Transmogrifying\ Licid=1 +Trap\ Digger=1 +Trap\ Essence=1 +Trapfinder's\ Trick=1 +Trapmaker's\ Snare=1 +Traumatic\ Visions=1 +Traumatize=1 +Travel\ Preparations=1 +Traveler's\ Amulet=1 +Treacherous\ Link=1 +Treacherous\ Pit-Dweller=1 +Treacherous\ Terrain=1 +Treacherous\ Urge=1 +Treacherous\ Vampire=1 +Treacherous\ Werewolf=1 +Tread\ Upon=1 +Treasure\ Cruise=1 +Treasure\ Hunter=1 +Treasure\ Keeper=1 +Treasure\ Trove=1 +Treasured\ Find=1 +Treasury\ Thrull=1 +Tree\ Monkey=1 +Treefolk\ Harbinger=1 +Treefolk\ Healer=1 +Treefolk\ Mystic=1 +Treefolk\ Seedlings=1 +Treetop\ Bracers=1 +Treetop\ Rangers=1 +Treetop\ Scout=1 +Tremor=1 +Trepanation\ Blade=1 +Trespasser\ il-Vec=1 +Trespasser's\ Curse=1 +Trespassing\ Souleater=1 +Tresserhorn\ Sinks=1 +Tresserhorn\ Skyknight=1 +Trestle\ Troll=1 +Triad\ of\ Fates=1 +Trial\ //\ Error=1 +Trial\ of\ Ambition=1 +Trial\ of\ Knowledge=1 +Trial\ of\ Solidarity=1 +Trial\ of\ Strength=1 +Trial\ of\ Zeal=1 +Triangle\ of\ War=1 +Tribal\ Flames=1 +Tribal\ Forcemage=1 +Tribal\ Unity=1 +Tribute\ to\ Hunger=1 +Tribute\ to\ the\ Wild=1 +Trickery\ Charm=1 +Trickster\ Mage=1 +Triclopean\ Sight=1 +Trigon\ of\ Infestation=1 +Trigon\ of\ Mending=1 +Trigon\ of\ Rage=1 +Trigon\ of\ Thought=1 +Trip\ Noose=1 +Trip\ Wire=1 +Triskaidekaphobia=1 +Triskelavus=1 +Triskelion=1 +Triton\ Cavalry=1 +Triton\ Fortune\ Hunter=1 +Triton\ Shorestalker=1 +Triton\ Shorethief=1 +Triton\ Tactics=1 +Triumph\ of\ Cruelty=1 +Triumph\ of\ Ferocity=1 +Troll-Horn\ Cameo=1 +Trollhide=1 +Trolls\ of\ Tel-Jilad=1 +Tromokratis=1 +Tromp\ the\ Domains=1 +Trophy\ Hunter=1 +Trophy\ Mage=1 +Trostani's\ Judgment=1 +Trostani's\ Summoner=1 +Troubled\ Healer=1 +True\ Conviction=1 +True-Faith\ Censer=1 +Truefire\ Paladin=1 +Trueheart\ Duelist=1 +Trueheart\ Twins=1 +Trumpet\ Blast=1 +Trumpeting\ Armodon=1 +Trusty\ Companion=1 +Trusty\ Machete=1 +Truth\ or\ Tale=1 +Trygon\ Predator=1 +Tukatongue\ Thallid=1 +Tuknir\ Deathlock=1 +Tuktuk\ Grunts=1 +Tuktuk\ Scrapper=1 +Tuktuk\ the\ Explorer=1 +Tumble\ Magnet=1 +Tundra\ Kavu=1 +Tundra\ Wolves=1 +Tunnel\ Ignus=1 +Tunnel\ Vision=1 +Tunneler\ Wurm=1 +Tunneling\ Geopede=1 +Turbulent\ Dreams=1 +Turf\ Wound=1 +Turn\ //\ Burn=1 +Turn\ Against=1 +Turn\ Aside=1 +Turn\ the\ Tables=1 +Turn\ the\ Tide=1 +Turn\ to\ Dust=1 +Turn\ to\ Frog=1 +Turn\ to\ Mist=1 +Turntimber\ Basilisk=1 +Turntimber\ Grove=1 +Turntimber\ Ranger=1 +Turtleshell\ Changeling=1 +Tusked\ Colossodon=1 +Tuskguard\ Captain=1 +Twiddle=1 +Twigwalker=1 +Twilight\ Shepherd=1 +Twin\ Bolt=1 +Twinblade\ Slasher=1 +Twincast=1 +Twinflame=1 +Twinning\ Glass=1 +Twins\ of\ Maurer\ Estate=1 +Twinstrike=1 +Twisted\ Abomination=1 +Twisted\ Experiment=1 +Twisted\ Image=1 +Twisted\ Justice=1 +Twitch=1 +Two-Headed\ Cerberus=1 +Two-Headed\ Giant\ of\ Foriys=1 +Two-Headed\ Sliver=1 +Tymaret,\ the\ Murder\ King=1 +Typhoid\ Rats=1 +Tyrannize=1 +Tyrant\ of\ Discord=1 +Tyrant\ of\ Valakut=1 +Tyrant's\ Choice=1 +Tyrant's\ Machine=1 +Uba\ Mask=1 +Ubul\ Sar\ Gatekeepers=1 +Ugin's\ Construct=1 +Ugin's\ Insight=1 +Uktabi\ Drake=1 +Uktabi\ Efreet=1 +Uktabi\ Orangutan=1 +Ukud\ Cobra=1 +Ulamog's\ Despoiler=1 +Ulamog's\ Nullifier=1 +Ulamog's\ Reclaimer=1 +Ulasht,\ the\ Hate\ Seed=1 +Ulcerate=1 +Ulrich's\ Kindred=1 +Ultimate\ Price=1 +Ulvenwald\ Bear=1 +Ulvenwald\ Captive=1 +Ulvenwald\ Mysteries=1 +Ulvenwald\ Mystics=1 +Ulvenwald\ Observer=1 +Umara\ Entangler=1 +Umara\ Raptor=1 +Umbra\ Mystic=1 +Umbra\ Stalker=1 +Unbender\ Tine=1 +Unblinking\ Bleb=1 +Unbreathing\ Horde=1 +Unbridled\ Growth=1 +Unburden=1 +Unburial\ Rites=1 +Uncaged\ Fury=1 +Unchecked\ Growth=1 +Uncle\ Istvan=1 +Uncontrollable\ Anger=1 +Uncontrolled\ Infestation=1 +Uncovered\ Clues=1 +Undead\ Alchemist=1 +Undead\ Leotau=1 +Undead\ Minotaur=1 +Undead\ Servant=1 +Undead\ Slayer=1 +Undercity\ Informer=1 +Undercity\ Plague=1 +Undercity\ Shade=1 +Undercity\ Troll=1 +Undergrowth\ Scavenger=1 +Underhanded\ Designs=1 +Undertaker=1 +Underworld\ Cerberus=1 +Underworld\ Coinsmith=1 +Underworld\ Connections=1 +Undo=1 +Undying\ Flames=1 +Undying\ Rage=1 +Unearthly\ Blizzard=1 +Unexpected\ Results=1 +Unflinching\ Courage=1 +Unhinge=1 +Unholy\ Hunger=1 +Unholy\ Strength=1 +Unified\ Front=1 +Unified\ Strike=1 +Uninvited\ Geist=1 +Unity\ of\ Purpose=1 +Universal\ Solvent=1 +Unknown\ Shores=1 +Unlicensed\ Disintegration=1 +Unliving\ Psychopath=1 +Unmake\ the\ Graves=1 +Unnatural\ Aggression=1 +Unnatural\ Endurance=1 +Unnatural\ Predation=1 +Unnatural\ Speed=1 +Unnerve=1 +Unnerving\ Assault=1 +Unravel\ the\ Aether=1 +Unruly\ Mob=1 +Unscythe,\ Killer\ of\ Kings=1 +Unstable\ Frontier=1 +Unstable\ Hulk=1 +Unsubstantiate=1 +Unsummon=1 +Untaidake,\ the\ Cloud\ Keeper=1 +Untamed\ Hunger=1 +Untamed\ Might=1 +Untethered\ Express=1 +Unwavering\ Initiate=1 +Unwilling\ Recruit=1 +Unworthy\ Dead=1 +Unyaro\ Bees=1 +Unyielding\ Krumar=1 +Updraft\ Elemental=1 +Upwelling=1 +Ur-Golem's\ Eye=1 +Urban\ Burgeoning=1 +Urban\ Evolution=1 +Urbis\ Protector=1 +Urborg\ Elf=1 +Urborg\ Mindsucker=1 +Urborg\ Panther=1 +Urborg\ Phantom=1 +Urborg\ Shambler=1 +Urborg\ Skeleton=1 +Urborg\ Syphon-Mage=1 +Urborg\ Uprising=1 +Urge\ to\ Feed=1 +Ursapine=1 +Ursine\ Fylgja=1 +Urza's\ Armor=1 +Urza's\ Chalice=1 +Urza's\ Factory=1 +Urza's\ Miter=1 +Uthden\ Troll=1 +Utopia\ Mycon=1 +Utopia\ Vow=1 +Utter\ End=1 +Utvara\ Scalper=1 +Uyo,\ Silent\ Prophet=1 +Vagrant\ Plowbeasts=1 +Valakut\ Fireboar=1 +Valakut\ Invoker=1 +Valakut\ Predator=1 +Valeron\ Outlander=1 +Valeron\ Wardens=1 +Valiant\ Guard=1 +Valley\ Dasher=1 +Valley\ Rannet=1 +Valleymaker=1 +Valor=1 +Valor\ in\ Akros=1 +Valor\ Made\ Real=1 +Vampire\ Aristocrat=1 +Vampire\ Bats=1 +Vampire\ Cutthroat=1 +Vampire\ Envoy=1 +Vampire\ Hounds=1 +Vampire\ Interloper=1 +Vampire\ Lacerator=1 +Vampire\ Nighthawk=1 +Vampire\ Noble=1 +Vampire\ Outcasts=1 +Vampire's\ Bite=1 +Vampiric\ Embrace=1 +Vampiric\ Fury=1 +Vampiric\ Rites=1 +Vampiric\ Sliver=1 +Vampiric\ Spirit=1 +Vandalize=1 +Vanguard\ of\ Brimaz=1 +Vanish\ into\ Memory=1 +Vanishment=1 +Vanquish=1 +Vanquish\ the\ Foul=1 +Vapor\ Snare=1 +Vaporkin=1 +Vaporous\ Djinn=1 +Varchild's\ Crusader=1 +Varchild's\ War-Riders=1 +Varolz,\ the\ Scar-Striped=1 +Vassal's\ Duty=1 +Vastwood\ Animist=1 +Vastwood\ Gorger=1 +Vaultbreaker=1 +Vebulid=1 +Vec\ Townships=1 +Vectis\ Silencers=1 +Vector\ Asp=1 +Vedalken\ Aethermage=1 +Vedalken\ Anatomist=1 +Vedalken\ Archmage=1 +Vedalken\ Blademaster=1 +Vedalken\ Certarch=1 +Vedalken\ Dismisser=1 +Vedalken\ Engineer=1 +Vedalken\ Entrancer=1 +Vedalken\ Ghoul=1 +Vedalken\ Heretic=1 +Vedalken\ Infuser=1 +Vedalken\ Mastermind=1 +Vedalken\ Outlander=1 +Vedalken\ Plotter=1 +Veil\ of\ Birds=1 +Veil\ of\ Secrecy=1 +Veilborn\ Ghoul=1 +Veiled\ Crocodile=1 +Veiled\ Sentry=1 +Veiled\ Serpent=1 +Veiling\ Oddity=1 +Veilstone\ Amulet=1 +Vein\ Drinker=1 +Venarian\ Glimmer=1 +Vendetta=1 +Venerable\ Kumo=1 +Venerable\ Lammasu=1 +Venerable\ Monk=1 +Venerated\ Teacher=1 +Vengeance=1 +Vengeful\ Archon=1 +Vengeful\ Dreams=1 +Vengeful\ Firebrand=1 +Vengeful\ Rebel=1 +Vengeful\ Rebirth=1 +Vengeful\ Vampire=1 +Venom\ Sliver=1 +Venomous\ Dragonfly=1 +Venomous\ Vines=1 +Venomspout\ Brackus=1 +Venser's\ Diffusion=1 +Vent\ Sentinel=1 +Verdant\ Automaton=1 +Verdant\ Embrace=1 +Verdant\ Force=1 +Verdant\ Haven=1 +Verdant\ Succession=1 +Verdant\ Touch=1 +Verdeloth\ the\ Ancient=1 +Verduran\ Emissary=1 +Vermiculos=1 +Vertigo\ Spawn=1 +Vesper\ Ghoul=1 +Vessel\ of\ Ephemera=1 +Vessel\ of\ Malignity=1 +Vessel\ of\ Nascency=1 +Vessel\ of\ Paramnesia=1 +Vessel\ of\ Volatility=1 +Vestige\ of\ Emrakul=1 +Veteran\ Armorer=1 +Veteran\ Armorsmith=1 +Veteran\ Bodyguard=1 +Veteran\ Cathar=1 +Veteran\ Cavalier=1 +Veteran\ Motorist=1 +Veteran\ of\ the\ Depths=1 +Veteran\ Swordsmith=1 +Veteran\ Warleader=1 +Veteran's\ Armaments=1 +Veteran's\ Reflexes=1 +Veteran's\ Sidearm=1 +Vexing\ Arcanix=1 +Vexing\ Sphinx=1 +Vhati\ il-Dal=1 +Vial\ of\ Dragonfire=1 +Vial\ of\ Poison=1 +Viashino\ Bladescout=1 +Viashino\ Cutthroat=1 +Viashino\ Fangtail=1 +Viashino\ Firstblade=1 +Viashino\ Grappler=1 +Viashino\ Outrider=1 +Viashino\ Racketeer=1 +Viashino\ Runner=1 +Viashino\ Sandscout=1 +Viashino\ Sandstalker=1 +Viashino\ Sandswimmer=1 +Viashino\ Shanktail=1 +Viashino\ Skeleton=1 +Viashino\ Slaughtermaster=1 +Viashino\ Spearhunter=1 +Viashino\ Warrior=1 +Viashino\ Weaponsmith=1 +Vibrating\ Sphere=1 +Vicious\ Hunger=1 +Vicious\ Kavu=1 +Vicious\ Shadows=1 +Victorious\ Destruction=1 +Victory's\ Herald=1 +Victual\ Sliver=1 +View\ from\ Above=1 +Vigean\ Graftmage=1 +Vigean\ Hydropon=1 +Vigil\ for\ the\ Lost=1 +Vigilant\ Drake=1 +Vigilant\ Sentry=1 +Vigilante\ Justice=1 +Vigor\ Mortis=1 +Vigorous\ Charge=1 +Vildin-Pack\ Outcast=1 +Vile\ Aggregate=1 +Vile\ Deacon=1 +Vile\ Rebirth=1 +Vile\ Redeemer=1 +Vile\ Requiem=1 +Village\ Bell-Ringer=1 +Village\ Elder=1 +Village\ Ironsmith=1 +Village\ Messenger=1 +Village\ Survivors=1 +Villagers\ of\ Estwald=1 +Villainous\ Ogre=1 +Villainous\ Wealth=1 +Vindictive\ Mob=1 +Vine\ Kami=1 +Vine\ Snare=1 +Vinelasher\ Kudzu=1 +Vines\ of\ the\ Recluse=1 +Vineweft=1 +Violent\ Impact=1 +Violet\ Pall=1 +Viper's\ Kiss=1 +Viral\ Drake=1 +Viridescent\ Wisps=1 +Viridian\ Acolyte=1 +Viridian\ Betrayers=1 +Viridian\ Emissary=1 +Viridian\ Harvest=1 +Viridian\ Joiner=1 +Viridian\ Lorebearers=1 +Viridian\ Revel=1 +Viridian\ Shaman=1 +Virulent\ Plague=1 +Virulent\ Sliver=1 +Virulent\ Swipe=1 +Virulent\ Wound=1 +Visara\ the\ Dreadful=1 +Viscerid\ Armor=1 +Viscid\ Lemures=1 +Visionary\ Augmenter=1 +Visions\ of\ Brutality=1 +Vital\ Splicer=1 +Vital\ Surge=1 +Vitality\ Charm=1 +Vitaspore\ Thallid=1 +Vithian\ Renegades=1 +Vithian\ Stinger=1 +Vitu-Ghazi\ Guildmage=1 +Vitu-Ghazi,\ the\ City-Tree=1 +Vivid\ Creek=1 +Vivid\ Grove=1 +Vivid\ Marsh=1 +Vivid\ Meadow=1 +Vizier\ of\ Deferment=1 +Vizier\ of\ Many\ Faces=1 +Vizier\ of\ Remedies=1 +Vizier\ of\ Tumbling\ Sands=1 +Vizkopa\ Confessor=1 +Vizkopa\ Guildmage=1 +Vizzerdrix=1 +Vodalian\ Hypnotist=1 +Vodalian\ Knights=1 +Vodalian\ Merchant=1 +Vodalian\ Mystic=1 +Vodalian\ Serpent=1 +Voice\ of\ All=1 +Voice\ of\ Duty=1 +Voice\ of\ Grace=1 +Voice\ of\ Law=1 +Voice\ of\ Reason=1 +Voice\ of\ the\ Woods=1 +Voices\ from\ the\ Void=1 +Void=1 +Void\ Attendant=1 +Void\ Grafter=1 +Void\ Maw=1 +Void\ Snare=1 +Void\ Squall=1 +Void\ Stalker=1 +Voidmage\ Apprentice=1 +Voidmage\ Husher=1 +Voidstone\ Gargoyle=1 +Voidwalk=1 +Voidwielder=1 +Volatile\ Rig=1 +Volcanic\ Awakening=1 +Volcanic\ Dragon=1 +Volcanic\ Geyser=1 +Volcanic\ Rambler=1 +Volcanic\ Rush=1 +Volcanic\ Spray=1 +Volcanic\ Strength=1 +Volcanic\ Submersion=1 +Volcanic\ Upheaval=1 +Volcanic\ Vision=1 +Volcano\ Imp=1 +Voldaren\ Duelist=1 +Volition\ Reins=1 +Volrath's\ Curse=1 +Volrath's\ Gardens=1 +Volrath's\ Laboratory=1 +Volrath's\ Shapeshifter=1 +Volt\ Charge=1 +Voltaic\ Construct=1 +Voodoo\ Doll=1 +Voracious\ Cobra=1 +Voracious\ Hatchling=1 +Voracious\ Null=1 +Voracious\ Wurm=1 +Vorel\ of\ the\ Hull\ Clade=1 +Vorosh,\ the\ Hunter=1 +Vorrac\ Battlehorns=1 +Vortex\ Elemental=1 +Vow\ of\ Duty=1 +Vow\ of\ Flight=1 +Vow\ of\ Lightning=1 +Vow\ of\ Malice=1 +Vow\ of\ Wildness=1 +Voyage's\ End=1 +Voyager\ Drake=1 +Voyager\ Staff=1 +Voyaging\ Satyr=1 +Vulpine\ Goliath=1 +Vulshok\ Battlegear=1 +Vulshok\ Battlemaster=1 +Vulshok\ Refugee=1 +Vulshok\ Sorcerer=1 +Vulshok\ War\ Boar=1 +Vulturous\ Aven=1 +Wailing\ Ghoul=1 +Wake\ of\ Vultures=1 +Wake\ the\ Reflections=1 +Wakedancer=1 +Wakestone\ Gargoyle=1 +Waking\ Nightmare=1 +Walker\ of\ Secret\ Ways=1 +Walker\ of\ the\ Grove=1 +Walker\ of\ the\ Wastes=1 +Walking\ Atlas=1 +Walking\ Corpse=1 +Walking\ Dream=1 +Walking\ Wall=1 +Wall\ of\ Air=1 +Wall\ of\ Blood=1 +Wall\ of\ Bone=1 +Wall\ of\ Corpses=1 +Wall\ of\ Deceit=1 +Wall\ of\ Denial=1 +Wall\ of\ Diffusion=1 +Wall\ of\ Distortion=1 +Wall\ of\ Essence=1 +Wall\ of\ Fire=1 +Wall\ of\ Frost=1 +Wall\ of\ Kelp=1 +Wall\ of\ Light=1 +Wall\ of\ Limbs=1 +Wall\ of\ Mulch=1 +Wall\ of\ Razors=1 +Wall\ of\ Resurgence=1 +Wall\ of\ Souls=1 +Wall\ of\ Spears=1 +Wall\ of\ Stone=1 +Wall\ of\ Swords=1 +Wall\ of\ Tanglecord=1 +Wall\ of\ Tears=1 +Wall\ of\ Vines=1 +Wall\ of\ Wonder=1 +Wall\ of\ Wood=1 +Wallop=1 +Wand\ of\ the\ Elements=1 +Wander\ in\ Death=1 +Wanderer's\ Twig=1 +Wandering\ Champion=1 +Wandering\ Eye=1 +Wandering\ Goblins=1 +Wandering\ Mage=1 +Wandering\ Ones=1 +Wandering\ Wolf=1 +Wanderlust=1 +Wanderwine\ Prophets=1 +Waning\ Wurm=1 +War\ Barge=1 +War\ Behemoth=1 +War\ Dance=1 +War\ Elemental=1 +War\ Falcon=1 +War\ Flare=1 +War\ Horn=1 +War\ Oracle=1 +War\ Priest\ of\ Thune=1 +War\ Report=1 +War-Name\ Aspirant=1 +War-Spike\ Changeling=1 +War-Torch\ Goblin=1 +War-Wing\ Siren=1 +Warbringer=1 +Warchanter\ of\ Mogis=1 +Warchief\ Giant=1 +Warclamp\ Mastiff=1 +Ward\ of\ Piety=1 +Warden\ of\ Evos\ Isle=1 +Warden\ of\ Geometries=1 +Warden\ of\ the\ Beyond=1 +Warden\ of\ the\ Eye=1 +Wardscale\ Dragon=1 +Warfire\ Javelineer=1 +Warleader's\ Helix=1 +Warlord's\ Axe=1 +Warmind\ Infantry=1 +Warmonger=1 +Warmonger's\ Chariot=1 +Warning=1 +Warp\ Artifact=1 +Warp\ World=1 +Warped\ Devotion=1 +Warped\ Landscape=1 +Warped\ Researcher=1 +Warping\ Wail=1 +Warren\ Pilferers=1 +Warren\ Weirding=1 +Warren-Scourge\ Elf=1 +Warrior\ Angel=1 +Warrior\ en-Kor=1 +Warrior's\ Honor=1 +Warriors'\ Lesson=1 +Warthog=1 +Wasp\ Lancer=1 +Waste\ Away=1 +Wasteland\ Scorpion=1 +Wasteland\ Viper=1 +Wastes=1 +Watcher\ in\ the\ Web=1 +Watcher\ of\ the\ Roost=1 +Watcher\ Sliver=1 +Watchers\ of\ the\ Dead=1 +Watchful\ Automaton=1 +Watchful\ Naga=1 +Watchwing\ Scarecrow=1 +Water\ Elemental=1 +Water\ Servant=1 +Watercourser=1 +Waterfront\ Bouncer=1 +Waterspout\ Djinn=1 +Waterspout\ Elemental=1 +Waterspout\ Weavers=1 +Waterveil\ Cavern=1 +Waterwhirl=1 +Wave\ of\ Indifference=1 +Wave-Wing\ Elemental=1 +Wax\ //\ Wane=1 +Waxing\ Moon=1 +Waxmane\ Baku=1 +Way\ of\ the\ Thief=1 +Wayfaring\ Giant=1 +Wayfaring\ Temple=1 +Wayward\ Angel=1 +Wayward\ Giant=1 +Wayward\ Servant=1 +Wayward\ Soul=1 +Weakness=1 +Weapon\ Surge=1 +Weaponcraft\ Enthusiast=1 +Weapons\ Trainer=1 +Wear\ Away=1 +Weathered\ Bodyguards=1 +Weatherseed\ Elf=1 +Weatherseed\ Faeries=1 +Weatherseed\ Totem=1 +Weave\ Fate=1 +Weaver\ of\ Currents=1 +Weaver\ of\ Lies=1 +Weaver\ of\ Lightning=1 +Web=1 +Wee\ Dragonauts=1 +Weed-Pruner\ Poplar=1 +Wei\ Elite\ Companions=1 +Wei\ Infantry=1 +Wei\ Night\ Raiders=1 +Wei\ Strike\ Force=1 +Weight\ of\ Conscience=1 +Weight\ of\ Spires=1 +Weight\ of\ the\ Underworld=1 +Weird\ Harvest=1 +Weirded\ Vampire=1 +Weirding\ Shaman=1 +Weirding\ Wood=1 +Welcome\ to\ the\ Fold=1 +Welder\ Automaton=1 +Weldfast\ Engineer=1 +Weldfast\ Monitor=1 +Weldfast\ Wingsmith=1 +Welding\ Sparks=1 +Welkin\ Guide=1 +Welkin\ Tern=1 +Wellgabber\ Apothecary=1 +Wetland\ Sambar=1 +Wharf\ Infiltrator=1 +Whelming\ Wave=1 +Where\ Ancients\ Tread=1 +Whetstone=1 +Whims\ of\ the\ Fates=1 +Whip\ of\ Erebos=1 +Whip\ Sergeant=1 +Whip\ Silk=1 +Whipcorder=1 +Whipkeeper=1 +Whiplash\ Trap=1 +Whipstitched\ Zombie=1 +Whiptail\ Moloch=1 +Whiptail\ Wurm=1 +Whiptongue\ Frog=1 +Whirler\ Rogue=1 +Whirlermaker=1 +Whirling\ Catapult=1 +Whirling\ Dervish=1 +Whirlpool\ Drake=1 +Whirlpool\ Whelm=1 +Whirlwind=1 +Whirlwind\ Adept=1 +Whisk\ Away=1 +Whisperer\ of\ the\ Wilds=1 +Whispering\ Madness=1 +Whispering\ Shade=1 +Whispering\ Specter=1 +Whispers\ of\ Emrakul=1 +Whispersilk\ Cloak=1 +White\ Knight=1 +White\ Shield\ Crusader=1 +Whitemane\ Lion=1 +Whiteout=1 +Whitewater\ Naiads=1 +Wicked\ Akuba=1 +Wicked\ Pact=1 +Wicked\ Reward=1 +Wicker\ Warcrawler=1 +Wicker\ Witch=1 +Wight\ of\ Precinct\ Six=1 +Wild\ Aesthir=1 +Wild\ Beastmaster=1 +Wild\ Dogs=1 +Wild\ Evocation=1 +Wild\ Griffin=1 +Wild\ Guess=1 +Wild\ Hunger=1 +Wild\ Instincts=1 +Wild\ Leotau=1 +Wild\ Mongrel=1 +Wild\ Ox=1 +Wild\ Pair=1 +Wild\ Ricochet=1 +Wild\ Swing=1 +Wild\ Wanderer=1 +Wild-Field\ Scarecrow=1 +Wildcall=1 +Wilderness\ Elemental=1 +Wildest\ Dreams=1 +Wildfire\ Cerberus=1 +Wildfire\ Emissary=1 +Wildheart\ Invoker=1 +Wildsize=1 +Wildslayer\ Elves=1 +Wildwood\ Rebirth=1 +Will\ of\ the\ Naga=1 +Will-Forged\ Golem=1 +Willbender=1 +Willbreaker=1 +Willow\ Priestess=1 +Wilt-Leaf\ Cavaliers=1 +Wily\ Bandar=1 +Wind\ Dancer=1 +Wind\ Drake=1 +Wind\ Shear=1 +Wind\ Spirit=1 +Wind-Kin\ Raiders=1 +Windborne\ Charge=1 +Winding\ Wurm=1 +Windreaver=1 +Windrider\ Patrol=1 +Winds\ of\ Qal\ Sisma=1 +Winds\ of\ Rath=1 +Winds\ of\ Rebuke=1 +Windstorm=1 +Windwright\ Mage=1 +Wine\ of\ Blood\ and\ Iron=1 +Wing\ Puncture=1 +Wing\ Snare=1 +Wing\ Splicer=1 +Wingcrafter=1 +Winged\ Coatl=1 +Winged\ Shepherd=1 +Winged\ Sliver=1 +Wingrattle\ Scarecrow=1 +Wings\ of\ Velis\ Vel=1 +Wingsteed\ Rider=1 +Winterflame=1 +Wipe\ Clean=1 +Wirecat=1 +Wirefly\ Hive=1 +Wirewood\ Elf=1 +Wirewood\ Guardian=1 +Wirewood\ Savage=1 +Wispweaver\ Angel=1 +Wistful\ Thinking=1 +Wit's\ End=1 +Witch\ Engine=1 +Witch\ Hunter=1 +Witch-Maw\ Nephilim=1 +Witch's\ Familiar=1 +Witch's\ Mist=1 +Witches'\ Eye=1 +Withered\ Wretch=1 +Withering\ Gaze=1 +Withering\ Hex=1 +Withering\ Wisps=1 +Witherscale\ Wurm=1 +Withstand=1 +Withstand\ Death=1 +Witness\ of\ the\ Ages=1 +Witness\ the\ End=1 +Wizard\ Mentor=1 +Wizard\ Replica=1 +Wizened\ Cenn=1 +Wizened\ Snitches=1 +Woebearer=1 +Woebringer\ Demon=1 +Woeleecher=1 +Wojek\ Apothecary=1 +Wojek\ Embermage=1 +Wojek\ Halberdiers=1 +Wojek\ Siren=1 +Wolf\ Pack=1 +Wolf-Skull\ Shaman=1 +Wolfbitten\ Captive=1 +Wolfbriar\ Elemental=1 +Wolfir\ Avenger=1 +Wolfkin\ Bond=1 +Wonder=1 +Wood\ Elemental=1 +Woodcutter's\ Grit=1 +Wooden\ Sphere=1 +Wooden\ Stake=1 +Woodland\ Changeling=1 +Woodland\ Guidance=1 +Woodland\ Patrol=1 +Woodland\ Sleuth=1 +Woodland\ Stream=1 +Woodlurker\ Mimic=1 +Woodweaver's\ Puzzleknot=1 +Woodwraith\ Corrupter=1 +Woodwraith\ Strangler=1 +Woolly\ Loxodon=1 +Woolly\ Mammoths=1 +Woolly\ Spider=1 +Woolly\ Thoctar=1 +Word\ of\ Seizing=1 +Word\ of\ Undoing=1 +Words\ of\ War=1 +Words\ of\ Wind=1 +Workshop\ Assistant=1 +World\ at\ War=1 +World\ Queller=1 +Worldgorger\ Dragon=1 +Worldheart\ Phoenix=1 +Worldly\ Counsel=1 +Worldpurge=1 +Worldslayer=1 +Worm\ Harvest=1 +Wormfang\ Behemoth=1 +Wormfang\ Drake=1 +Wormfang\ Manta=1 +Wormfang\ Newt=1 +Wormfang\ Turtle=1 +Wormwood\ Dryad=1 +Wormwood\ Treefolk=1 +Wort,\ Boggart\ Auntie=1 +Worthy\ Cause=1 +Wrangle=1 +Wrath\ of\ Marit\ Lage=1 +Wreak\ Havoc=1 +Wreath\ of\ Geists=1 +Wrecking\ Ball=1 +Wren's\ Run\ Packmaster=1 +Wren's\ Run\ Vanquisher=1 +Wretched\ Gryff=1 +Wring\ Flesh=1 +Write\ into\ Being=1 +Wu\ Elite\ Cavalry=1 +Wu\ Longbowman=1 +Wu\ Warship=1 +Wurm's\ Tooth=1 +Wurmcalling=1 +Wurmskin\ Forger=1 +Wurmweaver\ Coil=1 +Wydwen,\ the\ Biting\ Gale=1 +Wyluli\ Wolf=1 +Xathrid\ Gorgon=1 +Xathrid\ Slyblade=1 +Xenic\ Poltergeist=1 +Xenograft=1 +Yamabushi's\ Storm=1 +Yavimaya\ Ancients=1 +Yavimaya\ Ants=1 +Yavimaya\ Barbarian=1 +Yavimaya\ Dryad=1 +Yavimaya\ Enchantress=1 +Yavimaya\ Granger=1 +Yavimaya\ Kavu=1 +Yavimaya\ Scion=1 +Yavimaya\ Wurm=1 +Yavimaya's\ Embrace=1 +Yawgmoth\ Demon=1 +Yawgmoth's\ Agenda=1 +Yawgmoth's\ Edict=1 +Yawning\ Fissure=1 +Yeva's\ Forcemage=1 +Yisan,\ the\ Wanderer\ Bard=1 +Yixlid\ Jailer=1 +Yoke\ of\ the\ Damned=1 +Yoked\ Ox=1 +Yoked\ Plowbeast=1 +Yomiji,\ Who\ Bars\ the\ Way=1 +Yore-Tiller\ Nephilim=1 +Young\ Wei\ Recruits=1 +Youthful\ Knight=1 +Youthful\ Scholar=1 +Yuki-Onna=1 +Yukora,\ the\ Prisoner=1 +Zada,\ Hedron\ Grinder=1 +Zada's\ Commando=1 +Zameck\ Guildmage=1 +Zanam\ Djinn=1 +Zap=1 +Zealot\ il-Vec=1 +Zealots\ en-Dal=1 +Zealous\ Conscripts=1 +Zealous\ Guardian=1 +Zektar\ Shrine\ Expedition=1 +Zendikar\ Incarnate=1 +Zendikar\ Resurgent=1 +Zendikar's\ Roil=1 +Zenith\ Seeker=1 +Zephid=1 +Zephid's\ Embrace=1 +Zephyr\ Charge=1 +Zephyr\ Net=1 +Zephyr\ Scribe=1 +Zephyr\ Sprite=1 +Zerapa\ Minotaur=1 +Zhalfirin\ Crusader=1 +Zhalfirin\ Knight=1 +Zhang\ Fei,\ Fierce\ Warrior=1 +Zhur-Taa\ Ancient=1 +Zhur-Taa\ Druid=1 +Zhur-Taa\ Swine=1 +Zodiac\ Dragon=1 +Zodiac\ Monkey=1 +Zoetic\ Cavern=1 +Zombie\ Apocalypse=1 +Zombie\ Assassin=1 +Zombie\ Boa=1 +Zombie\ Brute=1 +Zombie\ Cannibal=1 +Zombie\ Cutthroat=1 +Zombie\ Musher=1 +Zombie\ Scavengers=1 +Zombify=1 +Zulaport\ Chainmage=1 +Zulaport\ Enforcer=1 +Zur's\ Weirding=1 +Zuran\ Spellcaster=1 diff --git a/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/PennyDreadfulCommander.java b/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/PennyDreadfulCommander.java new file mode 100644 index 0000000000..07bbe63069 --- /dev/null +++ b/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/PennyDreadfulCommander.java @@ -0,0 +1,180 @@ +/* + * Copyright 2011 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.deck; + +import java.util.*; +import java.util.Map.Entry; +import mage.abilities.common.CanBeYourCommanderAbility; +import mage.abilities.keyword.PartnerAbility; +import mage.cards.Card; +import mage.cards.ExpansionSet; +import mage.cards.Sets; +import mage.cards.decks.Constructed; +import mage.cards.decks.Deck; +import mage.constants.SetType; +import mage.filter.FilterMana; + +/** + * + * @author spjspj + */ +public class PennyDreadfulCommander extends Constructed { + + protected List bannedCommander = new ArrayList<>(); + private static final Map pdAllowed = new HashMap<>(); + private static boolean setupAllowed = false; + + public PennyDreadfulCommander() { + this("Penny Dreadful Commander"); + for (ExpansionSet set : Sets.getInstance().values()) { + if (set.getSetType() != SetType.CUSTOM_SET) { + setCodes.add(set.getCode()); + } + } + } + + public PennyDreadfulCommander(String name) { + super(name); + } + + @Override + public boolean validate(Deck deck) { + boolean valid = true; + FilterMana colorIdentity = new FilterMana(); + + if (deck.getCards().size() + deck.getSideboard().size() != 100) { + invalid.put("Deck", "Must contain 100 cards: has " + (deck.getCards().size() + deck.getSideboard().size()) + " cards"); + valid = false; + } + + List basicLandNames = new ArrayList<>(Arrays.asList("Forest", "Island", "Mountain", "Swamp", "Plains", "Wastes")); + Map counts = new HashMap<>(); + countCards(counts, deck.getCards()); + countCards(counts, deck.getSideboard()); + + for (Map.Entry entry : counts.entrySet()) { + if (entry.getValue() > 1) { + if (!basicLandNames.contains(entry.getKey())) { + invalid.put(entry.getKey(), "Too many: " + entry.getValue()); + valid = false; + } + } + } + + generatePennyDreadfulHash(); + for (String wantedCard : counts.keySet()) { + if (!(pdAllowed.containsKey(wantedCard))) { + invalid.put(wantedCard, "Banned"); + valid = false; + } + } + + if (deck.getSideboard().size() < 1 || deck.getSideboard().size() > 2) { + invalid.put("Commander", "Sideboard must contain only the commander(s)"); + valid = false; + } else { + for (Card commander : deck.getSideboard()) { + if ((!commander.isCreature() || !commander.isLegendary()) + && (!commander.isPlaneswalker() || !commander.getAbilities().contains(CanBeYourCommanderAbility.getInstance()))) { + invalid.put("Commander", "Commander invalid (" + commander.getName() + ')'); + valid = false; + } + if (deck.getSideboard().size() == 2 && !commander.getAbilities().contains(PartnerAbility.getInstance())) { + invalid.put("Commander", "Commander without Partner (" + commander.getName() + ')'); + valid = false; + } + FilterMana commanderColor = commander.getColorIdentity(); + if (commanderColor.isWhite()) { + colorIdentity.setWhite(true); + } + if (commanderColor.isBlue()) { + colorIdentity.setBlue(true); + } + if (commanderColor.isBlack()) { + colorIdentity.setBlack(true); + } + if (commanderColor.isRed()) { + colorIdentity.setRed(true); + } + if (commanderColor.isGreen()) { + colorIdentity.setGreen(true); + } + } + } + for (Card card : deck.getCards()) { + if (!cardHasValidColor(colorIdentity, card)) { + invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')'); + valid = false; + } + } + for (Card card : deck.getCards()) { + if (!isSetAllowed(card.getExpansionSetCode())) { + if (!legalSets(card)) { + invalid.put(card.getName(), "Not allowed Set: " + card.getExpansionSetCode()); + valid = false; + } + } + } + for (Card card : deck.getSideboard()) { + if (!isSetAllowed(card.getExpansionSetCode())) { + if (!legalSets(card)) { + invalid.put(card.getName(), "Not allowed Set: " + card.getExpansionSetCode()); + valid = false; + } + } + } + return valid; + } + + public boolean cardHasValidColor(FilterMana commander, Card card) { + FilterMana cardColor = card.getColorIdentity(); + return !(cardColor.isBlack() && !commander.isBlack() + || cardColor.isBlue() && !commander.isBlue() + || cardColor.isGreen() && !commander.isGreen() + || cardColor.isRed() && !commander.isRed() + || cardColor.isWhite() && !commander.isWhite()); + } + + public void generatePennyDreadfulHash() { + if (setupAllowed == false) { + setupAllowed = true; + } else { + return; + } + + Properties properties = new Properties(); + try { + properties.load(PennyDreadfulCommander.class.getResourceAsStream("pennydreadful.properties")); + } catch (Exception e) { + e.printStackTrace(); + } + for (final Entry entry : properties.entrySet()) { + pdAllowed.put((String) entry.getKey(), 1); + } + } +} diff --git a/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/pom.xml b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/pom.xml new file mode 100644 index 0000000000..72d827840f --- /dev/null +++ b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/pom.xml @@ -0,0 +1,49 @@ + + + 4.0.0 + + + org.mage + mage-server-plugins + 1.4.25 + + + mage-game-pennydreadfulcommanderfreeforall + jar + Mage Game Penny Dreadful Commander Free For All + + + + ${project.groupId} + mage + ${project.version} + + + + + src + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + maven-resources-plugin + + UTF-8 + + + + + + mage-game-freeforall + + + + + diff --git a/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAll.java b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAll.java new file mode 100644 index 0000000000..195d5a10dd --- /dev/null +++ b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAll.java @@ -0,0 +1,78 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ + +package mage.game; + +import java.util.UUID; +import mage.constants.MultiplayerAttackOption; +import mage.constants.RangeOfInfluence; +import mage.game.match.MatchType; + +/** + * + * @author spjspj + */ +public class PennyDreadfulCommanderFreeForAll extends GameCommanderImpl { + + private int numPlayers; + + public PennyDreadfulCommanderFreeForAll(MultiplayerAttackOption attackOption, RangeOfInfluence range, int freeMulligans, int startLife) { + super(attackOption, range, freeMulligans, startLife); + } + + public PennyDreadfulCommanderFreeForAll(final PennyDreadfulCommanderFreeForAll game) { + super(game); + this.numPlayers = game.numPlayers; + } + + @Override + protected void init(UUID choosingPlayerId) { + startingPlayerSkipsDraw = false; + super.init(choosingPlayerId); + } + + @Override + public MatchType getGameType() { + return new PennyDreadfulCommanderFreeForAllType(); + } + + @Override + public int getNumPlayers() { + return numPlayers; + } + + public void setNumPlayers(int numPlayers) { + this.numPlayers = numPlayers; + } + + @Override + public PennyDreadfulCommanderFreeForAll copy() { + return new PennyDreadfulCommanderFreeForAll(this); + } + +} diff --git a/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllMatch.java b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllMatch.java new file mode 100644 index 0000000000..2e38b39121 --- /dev/null +++ b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllMatch.java @@ -0,0 +1,60 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ + +package mage.game; + +import mage.game.match.MatchImpl; +import mage.game.match.MatchOptions; + +/** + * + * @author spjspj + */ +public class PennyDreadfulCommanderFreeForAllMatch extends MatchImpl { + + public PennyDreadfulCommanderFreeForAllMatch(MatchOptions options) { + super(options); + } + + @Override + public void startGame() throws GameException { + int startLife = 40; + boolean alsoHand = true; + if (options.getDeckType().equals("Variant Magic - Duel Penny Dreadful Commander")) { + startLife = 30; + alsoHand = true; // commander going to hand allowed to go to command zone effective July 17, 2015 + } + PennyDreadfulCommanderFreeForAll game = new PennyDreadfulCommanderFreeForAll(options.getAttackOption(), options.getRange(), options.getFreeMulligans(), startLife); + game.setStartMessage(this.createGameStartMessage()); + game.setAlsoHand(alsoHand); + game.setAlsoLibrary(true); + initGame(game); + games.add(game); + } + +} diff --git a/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllType.java b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllType.java new file mode 100644 index 0000000000..3f5d1ee215 --- /dev/null +++ b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/src/mage/game/PennyDreadfulCommanderFreeForAllType.java @@ -0,0 +1,58 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ + +package mage.game; + +import mage.game.match.MatchType; + + +/** + * + * @author spjspj + */ +public class PennyDreadfulCommanderFreeForAllType extends MatchType { + + public PennyDreadfulCommanderFreeForAllType() { + this.name = "Penny Dreadful Commander Free For All"; + this.maxPlayers = 10; + this.minPlayers = 3; + this.numTeams = 0; + this.useAttackOption = true; + this.useRange = true; + this.sideboardingAllowed = false; + } + + protected PennyDreadfulCommanderFreeForAllType(final PennyDreadfulCommanderFreeForAllType matchType) { + super(matchType); + } + + @Override + public PennyDreadfulCommanderFreeForAllType copy() { + return new PennyDreadfulCommanderFreeForAllType(this); + } +} diff --git a/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/target/maven-archiver/pom.properties b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/target/maven-archiver/pom.properties new file mode 100644 index 0000000000..ce8f78c70b --- /dev/null +++ b/Mage.Server.Plugins/Mage.Game.PennyDreadfulCommanderFreeForAll/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Thu Aug 03 09:40:46 AEST 2017 +version=1.4.25 +groupId=org.mage +artifactId=mage-game-pennydreadfulcommanderfreeforall diff --git a/Mage.Server.Plugins/pom.xml b/Mage.Server.Plugins/pom.xml index fd60041fde..132ed9d0da 100644 --- a/Mage.Server.Plugins/pom.xml +++ b/Mage.Server.Plugins/pom.xml @@ -23,6 +23,7 @@ Mage.Game.MomirDuel Mage.Game.TinyLeadersDuel Mage.Game.CanadianHighlanderDuel + Mage.Game.PennyDreadfulCommanderFreeForAll Mage.Game.TwoPlayerDuel Mage.Player.AI Mage.Player.AIMinimax diff --git a/Mage.Server/config/config.xml b/Mage.Server/config/config.xml index 366b18e516..f2ae1f3e4a 100644 --- a/Mage.Server/config/config.xml +++ b/Mage.Server/config/config.xml @@ -75,6 +75,7 @@ + @@ -148,6 +149,7 @@ + diff --git a/Mage.Server/pom.xml b/Mage.Server/pom.xml index 0edcb6ec86..9bf935915f 100644 --- a/Mage.Server/pom.xml +++ b/Mage.Server/pom.xml @@ -148,6 +148,12 @@ ${project.version} runtime + + ${project.groupId} + mage-game-pennydreadfulcommanderfreeforall + ${project.version} + runtime + ${project.groupId} mage-game-momirduel diff --git a/Mage.Server/release/config/config.xml b/Mage.Server/release/config/config.xml index d1b9959b57..45b1ed1e2f 100644 --- a/Mage.Server/release/config/config.xml +++ b/Mage.Server/release/config/config.xml @@ -72,6 +72,7 @@ + @@ -145,6 +146,7 @@ + diff --git a/Mage.Server/src/main/resources/mage/deck/pennydreadful.properties b/Mage.Server/src/main/resources/mage/deck/pennydreadful.properties new file mode 100644 index 0000000000..6c0c38eb26 --- /dev/null +++ b/Mage.Server/src/main/resources/mage/deck/pennydreadful.properties @@ -0,0 +1,9588 @@ +Abandon\ Hope=1 +Abandon\ Reason=1 +Abandoned\ Outpost=1 +Abattoir\ Ghoul=1 +Abbey\ Gargoyles=1 +Abbey\ Griffin=1 +Aberrant\ Researcher=1 +Abhorrent\ Overlord=1 +Abomination\ of\ Gudul=1 +About\ Face=1 +Absolver\ Thrull=1 +Absorb\ Vis=1 +Abstruse\ Interference=1 +Abuna\ Acolyte=1 +Abundant\ Maw=1 +Abyssal\ Horror=1 +Abyssal\ Nocturnus=1 +Abyssal\ Specter=1 +Abzan\ Advantage=1 +Abzan\ Ascendancy=1 +Abzan\ Banner=1 +Abzan\ Battle\ Priest=1 +Abzan\ Beastmaster=1 +Abzan\ Charm=1 +Abzan\ Falconer=1 +Abzan\ Guide=1 +Abzan\ Kin-Guard=1 +Abzan\ Runemark=1 +Abzan\ Skycaptain=1 +Academy\ Elite=1 +Academy\ Raider=1 +Academy\ Researchers=1 +Accelerated\ Mutation=1 +Accomplished\ Automaton=1 +Accorder\ Paladin=1 +Accorder's\ Shield=1 +Accursed\ Spirit=1 +Accursed\ Witch=1 +Acid\ Web\ Spider=1 +Acid-Spewer\ Dragon=1 +Acidic\ Slime=1 +Acidic\ Sliver=1 +Acolyte\ of\ the\ Inferno=1 +Acolyte's\ Reward=1 +Acrobatic\ Maneuver=1 +Act\ of\ Aggression=1 +Act\ of\ Treason=1 +Act\ on\ Impulse=1 +Active\ Volcano=1 +Adamaro,\ First\ to\ Desire=1 +Adarkar\ Sentinel=1 +Adarkar\ Windform=1 +Adder-Staff\ Boggart=1 +Addle=1 +Advance\ Scout=1 +Advanced\ Hoverguard=1 +Advanced\ Stitchwing=1 +Advent\ of\ the\ Wurm=1 +Adverse\ Conditions=1 +Advice\ from\ the\ Fae=1 +Advocate\ of\ the\ Beast=1 +Aegis\ Angel=1 +Aegis\ Automaton=1 +Aeolipile=1 +Aeon\ Chronicler=1 +Aerial\ Formation=1 +Aerial\ Maneuver=1 +Aerial\ Modification=1 +Aerial\ Predation=1 +Aerial\ Responder=1 +Aerial\ Volley=1 +Aerie\ Bowmasters=1 +Aerie\ Mystics=1 +Aerie\ Ouphes=1 +Aerie\ Worshippers=1 +Aeronaut\ Admiral=1 +Aeronaut\ Tinkerer=1 +Aesthir\ Glider=1 +Aether\ Adept=1 +Aether\ Charge=1 +Aether\ Chaser=1 +Aether\ Figment=1 +Aether\ Flash=1 +Aether\ Herder=1 +Aether\ Inspector=1 +Aether\ Meltdown=1 +Aether\ Membrane=1 +Aether\ Mutation=1 +Aether\ Poisoner=1 +Aether\ Shockwave=1 +Aether\ Spellbomb=1 +Aether\ Sting=1 +Aether\ Storm=1 +Aether\ Swooper=1 +Aether\ Theorist=1 +Aether\ Tide=1 +Aether\ Tradewinds=1 +Aether\ Web=1 +Aetherborn\ Marauder=1 +Aethergeode\ Miner=1 +Aethermage's\ Touch=1 +Aetherplasm=1 +Aethersnipe=1 +Aethersquall\ Ancient=1 +Aetherstorm\ Roc=1 +Aetherstream\ Leopard=1 +Aethertide\ Whale=1 +Aethertorch\ Renegade=1 +Aethertow=1 +Affa\ Guard\ Hound=1 +Affa\ Protector=1 +Afflict=1 +Afflicted\ Deserter=1 +Afterlife=1 +Aftershock=1 +Agent\ of\ Erebos=1 +Agent\ of\ Horizons=1 +Agent\ of\ Masks=1 +Agent\ of\ Shauku=1 +Agent\ of\ the\ Fates=1 +Aggressive\ Urge=1 +Agility=1 +Agonizing\ Demise=1 +Agonizing\ Memories=1 +Agony\ Warp=1 +Agoraphobia=1 +Agrus\ Kos,\ Wojek\ Veteran=1 +Ahn-Crop\ Champion=1 +Aid\ from\ the\ Cowl=1 +Aim\ High=1 +Ainok\ Artillerist=1 +Ainok\ Bond-Kin=1 +Ainok\ Guide=1 +Ainok\ Survivalist=1 +Ainok\ Tracker=1 +Air\ Elemental=1 +Air\ Servant=1 +Airborne\ Aid=1 +Airdrop\ Aeronauts=1 +Airdrop\ Condor=1 +Ajani's\ Chosen=1 +Ajani's\ Mantra=1 +Ajani's\ Presence=1 +Ajani's\ Sunstriker=1 +Akki\ Avalanchers=1 +Akki\ Blizzard-Herder=1 +Akki\ Drillmaster=1 +Akki\ Lavarunner=1 +Akki\ Rockspeaker=1 +Akki\ Underling=1 +Akki\ Underminer=1 +Akoum\ Battlesinger=1 +Akoum\ Boulderfoot=1 +Akoum\ Flameseeker=1 +Akoum\ Hellkite=1 +Akoum\ Stonewaker=1 +Akrasan\ Squire=1 +Akroan\ Conscriptor=1 +Akroan\ Crusader=1 +Akroan\ Hoplite=1 +Akroan\ Horse=1 +Akroan\ Jailer=1 +Akroan\ Line\ Breaker=1 +Akroan\ Mastiff=1 +Akroan\ Phalanx=1 +Akroan\ Sergeant=1 +Akroan\ Skyguard=1 +Akroma's\ Blessing=1 +Akroma's\ Devoted=1 +Aku\ Djinn=1 +Akuta,\ Born\ of\ Ash=1 +Alabaster\ Kirin=1 +Alabaster\ Potion=1 +Alabaster\ Wall=1 +Alaborn\ Musketeer=1 +Alaborn\ Trooper=1 +Aladdin's\ Ring=1 +Alarum=1 +Albino\ Troll=1 +Alchemist's\ Apprentice=1 +Alchemist's\ Greeting=1 +Alchor's\ Tomb=1 +Algae\ Gharial=1 +Alhammarret,\ High\ Arbiter=1 +Aligned\ Hedron\ Network=1 +Alive\ //\ Well=1 +All\ Suns'\ Dawn=1 +Alley\ Evasion=1 +Alley\ Strangler=1 +Allied\ Reinforcements=1 +Allied\ Strategies=1 +Alloy\ Myr=1 +Alluring\ Scent=1 +Alluring\ Siren=1 +Alms=1 +Alms\ Beast=1 +Alms\ of\ the\ Vein=1 +Alpha\ Authority=1 +Alpha\ Brawl=1 +Alpha\ Kavu=1 +Alpha\ Status=1 +Alpha\ Tyrranax=1 +Alpine\ Grizzly=1 +Altac\ Bloodseeker=1 +Altar\ Golem=1 +Altar\ of\ Shadows=1 +Altar\ of\ the\ Brood=1 +Altar\ of\ the\ Lost=1 +Altar's\ Reap=1 +Altered\ Ego=1 +Amass\ the\ Components=1 +Ambassador\ Laquatus=1 +Ambassador\ Oak=1 +Ambitious\ Aetherborn=1 +Ambuscade\ Shaman=1 +Ambush\ Krotiq=1 +Ambush\ Party=1 +Ambush\ Viper=1 +Amoeboid\ Changeling=1 +Amphibious\ Kavu=1 +Amphin\ Cutthroat=1 +Amphin\ Pathmage=1 +Ampryn\ Tactician=1 +Amrou\ Kithkin=1 +Amrou\ Scout=1 +Amrou\ Seekers=1 +Amulet\ of\ Kroog=1 +An-Zerrin\ Ruins=1 +Ana\ Battlemage=1 +Ana\ Disciple=1 +Ana\ Sanctuary=1 +Anaba\ Ancestor=1 +Anaba\ Bodyguard=1 +Anaba\ Shaman=1 +Anaba\ Spirit\ Crafter=1 +Anaconda=1 +Anathemancer=1 +Anax\ and\ Cymede=1 +Ancestor's\ Chosen=1 +Ancestor's\ Prophet=1 +Ancestral\ Memories=1 +Ancestral\ Statue=1 +Ancestral\ Vengeance=1 +Anchor\ to\ the\ Aether=1 +Ancient\ Amphitheater=1 +Ancient\ Carp=1 +Ancient\ Crab=1 +Ancient\ Grudge=1 +Ancient\ Hellkite=1 +Ancient\ Kavu=1 +Ancient\ Silverback=1 +Ancient\ Spider=1 +Angel\ of\ Deliverance=1 +Angel\ of\ Flight\ Alabaster=1 +Angel\ of\ Glory's\ Rise=1 +Angel\ of\ Light=1 +Angel\ of\ Mercy=1 +Angel\ of\ Renewal=1 +Angel\ of\ Retribution=1 +Angel's\ Feather=1 +Angel's\ Herald=1 +Angel's\ Tomb=1 +Angel's\ Trumpet=1 +Angelfire\ Crusader=1 +Angelheart\ Vial=1 +Angelic\ Arbiter=1 +Angelic\ Armaments=1 +Angelic\ Benediction=1 +Angelic\ Blessing=1 +Angelic\ Captain=1 +Angelic\ Curator=1 +Angelic\ Edict=1 +Angelic\ Gift=1 +Angelic\ Page=1 +Angelic\ Purge=1 +Angelic\ Shield=1 +Angelic\ Skirmisher=1 +Angelic\ Voices=1 +Angelic\ Wall=1 +Angler\ Drake=1 +Angry\ Mob=1 +Animal\ Magnetism=1 +Animate\ Artifact=1 +Animate\ Wall=1 +Animation\ Module=1 +Animist's\ Awakening=1 +Ankle\ Shanker=1 +Annihilate=1 +Annihilating\ Fire=1 +Anodet\ Lurker=1 +Anoint=1 +Anointer\ of\ Champions=1 +Anointer\ Priest=1 +Ant\ Queen=1 +Anthem\ of\ Rakdos=1 +Anthousa,\ Setessan\ Hero=1 +Anthroplasm=1 +Anticipate=1 +Antler\ Skulkin=1 +Anurid\ Barkripper=1 +Anurid\ Murkdiver=1 +Anurid\ Scavenger=1 +Anvilwrought\ Raptor=1 +Apathy=1 +Apex\ Hawks=1 +Aphetto\ Alchemist=1 +Aphetto\ Dredging=1 +Aphetto\ Vulture=1 +Aphotic\ Wisps=1 +Apocalypse\ Hydra=1 +Apothecary\ Geist=1 +Appetite\ for\ Brains=1 +Appetite\ for\ the\ Unnatural=1 +Apprentice\ Wizard=1 +Approach\ of\ the\ Second\ Sun=1 +Aquamoeba=1 +Aquamorph\ Entity=1 +Aquastrand\ Spider=1 +Aqueous\ Form=1 +Aquitect's\ Will=1 +Araba\ Mothrider=1 +Arachnoid=1 +Arachnus\ Spinner=1 +Arachnus\ Web=1 +Aradara\ Express=1 +Arashi,\ the\ Sky\ Asunder=1 +Arashin\ Foremost=1 +Arashin\ Sovereign=1 +Arashin\ War\ Beast=1 +Arbalest\ Elite=1 +Arbiter\ of\ Knollridge=1 +Arbiter\ of\ the\ Ideal=1 +Arbor\ Colossus=1 +Arborback\ Stomper=1 +Arc\ Blade=1 +Arc\ Lightning=1 +Arc\ Runner=1 +Arc\ Trail=1 +Arc-Slogger=1 +Arcane\ Melee=1 +Arcane\ Sanctum=1 +Arcane\ Teachings=1 +Arcanis\ the\ Omnipotent=1 +Arcbond=1 +Arcbound\ Bruiser=1 +Arcbound\ Crusher=1 +Arcbound\ Fiend=1 +Arcbound\ Hybrid=1 +Arcbound\ Lancer=1 +Arcbound\ Overseer=1 +Arcbound\ Slith=1 +Arcbound\ Stinger=1 +Arcbound\ Wanderer=1 +Arcbound\ Worker=1 +Archdemon\ of\ Unx=1 +Archers\ of\ Qarsi=1 +Archers'\ Parapet=1 +Archery\ Training=1 +Archetype\ of\ Aggression=1 +Archetype\ of\ Courage=1 +Archetype\ of\ Endurance=1 +Archetype\ of\ Finality=1 +Archetype\ of\ Imagination=1 +Architect\ of\ the\ Untamed=1 +Archivist=1 +Archmage\ Ascension=1 +Archon\ of\ Justice=1 +Archon\ of\ Redemption=1 +Archon\ of\ the\ Triumvirate=1 +Archweaver=1 +Archwing\ Dragon=1 +Arctic\ Aven=1 +Arctic\ Merfolk=1 +Arctic\ Nishoba=1 +Arctic\ Wolves=1 +Ardent\ Militia=1 +Arena\ Athlete=1 +Argent\ Mutation=1 +Argent\ Sphinx=1 +Argentum\ Armor=1 +Argivian\ Blacksmith=1 +Argothian\ Pixies=1 +Argothian\ Swine=1 +Argothian\ Treefolk=1 +Ark\ of\ Blight=1 +Armament\ Corps=1 +Armament\ Master=1 +Armament\ of\ Nyx=1 +Armed\ //\ Dangerous=1 +Armed\ Response=1 +Armistice=1 +Armor\ of\ Faith=1 +Armor\ of\ Thorns=1 +Armor\ Sliver=1 +Armorcraft\ Judge=1 +Armored\ Ascension=1 +Armored\ Cancrix=1 +Armored\ Griffin=1 +Armored\ Pegasus=1 +Armored\ Skaab=1 +Armored\ Transport=1 +Armored\ Warhorse=1 +Armored\ Wolf-Rider=1 +Armorer\ Guildmage=1 +Armory\ Guard=1 +Armory\ of\ Iroas=1 +Arms\ Dealer=1 +Army\ Ants=1 +Arrest=1 +Arrogant\ Bloodlord=1 +Arrow\ Storm=1 +Arrow\ Volley\ Trap=1 +Artful\ Maneuver=1 +Artifact\ Blast=1 +Artificer's\ Epiphany=1 +Artificer's\ Hex=1 +Artificial\ Evolution=1 +Artillerize=1 +Artisan\ of\ Forms=1 +Artisan\ of\ Kozilek=1 +Artisan's\ Sorrow=1 +Ascended\ Lawmage=1 +Ascending\ Aven=1 +Asha's\ Favor=1 +Ashcoat\ Bear=1 +Ashen\ Firebeast=1 +Ashen\ Ghoul=1 +Ashen-Skin\ Zubera=1 +Ashenmoor\ Gouger=1 +Ashiok's\ Adept=1 +Ashling\ the\ Pilgrim=1 +Ashling's\ Prerogative=1 +Ashmouth\ Hound=1 +Ashnod's\ Cylix=1 +Ashnod's\ Transmogrant=1 +Aspect\ of\ Gorgon=1 +Aspect\ of\ Mongoose=1 +Asphodel\ Wanderer=1 +Asphyxiate=1 +Aspiring\ Aeronaut=1 +Assassinate=1 +Assault\ //\ Battery=1 +Assault\ Griffin=1 +Assault\ Zeppelid=1 +Assemble\ the\ Legion=1 +Assembled\ Alphas=1 +Assembly-Worker=1 +Assert\ Authority=1 +Astral\ Slide=1 +Astral\ Steel=1 +Astrolabe=1 +Asylum\ Visitor=1 +Atarka\ Efreet=1 +Atarka\ Monument=1 +Atarka\ Pummeler=1 +Attended\ Knight=1 +Audacious\ Infiltrator=1 +Auger\ Spree=1 +Augmenting\ Automaton=1 +Augur\ il-Vec=1 +Augury\ Owl=1 +Auntie's\ Snitch=1 +Aura\ Barbs=1 +Aura\ Extraction=1 +Aura\ Finesse=1 +Aura\ Graft=1 +Auramancer=1 +Auramancer's\ Guise=1 +Auratog=1 +Auratouched\ Mage=1 +Auriok\ Bladewarden=1 +Auriok\ Edgewright=1 +Auriok\ Glaivemaster=1 +Auriok\ Replica=1 +Auriok\ Salvagers=1 +Auriok\ Sunchaser=1 +Auriok\ Survivors=1 +Auriok\ Transfixer=1 +Auriok\ Windwalker=1 +Aurochs=1 +Aurora\ Griffin=1 +Autochthon\ Wurm=1 +Autumn's\ Veil=1 +Autumnal\ Gloom=1 +Avacyn,\ Guardian\ Angel=1 +Avacyn's\ Collar=1 +Avacyn's\ Judgment=1 +Avacyn's\ Pilgrim=1 +Avacynian\ Missionaries=1 +Avalanche\ Tusker=1 +Avarax=1 +Avarice\ Amulet=1 +Avarice\ Totem=1 +Avatar\ of\ Hope=1 +Avatar\ of\ Might=1 +Aven\ Archer=1 +Aven\ Augur=1 +Aven\ Battle\ Priest=1 +Aven\ Brigadier=1 +Aven\ Cloudchaser=1 +Aven\ Envoy=1 +Aven\ Farseer=1 +Aven\ Fateshaper=1 +Aven\ Fisher=1 +Aven\ Fleetwing=1 +Aven\ Flock=1 +Aven\ Fogbringer=1 +Aven\ Initiate=1 +Aven\ Liberator=1 +Aven\ Mimeomancer=1 +Aven\ Redeemer=1 +Aven\ Riftwatcher=1 +Aven\ Shrine=1 +Aven\ Skirmisher=1 +Aven\ Smokeweaver=1 +Aven\ Squire=1 +Aven\ Sunstriker=1 +Aven\ Tactician=1 +Aven\ Trailblazer=1 +Aven\ Trooper=1 +Aven\ Warhawk=1 +Aven\ Wind\ Guide=1 +Aven\ Windreader=1 +Avenging\ Angel=1 +Avenging\ Arrow=1 +Avenging\ Druid=1 +Avian\ Changeling=1 +Aviary\ Mechanic=1 +Avoid\ Fate=1 +Awaken\ the\ Ancient=1 +Awaken\ the\ Bear=1 +Awakener\ Druid=1 +Awe\ for\ the\ Guilds=1 +Awe\ Strike=1 +Axebane\ Guardian=1 +Axebane\ Stag=1 +Axegrinder\ Giant=1 +Axelrod\ Gunnarson=1 +Aysen\ Bureaucrats=1 +Aysen\ Crusader=1 +Ayumi,\ the\ Last\ Visitor=1 +Azimaet\ Drake=1 +Azor's\ Elocutors=1 +Azorius\ Aethermage=1 +Azorius\ Arrester=1 +Azorius\ Charm=1 +Azorius\ Cluestone=1 +Azorius\ First-Wing=1 +Azorius\ Guildgate=1 +Azorius\ Guildmage=1 +Azorius\ Herald=1 +Azorius\ Justiciar=1 +Azorius\ Keyrune=1 +Azorius\ Signet=1 +Azure\ Drake=1 +Azure\ Mage=1 +Back\ from\ the\ Brink=1 +Back\ to\ Nature=1 +Backwoods\ Survivalists=1 +Bad\ River=1 +Baku\ Altar=1 +Bala\ Ged\ Thief=1 +Balance\ of\ Power=1 +Balduvian\ Barbarians=1 +Balduvian\ Conjurer=1 +Balduvian\ Fallen=1 +Balduvian\ Frostwaker=1 +Balduvian\ Hydra=1 +Balduvian\ Rage=1 +Balduvian\ Warlord=1 +Baleful\ Ammit=1 +Baleful\ Eidolon=1 +Baleful\ Force=1 +Baleful\ Stare=1 +Ballista\ Charger=1 +Ballista\ Squad=1 +Balloon\ Peddler=1 +Ballynock\ Cohort=1 +Baloth\ Cage\ Trap=1 +Baloth\ Null=1 +Baloth\ Pup=1 +Baloth\ Woodcrasher=1 +Balshan\ Collaborator=1 +Balshan\ Griffin=1 +Bamboozle=1 +Bandage=1 +Bane\ of\ Bala\ Ged=1 +Baneful\ Omen=1 +Banewasp\ Affliction=1 +Banisher\ Priest=1 +Banishing\ Stroke=1 +Banishment\ Decree=1 +Banners\ Raised=1 +Banshee=1 +Banshee\ of\ the\ Dread\ Choir=1 +Banshee's\ Blade=1 +Bant\ Battlemage=1 +Bant\ Panorama=1 +Bant\ Sojourners=1 +Bar\ the\ Door=1 +Barbarian\ Bully=1 +Barbarian\ Lunatic=1 +Barbarian\ Outcast=1 +Barbarian\ Riftcutter=1 +Barbed\ Lightning=1 +Barbed\ Sextant=1 +Barbed\ Shocker=1 +Barbed\ Sliver=1 +Barkhide\ Mauler=1 +Barkshell\ Blessing=1 +Barktooth\ Warbeard=1 +Barony\ Vampire=1 +Barrage\ of\ Boulders=1 +Barrage\ of\ Expendables=1 +Barrage\ Ogre=1 +Barrage\ Tyrant=1 +Barren\ Glory=1 +Barren\ Moor=1 +Barricade\ Breaker=1 +Barrin's\ Codex=1 +Barrin's\ Unmaking=1 +Bartel\ Runeaxe=1 +Barter\ in\ Blood=1 +Baru,\ Fist\ of\ Krosa=1 +Basal\ Sliver=1 +Basal\ Thrull=1 +Basandra,\ Battle\ Seraph=1 +Bash\ to\ Bits=1 +Basilica\ Guards=1 +Basilica\ Screecher=1 +Basking\ Rootwalla=1 +Bassara\ Tower\ Archer=1 +Bastion\ Enforcer=1 +Bastion\ Inventor=1 +Bastion\ Mastodon=1 +Bathe\ in\ Dragonfire=1 +Bathe\ in\ Light=1 +Baton\ of\ Courage=1 +Batterhorn=1 +Battering\ Krasis=1 +Battering\ Sliver=1 +Battle\ Brawler=1 +Battle\ Hurda=1 +Battle\ Mastery=1 +Battle\ of\ Wits=1 +Battle\ Rampart=1 +Battle\ Sliver=1 +Battle\ Squadron=1 +Battle\ Strain=1 +Battle-Mad\ Ronin=1 +Battle-Rattle\ Shaman=1 +Battlefield\ Medic=1 +Battlefield\ Scavenger=1 +Battlefield\ Thaumaturge=1 +Battlefront\ Krushok=1 +Battlegate\ Mimic=1 +Battlegrace\ Angel=1 +Battleground\ Geist=1 +Battlegrowth=1 +Battletide\ Alchemist=1 +Battlewand\ Oak=1 +Battlewise\ Aven=1 +Battlewise\ Hoplite=1 +Battlewise\ Valor=1 +Batwing\ Brume=1 +Bayou\ Dragonfly=1 +Beacon\ Behemoth=1 +Beacon\ Hawk=1 +Beacon\ of\ Destiny=1 +Beacon\ of\ Destruction=1 +Bear's\ Companion=1 +Bearer\ of\ Silence=1 +Bearer\ of\ the\ Heavens=1 +Beast\ Attack=1 +Beast\ Hunt=1 +Beast\ of\ Burden=1 +Beastbreaker\ of\ Bala\ Ged=1 +Beastcaller\ Savant=1 +Beastmaster's\ Magemark=1 +Bee\ Sting=1 +Beetleback\ Chief=1 +Beetleform\ Mage=1 +Befoul=1 +Behemoth\ Sledge=1 +Behind\ the\ Scenes=1 +Belfry\ Spirit=1 +Belligerent\ Hatchling=1 +Belligerent\ Sliver=1 +Belligerent\ Whiptail=1 +Bellowing\ Fiend=1 +Bellowing\ Saddlebrute=1 +Bellowing\ Tanglewurm=1 +Bellows\ Lizard=1 +Belltoll\ Dragon=1 +Belltower\ Sphinx=1 +Beloved\ Chaplain=1 +Ben-Ben,\ Akki\ Hermit=1 +Benalish\ Commander=1 +Benalish\ Emissary=1 +Benalish\ Heralds=1 +Benalish\ Hero=1 +Benalish\ Infantry=1 +Benalish\ Knight=1 +Benalish\ Lancer=1 +Benalish\ Missionary=1 +Benalish\ Trapper=1 +Benalish\ Veteran=1 +Benediction\ of\ Moons=1 +Benefaction\ of\ Rhonas=1 +Benefactor's\ Draught=1 +Benevolent\ Ancestor=1 +Benevolent\ Bodyguard=1 +Benthic\ Explorers=1 +Benthic\ Giant=1 +Benthic\ Infiltrator=1 +Benthicore=1 +Bereavement=1 +Berserk\ Murlodont=1 +Berserkers'\ Onslaught=1 +Bestial\ Fury=1 +Bestial\ Menace=1 +Betrayal\ of\ Flesh=1 +Bident\ of\ Thassa=1 +Bile\ Blight=1 +Bile\ Urchin=1 +Binding\ Grasp=1 +Binding\ Mummy=1 +Biomantic\ Mastery=1 +Biomass\ Mutation=1 +Bioplasm=1 +Bioshift=1 +Biovisionary=1 +Bird\ Maiden=1 +Birthing\ Hulk=1 +Biting\ Rain=1 +Biting\ Tether=1 +Bitter\ Revelation=1 +Bitterblade\ Warrior=1 +Bitterheart\ Witch=1 +Bituminous\ Blast=1 +Black\ Cat=1 +Black\ Knight=1 +Black\ Oak\ of\ Odunos=1 +Black\ Poplar\ Shaman=1 +Blackcleave\ Goblin=1 +Blade\ of\ the\ Sixth\ Pride=1 +Bladed\ Bracers=1 +Bladed\ Pinions=1 +Blademane\ Baku=1 +Blades\ of\ Velis\ Vel=1 +Bladetusk\ Boar=1 +Bladewing's\ Thrall=1 +Blanchwood\ Armor=1 +Blanchwood\ Treefolk=1 +Blast\ of\ Genius=1 +Blastfire\ Bolt=1 +Blastoderm=1 +Blaze=1 +Blaze\ Commando=1 +Blaze\ of\ Glory=1 +Blazethorn\ Scarecrow=1 +Blazing\ Blade\ Askari=1 +Blazing\ Hellhound=1 +Blazing\ Specter=1 +Blazing\ Torch=1 +Blazing\ Volley=1 +Bleak\ Coven\ Vampires=1 +Blessed\ Breath=1 +Blessed\ Orator=1 +Blessed\ Reincarnation=1 +Blessed\ Reversal=1 +Blessed\ Spirits=1 +Blessing=1 +Blessing\ of\ Leeches=1 +Blessing\ of\ the\ Nephilim=1 +Blessings\ of\ Nature=1 +Blight\ Herder=1 +Blight\ Sickle=1 +Blightcaster=1 +Blighted\ Bat=1 +Blighted\ Cataract=1 +Blighted\ Fen=1 +Blighted\ Gorge=1 +Blighted\ Shaman=1 +Blighted\ Steppe=1 +Blighted\ Woodland=1 +Blightsoil\ Druid=1 +Blightspeaker=1 +Blightwidow=1 +Blind\ Creeper=1 +Blind\ Hunter=1 +Blind\ Phantasm=1 +Blind\ Zealot=1 +Blind-Spot\ Giant=1 +Blinding\ Drone=1 +Blinding\ Flare=1 +Blinding\ Mage=1 +Blinding\ Powder=1 +Blinding\ Souleater=1 +Blinding\ Spray=1 +Blinking\ Spirit=1 +Blinkmoth\ Infusion=1 +Blinkmoth\ Well=1 +Blister\ Beetle=1 +Blistercoil\ Weird=1 +Blistergrub=1 +Blistering\ Barrier=1 +Blistering\ Dieflyn=1 +Blisterpod=1 +Blitz\ Hellion=1 +Blizzard\ Specter=1 +Bloated\ Toad=1 +Blockade\ Runner=1 +Blockbuster=1 +Blood\ Bairn=1 +Blood\ Cultist=1 +Blood\ Funnel=1 +Blood\ Host=1 +Blood\ Knight=1 +Blood\ Mist=1 +Blood\ Ogre=1 +Blood\ Reckoning=1 +Blood\ Rites=1 +Blood\ Seeker=1 +Blood\ Speaker=1 +Blood\ Tribute=1 +Blood\ Tyrant=1 +Blood\ Vassal=1 +Blood-Chin\ Fanatic=1 +Blood-Chin\ Rager=1 +Blood-Cursed\ Knight=1 +Blood-Toll\ Harpy=1 +Bloodbond\ March=1 +Bloodbond\ Vampire=1 +Bloodbriar=1 +Bloodcrazed\ Hoplite=1 +Bloodcrazed\ Neonate=1 +Bloodfire\ Colossus=1 +Bloodfire\ Dwarf=1 +Bloodfire\ Enforcers=1 +Bloodfire\ Expert=1 +Bloodfire\ Infusion=1 +Bloodfire\ Kavu=1 +Bloodfire\ Mentor=1 +Bloodflow\ Connoisseur=1 +Bloodgift\ Demon=1 +Bloodhall\ Ooze=1 +Bloodhunter\ Bat=1 +Bloodhusk\ Ritualist=1 +Bloodied\ Ghost=1 +Bloodletter\ Quill=1 +Bloodline\ Shaman=1 +Bloodlust\ Inciter=1 +Bloodmad\ Vampire=1 +Bloodmark\ Mentor=1 +Bloodpyre\ Elemental=1 +Bloodrage\ Vampire=1 +Bloodrite\ Invoker=1 +Bloodrock\ Cyclops=1 +Bloodscent=1 +Bloodshed\ Fever=1 +Bloodshot\ Trainee=1 +Bloodthirsty\ Ogre=1 +Bloodthorn\ Taunter=1 +Bloodthrone\ Vampire=1 +Bludgeon\ Brawl=1 +Blunt\ the\ Assault=1 +Blustersquall=1 +Boar\ Umbra=1 +Bog\ Down=1 +Bog\ Glider=1 +Bog\ Gnarr=1 +Bog\ Imp=1 +Bog\ Initiate=1 +Bog\ Raiders=1 +Bog\ Serpent=1 +Bog\ Smugglers=1 +Bog\ Wraith=1 +Bog-Strider\ Ash=1 +Bogardan\ Firefiend=1 +Bogardan\ Lancer=1 +Bogbrew\ Witch=1 +Boggart\ Birth\ Rite=1 +Boggart\ Brute=1 +Boggart\ Forager=1 +Boggart\ Harbinger=1 +Boggart\ Loggers=1 +Boggart\ Mob=1 +Boggart\ Ram-Gang=1 +Boggart\ Shenanigans=1 +Boggart\ Sprite-Chaser=1 +Boiling\ Earth=1 +Boiling\ Seas=1 +Bojuka\ Brigand=1 +Bold\ Defense=1 +Bold\ Impaler=1 +Boldwyr\ Heavyweights=1 +Boldwyr\ Intimidator=1 +Bolt\ of\ Keranos=1 +Boltwing\ Marauder=1 +Bomat\ Bazaar\ Barge=1 +Bomber\ Corps=1 +Bond\ Beetle=1 +Bond\ of\ Agony=1 +Bonded\ Construct=1 +Bonded\ Fetch=1 +Bonds\ of\ Faith=1 +Bonds\ of\ Mortality=1 +Bonds\ of\ Quicksilver=1 +Bone\ Flute=1 +Bone\ Harvest=1 +Bone\ Picker=1 +Bone\ Splinters=1 +Bone\ to\ Ash=1 +Bonehoard=1 +Boneknitter=1 +Boneshard\ Slasher=1 +Bonesplitter\ Sliver=1 +Boneyard\ Wurm=1 +Bontu's\ Monument=1 +Booby\ Trap=1 +Book\ Burning=1 +Book\ of\ Rass=1 +Boompile=1 +Boon\ of\ Emrakul=1 +Boon\ of\ Erebos=1 +Boon\ Satyr=1 +Boonweaver\ Giant=1 +Borborygmos=1 +Border\ Patrol=1 +Borderland\ Behemoth=1 +Borderland\ Minotaur=1 +Borderland\ Ranger=1 +Boreal\ Centaur=1 +Boreal\ Griffin=1 +Boris\ Devilboon=1 +Boros\ Battleshaper=1 +Boros\ Cluestone=1 +Boros\ Elite=1 +Boros\ Fury-Shield=1 +Boros\ Guildgate=1 +Boros\ Guildmage=1 +Boros\ Keyrune=1 +Boros\ Mastiff=1 +Boros\ Recruit=1 +Boros\ Signet=1 +Boros\ Swiftblade=1 +Borrowed\ Grace=1 +Borrowed\ Hostility=1 +Borrowed\ Malevolence=1 +Borrowing\ 100,000\ Arrows=1 +Bosh,\ Iron\ Golem=1 +Bottle\ Gnomes=1 +Bottled\ Cloister=1 +Boulder\ Salvo=1 +Boulderfall=1 +Bound\ //\ Determined=1 +Bound\ by\ Moonsilver=1 +Bound\ in\ Silence=1 +Bounding\ Krasis=1 +Bounteous\ Kirin=1 +Bow\ of\ Nylea=1 +Bower\ Passage=1 +Brackwater\ Elemental=1 +Braids,\ Conjurer\ Adept=1 +Braidwood\ Sextant=1 +Brain\ Freeze=1 +Brain\ Gorgers=1 +Brain\ in\ a\ Jar=1 +Brain\ Maggot=1 +Brain\ Pry=1 +Brain\ Weevil=1 +Brainbite=1 +Brainspoil=1 +Bramble\ Elemental=1 +Bramblecrush=1 +Bramblesnap=1 +Branching\ Bolt=1 +Branchsnap\ Lorian=1 +Brass\ Gnat=1 +Brass\ Herald=1 +Brass\ Man=1 +Brass\ Squire=1 +Brassclaw\ Orcs=1 +Bravado=1 +Brave\ the\ Elements=1 +Brave\ the\ Sands=1 +Brawler's\ Plate=1 +Brawn=1 +Brazen\ Scourge=1 +Brazen\ Wolves=1 +Breach=1 +Breaching\ Hippocamp=1 +Break\ of\ Day=1 +Break\ Through\ the\ Line=1 +Breaker\ of\ Armies=1 +Breakneck\ Rider=1 +Breath\ of\ Fury=1 +Breath\ of\ Life=1 +Breath\ of\ Malfegor=1 +Breathstealer=1 +Bred\ for\ the\ Hunt=1 +Breeding\ Pit=1 +Breezekeeper=1 +Briarberry\ Cohort=1 +Briarbridge\ Patrol=1 +Briarhorn=1 +Briarknit\ Kami=1 +Briarpack\ Alpha=1 +Briber's\ Purse=1 +Brightflame=1 +Brigid,\ Hero\ of\ Kinsbaile=1 +Brilliant\ Halo=1 +Brilliant\ Spectrum=1 +Brilliant\ Ultimatum=1 +Brimstone\ Mage=1 +Brimstone\ Volley=1 +Brindle\ Boar=1 +Brindle\ Shoat=1 +Brine\ Elemental=1 +Brine\ Seer=1 +Brine\ Shaman=1 +Bring\ Low=1 +Bringer\ of\ the\ Red\ Dawn=1 +Brink\ of\ Disaster=1 +Brink\ of\ Madness=1 +Brion\ Stoutarm=1 +Brittle\ Effigy=1 +Broken\ Concentration=1 +Broken\ Fall=1 +Broken\ Visage=1 +Bronze\ Horse=1 +Bronze\ Sable=1 +Bronzebeak\ Moa=1 +Brood\ Birthing=1 +Brood\ Butcher=1 +Brood\ Keeper=1 +Brood\ Monitor=1 +Broodbirth\ Viper=1 +Broodhatch\ Nantuko=1 +Broodhunter\ Wurm=1 +Brooding\ Saurian=1 +Broodmate\ Dragon=1 +Broodstar=1 +Broodwarden=1 +Brothers\ of\ Fire=1 +Brothers\ Yamazaki=1 +Brown\ Ouphe=1 +Browse=1 +Brush\ with\ Death=1 +Brutal\ Deceiver=1 +Brutal\ Expulsion=1 +Brutalizer\ Exarch=1 +Brute\ Force=1 +Brute\ Strength=1 +Bubbling\ Beebles=1 +Bubbling\ Cauldron=1 +Budoka\ Gardener=1 +Budoka\ Pupil=1 +Builder's\ Blessing=1 +Built\ to\ Last=1 +Bull\ Aurochs=1 +Bull\ Cerodon=1 +Bull\ Elephant=1 +Bull\ Hippo=1 +Bullwhip=1 +Buoyancy=1 +Burden\ of\ Greed=1 +Burden\ of\ Guilt=1 +Burn\ Away=1 +Burn\ from\ Within=1 +Burn\ the\ Impure=1 +Burn\ Trail=1 +Burning\ Anger=1 +Burning\ Earth=1 +Burning\ of\ Xinye=1 +Burning\ Oil=1 +Burning\ Vengeance=1 +Burning-Tree\ Bloodscale=1 +Burnished\ Hart=1 +Burnout=1 +Burr\ Grafter=1 +Burrenton\ Bombardier=1 +Burrenton\ Shield-Bearers=1 +Burst\ Lightning=1 +Burst\ of\ Energy=1 +Burst\ of\ Speed=1 +Burst\ of\ Strength=1 +Bushi\ Tenderfoot=1 +Butcher\ of\ Malakir=1 +Butcher\ of\ the\ Horde=1 +Butcher\ Orgg=1 +Butcher's\ Cleaver=1 +Butcher's\ Glee=1 +Byway\ Courier=1 +Cabal\ Archon=1 +Cabal\ Conditioning=1 +Cabal\ Executioner=1 +Cabal\ Inquisitor=1 +Cabal\ Interrogator=1 +Cabal\ Ritual=1 +Cabal\ Slaver=1 +Cabal\ Surgeon=1 +Cabal\ Trainee=1 +Cache\ Raiders=1 +Cached\ Defenses=1 +Cackling\ Counterpart=1 +Cackling\ Fiend=1 +Cackling\ Flames=1 +Cadaver\ Imp=1 +Cadaverous\ Knight=1 +Cage\ of\ Hands=1 +Cagemail=1 +Cairn\ Wanderer=1 +Calciderm=1 +Calcite\ Snapper=1 +Calculated\ Dismissal=1 +Caldera\ Hellion=1 +Caldera\ Kavu=1 +Caldera\ Lake=1 +Call\ for\ Unity=1 +Call\ of\ the\ Conclave=1 +Call\ of\ the\ Full\ Moon=1 +Call\ of\ the\ Herd=1 +Call\ of\ the\ Nightwing=1 +Call\ the\ Bloodline=1 +Call\ the\ Gatewatch=1 +Call\ the\ Scions=1 +Call\ the\ Skybreaker=1 +Call\ to\ Arms=1 +Call\ to\ Glory=1 +Call\ to\ Heel=1 +Call\ to\ Mind=1 +Call\ to\ Serve=1 +Call\ to\ the\ Grave=1 +Call\ to\ the\ Kindred=1 +Caller\ of\ Gales=1 +Caller\ of\ the\ Pack=1 +Callous\ Oppressor=1 +Callow\ Jushi=1 +Caltrops=1 +Campaign\ of\ Vengeance=1 +Cancel=1 +Candles\ of\ Leng=1 +Candles'\ Glow=1 +Canker\ Abomination=1 +Cankerous\ Thirst=1 +Cannibalize=1 +Canopy\ Claws=1 +Canopy\ Cover=1 +Canopy\ Crawler=1 +Canopy\ Gorger=1 +Canopy\ Spider=1 +Canopy\ Surge=1 +Canyon\ Drake=1 +Canyon\ Lurkers=1 +Canyon\ Minotaur=1 +Capashen\ Knight=1 +Capashen\ Standard=1 +Capashen\ Templar=1 +Capashen\ Unicorn=1 +Capricious\ Efreet=1 +Captain\ of\ the\ Mists=1 +Captain\ of\ the\ Watch=1 +Captain's\ Call=1 +Captain's\ Maneuver=1 +Captivating\ Glance=1 +Captive\ Flame=1 +Captured\ by\ the\ Consulate=1 +Captured\ Sunlight=1 +Carapace=1 +Caravan\ Escort=1 +Caravan\ Hurda=1 +Caravan\ Vigil=1 +Carbonize=1 +Careful\ Consideration=1 +Caregiver=1 +Caress\ of\ Phyrexia=1 +Caribou\ Range=1 +Carnage\ Altar=1 +Carnage\ Gladiator=1 +Carnage\ Wurm=1 +Carnassid=1 +Carnifex\ Demon=1 +Carnival\ Hellsteed=1 +Carnivorous\ Moss-Beast=1 +Carnivorous\ Plant=1 +Carnophage=1 +Carom=1 +Carrier\ Thrall=1 +Carrion\ Ants=1 +Carrion\ Beetles=1 +Carrion\ Call=1 +Carrion\ Crow=1 +Carrion\ Howler=1 +Carrion\ Rats=1 +Carrion\ Thrash=1 +Carrion\ Wall=1 +Carry\ Away=1 +Cartographer=1 +Cartouche\ of\ Ambition=1 +Cartouche\ of\ Knowledge=1 +Cartouche\ of\ Solidarity=1 +Cartouche\ of\ Strength=1 +Carven\ Caryatid=1 +Cascading\ Cataracts=1 +Cast\ into\ Darkness=1 +Castle=1 +Cat\ Burglar=1 +Catacomb\ Sifter=1 +Catacomb\ Slug=1 +Catalog=1 +Catapult\ Squad=1 +Catch\ //\ Release=1 +Cateran\ Brute=1 +Cateran\ Persuader=1 +Caterwauling\ Boggart=1 +Cathar's\ Companion=1 +Cathar's\ Shield=1 +Cathartic\ Adept=1 +Cathartic\ Reunion=1 +Cathedral\ Membrane=1 +Cathodion=1 +Caught\ in\ the\ Brights=1 +Caustic\ Caterpillar=1 +Caustic\ Crawler=1 +Caustic\ Hound=1 +Caustic\ Tar=1 +Cautery\ Sliver=1 +Cavalry\ Pegasus=1 +Cave\ Sense=1 +Cave\ Tiger=1 +Cavern\ Crawler=1 +Cavern\ Lampad=1 +Cavern\ Thoctar=1 +Cease-Fire=1 +Ceaseless\ Searblades=1 +Celestial\ Archon=1 +Celestial\ Crusader=1 +Celestial\ Flare=1 +Celestial\ Mantle=1 +Celestial\ Purge=1 +Celestial\ Sword=1 +Cellar\ Door=1 +Cemetery\ Reaper=1 +Cemetery\ Recruitment=1 +Cenn's\ Heir=1 +Cenn's\ Tactician=1 +Centaur\ Battlemaster=1 +Centaur\ Chieftain=1 +Centaur\ Courser=1 +Centaur\ Glade=1 +Centaur\ Healer=1 +Centaur\ Omenreader=1 +Centaur\ Rootcaster=1 +Centaur\ Safeguard=1 +Centaur\ Veteran=1 +Centaur's\ Herald=1 +Center\ Soul=1 +Cephalid\ Aristocrat=1 +Cephalid\ Broker=1 +Cephalid\ Inkshrouder=1 +Cephalid\ Looter=1 +Cephalid\ Pathmage=1 +Cephalid\ Retainer=1 +Cephalid\ Sage=1 +Cephalid\ Scout=1 +Cephalid\ Shrine=1 +Cephalid\ Snitch=1 +Cerebral\ Eruption=1 +Cerodon\ Yearling=1 +Certain\ Death=1 +Cerulean\ Sphinx=1 +Ceta\ Disciple=1 +Ceta\ Sanctuary=1 +Chain\ of\ Acid=1 +Chain\ of\ Plasma=1 +Chain\ of\ Smog=1 +Chainbreaker=1 +Chained\ to\ the\ Rocks=1 +Chainflinger=1 +Chamber\ of\ Manipulation=1 +Champion\ of\ Arashin=1 +Champion\ of\ Rhonas=1 +Champion's\ Drake=1 +Chancellor\ of\ the\ Spires=1 +Chandra\ Nalaar=1 +Chandra's\ Fury=1 +Chandra's\ Ignition=1 +Chandra's\ Outrage=1 +Chandra's\ Pyrohelix=1 +Chandra's\ Revolution=1 +Chandra's\ Spitfire=1 +Change\ of\ Heart=1 +Changeling\ Berserker=1 +Changeling\ Hero=1 +Changeling\ Sentinel=1 +Changeling\ Titan=1 +Channel\ Harm=1 +Channel\ the\ Suns=1 +Chant\ of\ the\ Skifsang=1 +Chant\ of\ Vitu-Ghazi=1 +Chaos\ Imps=1 +Chaotic\ Backlash=1 +Chaplain's\ Blessing=1 +Charge\ Across\ the\ Araba=1 +Charging\ Badger=1 +Charging\ Cinderhorn=1 +Charging\ Griffin=1 +Charging\ Paladin=1 +Charging\ Rhino=1 +Chariot\ of\ Victory=1 +Charm\ Peddler=1 +Charmbreaker\ Devils=1 +Charnelhoard\ Wurm=1 +Chartooth\ Cougar=1 +Chasm\ Drake=1 +Chasm\ Guide=1 +Chemister's\ Trick=1 +Chief\ of\ the\ Edge=1 +Chief\ of\ the\ Foundry=1 +Chief\ of\ the\ Scale=1 +Child\ of\ Gaea=1 +Child\ of\ Night=1 +Child\ of\ Thorns=1 +Chill\ Haunting=1 +Chill\ of\ Foreboding=1 +Chilling\ Grasp=1 +Chilling\ Shade=1 +Chime\ of\ Night=1 +Chimeric\ Coils=1 +Chimeric\ Idol=1 +Chimeric\ Mass=1 +Chimeric\ Staff=1 +Chisei,\ Heart\ of\ Oceans=1 +Chitinous\ Cloak=1 +Cho-Manno,\ Revolutionary=1 +Choking\ Fumes=1 +Choking\ Restraints=1 +Choking\ Tethers=1 +Chorus\ of\ Might=1 +Chorus\ of\ the\ Conclave=1 +Chorus\ of\ the\ Tides=1 +Chosen\ by\ Heliod=1 +Chosen\ of\ Markov=1 +Chrome\ Steed=1 +Chromescale\ Drake=1 +Chronic\ Flooding=1 +Chronicler\ of\ Heroes=1 +Chronomantic\ Escape=1 +Chronomaton=1 +Chronosavant=1 +Chronostutter=1 +Chub\ Toad=1 +Churning\ Eddy=1 +Cinder\ Barrens=1 +Cinder\ Cloud=1 +Cinder\ Crawler=1 +Cinder\ Elemental=1 +Cinder\ Hellion=1 +Cinder\ Marsh=1 +Cinder\ Shade=1 +Cinder\ Storm=1 +Cinder\ Wall=1 +Circle\ of\ Affliction=1 +Circle\ of\ Elders=1 +Circle\ of\ Flame=1 +Circle\ of\ Protection:\ Artifacts=1 +Circle\ of\ Protection:\ Shadow=1 +Circle\ of\ Protection:\ White=1 +Circle\ of\ Solace=1 +Circling\ Vultures=1 +Circu,\ Dimir\ Lobotomist=1 +Circular\ Logic=1 +Citadel\ Castellan=1 +Citanul\ Druid=1 +Citanul\ Woodreaders=1 +Civic\ Guildmage=1 +Civic\ Saber=1 +Civic\ Wayfinder=1 +Civilized\ Scholar=1 +Claim\ of\ Erebos=1 +Clan\ Defiance=1 +Clarion\ Ultimatum=1 +Clash\ of\ Realities=1 +Clash\ of\ Wills=1 +Claustrophobia=1 +Claws\ of\ Wirewood=1 +Clay\ Statue=1 +Cleansing\ Beam=1 +Clear\ a\ Path=1 +Clear\ Shot=1 +Cleaver\ Riot=1 +Clergy\ en-Vec=1 +Cleric\ of\ the\ Forward\ Order=1 +Clickslither=1 +Cliff\ Threader=1 +Cliffhaven\ Vampire=1 +Cliffrunner\ Behemoth=1 +Cliffside\ Lookout=1 +Clinging\ Anemones=1 +Clinging\ Darkness=1 +Clip\ Wings=1 +Cloak\ of\ Confusion=1 +Cloak\ of\ Mists=1 +Cloaked\ Siren=1 +Clock\ of\ Omens=1 +Clockspinning=1 +Clockwork\ Avian=1 +Clockwork\ Beast=1 +Clockwork\ Beetle=1 +Clockwork\ Condor=1 +Clockwork\ Dragon=1 +Clockwork\ Gnomes=1 +Clockwork\ Hydra=1 +Clockwork\ Steed=1 +Clone=1 +Clone\ Shell=1 +Clot\ Sliver=1 +Cloud\ Crusader=1 +Cloud\ Djinn=1 +Cloud\ Dragon=1 +Cloud\ Elemental=1 +Cloud\ Manta=1 +Cloud\ Spirit=1 +Cloud\ Sprite=1 +Cloudchaser\ Eagle=1 +Cloudchaser\ Kestrel=1 +Cloudcrest\ Lake=1 +Cloudcrown\ Oak=1 +Cloudgoat\ Ranger=1 +Cloudheath\ Drake=1 +Cloudhoof\ Kirin=1 +Cloudpost=1 +Cloudreach\ Cavalry=1 +Cloudseeder=1 +Cloudthresher=1 +Cloven\ Casting=1 +Clutch\ of\ Currents=1 +Clutch\ of\ the\ Undercity=1 +Clutch\ of\ Undeath=1 +Coal\ Stoker=1 +Coalhauler\ Swine=1 +Coalition\ Flag=1 +Coalition\ Honor\ Guard=1 +Coalition\ Victory=1 +Coast\ Watcher=1 +Coastal\ Discovery=1 +Coastal\ Drake=1 +Coastal\ Hornclaw=1 +Coat\ with\ Venom=1 +Coax\ from\ the\ Blind\ Eternities=1 +Cobblebrute=1 +Cobbled\ Wings=1 +Cobra\ Trap=1 +Cockatrice=1 +Codex\ Shredder=1 +Coerced\ Confession=1 +Coercion=1 +Cogwork\ Assembler=1 +Cogworker's\ Puzzleknot=1 +Coiled\ Tinviper=1 +Coiling\ Oracle=1 +Coils\ of\ the\ Medusa=1 +Colfenor's\ Plans=1 +Colos\ Yearling=1 +Colossal\ Heroics=1 +Colossal\ Might=1 +Colossal\ Whale=1 +Colossapede=1 +Colossus\ of\ Akros=1 +Colossus\ of\ Sardia=1 +Coma\ Veil=1 +Combat\ Medic=1 +Combust=1 +Commander\ Greven\ il-Vec=1 +Commander's\ Authority=1 +Commando\ Raid=1 +Common\ Bond=1 +Commune\ with\ Lava=1 +Commune\ with\ Nature=1 +Commune\ with\ the\ Gods=1 +Comparative\ Analysis=1 +Compelling\ Argument=1 +Compelling\ Deterrence=1 +Complete\ Disregard=1 +Composite\ Golem=1 +Compost=1 +Compulsive\ Research=1 +Compulsory\ Rest=1 +Conclave\ Naturalists=1 +Conclave\ Phalanx=1 +Conclave's\ Blessing=1 +Concordia\ Pegasus=1 +Concussive\ Bolt=1 +Conduit\ of\ Ruin=1 +Conduit\ of\ Storms=1 +Cone\ of\ Flame=1 +Confessor=1 +Confirm\ Suspicions=1 +Confiscate=1 +Confiscation\ Coup=1 +Confront\ the\ Unknown=1 +Confusion\ in\ the\ Ranks=1 +Congregate=1 +Congregation\ at\ Dawn=1 +Conifer\ Strider=1 +Conjured\ Currency=1 +Conjurer's\ Ban=1 +Conquer=1 +Conquering\ Manticore=1 +Consecrate\ Land=1 +Consecrated\ by\ Blood=1 +Consign\ to\ Dream=1 +Consign\ to\ Dust=1 +Constricting\ Sliver=1 +Constricting\ Tendrils=1 +Consul's\ Lieutenant=1 +Consul's\ Shieldguard=1 +Consulate\ Crackdown=1 +Consulate\ Dreadnought=1 +Consulate\ Skygate=1 +Consulate\ Surveillance=1 +Consulate\ Turret=1 +Consult\ the\ Necrosages=1 +Consume\ Spirit=1 +Consume\ Strength=1 +Consuming\ Aberration=1 +Consuming\ Bonfire=1 +Consuming\ Fervor=1 +Consuming\ Sinkhole=1 +Consuming\ Vapors=1 +Consuming\ Vortex=1 +Consumptive\ Goo=1 +Contagion\ Clasp=1 +Contagious\ Nim=1 +Containment\ Membrane=1 +Contaminated\ Bond=1 +Contaminated\ Ground=1 +Contemplation=1 +Contempt=1 +Contested\ Cliffs=1 +Contingency\ Plan=1 +Contraband\ Kingpin=1 +Contradict=1 +Controlled\ Instincts=1 +Controvert=1 +Conundrum\ Sphinx=1 +Convalescence=1 +Conversion=1 +Conversion\ Chamber=1 +Convicted\ Killer=1 +Conviction=1 +Convolute=1 +Convulsing\ Licid=1 +Coordinated\ Assault=1 +Coordinated\ Barrage=1 +Copper\ Carapace=1 +Copper\ Myr=1 +Copper\ Tablet=1 +Copperhoof\ Vorrac=1 +Copperhorn\ Scout=1 +Coral\ Barrier=1 +Coral\ Eel=1 +Coral\ Merfolk=1 +Coral\ Trickster=1 +Coralhelm\ Commander=1 +Coralhelm\ Guide=1 +Core\ Prowler=1 +Corpse\ Blockade=1 +Corpse\ Churn=1 +Corpse\ Connoisseur=1 +Corpse\ Cur=1 +Corpse\ Hauler=1 +Corpse\ Traders=1 +Corpsejack\ Menace=1 +Corpseweft=1 +Corpulent\ Corpse=1 +Corrosive\ Gale=1 +Corrupt=1 +Corrupted\ Conscience=1 +Corrupted\ Grafstone=1 +Corrupted\ Harvester=1 +Corrupted\ Resolve=1 +Corrupted\ Roots=1 +Corrupted\ Zendikon=1 +Corrupting\ Licid=1 +Cosi's\ Ravager=1 +Cosmic\ Larva=1 +Counsel\ of\ the\ Soratami=1 +Counterbore=1 +Counterlash=1 +Countermand=1 +Countless\ Gears\ Renegade=1 +Courageous\ Outrider=1 +Courier\ Griffin=1 +Courier's\ Capsule=1 +Court\ Archers=1 +Court\ Homunculus=1 +Court\ Street\ Denizen=1 +Covenant\ of\ Blood=1 +Covenant\ of\ Minds=1 +Cowardice=1 +Cowed\ by\ Wisdom=1 +Cower\ in\ Fear=1 +Cowl\ Prowler=1 +Crab\ Umbra=1 +Crabapple\ Cohort=1 +Crackdown\ Construct=1 +Crackling\ Club=1 +Crackling\ Doom=1 +Crackling\ Perimeter=1 +Crackling\ Triton=1 +Cradle\ Guard=1 +Cradle\ of\ the\ Accursed=1 +Cradle\ of\ Vitality=1 +Cradle\ to\ Grave=1 +Crafty\ Pathmage=1 +Crag\ Puca=1 +Cragganwick\ Cremator=1 +Cranial\ Archive=1 +Crash=1 +Crashing\ Centaur=1 +Crater\ Elemental=1 +Crater\ Hellion=1 +Crater's\ Claws=1 +Craterize=1 +Craven\ Giant=1 +Craw\ Giant=1 +Craw\ Wurm=1 +Crawling\ Filth=1 +Crawling\ Sensation=1 +Crazed\ Firecat=1 +Crazed\ Goblin=1 +Creakwood\ Ghoul=1 +Creeping\ Dread=1 +Creeping\ Mold=1 +Creeping\ Renaissance=1 +Creepy\ Doll=1 +Cremate=1 +Crescendo\ of\ War=1 +Crib\ Swap=1 +Crimson\ Manticore=1 +Crimson\ Muckwader=1 +Crimson\ Roc=1 +Crippling\ Blight=1 +Crippling\ Chill=1 +Crocanura=1 +Crocodile\ of\ the\ Crossing=1 +Crookclaw\ Transmuter=1 +Crop\ Sigil=1 +Crossbow\ Ambush=1 +Crossbow\ Infantry=1 +Crossroads\ Consecrator=1 +Crosstown\ Courier=1 +Crosswinds=1 +Crovax\ the\ Cursed=1 +Crovax,\ Ascendant\ Hero=1 +Crow\ of\ Dark\ Tidings=1 +Crowd\ of\ Cinders=1 +Crowd's\ Favor=1 +Crown\ of\ Awe=1 +Crown\ of\ Convergence=1 +Crown\ of\ Empires=1 +Crown\ of\ Flames=1 +Crown\ of\ Fury=1 +Crown\ of\ Suspicion=1 +Crowned\ Ceratok=1 +Crucible\ of\ Fire=1 +Crude\ Rampart=1 +Cruel\ Bargain=1 +Cruel\ Deceiver=1 +Cruel\ Feeding=1 +Cruel\ Finality=1 +Cruel\ Revival=1 +Cruel\ Sadist=1 +Cruel\ Ultimatum=1 +Crumble=1 +Crumble\ to\ Dust=1 +Crumbling\ Colossus=1 +Crumbling\ Necropolis=1 +Crumbling\ Vestige=1 +Crusader\ of\ Odric=1 +Crush=1 +Crusher\ Zendikon=1 +Crushing\ Pain=1 +Crushing\ Vines=1 +Cry\ of\ Contrition=1 +Cryoclasm=1 +Crypsis=1 +Crypt\ Champion=1 +Crypt\ Creeper=1 +Cryptic\ Annelid=1 +Cryptic\ Cruiser=1 +Cryptic\ Serpent=1 +Cryptolith\ Fragment=1 +Cryptoplasm=1 +Cryptwailing=1 +Crystal\ Ball=1 +Crystal\ Rod=1 +Crystal\ Seer=1 +Crystal\ Shard=1 +Crystalline\ Nautilus=1 +Crystallization=1 +Cudgel\ Troll=1 +Culling\ Dais=1 +Culling\ Drone=1 +Culling\ Mark=1 +Culling\ Scales=1 +Culling\ Sun=1 +Cult\ of\ the\ Waxing\ Moon=1 +Cultbrand\ Cinder=1 +Cultist's\ Staff=1 +Cultivator\ Drone=1 +Cultivator\ of\ Blades=1 +Cumber\ Stone=1 +Cunning=1 +Cunning\ Bandit=1 +Cunning\ Breezedancer=1 +Cunning\ Lethemancer=1 +Cunning\ Sparkmage=1 +Cunning\ Strike=1 +Curio\ Vendor=1 +Curiosity=1 +Curious\ Homunculus=1 +Curse\ of\ Bloodletting=1 +Curse\ of\ Echoes=1 +Curse\ of\ Oblivion=1 +Curse\ of\ Stalked\ Prey=1 +Curse\ of\ the\ Cabal=1 +Curse\ of\ the\ Nightly\ Hunt=1 +Curse\ of\ the\ Swine=1 +Curse\ of\ Thirst=1 +Curse\ of\ Vengeance=1 +Curse\ of\ Wizardry=1 +Cursebreak=1 +Cursed\ Flesh=1 +Cursed\ Minotaur=1 +Cursed\ Rack=1 +Cursed\ Ronin=1 +Cursed\ Scroll=1 +Curtain\ of\ Light=1 +Custodi\ Soulbinders=1 +Custodian\ of\ the\ Trove=1 +Cut\ the\ Earthly\ Bond=1 +Cutthroat\ il-Dal=1 +Cutthroat\ Maneuver=1 +Cyclical\ Evolution=1 +Cyclone=1 +Cyclone\ Sire=1 +Cyclopean\ Giant=1 +Cyclopean\ Mummy=1 +Cyclopean\ Snare=1 +Cyclops\ Gladiator=1 +Cyclops\ of\ Eternal\ Fury=1 +Cyclops\ Tyrant=1 +Cylian\ Elf=1 +Cylian\ Sunsinger=1 +Cystbearer=1 +Cytoplast\ Manipulator=1 +Cytoplast\ Root-Kin=1 +Cytoshape=1 +Cytospawn\ Shambler=1 +D'Avenant\ Healer=1 +Dack's\ Duplicate=1 +Daggerdrome\ Imp=1 +Daghatar\ the\ Adamant=1 +Daily\ Regimen=1 +Dakmor\ Lancer=1 +Dakra\ Mystic=1 +Damnable\ Pact=1 +Dampen\ Thought=1 +Dampening\ Pulse=1 +Dance\ of\ Shadows=1 +Dance\ of\ the\ Skywise=1 +Dance\ with\ Devils=1 +Dancing\ Scimitar=1 +Dand?n=1 +Dangerous\ Wager=1 +Daredevil\ Dragster=1 +Darigaaz's\ Attendant=1 +Darigaaz's\ Charm=1 +Daring\ Apprentice=1 +Daring\ Demolition=1 +Daring\ Leap=1 +Daring\ Skyjek=1 +Daring\ Sleuth=1 +Daring\ Thief=1 +Dark\ Banishing=1 +Dark\ Betrayal=1 +Dark\ Dabbling=1 +Dark\ Favor=1 +Dark\ Heart\ of\ the\ Wood=1 +Dark\ Privilege=1 +Dark\ Prophecy=1 +Dark\ Revenant=1 +Dark\ Ritual=1 +Dark\ Supplicant=1 +Dark\ Temper=1 +Darkheart\ Sliver=1 +Darkling\ Stalker=1 +Darklit\ Gargoyle=1 +Darkslick\ Drake=1 +Darksteel\ Axe=1 +Darksteel\ Brute=1 +Darksteel\ Gargoyle=1 +Darksteel\ Juggernaut=1 +Darksteel\ Myr=1 +Darksteel\ Pendant=1 +Darksteel\ Relic=1 +Darksteel\ Sentinel=1 +Darkthicket\ Wolf=1 +Darkwatch\ Elves=1 +Darting\ Merfolk=1 +Daru\ Cavalier=1 +Daru\ Encampment=1 +Daru\ Mender=1 +Daru\ Sanctifier=1 +Daru\ Spiritualist=1 +Daunting\ Defender=1 +Dauntless\ Cathar=1 +Dauntless\ Dourbark=1 +Dauntless\ Onslaught=1 +Dauntless\ River\ Marshal=1 +Dauthi\ Cutthroat=1 +Dauthi\ Jackal=1 +Dauthi\ Marauder=1 +Dauthi\ Mercenary=1 +Dauthi\ Mindripper=1 +Dauthi\ Trapper=1 +Dauthi\ Warlord=1 +Dawn\ Gryff=1 +Dawn\ to\ Dusk=1 +Dawnbringer\ Charioteers=1 +Dawnfeather\ Eagle=1 +Dawnfluke=1 +Dawnglow\ Infusion=1 +Dawnray\ Archer=1 +Dawnstrike\ Paladin=1 +Dawntreader\ Elk=1 +Daxos\ of\ Meletis=1 +Day\ of\ Destiny=1 +Daybreak\ Ranger=1 +Dazzling\ Beauty=1 +Dazzling\ Ramparts=1 +Dazzling\ Reflection=1 +Dead\ Drop=1 +Dead\ Reckoning=1 +Dead\ Ringers=1 +Dead\ Weight=1 +Dead-Iron\ Sledge=1 +Deadbridge\ Goliath=1 +Deadbridge\ Shaman=1 +Deadeye\ Harpooner=1 +Deadeye\ Navigator=1 +Deadlock\ Trap=1 +Deadly\ Allure=1 +Deadly\ Grub=1 +Deadly\ Insect=1 +Deadly\ Recluse=1 +Deadly\ Wanderings=1 +Deadshot=1 +Deadwood\ Treefolk=1 +Dearly\ Departed=1 +Death\ Bomb=1 +Death\ Charmer=1 +Death\ Cultist=1 +Death\ Denied=1 +Death\ Frenzy=1 +Death\ Grasp=1 +Death\ Mutation=1 +Death\ Pits\ of\ Rath=1 +Death\ Pulse=1 +Death\ Rattle=1 +Death\ Speakers=1 +Death\ Stroke=1 +Death\ Ward=1 +Death\ Wind=1 +Death-Hood\ Cobra=1 +Death-Mask\ Duplicant=1 +Death's\ Approach=1 +Death's\ Duet=1 +Death's\ Presence=1 +Death's-Head\ Buzzard=1 +Deathbellow\ Raider=1 +Deathbringer\ Regent=1 +Deathcap\ Cultivator=1 +Deathcoil\ Wurm=1 +Deathcult\ Rogue=1 +Deathforge\ Shaman=1 +Deathgaze\ Cockatrice=1 +Deathgreeter=1 +Deathknell\ Kami=1 +Deathless\ Angel=1 +Deathless\ Behemoth=1 +Deathmark=1 +Deathmark\ Prelate=1 +Deathmask\ Nezumi=1 +Deathpact\ Angel=1 +Deathreap\ Ritual=1 +Deathrender=1 +Deathspore\ Thallid=1 +Debilitating\ Injury=1 +Debtor's\ Pulpit=1 +Deceiver\ Exarch=1 +Deceiver\ of\ Form=1 +Decimator\ Beetle=1 +Decimator\ Web=1 +Decision\ Paralysis=1 +Decoction\ Module=1 +Decommission=1 +Decompose=1 +Decomposition=1 +Deconstruct=1 +Decorated\ Griffin=1 +Decree\ of\ Justice=1 +Dedicated\ Martyr=1 +Deem\ Worthy=1 +Deep-Sea\ Kraken=1 +Deep-Sea\ Terror=1 +Deep-Slumber\ Titan=1 +Deepcavern\ Imp=1 +Deepchannel\ Mentor=1 +Deepfathom\ Skulker=1 +Deepfire\ Elemental=1 +Deepwater\ Hypnotist=1 +Deepwood\ Drummer=1 +Deepwood\ Ghoul=1 +Deepwood\ Wolverine=1 +Defang=1 +Defeat=1 +Defend\ the\ Hearth=1 +Defender\ of\ Law=1 +Defensive\ Formation=1 +Defiant\ Bloodlord=1 +Defiant\ Elf=1 +Defiant\ Greatmaw=1 +Defiant\ Ogre=1 +Defiant\ Salvager=1 +Defiant\ Strike=1 +Defiant\ Vanguard=1 +Defiling\ Tears=1 +Deflection=1 +Deft\ Dismissal=1 +Deft\ Duelist=1 +Deftblade\ Elite=1 +Defy\ Death=1 +Dega\ Disciple=1 +Dega\ Sanctuary=1 +Degavolver=1 +Deglamer=1 +Dehydration=1 +Deicide=1 +Delirium\ Skeins=1 +Deluge=1 +Delusions\ of\ Mediocrity=1 +Dematerialize=1 +Dementia\ Bat=1 +Dementia\ Sliver=1 +Demolish=1 +Demolition\ Stomper=1 +Demon's\ Grasp=1 +Demon's\ Herald=1 +Demon's\ Horn=1 +Demon's\ Jester=1 +Demonfire=1 +Demonic\ Appetite=1 +Demonic\ Collusion=1 +Demonic\ Rising=1 +Demonic\ Taskmaster=1 +Demonic\ Torment=1 +Demonlord\ of\ Ashmouth=1 +Demonmail\ Hauberk=1 +Demonspine\ Whip=1 +Demoralize=1 +Demystify=1 +Denizen\ of\ the\ Deep=1 +Dense\ Canopy=1 +Deny\ Existence=1 +Deny\ Reality=1 +Depala,\ Pilot\ Exemplar=1 +Deputy\ of\ Acquittals=1 +Deranged\ Assistant=1 +Deranged\ Hermit=1 +Deranged\ Outcast=1 +Deranged\ Whelp=1 +Derelor=1 +Descendant\ of\ Kiyomaro=1 +Descendant\ of\ Masumaro=1 +Desecration\ Demon=1 +Desecration\ Elemental=1 +Desecration\ Plague=1 +Desert\ Cerodon=1 +Desert\ Twister=1 +Deserter's\ Quarters=1 +Desolation\ Giant=1 +Desolation\ Twin=1 +Desperate\ Gambit=1 +Desperate\ Ravings=1 +Desperate\ Sentry=1 +Desperate\ Stand=1 +Despise=1 +Despoiler\ of\ Souls=1 +Despondency=1 +Destined\ //\ Lead=1 +Destroy\ the\ Evidence=1 +Destructive\ Force=1 +Destructive\ Urge=1 +Destructor\ Dragon=1 +Detonate=1 +Detritivore=1 +Deviant\ Glee=1 +Devil's\ Play=1 +Devils'\ Playground=1 +Devilthorn\ Fox=1 +Devoted\ Crop-Mate=1 +Devoted\ Retainer=1 +Devour\ in\ Flames=1 +Devour\ in\ Shadow=1 +Devouring\ Greed=1 +Devouring\ Light=1 +Devouring\ Swarm=1 +Devout\ Chaplain=1 +Devout\ Harpist=1 +Devout\ Witness=1 +Dewdrop\ Spy=1 +Dhund\ Operative=1 +Diabolic\ Machine=1 +Diabolic\ Revelation=1 +Diabolic\ Tutor=1 +Diabolic\ Vision=1 +Diamond\ Faerie=1 +Dichotomancy=1 +Dictate\ of\ Karametra=1 +Dictate\ of\ the\ Twin\ Gods=1 +Die\ Young=1 +Diffusion\ Sliver=1 +Dimensional\ Breach=1 +Dimensional\ Infiltrator=1 +Dimir\ Charm=1 +Dimir\ Cluestone=1 +Dimir\ Guildgate=1 +Dimir\ Guildmage=1 +Dimir\ House\ Guard=1 +Dimir\ Infiltrator=1 +Dimir\ Keyrune=1 +Dimir\ Machinations=1 +Dimir\ Signet=1 +Din\ of\ the\ Fireherd=1 +Dinrova\ Horror=1 +Diplomacy\ of\ the\ Wastes=1 +Diregraf\ Ghoul=1 +Dirtwater\ Wraith=1 +Dirty\ Wererat=1 +Disappearing\ Act=1 +Disarm=1 +Disaster\ Radius=1 +Disciple\ of\ Deceit=1 +Disciple\ of\ Grace=1 +Disciple\ of\ Griselbrand=1 +Disciple\ of\ Kangee=1 +Disciple\ of\ Law=1 +Disciple\ of\ Malice=1 +Disciple\ of\ Phenax=1 +Disciple\ of\ Tevesh\ Szat=1 +Disciple\ of\ the\ Old\ Ways=1 +Disciple\ of\ the\ Vault=1 +Discombobulate=1 +Disdainful\ Stroke=1 +Disease\ Carriers=1 +Disembowel=1 +Disempower=1 +Disentomb=1 +Disharmony=1 +Dismal\ Failure=1 +Dismantle=1 +Dismiss\ into\ Dream=1 +Disorder=1 +Disowned\ Ancestor=1 +Dispeller's\ Capsule=1 +Dispense\ Justice=1 +Dispersal\ Technician=1 +Disperse=1 +Displace=1 +Displacement\ Wave=1 +Display\ of\ Dominance=1 +Disrupting\ Scepter=1 +Disruption\ Aura=1 +Dissension\ in\ the\ Ranks=1 +Dissenter's\ Deliverance=1 +Dissipate=1 +Dissipation\ Field=1 +Dissolve=1 +Distemper\ of\ the\ Blood=1 +Distorting\ Lens=1 +Distress=1 +Disturbing\ Plot=1 +Divebomber\ Griffin=1 +Divergent\ Growth=1 +Diversionary\ Tactics=1 +Divination=1 +Divine\ Deflection=1 +Divine\ Favor=1 +Divine\ Intervention=1 +Divine\ Light=1 +Divine\ Offering=1 +Divine\ Reckoning=1 +Divine\ Verdict=1 +Diviner\ Spirit=1 +Diviner's\ Wand=1 +Diving\ Griffin=1 +Dizzy\ Spell=1 +Dizzying\ Gaze=1 +Djeru's\ Resolve=1 +Djinn\ Illuminatus=1 +Djinn\ of\ Wishes=1 +Docent\ of\ Perfection=1 +Dodecapod=1 +Dogpile=1 +Dolmen\ Gate=1 +Domesticated\ Hydra=1 +Domestication=1 +Dominator\ Drone=1 +Domineer=1 +Dong\ Zhou,\ the\ Tyrant=1 +Doom\ Cannon=1 +Doomed\ Dissenter=1 +Doomgape=1 +Doomwake\ Giant=1 +Door\ to\ Nothingness=1 +Doorkeeper=1 +Dormant\ Gomazoa=1 +Dormant\ Sliver=1 +Dosan's\ Oldest\ Chant=1 +Double\ Cleave=1 +Double\ Negative=1 +Doubling\ Chant=1 +Doubtless\ One=1 +Douse\ in\ Gloom=1 +Down\ //\ Dirty=1 +Downpour=1 +Downsize=1 +Dowsing\ Shaman=1 +Draconic\ Roar=1 +Dracoplasm=1 +Drag\ Down=1 +Drag\ Under=1 +Dragon\ Appeasement=1 +Dragon\ Arch=1 +Dragon\ Bell\ Monk=1 +Dragon\ Blood=1 +Dragon\ Egg=1 +Dragon\ Engine=1 +Dragon\ Fodder=1 +Dragon\ Grip=1 +Dragon\ Hatchling=1 +Dragon\ Hunter=1 +Dragon\ Mantle=1 +Dragon\ Mask=1 +Dragon\ Roost=1 +Dragon\ Scales=1 +Dragon\ Throne\ of\ Tarkir=1 +Dragon\ Whelp=1 +Dragon-Scarred\ Bear=1 +Dragon-Style\ Twins=1 +Dragon's\ Eye\ Savants=1 +Dragon's\ Eye\ Sentry=1 +Dragon's\ Herald=1 +Dragonloft\ Idol=1 +Dragonlord's\ Prerogative=1 +Dragonlord's\ Servant=1 +Dragonrage=1 +Dragonscale\ Boon=1 +Dragonscale\ General=1 +Dragonsoul\ Knight=1 +Dragonstalker=1 +Drain\ Life=1 +Drain\ the\ Well=1 +Draining\ Whelk=1 +Drainpipe\ Vermin=1 +Drake\ Familiar=1 +Drake\ Umbra=1 +Drake-Skull\ Cameo=1 +Drakewing\ Krasis=1 +Dralnu,\ Lich\ Lord=1 +Dralnu's\ Pet=1 +Dramatic\ Rescue=1 +Dramatic\ Reversal=1 +Drana,\ Kalastria\ Bloodchief=1 +Drana's\ Chosen=1 +Drana's\ Emissary=1 +Drastic\ Revelation=1 +Dread=1 +Dread\ Defiler=1 +Dread\ Drone=1 +Dread\ Reaper=1 +Dread\ Return=1 +Dread\ Slag=1 +Dread\ Slaver=1 +Dread\ Statuary=1 +Dread\ Warlock=1 +Dread\ Wight=1 +Dreadbringer\ Lampads=1 +Dreadship\ Reef=1 +Dreadwaters=1 +Dreadwing=1 +Dream\ Cache=1 +Dream\ Chisel=1 +Dream\ Leash=1 +Dream\ Prowler=1 +Dream\ Thief=1 +Dream\ Twist=1 +Dream's\ Grip=1 +Dreamcatcher=1 +Dreampod\ Druid=1 +Dreams\ of\ the\ Dead=1 +Dreamscape\ Artist=1 +Dreamspoiler\ Witches=1 +Dreamstone\ Hedron=1 +Dreamwinder=1 +Dreg\ Mangler=1 +Dreg\ Reaver=1 +Dregscape\ Zombie=1 +Drekavac=1 +Drelnoch=1 +Drift\ of\ the\ Dead=1 +Drifter\ il-Dal=1 +Drifting\ Shade=1 +Drill-Skimmer=1 +Drinker\ of\ Sorrow=1 +Dripping-Tongue\ Zubera=1 +Driver\ of\ the\ Dead=1 +Drogskol\ Cavalry=1 +Drogskol\ Shieldmate=1 +Dromad\ Purebred=1 +Dromar's\ Attendant=1 +Dromoka\ Captain=1 +Dromoka\ Dunecaster=1 +Dromoka\ Monument=1 +Dromoka\ Warrior=1 +Dromoka's\ Gift=1 +Dromosaur=1 +Droning\ Bureaucrats=1 +Drooling\ Groodion=1 +Drooling\ Ogre=1 +Dross\ Golem=1 +Dross\ Harvester=1 +Dross\ Hopper=1 +Dross\ Scorpion=1 +Drove\ of\ Elves=1 +Drown\ in\ Filth=1 +Drown\ in\ Sorrow=1 +Drowned\ Rusalka=1 +Drowner\ Initiate=1 +Drowner\ of\ Secrets=1 +Drownyard\ Behemoth=1 +Drownyard\ Explorers=1 +Drudge\ Beetle=1 +Drudge\ Reavers=1 +Drudge\ Skeletons=1 +Druid\ Lyrist=1 +Druid\ of\ the\ Anima=1 +Druid\ of\ the\ Cowl=1 +Druid's\ Deliverance=1 +Druid's\ Familiar=1 +Druidic\ Satchel=1 +Druids'\ Repository=1 +Drumhunter=1 +Drunau\ Corpse\ Trawler=1 +Dry\ Spell=1 +Dryad\ Sophisticate=1 +Dryad's\ Caress=1 +Dual\ Casting=1 +Dual\ Shot=1 +Dubious\ Challenge=1 +Duct\ Crawler=1 +Duelist's\ Heritage=1 +Duergar\ Assailant=1 +Duergar\ Cave-Guard=1 +Duergar\ Mine-Captain=1 +Dukhara\ Peafowl=1 +Dukhara\ Scavenger=1 +Dune\ Beetle=1 +Duneblast=1 +Dunerider\ Outlaw=1 +Dungeon\ Geists=1 +Dungeon\ Shade=1 +Durable\ Handicraft=1 +Durkwood\ Baloth=1 +Durkwood\ Tracker=1 +Dusk\ Feaster=1 +Dusk\ Imp=1 +Duskdale\ Wurm=1 +Duskhunter\ Bat=1 +Duskmantle\ Guildmage=1 +Duskmantle\ Prowler=1 +Duskmantle,\ House\ of\ Shadow=1 +Duskrider\ Falcon=1 +Duskrider\ Peregrine=1 +Duskwalker=1 +Duskwatch\ Recruiter=1 +Duskworker=1 +Dust\ Elemental=1 +Dust\ of\ Moments=1 +Dust\ Stalker=1 +Dutiful\ Attendant=1 +Dutiful\ Return=1 +Duty-Bound\ Dead=1 +Dwarven\ Berserker=1 +Dwarven\ Blastminer=1 +Dwarven\ Catapult=1 +Dwarven\ Demolition\ Team=1 +Dwarven\ Driller=1 +Dwarven\ Grunt=1 +Dwarven\ Landslide=1 +Dwarven\ Nomad=1 +Dwarven\ Patrol=1 +Dwarven\ Recruiter=1 +Dwarven\ Scorcher=1 +Dwarven\ Shrine=1 +Dwarven\ Soldier=1 +Dwarven\ Strike\ Force=1 +Dwarven\ Vigilantes=1 +Dying\ Wail=1 +Dying\ Wish=1 +Dynacharge=1 +Eager\ Cadet=1 +Eager\ Construct=1 +Early\ Frost=1 +Earsplitting\ Rats=1 +Earthblighter=1 +Earthbrawn=1 +Earthen\ Arms=1 +Earthen\ Goo=1 +Earthshaker=1 +Eastern\ Paladin=1 +Eaten\ by\ Spiders=1 +Eater\ of\ Hope=1 +Ebon\ Dragon=1 +Ebon\ Drake=1 +Ebonblade\ Reaper=1 +Ebony\ Horse=1 +Ebony\ Rhino=1 +Ebony\ Treefolk=1 +Echo\ Circlet=1 +Echo\ Mage=1 +Echoes\ of\ the\ Kin\ Tree=1 +Echoing\ Calm=1 +Echoing\ Courage=1 +Echoing\ Ruin=1 +Eddytrail\ Hawk=1 +Edifice\ of\ Authority=1 +Eel\ Umbra=1 +Eerie\ Interlude=1 +Eerie\ Procession=1 +Efficient\ Construction=1 +Efreet\ Weaponmaster=1 +Ego\ Erasure=1 +Eidolon\ of\ Countless\ Battles=1 +Eiganjo\ Free-Riders=1 +Eight-and-a-Half-Tails=1 +Eightfold\ Maze=1 +Eland\ Umbra=1 +Elder\ Cathar=1 +Elder\ Land\ Wurm=1 +Elder\ Mastery=1 +Elder\ of\ Laurels=1 +Elder\ Pine\ of\ Jukai=1 +Eldrazi\ Aggressor=1 +Eldrazi\ Devastator=1 +Eldrazi\ Obligator=1 +Eldrazi\ Skyspawner=1 +Electrify=1 +Electropotence=1 +Electrostatic\ Bolt=1 +Electryte=1 +Elegant\ Edgecrafters=1 +Elemental\ Appeal=1 +Elemental\ Bond=1 +Elemental\ Mastery=1 +Elemental\ Resonance=1 +Elemental\ Uprising=1 +Elephant\ Ambush=1 +Elephant\ Graveyard=1 +Elephant\ Guide=1 +Elgaud\ Inquisitor=1 +Elgaud\ Shieldmate=1 +Eliminate\ the\ Competition=1 +Elite\ Arcanist=1 +Elite\ Archers=1 +Elite\ Cat\ Warrior=1 +Elite\ Inquisitor=1 +Elite\ Javelineer=1 +Elite\ Skirmisher=1 +Elite\ Vanguard=1 +Elixir\ of\ Immortality=1 +Elkin\ Bottle=1 +Elsewhere\ Flask=1 +Elusive\ Krasis=1 +Elusive\ Spellfist=1 +Elusive\ Tormentor=1 +Elven\ Cache=1 +Elven\ Palisade=1 +Elven\ Riders=1 +Elven\ Rite=1 +Elves\ of\ Deep\ Shadow=1 +Elvish\ Aberration=1 +Elvish\ Bard=1 +Elvish\ Berserker=1 +Elvish\ Branchbender=1 +Elvish\ Eulogist=1 +Elvish\ Fury=1 +Elvish\ Handservant=1 +Elvish\ Harbinger=1 +Elvish\ Herder=1 +Elvish\ Hexhunter=1 +Elvish\ Hunter=1 +Elvish\ Lookout=1 +Elvish\ Lyrist=1 +Elvish\ Pathcutter=1 +Elvish\ Promenade=1 +Elvish\ Ranger=1 +Elvish\ Scrapper=1 +Elvish\ Skysweeper=1 +Elvish\ Warrior=1 +Emancipation\ Angel=1 +Embalmed\ Brawler=1 +Embalmer's\ Tools=1 +Ember\ Beast=1 +Ember\ Gale=1 +Ember\ Hauler=1 +Ember\ Shot=1 +Ember\ Swallower=1 +Ember-Eye\ Wolf=1 +Ember-Fist\ Zubera=1 +Emberhorn\ Minotaur=1 +Embermaw\ Hellion=1 +Emberstrike\ Duo=1 +Emblazoned\ Golem=1 +Emblem\ of\ the\ Warmind=1 +Embodiment\ of\ Fury=1 +Embodiment\ of\ Insight=1 +Embodiment\ of\ Spring=1 +Embolden=1 +Embraal\ Bruiser=1 +Embraal\ Gear-Smasher=1 +Emeria\ Shepherd=1 +Emissary\ of\ Despair=1 +Emissary\ of\ Hope=1 +Emissary\ of\ the\ Sleepless=1 +Emmara\ Tandris=1 +Emmessi\ Tome=1 +Emperor\ Crocodile=1 +Empty\ the\ Catacombs=1 +Empty-Shrine\ Kannushi=1 +Empyreal\ Voyager=1 +Empyrial\ Armor=1 +Empyrial\ Plate=1 +Emrakul's\ Evangel=1 +Emrakul's\ Influence=1 +Encase\ in\ Ice=1 +Enchantment\ Alteration=1 +Enclave\ Cryptologist=1 +Enclave\ Elite=1 +Encroach=1 +Encroaching\ Wastes=1 +Encrust=1 +End\ Hostilities=1 +Endangered\ Armodon=1 +Endemic\ Plague=1 +Endless\ Obedience=1 +Endless\ Scream=1 +Endoskeleton=1 +Endrek\ Sahr,\ Master\ Breeder=1 +Endure=1 +Enduring\ Scalelord=1 +Enemy\ of\ the\ Guildpact=1 +Energy\ Arc=1 +Enervate=1 +Enfeeblement=1 +Engineered\ Might=1 +Engulfing\ Flames=1 +Engulfing\ Slagwurm=1 +Enhanced\ Awareness=1 +Enigma\ Drake=1 +Enigma\ Eidolon=1 +Enigma\ Sphinx=1 +Enlightened\ Ascetic=1 +Enlightened\ Maniac=1 +Enlisted\ Wurm=1 +Enormous\ Baloth=1 +Enraged\ Giant=1 +Enraging\ Licid=1 +Enshrouding\ Mist=1 +Enslave=1 +Enslaved\ Dwarf=1 +Ensouled\ Scimitar=1 +Entangling\ Trap=1 +Enthralling\ Victor=1 +Entomber\ Exarch=1 +Entrails\ Feaster=1 +Envelop=1 +Ephara's\ Enlightenment=1 +Ephara's\ Radiance=1 +Ephara's\ Warden=1 +Ephemeral\ Shields=1 +Ephemeron=1 +Epic\ Proportions=1 +Epiphany\ at\ the\ Drownyard=1 +Epiphany\ Storm=1 +Epitaph\ Golem=1 +Epochrasite=1 +Equestrian\ Skill=1 +Era\ of\ Innovation=1 +Eradicate=1 +Erase=1 +Erdwal\ Illuminator=1 +Erdwal\ Ripper=1 +Erebos's\ Emissary=1 +Erg\ Raiders=1 +Erhnam\ Djinn=1 +Errand\ of\ Duty=1 +Errant\ Doomsayers=1 +Errant\ Ephemeron=1 +Errantry=1 +Erratic\ Explosion=1 +Erratic\ Mutation=1 +Ertai's\ Trickery=1 +Escape\ Artist=1 +Escape\ Routes=1 +Esper\ Battlemage=1 +Esper\ Cormorants=1 +Esper\ Panorama=1 +Esper\ Stormblade=1 +Esperzoa=1 +Essence\ Backlash=1 +Essence\ Bottle=1 +Essence\ Depleter=1 +Essence\ Extraction=1 +Essence\ Feed=1 +Essence\ Filter=1 +Essence\ Flare=1 +Essence\ Flux=1 +Essence\ Fracture=1 +Essence\ Harvest=1 +Essence\ Leak=1 +Etched\ Monstrosity=1 +Etched\ Oracle=1 +Eternal\ Dragon=1 +Eternal\ Thirst=1 +Eternity\ Snare=1 +Ethercaste\ Knight=1 +Ethereal\ Ambush=1 +Ethereal\ Guidance=1 +Ethereal\ Usher=1 +Etherium\ Astrolabe=1 +Ethersworn\ Shieldmage=1 +Etherwrought\ Page=1 +Evanescent\ Intellect=1 +Evangel\ of\ Heliod=1 +Evangelize=1 +Even\ the\ Odds=1 +Ever\ After=1 +Everbark\ Shaman=1 +Everflame\ Eidolon=1 +Everflowing\ Chalice=1 +Evernight\ Shade=1 +Evil\ Eye\ of\ Orms-by-Gore=1 +Evil\ Eye\ of\ Urborg=1 +Evil\ Twin=1 +Eviscerator=1 +Evolution\ Charm=1 +Evolutionary\ Escalation=1 +Evolving\ Wilds=1 +Exalted\ Dragon=1 +Exava,\ Rakdos\ Blood\ Witch=1 +Excavator=1 +Excise=1 +Exclusion\ Ritual=1 +Excommunicate=1 +Excoriate=1 +Excruciator=1 +Execute=1 +Executioner's\ Capsule=1 +Executioner's\ Hood=1 +Executioner's\ Swing=1 +Exemplar\ of\ Strength=1 +Exert\ Influence=1 +Exile=1 +Exile\ into\ Darkness=1 +Exiled\ Boggart=1 +Exiled\ Doomsayer=1 +Exorcist=1 +Exoskeletal\ Armor=1 +Exotic\ Curse=1 +Expedite=1 +Expedition\ Envoy=1 +Expedition\ Raptor=1 +Expendable\ Troops=1 +Experimental\ Aviator=1 +Exploding\ Borders=1 +Explore=1 +Explosive\ Apparatus=1 +Explosive\ Growth=1 +Explosive\ Revelation=1 +Expose\ Evil=1 +Extinguish\ All\ Hope=1 +Extra\ Arms=1 +Extract\ from\ Darkness=1 +Extractor\ Demon=1 +Extricator\ of\ Sin=1 +Extruder=1 +Exuberant\ Firestoker=1 +Exultant\ Cultist=1 +Eye\ Gouge=1 +Eye\ of\ the\ Storm=1 +Eyeblight\ Assassin=1 +Eyeblight\ Massacre=1 +Eyeblight's\ Ending=1 +Eyeless\ Watcher=1 +Eyes\ in\ the\ Skies=1 +Eyes\ of\ the\ Watcher=1 +Ezuri's\ Archers=1 +Ezuri's\ Brigade=1 +Fa'adiyah\ Seer=1 +Fabrication\ Module=1 +Faceless\ Butcher=1 +Faceless\ Devourer=1 +Faces\ of\ the\ Past=1 +Facevaulter=1 +Fade\ from\ Memory=1 +Fade\ into\ Antiquity=1 +Faerie\ Harbinger=1 +Faerie\ Impostor=1 +Faerie\ Invaders=1 +Faerie\ Mechanist=1 +Faerie\ Noble=1 +Faerie\ Squadron=1 +Faerie\ Swarm=1 +Faerie\ Tauntings=1 +Faerie\ Trickery=1 +Failed\ Inspection=1 +Failure\ //\ Comply=1 +Fairgrounds\ Trumpeter=1 +Faith\ of\ the\ Devoted=1 +Faith\ Unbroken=1 +Faith's\ Fetters=1 +Faith's\ Shield=1 +Faithbearer\ Paladin=1 +Faithful\ Squire=1 +Falkenrath\ Marauders=1 +Falkenrath\ Noble=1 +Falkenrath\ Reaver=1 +Falkenrath\ Torturer=1 +Fall\ of\ the\ Gavel=1 +Fall\ of\ the\ Hammer=1 +Fall\ of\ the\ Titans=1 +Fallen\ Angel=1 +Fallen\ Askari=1 +Fallen\ Ferromancer=1 +Fallen\ Ideal=1 +Falling\ Timber=1 +Fallow\ Wurm=1 +Fallowsage=1 +False\ Memories=1 +Familiar\ Ground=1 +Familiar's\ Ruse=1 +Famine=1 +Famished\ Ghoul=1 +Fan\ Bearer=1 +Fanatic\ of\ Mogis=1 +Fanatic\ of\ Xenagos=1 +Fang\ Skulkin=1 +Fangren\ Firstborn=1 +Fangren\ Hunter=1 +Fangren\ Pathcutter=1 +Fanning\ the\ Flames=1 +Far\ //\ Away=1 +Farbog\ Revenant=1 +Farrel's\ Zealot=1 +Fatal\ Attraction=1 +Fatal\ Mutation=1 +Fate\ Foretold=1 +Fate\ Forgotten=1 +Fate\ Transfer=1 +Fate\ Unraveler=1 +Fated\ Infatuation=1 +Fated\ Intervention=1 +Fated\ Retribution=1 +Fated\ Return=1 +Fateful\ Showdown=1 +Fatespinner=1 +Fatestitcher=1 +Fathom\ Feeder=1 +Fathom\ Mage=1 +Fathom\ Seer=1 +Fathom\ Trawl=1 +Fatigue=1 +Faultgrinder=1 +Favor\ of\ the\ Woods=1 +Fear=1 +Fearsome\ Temper=1 +Feast\ of\ Blood=1 +Feast\ of\ Dreams=1 +Feast\ of\ Flesh=1 +Feast\ of\ Worms=1 +Feast\ on\ the\ Fallen=1 +Feast\ or\ Famine=1 +Feat\ of\ Resistance=1 +Feebleness=1 +Feed\ the\ Pack=1 +Feedback\ Bolt=1 +Feeding\ Frenzy=1 +Feeling\ of\ Dread=1 +Feldon's\ Cane=1 +Felhide\ Brawler=1 +Felhide\ Minotaur=1 +Felhide\ Petrifier=1 +Felhide\ Spiritbinder=1 +Felidar\ Cub=1 +Felidar\ Guardian=1 +Felidar\ Sovereign=1 +Femeref\ Archers=1 +Femeref\ Knight=1 +Femeref\ Scouts=1 +Fen\ Hauler=1 +Fen\ Stalker=1 +Fencer's\ Magemark=1 +Fencing\ Ace=1 +Fend\ Off=1 +Fendeep\ Summoner=1 +Feral\ Animist=1 +Feral\ Contest=1 +Feral\ Hydra=1 +Feral\ Incarnation=1 +Feral\ Instinct=1 +Feral\ Invocation=1 +Feral\ Krushok=1 +Feral\ Lightning=1 +Feral\ Thallid=1 +Ferocious\ Charge=1 +Ferocity=1 +Ferropede=1 +Ferrovore=1 +Fertile\ Thicket=1 +Fervent\ Cathar=1 +Fervent\ Denial=1 +Fervor=1 +Festercreep=1 +Festergloom=1 +Festerhide\ Boar=1 +Festering\ Goblin=1 +Festering\ March=1 +Festering\ Mummy=1 +Festering\ Newt=1 +Festering\ Wound=1 +Festival\ of\ the\ Guildpact=1 +Fetid\ Imp=1 +Fettergeist=1 +Feudkiller's\ Verdict=1 +Fevered\ Strength=1 +Fiddlehead\ Kami=1 +Field\ Creeper=1 +Field\ of\ Souls=1 +Fiend\ Binder=1 +Fiend\ of\ the\ Shadows=1 +Fierce\ Invocation=1 +Fiery\ Bombardment=1 +Fiery\ Conclusion=1 +Fiery\ Fall=1 +Fiery\ Gambit=1 +Fiery\ Hellhound=1 +Fiery\ Impulse=1 +Fiery\ Justice=1 +Fiery\ Mantle=1 +Fiery\ Temper=1 +Fighting\ Chance=1 +Fighting\ Drake=1 +Filigree\ Crawler=1 +Filigree\ Familiar=1 +Filigree\ Sages=1 +Filthy\ Cur=1 +Final\ Punishment=1 +Final\ Revels=1 +Final\ Reward=1 +Final-Sting\ Faerie=1 +Fire\ Ants=1 +Fire\ at\ Will=1 +Fire\ Drake=1 +Fire\ Imp=1 +Fire\ Juggler=1 +Fire\ Servant=1 +Fire\ Sprites=1 +Fire\ Tempest=1 +Fire\ Whip=1 +Fire-Belly\ Changeling=1 +Fire-Field\ Ogre=1 +Fireball=1 +Firebrand\ Ranger=1 +Firebreathing=1 +Firedrinker\ Satyr=1 +Firefiend\ Elemental=1 +Firefist\ Striker=1 +Firefly=1 +Fireforger's\ Puzzleknot=1 +Firefright\ Mage=1 +Firehoof\ Cavalry=1 +Firemane\ Angel=1 +Firemane\ Avenger=1 +Firemantle\ Mage=1 +Firemaw\ Kavu=1 +Firemind's\ Foresight=1 +Firescreamer=1 +Fireshrieker=1 +Fireslinger=1 +Firewake\ Sliver=1 +Firewing\ Phoenix=1 +First\ Response=1 +Fishliver\ Oil=1 +Fissure=1 +Fistful\ of\ Force=1 +Fists\ of\ Ironwood=1 +Fists\ of\ the\ Demigod=1 +Fit\ of\ Rage=1 +Five-Alarm\ Fire=1 +Flailing\ Drake=1 +Flame\ Fusillade=1 +Flame\ Jab=1 +Flame\ Jet=1 +Flame\ Spirit=1 +Flame\ Wave=1 +Flame-Kin\ War\ Scout=1 +Flame-Kin\ Zealot=1 +Flame-Wreathed\ Phoenix=1 +Flameblade\ Adept=1 +Flameblade\ Angel=1 +Flameblast\ Dragon=1 +Flameborn\ Hellion=1 +Flamebreak=1 +Flamecast\ Wheel=1 +Flamecore\ Elemental=1 +Flamekin\ Bladewhirl=1 +Flamekin\ Brawler=1 +Flamekin\ Spitfire=1 +Flamerush\ Rider=1 +Flames\ of\ the\ Firebrand=1 +Flameshadow\ Conjuring=1 +Flamespeaker\ Adept=1 +Flamespeaker's\ Will=1 +Flametongue\ Kavu=1 +Flaming\ Sword=1 +Flash\ Conscription=1 +Flash\ Foliage=1 +Flash\ of\ Defiance=1 +Flashfires=1 +Flashfreeze=1 +Flatten=1 +Flay=1 +Flayed\ Nim=1 +Flayer\ Drone=1 +Flaying\ Tendrils=1 +Fledgling\ Djinn=1 +Fledgling\ Dragon=1 +Fledgling\ Imp=1 +Fledgling\ Mawcor=1 +Fleecemane\ Lion=1 +Fleetfeather\ Cockatrice=1 +Fleetfeather\ Sandals=1 +Fleetfoot\ Panther=1 +Fleeting\ Aven=1 +Fleeting\ Distraction=1 +Fleeting\ Image=1 +Fleeting\ Memories=1 +Fleetwheel\ Cruiser=1 +Flensermite=1 +Flesh\ //\ Blood=1 +Flesh\ Allergy=1 +Flesh\ Reaver=1 +Flesh\ to\ Dust=1 +Flesh-Eater\ Imp=1 +Fleshbag\ Marauder=1 +Fleshformer=1 +Fleshpulper\ Giant=1 +Fleshwrither=1 +Flickerform=1 +Flickering\ Spirit=1 +Flight=1 +Flight\ Spellbomb=1 +Fling=1 +Flinthoof\ Boar=1 +Flitterstep\ Eidolon=1 +Floating\ Shield=1 +Floating-Dream\ Zubera=1 +Floodbringer=1 +Floodchaser=1 +Floodtide\ Serpent=1 +Floodwater\ Dam=1 +Floodwaters=1 +Flow\ of\ Ideas=1 +Flowstone\ Blade=1 +Flowstone\ Charger=1 +Flowstone\ Crusher=1 +Flowstone\ Embrace=1 +Flowstone\ Flood=1 +Flowstone\ Giant=1 +Flowstone\ Mauler=1 +Flowstone\ Salamander=1 +Flowstone\ Sculpture=1 +Flowstone\ Shambler=1 +Flowstone\ Slide=1 +Flurry\ of\ Horns=1 +Flurry\ of\ Wings=1 +Flying\ Carpet=1 +Flying\ Crane\ Technique=1 +Flying\ Men=1 +Fodder\ Cannon=1 +Fodder\ Launch=1 +Foe-Razer\ Regent=1 +Fog=1 +Fog\ Elemental=1 +Fog\ of\ Gnats=1 +Fog\ Patch=1 +Fogwalker=1 +Fold\ into\ Aether=1 +Folk\ Medicine=1 +Folk\ of\ the\ Pines=1 +Followed\ Footsteps=1 +Fomori\ Nomad=1 +Font\ of\ Fertility=1 +Font\ of\ Fortunes=1 +Font\ of\ Ire=1 +Font\ of\ Return=1 +Font\ of\ Vigor=1 +Fool's\ Demise=1 +Fool's\ Tome=1 +Foot\ Soldiers=1 +Foothill\ Guide=1 +Foratog=1 +Forbid=1 +Forbidden\ Lore=1 +Forbidding\ Watchtower=1 +Force\ Away=1 +Force\ of\ Nature=1 +Force\ of\ Savagery=1 +Forced\ Adaptation=1 +Forced\ Retreat=1 +Forced\ Worship=1 +Forcemage\ Advocate=1 +Forerunner\ of\ Slaughter=1 +Foresee=1 +Forest=1 +Forfend=1 +Forge\ Devil=1 +Forgeborn\ Oreads=1 +Forgestoker\ Dragon=1 +Forgotten\ Creation=1 +Foriysian\ Interceptor=1 +Foriysian\ Totem=1 +Fork\ in\ the\ Road=1 +Forked\ Lightning=1 +Forlorn\ Pseudamma=1 +Formless\ Nurturing=1 +Forsake\ the\ Worldly=1 +Forsaken\ Drifters=1 +Forsaken\ Sanctuary=1 +Fortified\ Rampart=1 +Fortify=1 +Fortress\ Cyclops=1 +Fortuitous\ Find=1 +Fortune's\ Favor=1 +Fossil\ Find=1 +Foster=1 +Foul\ Emissary=1 +Foul\ Familiar=1 +Foul\ Imp=1 +Foul\ Orchard=1 +Foul\ Presence=1 +Foul\ Renewal=1 +Foul\ Spirit=1 +Foul-Tongue\ Invocation=1 +Foul-Tongue\ Shriek=1 +Foundry\ Assembler=1 +Foundry\ Champion=1 +Foundry\ Hornet=1 +Foundry\ Inspector=1 +Foundry\ of\ the\ Consuls=1 +Foundry\ Screecher=1 +Fountain\ of\ Youth=1 +Fourth\ Bridge\ Prowler=1 +Frantic\ Purification=1 +Frantic\ Salvage=1 +Frazzle=1 +Freejam\ Regent=1 +Freewind\ Equenaut=1 +Freewind\ Falcon=1 +Frenetic\ Ogre=1 +Frenetic\ Sliver=1 +Frenzied\ Fugue=1 +Frenzied\ Goblin=1 +Frenzied\ Tilling=1 +Frenzy\ Sliver=1 +Fresh\ Meat=1 +Fretwork\ Colony=1 +Freyalise's\ Radiance=1 +Freyalise's\ Winds=1 +Friendly\ Fire=1 +Frightcrawler=1 +Frightful\ Delusion=1 +Frightshroud\ Courier=1 +Frog\ Tongue=1 +From\ Beyond=1 +From\ Under\ the\ Floorboards=1 +Frontier\ Bivouac=1 +Frontier\ Guide=1 +Frontier\ Mastodon=1 +Frontline\ Medic=1 +Frontline\ Rebel=1 +Frontline\ Sage=1 +Frontline\ Strategist=1 +Frost\ Breath=1 +Frost\ Giant=1 +Frost\ Lynx=1 +Frost\ Ogre=1 +Frost\ Raptor=1 +Frostburn\ Weird=1 +Frostling=1 +Frostweb\ Spider=1 +Frostwielder=1 +Frostwind\ Invoker=1 +Frozen\ Aether=1 +Fruit\ of\ the\ First\ Tree=1 +Fuel\ for\ the\ Cause=1 +Fugitive\ Druid=1 +Fugitive\ Wizard=1 +Full\ Moon's\ Rise=1 +Fumarole=1 +Funeral\ March=1 +Fungal\ Behemoth=1 +Fungal\ Reaches=1 +Fungal\ Sprouting=1 +Fungus\ Sliver=1 +Fungusaur=1 +Furious\ Reprisal=1 +Furnace\ Brood=1 +Furnace\ Celebration=1 +Furnace\ Dragon=1 +Furnace\ of\ Rath=1 +Furnace\ Scamp=1 +Furnace\ Spirit=1 +Furnace\ Whelp=1 +Furor\ of\ the\ Bitten=1 +Furtive\ Homunculus=1 +Fury\ Charm=1 +Fury\ Sliver=1 +Furyblade\ Vampire=1 +Furystoke\ Giant=1 +Fusion\ Elemental=1 +Future\ Sight=1 +Gaea's\ Anthem=1 +Gaea's\ Avenger=1 +Gaea's\ Balance=1 +Gaea's\ Blessing=1 +Gaea's\ Bounty=1 +Gaea's\ Embrace=1 +Gaea's\ Liege=1 +Gaea's\ Might=1 +Gaea's\ Revenge=1 +Gaea's\ Skyfolk=1 +Gainsay=1 +Gale\ Force=1 +Galepowder\ Mage=1 +Galestrike=1 +Gallantry=1 +Gallows\ at\ Willow\ Hill=1 +Gallows\ Warden=1 +Galvanic\ Arc=1 +Galvanic\ Bombardment=1 +Galvanic\ Juggernaut=1 +Galvanoth=1 +Game-Trail\ Changeling=1 +Gang\ of\ Elk=1 +Gangrenous\ Zombies=1 +Gargoyle\ Castle=1 +Gargoyle\ Sentinel=1 +Garruk's\ Companion=1 +Garruk's\ Horde=1 +Garruk's\ Packleader=1 +Garza\ Zol,\ Plague\ Queen=1 +Gaseous\ Form=1 +Gate\ Hound=1 +Gate\ Smasher=1 +Gate\ to\ the\ Aether=1 +Gate\ to\ the\ Afterlife=1 +Gatecreeper\ Vine=1 +Gatekeeper\ of\ Malakir=1 +Gateway\ Shade=1 +Gathan\ Raiders=1 +Gather\ Courage=1 +Gather\ Specimens=1 +Gather\ the\ Pack=1 +Gatherer\ of\ Graces=1 +Gatstaf\ Arsonists=1 +Gatstaf\ Shepherd=1 +Gauntlets\ of\ Chaos=1 +Gavony\ Unhallowed=1 +Gaze\ of\ Adamaro=1 +Gaze\ of\ Justice=1 +Gearseeker\ Serpent=1 +Gearshift\ Ace=1 +Geier\ Reach\ Bandit=1 +Geist\ of\ the\ Archives=1 +Geist\ of\ the\ Lonely\ Vigil=1 +Geist\ of\ the\ Moors=1 +Geist-Fueled\ Scarecrow=1 +Geist-Honored\ Monk=1 +Geistblast=1 +Geistcatcher's\ Rig=1 +Geistflame=1 +Gelatinous\ Genesis=1 +Gelid\ Shackles=1 +Gem\ of\ Becoming=1 +Gemhide\ Sliver=1 +Gemini\ Engine=1 +Gempalm\ Sorcerer=1 +Gempalm\ Strider=1 +Gemstone\ Array=1 +General's\ Kabuto=1 +Generator\ Servant=1 +Genju\ of\ the\ Cedars=1 +Genju\ of\ the\ Falls=1 +Genju\ of\ the\ Fens=1 +Genju\ of\ the\ Fields=1 +Genju\ of\ the\ Spires=1 +Geosurge=1 +Geralf's\ Mindcrusher=1 +Gerrard's\ Battle\ Cry=1 +Gerrard's\ Command=1 +Gerrard's\ Irregulars=1 +Gerrard's\ Wisdom=1 +Geth's\ Grimoire=1 +Geyser\ Glider=1 +Geyserfield\ Stalker=1 +Ghalma's\ Warden=1 +Ghastly\ Discovery=1 +Ghastly\ Remains=1 +Ghazb?n\ Ogre=1 +Ghirapur\ Gearcrafter=1 +Ghirapur\ Guide=1 +Ghirapur\ Orrery=1 +Ghirapur\ Osprey=1 +Ghitu\ Fire-Eater=1 +Ghitu\ Firebreathing=1 +Ghitu\ Slinger=1 +Ghitu\ War\ Cry=1 +Ghor-Clan\ Bloodscale=1 +Ghor-Clan\ Rampager=1 +Ghost\ Council\ of\ Orzhova=1 +Ghost\ Ship=1 +Ghost\ Warden=1 +Ghost-Lit\ Raider=1 +Ghost-Lit\ Redeemer=1 +Ghost-Lit\ Stalker=1 +Ghost-Lit\ Warder=1 +Ghostblade\ Eidolon=1 +Ghostfire=1 +Ghostfire\ Blade=1 +Ghostflame\ Sliver=1 +Ghosthelm\ Courier=1 +Ghostly\ Changeling=1 +Ghostly\ Possession=1 +Ghostly\ Sentinel=1 +Ghostly\ Touch=1 +Ghostly\ Visit=1 +Ghostly\ Wings=1 +Ghosts\ of\ the\ Damned=1 +Ghosts\ of\ the\ Innocent=1 +Ghoulcaller's\ Accomplice=1 +Ghoulcaller's\ Bell=1 +Ghoulcaller's\ Chant=1 +Ghoulraiser=1 +Ghoulsteed=1 +Ghoultree=1 +Giant\ Ambush\ Beetle=1 +Giant\ Badger=1 +Giant\ Caterpillar=1 +Giant\ Cockroach=1 +Giant\ Crab=1 +Giant\ Dustwasp=1 +Giant\ Growth=1 +Giant\ Harbinger=1 +Giant\ Mantis=1 +Giant\ Octopus=1 +Giant\ Oyster=1 +Giant\ Scorpion=1 +Giant\ Solifuge=1 +Giant\ Spectacle=1 +Giant\ Spider=1 +Giant\ Strength=1 +Giant\ Tortoise=1 +Giant\ Warthog=1 +Giantbaiting=1 +Gibbering\ Descent=1 +Gibbering\ Fiend=1 +Gibbering\ Kami=1 +Gideon's\ Avenger=1 +Gideon's\ Lawkeeper=1 +Gideon's\ Phalanx=1 +Gideon's\ Reproach=1 +Gift\ of\ Estates=1 +Gift\ of\ Immortality=1 +Gift\ of\ Orzhova=1 +Gift\ of\ Paradise=1 +Gift\ of\ the\ Deity=1 +Gift\ of\ the\ Gargantuan=1 +Gift\ of\ Tusks=1 +Gigantiform=1 +Gigantomancer=1 +Gigapede=1 +Gild=1 +Gilt-Leaf\ Ambush=1 +Gilt-Leaf\ Seer=1 +Gilt-Leaf\ Winnower=1 +Gisa's\ Bidding=1 +Give\ //\ Take=1 +Give\ No\ Ground=1 +Glacial\ Crasher=1 +Glacial\ Crevasses=1 +Glacial\ Plating=1 +Glacial\ Ray=1 +Glacial\ Stalker=1 +Glacial\ Wall=1 +Glade\ Gnarr=1 +Glade\ Watcher=1 +Gladehart\ Cavalry=1 +Glamer\ Spinners=1 +Glamerdye=1 +Glare\ of\ Heresy=1 +Glare\ of\ Subdual=1 +Glarewielder=1 +Glaring\ Aegis=1 +Glaring\ Spotlight=1 +Glassblower's\ Puzzleknot=1 +Glassdust\ Hulk=1 +Glasses\ of\ Urza=1 +Glaze\ Fiend=1 +Gleam\ of\ Authority=1 +Gleam\ of\ Battle=1 +Gleam\ of\ Resistance=1 +Gleancrawler=1 +Glen\ Elendra\ Pranksters=1 +Gliding\ Licid=1 +Glimmerdust\ Nap=1 +Glimmerpoint\ Stag=1 +Glimpse\ the\ Future=1 +Glimpse\ the\ Sun\ God=1 +Glint=1 +Glint\ Hawk\ Idol=1 +Glint-Eye\ Nephilim=1 +Glint-Sleeve\ Artisan=1 +Glissa\ Sunseeker=1 +Glissa's\ Courier=1 +Glissa's\ Scorn=1 +Glitterfang=1 +Glittering\ Lynx=1 +Gloomdrifter=1 +Gloomwidow=1 +Gloomwidow's\ Feast=1 +Glorious\ Anthem=1 +Glorious\ Charge=1 +Glory\ of\ Warfare=1 +Glory\ Seeker=1 +Gloryscale\ Viashino=1 +Glowering\ Rogon=1 +Gluttonous\ Cyclops=1 +Gluttonous\ Slime=1 +Gluttonous\ Zombie=1 +Glyph\ Keeper=1 +Gnarled\ Mass=1 +Gnarled\ Scarhide=1 +Gnarlid\ Pack=1 +Gnarlroot\ Trapper=1 +Gnarlwood\ Dryad=1 +Gnat\ Alley\ Creeper=1 +Gnat\ Miser=1 +Gnathosaur=1 +Gnawing\ Zombie=1 +Goatnapper=1 +Gobbling\ Ooze=1 +Gobhobbler\ Rats=1 +Goblin\ Archaeologist=1 +Goblin\ Arsonist=1 +Goblin\ Artillery=1 +Goblin\ Assault=1 +Goblin\ Balloon\ Brigade=1 +Goblin\ Bangchuckers=1 +Goblin\ Berserker=1 +Goblin\ Boom\ Keg=1 +Goblin\ Brawler=1 +Goblin\ Brigand=1 +Goblin\ Bully=1 +Goblin\ Burrows=1 +Goblin\ Cadets=1 +Goblin\ Cannon=1 +Goblin\ Cavaliers=1 +Goblin\ Chariot=1 +Goblin\ Commando=1 +Goblin\ Deathraiders=1 +Goblin\ Digging\ Team=1 +Goblin\ Diplomats=1 +Goblin\ Dirigible=1 +Goblin\ Dynamo=1 +Goblin\ Electromancer=1 +Goblin\ Elite\ Infantry=1 +Goblin\ Fire\ Fiend=1 +Goblin\ Fireslinger=1 +Goblin\ Firestarter=1 +Goblin\ Flectomancer=1 +Goblin\ Freerunner=1 +Goblin\ Furrier=1 +Goblin\ Gardener=1 +Goblin\ Gaveleer=1 +Goblin\ General=1 +Goblin\ Glider=1 +Goblin\ Glory\ Chaser=1 +Goblin\ Grappler=1 +Goblin\ Kaboomist=1 +Goblin\ Legionnaire=1 +Goblin\ Lore=1 +Goblin\ Machinist=1 +Goblin\ Matron=1 +Goblin\ Medics=1 +Goblin\ Mountaineer=1 +Goblin\ Outlander=1 +Goblin\ Patrol=1 +Goblin\ Piker=1 +Goblin\ Raider=1 +Goblin\ Rally=1 +Goblin\ Razerunners=1 +Goblin\ Replica=1 +Goblin\ Rimerunner=1 +Goblin\ Ringleader=1 +Goblin\ Roughrider=1 +Goblin\ Settler=1 +Goblin\ Shortcutter=1 +Goblin\ Shrine=1 +Goblin\ Ski\ Patrol=1 +Goblin\ Sky\ Raider=1 +Goblin\ Skycutter=1 +Goblin\ Snowman=1 +Goblin\ Spelunkers=1 +Goblin\ Spy=1 +Goblin\ Spymaster=1 +Goblin\ Swine-Rider=1 +Goblin\ Test\ Pilot=1 +Goblin\ Trenches=1 +Goblin\ Tunneler=1 +Goblin\ War\ Buggy=1 +Goblin\ War\ Paint=1 +Goblin\ War\ Wagon=1 +Goblin\ Warchief=1 +Goblins\ of\ the\ Flarg=1 +Goblinslide=1 +God-Favored\ General=1 +Godo's\ Irregulars=1 +Gods\ Willing=1 +Gods'\ Eye,\ Gate\ to\ the\ Reikai=1 +Godtoucher=1 +Goham\ Djinn=1 +Gold\ Myr=1 +Gold-Forged\ Sentinel=1 +Golden\ Hind=1 +Golden\ Urn=1 +Goldenglow\ Moth=1 +Goldenhide\ Ox=1 +Goldmeadow\ Dodger=1 +Goldmeadow\ Harrier=1 +Goldmeadow\ Lookout=1 +Goldmeadow\ Stalwart=1 +Goldnight\ Commander=1 +Goldnight\ Redeemer=1 +Golem\ Artisan=1 +Golem\ Foundry=1 +Golem-Skin\ Gauntlets=1 +Golem's\ Heart=1 +Golgari\ Cluestone=1 +Golgari\ Germination=1 +Golgari\ Guildgate=1 +Golgari\ Guildmage=1 +Golgari\ Keyrune=1 +Golgari\ Rotwurm=1 +Golgari\ Signet=1 +Goliath\ Beetle=1 +Goliath\ Sphinx=1 +Goliath\ Spider=1 +Gomazoa=1 +Gone\ Missing=1 +Gonti's\ Machinations=1 +Gore\ Vassal=1 +Gore-House\ Chainwalker=1 +Gorehorn\ Minotaurs=1 +Goretusk\ Firebeast=1 +Gorgon\ Flail=1 +Gorgon\ Recluse=1 +Gorgon's\ Head=1 +Gorilla\ Chieftain=1 +Gorilla\ Titan=1 +Gorilla\ Warrior=1 +Gossamer\ Chains=1 +Gossamer\ Phantasm=1 +Govern\ the\ Guildless=1 +Grab\ the\ Reins=1 +Graceblade\ Artisan=1 +Graceful\ Adept=1 +Graceful\ Reprieve=1 +Graf\ Harvest=1 +Graf\ Mole=1 +Graf\ Rats=1 +Grafted\ Exoskeleton=1 +Grand\ Coliseum=1 +Grandmother\ Sengir=1 +Granite\ Grip=1 +Granite\ Shard=1 +Granulate=1 +Grapeshot\ Catapult=1 +Grapple\ with\ the\ Past=1 +Grappler\ Spider=1 +Grappling\ Hook=1 +Grasp\ of\ Phantoms=1 +Grasp\ of\ the\ Hieromancer=1 +Grasping\ Dunes=1 +Grasslands=1 +Grave\ Betrayal=1 +Grave\ Birthing=1 +Grave\ Bramble=1 +Grave\ Consequences=1 +Grave\ Defiler=1 +Grave\ Servitude=1 +Grave\ Strength=1 +Grave-Shell\ Scarab=1 +Gravebind=1 +Graveblade\ Marauder=1 +Gravedigger=1 +Gravegouger=1 +Gravelgill\ Axeshark=1 +Gravelgill\ Duo=1 +Graven\ Dominator=1 +Gravepurge=1 +Graverobber\ Spider=1 +Gravespawn\ Sovereign=1 +Gravetiller\ Wurm=1 +Graveyard\ Shovel=1 +Gravitational\ Shift=1 +Gravity\ Negator=1 +Gravity\ Well=1 +Graypelt\ Hunter=1 +Graypelt\ Refuge=1 +Grayscaled\ Gharial=1 +Grazing\ Gladehart=1 +Grazing\ Kelpie=1 +Great\ Oak\ Guardian=1 +Great\ Teacher's\ Decree=1 +Greatbow\ Doyen=1 +Greater\ Forgeling=1 +Greater\ Harvester=1 +Greater\ Mossdog=1 +Greater\ Sandwurm=1 +Greater\ Stone\ Spirit=1 +Greatsword=1 +Greel's\ Caress=1 +Greenhilt\ Trainee=1 +Greenseeker=1 +Greenside\ Watcher=1 +Greenweaver\ Druid=1 +Greenwheel\ Liberator=1 +Gremlin\ Infestation=1 +Gremlin\ Mine=1 +Grid\ Monitor=1 +Gridlock=1 +Grief\ Tyrant=1 +Griffin\ Dreamfinder=1 +Griffin\ Guide=1 +Griffin\ Sentinel=1 +Grifter's\ Blade=1 +Grim\ Affliction=1 +Grim\ Backwoods=1 +Grim\ Contest=1 +Grim\ Discovery=1 +Grim\ Flowering=1 +Grim\ Guardian=1 +Grim\ Haruspex=1 +Grim\ Reminder=1 +Grim\ Return=1 +Grim\ Roustabout=1 +Grim\ Strider=1 +Grindclock=1 +Grinning\ Demon=1 +Grinning\ Ignus=1 +Grip\ of\ Amnesia=1 +Grip\ of\ Desolation=1 +Grip\ of\ Phyresis=1 +Grip\ of\ the\ Roil=1 +Griptide=1 +Grisly\ Spectacle=1 +Grisly\ Transformation=1 +Gristle\ Grinner=1 +Grixis\ Battlemage=1 +Grixis\ Charm=1 +Grixis\ Grimblade=1 +Grixis\ Illusionist=1 +Grixis\ Panorama=1 +Grixis\ Slavedriver=1 +Grizzled\ Angler=1 +Grizzled\ Leotau=1 +Grizzled\ Outcasts=1 +Grizzly\ Bears=1 +Grizzly\ Fate=1 +Grollub=1 +Grotag\ Siege-Runner=1 +Grotag\ Thrasher=1 +Grotesque\ Hybrid=1 +Grotesque\ Mutation=1 +Ground\ Assault=1 +Ground\ Rift=1 +Groundling\ Pouncer=1 +Groundshaker\ Sliver=1 +Groundskeeper=1 +Grove\ of\ the\ Guardian=1 +Grove\ Rumbler=1 +Grovetender\ Druids=1 +Growing\ Ranks=1 +Gruesome\ Deformity=1 +Gruesome\ Discovery=1 +Gruesome\ Encore=1 +Gruesome\ Slaughter=1 +Gruul\ Charm=1 +Gruul\ Cluestone=1 +Gruul\ Guildgate=1 +Gruul\ Guildmage=1 +Gruul\ Keyrune=1 +Gruul\ Ragebeast=1 +Gruul\ Signet=1 +Gruul\ War\ Chant=1 +Gruul\ War\ Plow=1 +Gryff's\ Boon=1 +Guan\ Yu,\ Sainted\ Warrior=1 +Guan\ Yu's\ 1,000-Li\ March=1 +Guard\ Dogs=1 +Guard\ Duty=1 +Guard\ Gomazoa=1 +Guardian\ Automaton=1 +Guardian\ of\ Cloverdell=1 +Guardian\ of\ Pilgrims=1 +Guardian\ of\ Solitude=1 +Guardian\ of\ Tazeem=1 +Guardian\ of\ the\ Ages=1 +Guardian\ of\ the\ Gateless=1 +Guardian\ Shield-Bearer=1 +Guardian's\ Magemark=1 +Guardians\ of\ Akrasa=1 +Guardians\ of\ Meletis=1 +Gudul\ Lurker=1 +Guerrilla\ Tactics=1 +Guided\ Strike=1 +Guild\ Feud=1 +Guildscorn\ Ward=1 +Guile=1 +Guilty\ Conscience=1 +Guise\ of\ Fire=1 +Guma=1 +Gurmag\ Drowner=1 +Gurmag\ Swiftwing=1 +Gust\ Walker=1 +Gust-Skimmer=1 +Gustcloak\ Cavalier=1 +Gustcloak\ Harrier=1 +Gustcloak\ Savior=1 +Gustrider\ Exuberant=1 +Gutless\ Ghoul=1 +Gutter\ Grime=1 +Gutter\ Skulk=1 +Gutwrencher\ Oni=1 +Guul\ Draz\ Overseer=1 +Guul\ Draz\ Specter=1 +Gwafa\ Hazid,\ Profiteer=1 +Gwyllion\ Hedge-Mage=1 +Gyre\ Sage=1 +Haazda\ Exonerator=1 +Haazda\ Shield\ Mate=1 +Hada\ Spy\ Patrol=1 +Hag\ Hedge-Mage=1 +Hagra\ Diabolist=1 +Hagra\ Sharpshooter=1 +Hail\ of\ Arrows=1 +Hair-Strung\ Koto=1 +Halam\ Djinn=1 +Halberdier=1 +Halcyon\ Glaze=1 +Halimar\ Excavator=1 +Halimar\ Tidecaller=1 +Halimar\ Wavewatch=1 +Hall\ of\ Triumph=1 +Hallow=1 +Hallowed\ Ground=1 +Hallowed\ Healer=1 +Halo\ Hunter=1 +Halt\ Order=1 +Hamlet\ Captain=1 +Hamletback\ Goliath=1 +Hammer\ of\ Bogardan=1 +Hammer\ of\ Purphoros=1 +Hammer\ of\ Ruin=1 +Hammerfist\ Giant=1 +Hammerhand=1 +Hammerhead\ Shark=1 +Hammerheim\ Deadeye=1 +Hana\ Kami=1 +Hanabi\ Blast=1 +Hand\ of\ Emrakul=1 +Hand\ of\ Justice=1 +Hand\ of\ Silumgar=1 +Hand\ of\ the\ Praetors=1 +Hands\ of\ Binding=1 +Hankyu=1 +Hanweir\ Lancer=1 +Hanweir\ Watchkeep=1 +Hapatra's\ Mark=1 +Hapless\ Researcher=1 +Harbinger\ of\ Spring=1 +Harbinger\ of\ the\ Hunt=1 +Harbor\ Serpent=1 +Hardened\ Berserker=1 +Harm's\ Way=1 +Harmattan\ Efreet=1 +Harmless\ Assault=1 +Harmless\ Offering=1 +Harmonic\ Convergence=1 +Harmonize=1 +Harness\ by\ Force=1 +Harness\ the\ Storm=1 +Harpoon\ Sniper=1 +Harrier\ Griffin=1 +Harrow=1 +Harrowing\ Journey=1 +Harsh\ Justice=1 +Harsh\ Scrutiny=1 +Haru-Onna=1 +Harvest\ Gwyllion=1 +Harvest\ Hand=1 +Harvest\ Pyre=1 +Harvest\ Season=1 +Harvester\ Druid=1 +Harvester\ Troll=1 +Harvestguard\ Alseids=1 +Hasran\ Ogress=1 +Hatchet\ Bully=1 +Hate\ Weaver=1 +Haunted\ Cadaver=1 +Haunted\ Cloak=1 +Haunted\ Dead=1 +Haunted\ Guardian=1 +Haunted\ Plate\ Mail=1 +Haunter\ of\ Nightveil=1 +Haunting\ Echoes=1 +Haunting\ Hymn=1 +Havengul\ Runebinder=1 +Havengul\ Vampire=1 +Havoc\ Demon=1 +Havoc\ Festival=1 +Havoc\ Sower=1 +Hawkeater\ Moth=1 +Hazardous\ Conditions=1 +Hazerider\ Drake=1 +Hazoret's\ Favor=1 +Hazoret's\ Monument=1 +Hazy\ Homunculus=1 +He\ Who\ Hungers=1 +Head\ Games=1 +Headhunter=1 +Headless\ Skaab=1 +Headlong\ Rush=1 +Heal=1 +Healer\ of\ the\ Pride=1 +Healer's\ Headdress=1 +Healing\ Hands=1 +Healing\ Leaves=1 +Healing\ Salve=1 +Heap\ Doll=1 +Heart\ of\ Light=1 +Heart\ Sliver=1 +Heart-Piercer\ Bow=1 +Heart-Piercer\ Manticore=1 +Hearth\ Kami=1 +Hearthcage\ Giant=1 +Hearthfire\ Hobgoblin=1 +Heartseeker=1 +Heartstabber\ Mosquito=1 +Heartwood\ Dryad=1 +Heat\ of\ Battle=1 +Heat\ Ray=1 +Heat\ Shimmer=1 +Heat\ Wave=1 +Heaven\ //\ Earth=1 +Heavy\ Arbalest=1 +Heavy\ Ballista=1 +Heavy\ Infantry=1 +Hedge\ Troll=1 +Hedonist's\ Trove=1 +Hedron\ Alignment=1 +Hedron\ Blade=1 +Hedron\ Crawler=1 +Hedron\ Matrix=1 +Hedron\ Scrabbler=1 +Hedron-Field\ Purists=1 +Heed\ the\ Mists=1 +Heidar,\ Rimewind\ Master=1 +Heir\ of\ Falkenrath=1 +Heir\ of\ the\ Wilds=1 +Hekma\ Sentinels=1 +Heliod's\ Emissary=1 +Helionaut=1 +Heliophial=1 +Helium\ Squirter=1 +Helldozer=1 +Hellhole\ Flailer=1 +Hellhole\ Rats=1 +Hellion\ Crucible=1 +Hellion\ Eruption=1 +Hellkite\ Charger=1 +Hellkite\ Hatchling=1 +Hellkite\ Igniter=1 +Hellraiser\ Goblin=1 +Hellrider=1 +Helm\ of\ the\ Ghastlord=1 +Helm\ of\ the\ Gods=1 +Hematite\ Golem=1 +Henge\ Guardian=1 +Herald\ of\ Anafenza=1 +Herald\ of\ Dromoka=1 +Herald\ of\ Kozilek=1 +Herald\ of\ the\ Fair=1 +Herald\ of\ the\ Host=1 +Herald\ of\ Torment=1 +Herald\ of\ War=1 +Herbal\ Poultice=1 +Herd\ Gnarr=1 +Herdchaser\ Dragon=1 +Heretic's\ Punishment=1 +Hermetic\ Study=1 +Hermit\ of\ the\ Natterknolls=1 +Hero\ of\ Goma\ Fada=1 +Hero\ of\ Leina\ Tower=1 +Hero's\ Demise=1 +Hero's\ Downfall=1 +Hero's\ Resolve=1 +Heroes\ Remembered=1 +Heroes'\ Podium=1 +Heroes'\ Reunion=1 +Heroic\ Defiance=1 +Heron's\ Grace\ Champion=1 +Hesitation=1 +Hewed\ Stone\ Retainers=1 +Hex=1 +Hexplate\ Golem=1 +Hibernation's\ End=1 +Hidden\ Ancients=1 +Hidden\ Dragonslayer=1 +Hidden\ Guerrillas=1 +Hidden\ Herbalists=1 +Hidden\ Horror=1 +Hidden\ Retreat=1 +Hidden\ Stag=1 +Hidden\ Strings=1 +Hideous\ End=1 +Hideous\ Laughter=1 +Hideous\ Visage=1 +High\ Ground=1 +High\ Priest\ of\ Penance=1 +High\ Sentinels\ of\ Arashin=1 +Highborn\ Ghoul=1 +Highland\ Berserker=1 +Highland\ Game=1 +Highland\ Lake=1 +Highspire\ Artisan=1 +Highspire\ Infusion=1 +Highspire\ Mantis=1 +Hightide\ Hermit=1 +Highway\ Robber=1 +Higure,\ the\ Still\ Wind=1 +Hijack=1 +Hikari,\ Twilight\ Guardian=1 +Hill\ Giant=1 +Hillcomber\ Giant=1 +Hindering\ Touch=1 +Hindervines=1 +Hint\ of\ Insanity=1 +Hinterland\ Drake=1 +Hinterland\ Hermit=1 +Hinterland\ Logger=1 +Hired\ Muscle=1 +Hired\ Torturer=1 +Hisoka,\ Minamo\ Sensei=1 +Hisoka's\ Guard=1 +Hissing\ Iguanar=1 +Hissing\ Miasma=1 +Hit\ //\ Run=1 +Hitchclaw\ Recluse=1 +Hivestone=1 +Hixus,\ Prison\ Warden=1 +Hoard-Smelter\ Dragon=1 +Hoarder's\ Greed=1 +Hobgoblin\ Dragoon=1 +Hold\ at\ Bay=1 +Hold\ the\ Gates=1 +Hold\ the\ Line=1 +Holdout\ Settlement=1 +Holistic\ Wisdom=1 +Hollow\ Dogs=1 +Hollowborn\ Barghest=1 +Hollowhenge\ Spirit=1 +Hollowsage=1 +Holy\ Mantle=1 +Holy\ Strength=1 +Homarid\ Spawning\ Bed=1 +Homicidal\ Seclusion=1 +Homing\ Sliver=1 +Honden\ of\ Cleansing\ Fire=1 +Honden\ of\ Infinite\ Rage=1 +Honden\ of\ Life's\ Web=1 +Honden\ of\ Night's\ Reach=1 +Honden\ of\ Seeing\ Winds=1 +Honed\ Khopesh=1 +Honor\ Guard=1 +Honor's\ Reward=1 +Honorable\ Passage=1 +Honored\ Crop-Captain=1 +Honored\ Hierarch=1 +Honored\ Hydra=1 +Hooded\ Assassin=1 +Hooded\ Brawler=1 +Hooded\ Kavu=1 +Hoofprints\ of\ the\ Stag=1 +Hooting\ Mandrills=1 +Hope\ Against\ Hope=1 +Hope\ and\ Glory=1 +Hope\ Charm=1 +Hopeful\ Eidolon=1 +Hopping\ Automaton=1 +Horde\ Ambusher=1 +Horde\ of\ Boggarts=1 +Horde\ of\ Notions=1 +Hordeling\ Outburst=1 +Horizon\ Chimera=1 +Horizon\ Drake=1 +Horizon\ Scholar=1 +Horizon\ Seed=1 +Horizon\ Spellbomb=1 +Horncaller's\ Chant=1 +Horned\ Cheetah=1 +Horned\ Helm=1 +Horned\ Turtle=1 +Hornet\ Cannon=1 +Hornet\ Sting=1 +Horobi,\ Death's\ Wail=1 +Horobi's\ Whisper=1 +Horrible\ Hordes=1 +Horribly\ Awry=1 +Horrifying\ Revelation=1 +Horror\ of\ the\ Broken\ Lands=1 +Horror\ of\ the\ Dim=1 +Horseshoe\ Crab=1 +Hostile\ Realm=1 +Hostility=1 +Hot\ Soup=1 +Hotheaded\ Giant=1 +Hound\ of\ Griselbrand=1 +Hound\ of\ the\ Farbogs=1 +Hour\ of\ Need=1 +Hoverguard\ Sweepers=1 +Hovermyr=1 +Howl\ from\ Beyond=1 +Howl\ of\ the\ Horde=1 +Howl\ of\ the\ Night\ Pack=1 +Howlgeist=1 +Howling\ Banshee=1 +Howlpack\ Resurgence=1 +Howlpack\ Wolf=1 +Howltooth\ Hollow=1 +Hubris=1 +Hulking\ Cyclops=1 +Hulking\ Devil=1 +Hulking\ Ogre=1 +Hum\ of\ the\ Radix=1 +Humble=1 +Humble\ Budoka=1 +Humble\ the\ Brute=1 +Humbler\ of\ Mortals=1 +Hunding\ Gjornersen=1 +Hundred-Handed\ One=1 +Hundred-Talon\ Kami=1 +Hundroog=1 +Hunger\ of\ the\ Nim=1 +Hungering\ Yeti=1 +Hungry\ Flames=1 +Hungry\ Mist=1 +Hungry\ Spriggan=1 +Hunt\ Down=1 +Hunt\ the\ Hunter=1 +Hunt\ the\ Weak=1 +Hunted\ Dragon=1 +Hunted\ Ghoul=1 +Hunted\ Lammasu=1 +Hunted\ Troll=1 +Hunted\ Wumpus=1 +Hunter\ of\ Eyeblights=1 +Hunter's\ Ambush=1 +Hunter's\ Insight=1 +Hunter's\ Prowess=1 +Hunting\ Cheetah=1 +Hunting\ Drake=1 +Hunting\ Kavu=1 +Hunting\ Moa=1 +Hunting\ Pack=1 +Hunting\ Triad=1 +Hunting\ Wilds=1 +Hurloon\ Minotaur=1 +Hurly-Burly=1 +Hussar\ Patrol=1 +Hyalopterous\ Lemure=1 +Hydroform=1 +Hydrolash=1 +Hydromorph\ Guardian=1 +Hydromorph\ Gull=1 +Hydrosurge=1 +Hyena\ Pack=1 +Hymn\ of\ Rebirth=1 +Hypersonic\ Dragon=1 +Hypervolt\ Grasp=1 +Hypnotic\ Cloud=1 +Hypnotic\ Siren=1 +Hypnotic\ Specter=1 +Hypochondria=1 +Hythonia\ the\ Cruel=1 +Ib\ Halfheart,\ Goblin\ Tactician=1 +Icatian\ Lieutenant=1 +Icatian\ Phalanx=1 +Icatian\ Priest=1 +Icatian\ Scout=1 +Icatian\ Town=1 +Ice\ Cage=1 +Ice\ Cauldron=1 +Ice\ Cave=1 +Ice\ Over=1 +Iceberg=1 +Icefall=1 +Icefall\ Regent=1 +Icefeather\ Aven=1 +Ichor\ Rats=1 +Ichor\ Slick=1 +Icy\ Blast=1 +Icy\ Manipulator=1 +Icy\ Prison=1 +Identity\ Thief=1 +Idle\ Thoughts=1 +Ifh-B?ff\ Efreet=1 +Igneous\ Golem=1 +Igneous\ Pouncer=1 +Ignite\ Disorder=1 +Ignite\ Memories=1 +Ignorant\ Bliss=1 +Iizuka\ the\ Ruthless=1 +Ikiral\ Outrider=1 +Ill-Tempered\ Cyclops=1 +Illness\ in\ the\ Ranks=1 +Illuminate=1 +Illuminated\ Folio=1 +Illuminated\ Wings=1 +Illusion\ //\ Reality=1 +Illusionary\ Servant=1 +Illusionary\ Wall=1 +Illusionist's\ Bracers=1 +Illusionist's\ Stratagem=1 +Illusory\ Angel=1 +Illusory\ Demon=1 +Illusory\ Gains=1 +Illusory\ Wrappings=1 +Imagecrafter=1 +Imaginary\ Pet=1 +Imi\ Statue=1 +Immobilizer\ Eldrazi=1 +Immobilizing\ Ink=1 +Immortal\ Coil=1 +Immortal\ Servitude=1 +Impatience=1 +Impeccable\ Timing=1 +Impelled\ Giant=1 +Imperiosaur=1 +Impetuous\ Devils=1 +Impetuous\ Sunchaser=1 +Implement\ of\ Combustion=1 +Implement\ of\ Examination=1 +Implement\ of\ Ferocity=1 +Implement\ of\ Malice=1 +Implode=1 +Impromptu\ Raid=1 +Improvised\ Armor=1 +Imps'\ Taunt=1 +In\ Oketra's\ Name=1 +Inaction\ Injunction=1 +Iname,\ Death\ Aspect=1 +Iname,\ Life\ Aspect=1 +Incandescent\ Soulstoke=1 +Incendiary=1 +Incendiary\ Sabotage=1 +Incinerate=1 +Incite=1 +Incite\ Hysteria=1 +Incite\ War=1 +Incorrigible\ Youths=1 +Increasing\ Devotion=1 +Increasing\ Savagery=1 +Incremental\ Blight=1 +Incremental\ Growth=1 +Incubator\ Drone=1 +Incurable\ Ogre=1 +Incursion\ Specialist=1 +Indebted\ Samurai=1 +Indentured\ Oaf=1 +Indestructibility=1 +Index=1 +Indigo\ Faerie=1 +Indomitable\ Archangel=1 +Indomitable\ Will=1 +Indrik\ Stomphowler=1 +Induce\ Paranoia=1 +Indulgent\ Aristocrat=1 +Indulgent\ Tormentor=1 +Inescapable\ Brute=1 +Inexorable\ Blob=1 +Inexorable\ Tide=1 +Infantry\ Veteran=1 +Infected\ Vermin=1 +Infectious\ Bloodlust=1 +Infectious\ Horror=1 +Infernal\ Caretaker=1 +Infernal\ Harvest=1 +Infernal\ Kirin=1 +Infernal\ Plunge=1 +Infernal\ Scarring=1 +Inferno\ Trap=1 +Infest=1 +Infested\ Roothold=1 +Infiltrate=1 +Infiltration\ Lens=1 +Infiltrator\ il-Kor=1 +Infiltrator's\ Magemark=1 +Infinite\ Obliteration=1 +Infinite\ Reflection=1 +Inflame=1 +Information\ Dealer=1 +Infuse\ with\ the\ Elements=1 +Infused\ Arrows=1 +Ingenious\ Skaab=1 +Inheritance=1 +Initiate\ of\ Blood=1 +Initiate's\ Companion=1 +Ink\ Dissolver=1 +Ink-Treader\ Nephilim=1 +Inkfathom\ Infiltrator=1 +Inkfathom\ Witch=1 +Inner\ Struggle=1 +Inner-Chamber\ Guard=1 +Inner-Flame\ Igniter=1 +Innocence\ Kami=1 +Inquisitor\ Exarch=1 +Inquisitor's\ Flail=1 +Inquisitor's\ Ox=1 +Inquisitor's\ Snare=1 +Insatiable\ Gorgers=1 +Insatiable\ Harpy=1 +Insatiable\ Souleater=1 +Insidious\ Will=1 +Insolence=1 +Insolent\ Neonate=1 +Inspiration=1 +Inspired\ Charge=1 +Inspired\ Sprite=1 +Inspiring\ Call=1 +Inspiring\ Captain=1 +Inspirit=1 +Instigator\ Gang=1 +Instill\ Furor=1 +Instill\ Infection=1 +Insubordination=1 +Intangible\ Virtue=1 +Interpret\ the\ Signs=1 +Intervene=1 +Intet,\ the\ Dreamer=1 +Intimidation\ Bolt=1 +Intimidator\ Initiate=1 +Into\ the\ Core=1 +Into\ the\ Fray=1 +Into\ the\ Maw\ of\ Hell=1 +Into\ the\ Void=1 +Into\ the\ Wilds=1 +Intrepid\ Hero=1 +Intrepid\ Provisioner=1 +Invader\ Parasite=1 +Invasive\ Species=1 +Invasive\ Surgery=1 +Inventor's\ Apprentice=1 +Inventor's\ Goggles=1 +Invert\ the\ Skies=1 +Invigorating\ Boon=1 +Invigorating\ Falls=1 +Invisibility=1 +Invocation\ of\ Saint\ Traft=1 +Invoke\ the\ Firemind=1 +Iona's\ Blessing=1 +Iona's\ Judgment=1 +Ire\ of\ Kaminari=1 +Ire\ Shaman=1 +Iridescent\ Drake=1 +Iroas's\ Champion=1 +Iron\ League\ Steed=1 +Iron\ Myr=1 +Iron\ Star=1 +Iron\ Will=1 +Iron-Barb\ Hellion=1 +Iron-Heart\ Chimera=1 +Ironclad\ Revolutionary=1 +Ironclad\ Slayer=1 +Ironclaw\ Orcs=1 +Ironfist\ Crusher=1 +Ironhoof\ Ox=1 +Ironshell\ Beetle=1 +Irontread\ Crusher=1 +Ironwright's\ Cleansing=1 +Irradiate=1 +Irresistible\ Prey=1 +Isao,\ Enlightened\ Bushi=1 +Ishi-Ishi,\ Akki\ Crackshot=1 +Island=1 +Isleback\ Spawn=1 +Isolation\ Cell=1 +Isolation\ Zone=1 +Isperia\ the\ Inscrutable=1 +Isperia's\ Skywatch=1 +It\ of\ the\ Horrid\ Swarm=1 +Ith,\ High\ Arcanist=1 +Ivory\ Charm=1 +Ivory\ Cup=1 +Ivory\ Gargoyle=1 +Ivory\ Giant=1 +Ivory\ Guardians=1 +Ivory\ Tower=1 +Ivorytusk\ Fortress=1 +Ivy\ Dancer=1 +Ivy\ Lane\ Denizen=1 +Ivy\ Seer=1 +Iwamori\ of\ the\ Open\ Fist=1 +Ixidor,\ Reality\ Sculptor=1 +Ixidor's\ Will=1 +Ixidron=1 +Izzet\ Chronarch=1 +Izzet\ Guildgate=1 +Izzet\ Guildmage=1 +Izzet\ Keyrune=1 +Jabari's\ Banner=1 +Jace's\ Ingenuity=1 +Jace's\ Mindseeker=1 +Jace's\ Scrutiny=1 +Jackal\ Pup=1 +Jackalope\ Herd=1 +Jaddi\ Lifestrider=1 +Jaddi\ Offshoot=1 +Jade\ Idol=1 +Jade\ Leech=1 +Jade\ Mage=1 +Jade\ Monolith=1 +Jade\ Statue=1 +Jaded\ Response=1 +Jagged\ Lightning=1 +Jagged\ Poppet=1 +Jagged-Scar\ Archers=1 +Jagwasp\ Swarm=1 +Jalira,\ Master\ Polymorphist=1 +Jamuraan\ Lion=1 +Janjeet\ Sentry=1 +Jar\ of\ Eyeballs=1 +Jarad's\ Orders=1 +Jareth,\ Leonine\ Titan=1 +Jasmine\ Seer=1 +Jaws\ of\ Stone=1 +Jayemdae\ Tome=1 +Jedit\ Ojanen=1 +Jedit\ Ojanen\ of\ Efrava=1 +Jedit's\ Dragoons=1 +Jeering\ Instigator=1 +Jelenn\ Sphinx=1 +Jerrard\ of\ the\ Closed\ Fist=1 +Jeskai\ Banner=1 +Jeskai\ Charm=1 +Jeskai\ Elder=1 +Jeskai\ Infiltrator=1 +Jeskai\ Student=1 +Jeskai\ Windscout=1 +Jetting\ Glasskite=1 +Jhessian\ Balmgiver=1 +Jhessian\ Infiltrator=1 +Jhessian\ Lookout=1 +Jhessian\ Thief=1 +Jhessian\ Zombies=1 +Jhoira's\ Timebug=1 +Jhoira's\ Toolbox=1 +Jilt=1 +Jinxed\ Choker=1 +Jinxed\ Idol=1 +Jiwari,\ the\ Earth\ Aflame=1 +Johtull\ Wurm=1 +Join\ the\ Ranks=1 +Jolrael,\ Empress\ of\ Beasts=1 +Jolt=1 +Jor\ Kadeen,\ the\ Prevailer=1 +Joraga\ Auxiliary=1 +Joraga\ Bard=1 +Joraga\ Invocation=1 +Jori\ En,\ Ruin\ Diver=1 +Jorubai\ Murk\ Lurker=1 +J?tun\ Grunt=1 +J?tun\ Owl\ Keeper=1 +Journey\ of\ Discovery=1 +Joven's\ Ferrets=1 +Joyous\ Respite=1 +Judge\ of\ Currents=1 +Judge\ Unworthy=1 +Jugan,\ the\ Rising\ Star=1 +Juggernaut=1 +Jukai\ Messenger=1 +Jump=1 +Jund\ Battlemage=1 +Jund\ Charm=1 +Jund\ Hackblade=1 +Jund\ Panorama=1 +Jungle\ Barrier=1 +Jungle\ Lion=1 +Jungle\ Shrine=1 +Jungle\ Weaver=1 +Jungle\ Wurm=1 +Juniper\ Order\ Advocate=1 +Junk\ Golem=1 +Junktroller=1 +Junkyo\ Bell=1 +Jun?n\ Efreet=1 +Jushi\ Apprentice=1 +Just\ Fate=1 +Just\ the\ Wind=1 +Juvenile\ Gloomwidow=1 +Juxtapose=1 +Jwar\ Isle\ Avenger=1 +Kabira\ Vindicator=1 +Kabuto\ Moth=1 +Kaervek\ the\ Merciless=1 +Kagemaro,\ First\ to\ Suffer=1 +Kagemaro's\ Clutch=1 +Kaijin\ of\ the\ Vanishing\ Touch=1 +Kalastria\ Healer=1 +Kalastria\ Nightwatch=1 +Kaleidostone=1 +Kalonian\ Behemoth=1 +Kalonian\ Twingrove=1 +Kamahl,\ Pit\ Fighter=1 +Kamahl's\ Desire=1 +Kamahl's\ Sledge=1 +Kami\ of\ Ancient\ Law=1 +Kami\ of\ Empty\ Graves=1 +Kami\ of\ Lunacy=1 +Kami\ of\ Old\ Stone=1 +Kami\ of\ the\ Hunt=1 +Kami\ of\ the\ Painted\ Road=1 +Kami\ of\ the\ Palace\ Fields=1 +Kami\ of\ the\ Tended\ Garden=1 +Kapsho\ Kitefins=1 +Karametra's\ Acolyte=1 +Karametra's\ Favor=1 +Karma=1 +Karn,\ Silver\ Golem=1 +Karona's\ Zealot=1 +Karplusan\ Giant=1 +Karplusan\ Strider=1 +Karplusan\ Wolverine=1 +Kashi-Tribe\ Reaver=1 +Kashi-Tribe\ Warriors=1 +Kathari\ Bomber=1 +Kathari\ Remnant=1 +Kathari\ Screecher=1 +Kavu\ Aggressor=1 +Kavu\ Chameleon=1 +Kavu\ Climber=1 +Kavu\ Glider=1 +Kavu\ Howler=1 +Kavu\ Mauler=1 +Kavu\ Predator=1 +Kavu\ Primarch=1 +Kavu\ Recluse=1 +Kavu\ Runner=1 +Kavu\ Scout=1 +Kazandu\ Tuskcaller=1 +Kazuul\ Warlord=1 +Kazuul's\ Toll\ Collector=1 +Kederekt\ Creeper=1 +Kederekt\ Leviathan=1 +Keeneye\ Aven=1 +Keening\ Apparition=1 +Keening\ Banshee=1 +Keening\ Stone=1 +Keeper\ of\ Kookus=1 +Keeper\ of\ Progenitus=1 +Keeper\ of\ the\ Beasts=1 +Keeper\ of\ the\ Dead=1 +Keeper\ of\ the\ Flame=1 +Keeper\ of\ the\ Lens=1 +Keeper\ of\ the\ Light=1 +Keeper\ of\ the\ Mind=1 +Keepsake\ Gorgon=1 +Kefnet's\ Monument=1 +Kei\ Takahashi=1 +Keldon\ Champion=1 +Keldon\ Halberdier=1 +Keldon\ Mantle=1 +Keldon\ Megaliths=1 +Keldon\ Necropolis=1 +Keldon\ Vandals=1 +Keldon\ Warlord=1 +Kemba,\ Kha\ Regent=1 +Kemba's\ Legion=1 +Kemba's\ Skyguard=1 +Kemuri-Onna=1 +Kessig\ Cagebreakers=1 +Kessig\ Dire\ Swine=1 +Kessig\ Forgemaster=1 +Kessig\ Malcontents=1 +Kessig\ Prowler=1 +Kessig\ Recluse=1 +Keymaster\ Rogue=1 +Kezzerdrix=1 +Khab?l\ Ghoul=1 +Khalni\ Gem=1 +Khenra\ Charioteer=1 +Kheru\ Bloodsucker=1 +Kheru\ Dreadmaw=1 +Kheru\ Lich\ Lord=1 +Kheru\ Spellsnatcher=1 +Kiku's\ Shadow=1 +Kill\ Shot=1 +Kill-Suit\ Cultist=1 +Killer\ Bees=1 +Killer\ Whale=1 +Killing\ Glare=1 +Kiln\ Walker=1 +Kin-Tree\ Invocation=1 +Kin-Tree\ Warden=1 +Kindle=1 +Kindle\ the\ Carnage=1 +Kindled\ Fury=1 +Kindly\ Stranger=1 +King\ Cheetah=1 +Kingfisher=1 +Kingpin's\ Pet=1 +Kinsbaile\ Balloonist=1 +Kinsbaile\ Borderguard=1 +Kinsbaile\ Skirmisher=1 +Kinscaer\ Harpoonist=1 +Kiora's\ Dismissal=1 +Kiora's\ Follower=1 +Kird\ Chieftain=1 +Kiri-Onna=1 +Kirtar's\ Desire=1 +Kiss\ of\ the\ Amesha=1 +Kite\ Shield=1 +Kitesail=1 +Kitesail\ Apprentice=1 +Kitesail\ Scout=1 +Kithkin\ Armor=1 +Kithkin\ Daggerdare=1 +Kithkin\ Greatheart=1 +Kithkin\ Harbinger=1 +Kithkin\ Healer=1 +Kithkin\ Mourncaller=1 +Kithkin\ Spellduster=1 +Kithkin\ Zealot=1 +Kithkin\ Zephyrnaut=1 +Kitsune\ Blademaster=1 +Kitsune\ Bonesetter=1 +Kitsune\ Dawnblade=1 +Kitsune\ Diviner=1 +Kitsune\ Healer=1 +Kitsune\ Loreweaver=1 +Kitsune\ Mystic=1 +Kitsune\ Palliator=1 +Kitsune\ Riftwalker=1 +Kiyomaro,\ First\ to\ Stand=1 +Kjeldoran\ Dead=1 +Kjeldoran\ Elite\ Guard=1 +Kjeldoran\ Frostbeast=1 +Kjeldoran\ Gargoyle=1 +Kjeldoran\ Home\ Guard=1 +Kjeldoran\ Javelineer=1 +Kjeldoran\ Outrider=1 +Kjeldoran\ Royal\ Guard=1 +Kjeldoran\ Skycaptain=1 +Kjeldoran\ War\ Cry=1 +Knight\ Errant=1 +Knight\ of\ Cliffhaven=1 +Knight\ of\ Dusk=1 +Knight\ of\ Infamy=1 +Knight\ of\ Meadowgrain=1 +Knight\ of\ Obligation=1 +Knight\ of\ Stromgald=1 +Knight\ of\ Sursi=1 +Knight\ of\ the\ Holy\ Nimbus=1 +Knight\ of\ the\ Mists=1 +Knight\ of\ the\ Pilgrim's\ Road=1 +Knight\ of\ the\ Skyward\ Eye=1 +Knight\ of\ Valor=1 +Knight-Captain\ of\ Eos=1 +Knighthood=1 +Knightly\ Valor=1 +Knights\ of\ Thorn=1 +Knollspine\ Dragon=1 +Knollspine\ Invocation=1 +Knotvine\ Mystic=1 +Knowledge\ and\ Power=1 +Knowledge\ Vault=1 +Knucklebone\ Witch=1 +Kobold\ Drill\ Sergeant=1 +Kobold\ Overlord=1 +Kobold\ Taskmaster=1 +Kodama\ of\ the\ Center\ Tree=1 +Kodama\ of\ the\ North\ Tree=1 +Kodama\ of\ the\ South\ Tree=1 +Kodama's\ Might=1 +Kolaghan\ Aspirant=1 +Kolaghan\ Forerunners=1 +Kolaghan\ Monument=1 +Kolaghan\ Skirmisher=1 +Kolaghan\ Stormsinger=1 +Konda,\ Lord\ of\ Eiganjo=1 +Konda's\ Hatamoto=1 +=1 +Kor\ Bladewhirl=1 +Kor\ Castigator=1 +Kor\ Chant=1 +Kor\ Dirge=1 +Kor\ Duelist=1 +Kor\ Entanglers=1 +Kor\ Hookmaster=1 +Kor\ Line-Slinger=1 +Kor\ Outfitter=1 +Kor\ Scythemaster=1 +Kor\ Sky\ Climber=1 +Korozda\ Gorgon=1 +Korozda\ Guildmage=1 +Korozda\ Monitor=1 +Koth's\ Courier=1 +Kothophed,\ Soul\ Hoarder=1 +Kozilek's\ Channeler=1 +Kozilek's\ Pathfinder=1 +Kozilek's\ Predator=1 +Kozilek's\ Sentinel=1 +Kozilek's\ Shrieker=1 +Kozilek's\ Translator=1 +Kragma\ Butcher=1 +Kragma\ Warcaller=1 +Kraken\ Hatchling=1 +Kraken\ of\ the\ Straits=1 +Kraken's\ Eye=1 +Krakilin=1 +Krark-Clan\ Engineers=1 +Krark-Clan\ Ogre=1 +Krark-Clan\ Stoker=1 +Krasis\ Incubation=1 +Krenko's\ Enforcer=1 +Krosan\ Archer=1 +Krosan\ Avenger=1 +Krosan\ Cloudscraper=1 +Krosan\ Colossus=1 +Krosan\ Constrictor=1 +Krosan\ Drover=1 +Krosan\ Reclamation=1 +Krosan\ Warchief=1 +Krosan\ Wayfarer=1 +Krovikan\ Fetish=1 +Krovikan\ Rot=1 +Krovikan\ Scoundrel=1 +Krovikan\ Sorcerer=1 +Krovikan\ Vampire=1 +Krovikan\ Whispers=1 +Kruin\ Outlaw=1 +Kruin\ Striker=1 +Krumar\ Bond-Kin=1 +Kruphix's\ Insight=1 +Kudzu=1 +Kujar\ Seedsculptor=1 +Kukemssa\ Serpent=1 +Kuldotha\ Flamefiend=1 +Kuldotha\ Forgemaster=1 +Kuldotha\ Phoenix=1 +Kuldotha\ Ringleader=1 +Kumano,\ Master\ Yamabushi=1 +Kuon,\ Ogre\ Ascendant=1 +Kurgadon=1 +Kurkesh,\ Onakke\ Ancient=1 +Kuro,\ Pitlord=1 +Kuro's\ Taken=1 +Kusari-Gama=1 +Kyoki,\ Sanity's\ Eclipse=1 +Kyren\ Glider=1 +Kyren\ Sniper=1 +Kytheon's\ Irregulars=1 +Kytheon's\ Tactics=1 +Lab\ Rats=1 +Laboratory\ Brute=1 +Labyrinth\ Guardian=1 +Labyrinth\ Minotaur=1 +Laccolith\ Grunt=1 +Laccolith\ Rig=1 +Laccolith\ Whelp=1 +Lady\ Caleria=1 +Lady\ Evangela=1 +Lady\ Orca=1 +Lagonna-Band\ Elder=1 +Lairwatch\ Giant=1 +Lake\ of\ the\ Dead=1 +Lambholt\ Elder=1 +Lambholt\ Pacifist=1 +Lamplighter\ of\ Selhoff=1 +Lancers\ en-Kor=1 +Landbind\ Ritual=1 +Landslide=1 +Lantern\ Scout=1 +Lantern\ Spirit=1 +Lantern-Lit\ Graveyard=1 +Laquatus's\ Champion=1 +Laquatus's\ Creativity=1 +Larger\ Than\ Life=1 +Lash\ Out=1 +Lashknife=1 +Lashknife\ Barrier=1 +Lashweed\ Lurker=1 +Last\ Breath=1 +Last\ Caress=1 +Last\ Gasp=1 +Last\ Kiss=1 +Last\ Thoughts=1 +Last\ Word=1 +Last-Ditch\ Effort=1 +Lat-Nam's\ Legacy=1 +Latch\ Seeker=1 +Latchkey\ Faerie=1 +Lathnu\ Sailback=1 +Latulla's\ Orders=1 +Launch=1 +Launch\ Party=1 +Launch\ the\ Fleet=1 +Lava\ Axe=1 +Lava\ Blister=1 +Lava\ Burst=1 +Lava\ Flow=1 +Lava\ Hounds=1 +Lavaball\ Trap=1 +Lavaborn\ Muse=1 +Lavacore\ Elemental=1 +Lavafume\ Invoker=1 +Lavamancer's\ Skill=1 +Lavastep\ Raider=1 +Lawless\ Broker=1 +Lay\ Claim=1 +Lay\ of\ the\ Land=1 +Lay\ Waste=1 +Lead\ Astray=1 +Lead\ by\ Example=1 +Lead-Belly\ Chimera=1 +Leaden\ Fists=1 +Leaden\ Myr=1 +Leaf\ Arrow=1 +Leaf\ Dancer=1 +Leaf\ Gilder=1 +Leafcrown\ Dryad=1 +Leafdrake\ Roost=1 +Leaping\ Lizard=1 +Leaping\ Master=1 +Learn\ from\ the\ Past=1 +Leashling=1 +Leatherback\ Baloth=1 +Leave\ in\ the\ Dust=1 +Leave\ No\ Trace=1 +Leech\ Bonder=1 +Leeching\ Licid=1 +Leeching\ Sliver=1 +Leering\ Emblem=1 +Legerdemain=1 +Leonin\ Armorguard=1 +Leonin\ Bladetrap=1 +Leonin\ Bola=1 +Leonin\ Den-Guard=1 +Leonin\ Elder=1 +Leonin\ Iconoclast=1 +Leonin\ Scimitar=1 +Leonin\ Skyhunter=1 +Leonin\ Snarecaster=1 +Leonin\ Squire=1 +Leonin\ Sun\ Standard=1 +Leshrac's\ Rite=1 +Lesser\ Werewolf=1 +Lethargy\ Trap=1 +Leviathan=1 +Levitation=1 +Leyline\ of\ Lightning=1 +Leyline\ of\ Vitality=1 +Leyline\ Phantom=1 +Liar's\ Pendulum=1 +Liberated\ Dwarf=1 +Lich's\ Tomb=1 +Life\ and\ Limb=1 +Life\ Chisel=1 +Lifecraft\ Awakening=1 +Lifecraft\ Cavalry=1 +Lifecrafter's\ Gift=1 +Lifegift=1 +Lifelink=1 +Lifesmith=1 +Lifespark\ Spellbomb=1 +Lifespinner=1 +Lifespring\ Druid=1 +Lifted\ by\ Clouds=1 +Light\ of\ Sanction=1 +Lightkeeper\ of\ Emeria=1 +Lightmine\ Field=1 +Lightning\ Berserker=1 +Lightning\ Blast=1 +Lightning\ Coils=1 +Lightning\ Dragon=1 +Lightning\ Elemental=1 +Lightning\ Javelin=1 +Lightning\ Prowess=1 +Lightning\ Reaver=1 +Lightning\ Reflexes=1 +Lightning\ Rift=1 +Lightning\ Shrieker=1 +Lightning\ Strike=1 +Lightning\ Surge=1 +Lightning\ Talons=1 +Lightning\ Volley=1 +Lightwalker=1 +Liliana's\ Elite=1 +Liliana's\ Indignation=1 +Liliana's\ Reaver=1 +Liliana's\ Shade=1 +Lilting\ Refrain=1 +Lim-D?l\ the\ Necromancer=1 +Lim-D?l's\ Cohort=1 +Lim-D?l's\ High\ Guard=1 +Limits\ of\ Solidarity=1 +Linessa,\ Zephyr\ Mage=1 +Lingering\ Death=1 +Lingering\ Mirage=1 +Lingering\ Tormentor=1 +Lionheart\ Maverick=1 +Liquify=1 +Liquimetal\ Coating=1 +Lithomancer's\ Focus=1 +Liturgy\ of\ Blood=1 +Liu\ Bei,\ Lord\ of\ Shu=1 +Live\ Fast=1 +Livewire\ Lash=1 +Living\ Airship=1 +Living\ Destiny=1 +Living\ Hive=1 +Living\ Inferno=1 +Living\ Lore=1 +Living\ Totem=1 +Living\ Wall=1 +Livonya\ Silone=1 +Llanowar\ Cavalry=1 +Llanowar\ Dead=1 +Llanowar\ Empath=1 +Llanowar\ Mentor=1 +Llanowar\ Reborn=1 +Llanowar\ Sentinel=1 +Llanowar\ Vanguard=1 +Loam\ Dryad=1 +Loam\ Dweller=1 +Loam\ Larva=1 +Loam\ Lion=1 +Loamdragger\ Giant=1 +Loathsome\ Catoblepas=1 +Lobber\ Crew=1 +Loch\ Korrigan=1 +Locket\ of\ Yesterdays=1 +Lockjaw\ Snapper=1 +Lodestone\ Myr=1 +Lone\ Revenant=1 +Lone\ Rider=1 +Lone\ Wolf=1 +Long\ Road\ Home=1 +Long-Finned\ Skywhale=1 +Long-Forgotten\ Gohei=1 +Longbow\ Archer=1 +Longhorn\ Firebeast=1 +Longshot\ Squad=1 +Looming\ Shade=1 +Looming\ Spires=1 +Looter\ il-Kor=1 +Lord\ of\ Shatterskull\ Pass=1 +Lord\ of\ the\ Pit=1 +Lore\ Broker=1 +Lorescale\ Coatl=1 +Loreseeker's\ Stone=1 +Lose\ Calm=1 +Lose\ Hope=1 +Lost\ Auramancers=1 +Lost\ in\ a\ Labyrinth=1 +Lost\ in\ the\ Mist=1 +Lost\ in\ the\ Woods=1 +Lost\ in\ Thought=1 +Lost\ Leonin=1 +Lost\ Order\ of\ Jarkeld=1 +Lotus\ Path\ Djinn=1 +Lotus-Eye\ Mystics=1 +Lowland\ Basilisk=1 +Lowland\ Giant=1 +Lowland\ Oaf=1 +Lowland\ Tracker=1 +Loxodon\ Gatekeeper=1 +Loxodon\ Hierarch=1 +Loxodon\ Mender=1 +Loxodon\ Mystic=1 +Loxodon\ Peacekeeper=1 +Loxodon\ Punisher=1 +Loxodon\ Stalwart=1 +Loxodon\ Warhammer=1 +Loyal\ Cathar=1 +Loyal\ Pegasus=1 +Loyal\ Sentry=1 +Lu\ Bu,\ Master-at-Arms=1 +Lu\ Meng,\ Wu\ General=1 +Lucent\ Liminid=1 +Ludevic's\ Test\ Subject=1 +Lumberknot=1 +Lumengrid\ Drake=1 +Lumengrid\ Gargoyle=1 +Lumengrid\ Sentinel=1 +Lumengrid\ Warden=1 +Luminate\ Primordial=1 +Luminesce=1 +Luminous\ Angel=1 +Luminous\ Guardian=1 +Luminous\ Wake=1 +Lunar\ Avenger=1 +Lunar\ Force=1 +Lunar\ Mystic=1 +Lunarch\ Mantle=1 +Lunge=1 +Lure=1 +Lurebound\ Scarecrow=1 +Lurking\ Arynx=1 +Lurking\ Crocodile=1 +Lurking\ Informant=1 +Lurking\ Jackals=1 +Lurking\ Skirge=1 +Lush\ Growth=1 +Lust\ for\ War=1 +Luxa\ River\ Shrine=1 +Lyev\ Decree=1 +Lyev\ Skyknight=1 +Lymph\ Sliver=1 +Lys\ Alana\ Bowmaster=1 +Lys\ Alana\ Scarblade=1 +Macabre\ Waltz=1 +Macetail\ Hystrodon=1 +Machinate=1 +Mad\ Auntie=1 +Mad\ Dog=1 +Mad\ Prophet=1 +Madblind\ Mountain=1 +Madcap\ Experiment=1 +Madcap\ Skills=1 +Madrush\ Cyclops=1 +Maelstrom\ Djinn=1 +Mage\ il-Vec=1 +Mage\ Slayer=1 +Mage-Ring\ Bully=1 +Mage-Ring\ Network=1 +Mage-Ring\ Responder=1 +Mage's\ Guile=1 +Magebane\ Armor=1 +Magewright's\ Stone=1 +Maggot\ Carrier=1 +Maggot\ Therapy=1 +Magister\ of\ Worth=1 +Magister\ Sphinx=1 +Magma\ Giant=1 +Magma\ Phoenix=1 +Magmaquake=1 +Magmasaur=1 +Magmatic\ Chasm=1 +Magmatic\ Core=1 +Magmatic\ Insight=1 +Magmaw=1 +Magnetic\ Mine=1 +Magnetic\ Theft=1 +Magnifying\ Glass=1 +Magnivore=1 +Magosi,\ the\ Waterveil=1 +Magus\ of\ the\ Abyss=1 +Magus\ of\ the\ Arena=1 +Magus\ of\ the\ Bazaar=1 +Magus\ of\ the\ Disk=1 +Magus\ of\ the\ Jar=1 +Magus\ of\ the\ Library=1 +Magus\ of\ the\ Mirror=1 +Magus\ of\ the\ Scroll=1 +Magus\ of\ the\ Tabernacle=1 +Mahamoti\ Djinn=1 +Make\ a\ Stand=1 +Make\ Mischief=1 +Make\ Obsolete=1 +Makeshift\ Mannequin=1 +Makeshift\ Mauler=1 +Makindi\ Aeronaut=1 +Makindi\ Griffin=1 +Makindi\ Patrol=1 +Makindi\ Shieldmate=1 +Makindi\ Sliderunner=1 +Malach\ of\ the\ Dawn=1 +Malakir\ Cullblade=1 +Malakir\ Familiar=1 +Malakir\ Soothsayer=1 +Malevolent\ Whispers=1 +Malfunction=1 +Malicious\ Advice=1 +Mammoth\ Umbra=1 +Man-o'-War=1 +Mana\ Bloom=1 +Mana\ Breach=1 +Mana\ Cylix=1 +Mana\ Leech=1 +Mana\ Prism=1 +Mana\ Seism=1 +Mana\ Skimmer=1 +Manabarbs=1 +Manacles\ of\ Decay=1 +Manaforce\ Mace=1 +Manaforge\ Cinder=1 +Manaplasm=1 +Mangara\ of\ Corondor=1 +Manglehorn=1 +Maniacal\ Rage=1 +Manic\ Scribe=1 +Manic\ Vandal=1 +Mannichi,\ the\ Fevered\ Dream=1 +Manor\ Gargoyle=1 +Manor\ Skeleton=1 +Manta\ Ray=1 +Manta\ Riders=1 +Manticore\ of\ the\ Gauntlet=1 +Mantis\ Engine=1 +Mantle\ of\ Leadership=1 +Mantle\ of\ Webs=1 +Marang\ River\ Skeleton=1 +Marble\ Chalice=1 +March\ from\ the\ Tomb=1 +March\ of\ the\ Returned=1 +Mardu\ Ascendancy=1 +Mardu\ Banner=1 +Mardu\ Blazebringer=1 +Mardu\ Charm=1 +Mardu\ Hateblade=1 +Mardu\ Heart-Piercer=1 +Mardu\ Hordechief=1 +Mardu\ Roughrider=1 +Mardu\ Runemark=1 +Mardu\ Skullhunter=1 +Mardu\ Warshrieker=1 +Marhault\ Elsdragon=1 +Marionette\ Master=1 +Marisi's\ Twinclaws=1 +Maritime\ Guard=1 +Marjhan=1 +Mark\ of\ Eviction=1 +Mark\ of\ Fury=1 +Mark\ of\ Mutiny=1 +Mark\ of\ Sakiko=1 +Mark\ of\ the\ Oni=1 +Mark\ of\ the\ Vampire=1 +Marked\ by\ Honor=1 +Marker\ Beetles=1 +Market\ Festival=1 +Markov\ Blademaster=1 +Markov\ Crusader=1 +Markov\ Dreadknight=1 +Markov\ Patrician=1 +Markov\ Warlord=1 +Maro=1 +Marrow\ Bats=1 +Marrow\ Chomper=1 +Marrow\ Shards=1 +Marsh\ Casualties=1 +Marsh\ Flitter=1 +Marsh\ Hulk=1 +Marsh\ Lurker=1 +Marsh\ Threader=1 +Marshaling\ Cry=1 +Marshdrinker\ Giant=1 +Marshmist\ Titan=1 +Martial\ Glory=1 +Martial\ Law=1 +Martyr\ of\ Bones=1 +Martyr\ of\ Spores=1 +Martyr's\ Cause=1 +Martyred\ Rusalka=1 +Martyrs\ of\ Korlis=1 +Martyrs'\ Tomb=1 +Masako\ the\ Humorless=1 +Mask\ of\ Avacyn=1 +Mask\ of\ Memory=1 +Mask\ of\ Riddles=1 +Mask\ of\ the\ Mimic=1 +Masked\ Admirers=1 +Masked\ Gorgon=1 +Mass\ Calcify=1 +Mass\ of\ Ghouls=1 +Mass\ Polymorph=1 +Massive\ Raid=1 +Master\ Decoy=1 +Master\ Healer=1 +Master\ of\ Diversion=1 +Master\ of\ Pearls=1 +Master\ of\ Predicaments=1 +Master\ Splicer=1 +Master\ the\ Way=1 +Master\ Thief=1 +Master\ Trinketeer=1 +Master\ Warcraft=1 +Master's\ Call=1 +Mastery\ of\ the\ Unseen=1 +Masticore=1 +Masumaro,\ First\ to\ Live=1 +Matca\ Rioters=1 +Matopi\ Golem=1 +Matsu-Tribe\ Birdstalker=1 +Matsu-Tribe\ Decoy=1 +Matsu-Tribe\ Sniper=1 +Maul\ Splicer=1 +Maulfist\ Doorbuster=1 +Maulfist\ Revolutionary=1 +Maulfist\ Squad=1 +Mausoleum\ Guard=1 +Mausoleum\ Turnkey=1 +Maverick\ Thopterist=1 +Maw\ of\ Kozilek=1 +Maw\ of\ the\ Obzedat=1 +Mawcor=1 +Maze\ Behemoth=1 +Maze\ Glider=1 +Maze\ of\ Shadows=1 +Maze\ Sentinel=1 +Meadowboon=1 +Meandering\ River=1 +Meandering\ Towershell=1 +Meddle=1 +Medicine\ Bag=1 +Medicine\ Runner=1 +Meditation\ Puzzle=1 +Medomai\ the\ Ageless=1 +Megantic\ Sliver=1 +Megatog=1 +Meglonoth=1 +Megrim=1 +Melancholy=1 +Melek,\ Izzet\ Paragon=1 +Meletis\ Astronomer=1 +Meletis\ Charlatan=1 +Melira's\ Keepers=1 +Meloku\ the\ Clouded\ Mirror=1 +Melt\ Terrain=1 +Memoricide=1 +Memory\ Erosion=1 +Memory\ Sluice=1 +Memory's\ Journey=1 +Menacing\ Ogre=1 +Mending\ Hands=1 +Mending\ Touch=1 +Meng\ Huo,\ Barbarian\ King=1 +Mental\ Agony=1 +Mental\ Discipline=1 +Mental\ Vapors=1 +Mephitic\ Ooze=1 +Mer-Ek\ Nightblade=1 +Merchant\ of\ Secrets=1 +Merchant's\ Dockhand=1 +Merciless\ Javelineer=1 +Merciless\ Resolve=1 +Mercurial\ Chemister=1 +Mercurial\ Geists=1 +Mercurial\ Kite=1 +Mercurial\ Pretender=1 +Mercy\ Killing=1 +Merfolk\ Assassin=1 +Merfolk\ Looter=1 +Merfolk\ Mesmerist=1 +Merfolk\ Observer=1 +Merfolk\ of\ the\ Depths=1 +Merfolk\ of\ the\ Pearl\ Trident=1 +Merfolk\ Seastalkers=1 +Merfolk\ Seer=1 +Merfolk\ Skyscout=1 +Merfolk\ Sovereign=1 +Merfolk\ Spy=1 +Merfolk\ Thaumaturgist=1 +Merfolk\ Wayfinder=1 +Merieke\ Ri\ Berit=1 +Merrow\ Bonegnawer=1 +Merrow\ Commerce=1 +Merrow\ Grimeblotter=1 +Merrow\ Harbinger=1 +Merrow\ Levitator=1 +Merrow\ Wavebreakers=1 +Merrow\ Witsniper=1 +Mesa\ Enchantress=1 +Mesa\ Pegasus=1 +Mesmeric\ Sliver=1 +Mesmeric\ Trance=1 +Messenger\ Drake=1 +Messenger\ Falcons=1 +Messenger's\ Speed=1 +Metal\ Fatigue=1 +Metallic\ Mastery=1 +Metallurgeon=1 +Metalspinner's\ Puzzleknot=1 +Metamorphose=1 +Metathran\ Elite=1 +Metathran\ Soldier=1 +Metathran\ Transport=1 +Meteor\ Shower=1 +Meteorite=1 +Metropolis\ Sprite=1 +Miasmic\ Mummy=1 +Midnight\ Banshee=1 +Midnight\ Charm=1 +Midnight\ Covenant=1 +Midnight\ Duelist=1 +Midnight\ Entourage=1 +Midnight\ Haunting=1 +Midnight\ Oil=1 +Midnight\ Recovery=1 +Midnight\ Ritual=1 +Midnight\ Scavengers=1 +Might\ Beyond\ Reason=1 +Might\ Makes\ Right=1 +Might\ of\ Oaks=1 +Might\ of\ Old\ Krosa=1 +Might\ of\ the\ Masses=1 +Might\ of\ the\ Nephilim=1 +Might\ Sliver=1 +Might\ Weaver=1 +Mightstone=1 +Mighty\ Emergence=1 +Mighty\ Leap=1 +Mijae\ Djinn=1 +Militant\ Inquisitor=1 +Military\ Intelligence=1 +Militia's\ Pride=1 +Millennial\ Gargoyle=1 +Millikin=1 +Millstone=1 +Mimeofacture=1 +Miming\ Slime=1 +Mina\ and\ Denn,\ Wildborn=1 +Minamo\ Scrollkeeper=1 +Minamo\ Sightbender=1 +Mind\ Bend=1 +Mind\ Burst=1 +Mind\ Control=1 +Mind\ Extraction=1 +Mind\ Grind=1 +Mind\ Maggots=1 +Mind\ Peel=1 +Mind\ Raker=1 +Mind\ Rot=1 +Mind\ Sculpt=1 +Mind\ Shatter=1 +Mind\ Sludge=1 +Mind\ Spring=1 +Mind\ Unbound=1 +Mindblaze=1 +Mindclaw\ Shaman=1 +Mindculling=1 +Mindlash\ Sliver=1 +Mindleech\ Mass=1 +Mindless\ Automaton=1 +Mindless\ Null=1 +Mindlock\ Orb=1 +Mindmelter=1 +Mindmoil=1 +Mindreaver=1 +Mindscour\ Dragon=1 +Mindshrieker=1 +Mindsparker=1 +Mindstab=1 +Mindstab\ Thrull=1 +Mindstatic=1 +Mindstorm\ Crown=1 +Mindswipe=1 +Mindwhip\ Sliver=1 +Mine\ Excavation=1 +Miner's\ Bane=1 +Minion\ of\ Leshrac=1 +Minion\ Reflector=1 +Minister\ of\ Impediments=1 +Minister\ of\ Inquiries=1 +Minister\ of\ Pain=1 +Minotaur\ Abomination=1 +Minotaur\ Aggressor=1 +Minotaur\ Explorer=1 +Minotaur\ Illusionist=1 +Minotaur\ Skullcleaver=1 +Minotaur\ Sureshot=1 +Minotaur\ Tactician=1 +Mire\ Boa=1 +Mire\ Kavu=1 +Mire's\ Malice=1 +Mire's\ Toll=1 +Mirko\ Vosk,\ Mind\ Drinker=1 +Mirozel=1 +Mirran\ Mettle=1 +Mirran\ Spy=1 +Mirri,\ Cat\ Warrior=1 +Mirror\ Mockery=1 +Mirror\ of\ Fate=1 +Mirror\ Wall=1 +Mirror-Mad\ Phantasm=1 +Mirrorwood\ Treefolk=1 +Mirrorworks=1 +Mischief\ and\ Mayhem=1 +Mischievous\ Quanar=1 +Misery\ Charm=1 +Misfortune's\ Gain=1 +Misguided\ Rage=1 +Mishra's\ Groundbreaker=1 +Misinformation=1 +Misstep=1 +Mist\ Intruder=1 +Mist\ Leopard=1 +Mist\ of\ Stagnation=1 +Mist\ Raven=1 +Mistcutter\ Hydra=1 +Mistfire\ Adept=1 +Mistfire\ Weaver=1 +Mistform\ Seaswift=1 +Mistform\ Shrieker=1 +Mistform\ Skyreaver=1 +Mistform\ Sliver=1 +Mistform\ Stalker=1 +Mistform\ Ultimus=1 +Mistform\ Wakecaster=1 +Mistform\ Wall=1 +Mistform\ Warchief=1 +Misthoof\ Kirin=1 +Mistmeadow\ Skulk=1 +Mistmeadow\ Witch=1 +Mistmoon\ Griffin=1 +Mistral\ Charger=1 +Mitotic\ Manipulation=1 +Mitotic\ Slime=1 +Mizzium\ Meddler=1 +Mizzium\ Mortars=1 +Mizzium\ Skin=1 +Mizzium\ Transreliquat=1 +Mnemonic\ Nexus=1 +Mnemonic\ Sliver=1 +Mnemonic\ Wall=1 +Moan\ of\ the\ Unhallowed=1 +Mob\ Rule=1 +Mobile\ Fort=1 +Mobile\ Garrison=1 +Mockery\ of\ Nature=1 +Mogg\ Bombers=1 +Mogg\ Cannon=1 +Mogg\ Flunkies=1 +Mogg\ Hollows=1 +Mogg\ Jailer=1 +Mogg\ Maniac=1 +Mogg\ Sentry=1 +Mogis's\ Marauder=1 +Mogis's\ Warhound=1 +Mold\ Adder=1 +Mold\ Shambler=1 +Molder=1 +Molder\ Beast=1 +Molder\ Slug=1 +Moldervine\ Cloak=1 +Moldgraf\ Monstrosity=1 +Moldgraf\ Scavenger=1 +Molimo,\ Maro-Sorcerer=1 +Molten\ Birth=1 +Molten\ Disaster=1 +Molten\ Firebird=1 +Molten\ Frame=1 +Molten\ Hydra=1 +Molten\ Nursery=1 +Molten\ Primordial=1 +Molten\ Psyche=1 +Molten\ Ravager=1 +Molten\ Sentry=1 +Molten\ Slagheap=1 +Moltensteel\ Dragon=1 +Molting\ Skin=1 +Molting\ Snakeskin=1 +Moment\ of\ Heroism=1 +Momentary\ Blink=1 +Momentous\ Fall=1 +Momentum=1 +Monastery\ Flock=1 +Monastery\ Loremaster=1 +Mondronen\ Shaman=1 +Monk\ Idealist=1 +Monk\ Realist=1 +Monomania=1 +Monstrify=1 +Monstrous\ Growth=1 +Monstrous\ Onslaught=1 +Moonbow\ Illusionist=1 +Moonglove\ Changeling=1 +Moonglove\ Extract=1 +Moonglove\ Winnower=1 +Moonhold=1 +Moonlight\ Bargain=1 +Moonlight\ Hunt=1 +Moonlit\ Strider=1 +Moonmist=1 +Moonring\ Island=1 +Moonring\ Mirror=1 +Moonsilver\ Spear=1 +Moorish\ Cavalry=1 +Moorland\ Drifter=1 +Moorland\ Haunt=1 +Morality\ Shift=1 +Morbid\ Bloom=1 +Morbid\ Curiosity=1 +Morbid\ Hunger=1 +Mordant\ Dragon=1 +Morgue\ Burst=1 +Morgue\ Thrull=1 +Morgue\ Toad=1 +Moriok\ Reaver=1 +Moriok\ Replica=1 +Moriok\ Rigger=1 +Moriok\ Scavenger=1 +Morkrut\ Banshee=1 +Morkrut\ Necropod=1 +Moroii=1 +Morselhoarder=1 +Mortal\ Obstinacy=1 +Mortal\ Wound=1 +Mortal's\ Ardor=1 +Mortal's\ Resolve=1 +Mortarpod=1 +Mortician\ Beetle=1 +Mortipede=1 +Mortiphobia=1 +Mortivore=1 +Mortuary\ Mire=1 +Mortus\ Strider=1 +Mosquito\ Guard=1 +Moss\ Diamond=1 +Mossbridge\ Troll=1 +Mossdog=1 +Mothdust\ Changeling=1 +Mothrider\ Samurai=1 +Mountain=1 +Mountain\ Valley=1 +Mountain\ Yeti=1 +Mounted\ Archers=1 +Mourning=1 +Mournwhelk=1 +Mournwillow=1 +Mouth\ //\ Feed=1 +Mtenda\ Herder=1 +Muck\ Drubb=1 +Mudbrawler\ Raiders=1 +Mudbutton\ Clanger=1 +Mudbutton\ Torchrunner=1 +Mudhole=1 +Mugging=1 +Mul\ Daya\ Channelers=1 +Mulch=1 +Multani's\ Acolyte=1 +Multani's\ Harmony=1 +Multani's\ Presence=1 +Multiform\ Wonder=1 +Munda,\ Ambush\ Leader=1 +Munda's\ Vanguard=1 +Mundungu=1 +Murasa\ Pyromancer=1 +Murasa\ Ranger=1 +Murder=1 +Murder\ Investigation=1 +Murderer's\ Axe=1 +Murderous\ Compulsion=1 +Murk\ Strider=1 +Murmuring\ Phantasm=1 +Murmurs\ from\ Beyond=1 +Muscle\ Burst=1 +Muscle\ Sliver=1 +Mutant's\ Prey=1 +Muzzle=1 +Mwonvuli\ Beast\ Tracker=1 +Mycoid\ Shepherd=1 +Mycologist=1 +Myojin\ of\ Cleansing\ Fire=1 +Myojin\ of\ Infinite\ Rage=1 +Myojin\ of\ Night's\ Reach=1 +Myr\ Adapter=1 +Myr\ Galvanizer=1 +Myr\ Incubator=1 +Myr\ Landshaper=1 +Myr\ Moonvessel=1 +Myr\ Propagator=1 +Myr\ Prototype=1 +Myr\ Reservoir=1 +Myr\ Retriever=1 +Myr\ Sire=1 +Myr\ Turbine=1 +Myr\ Welder=1 +Myrsmith=1 +Mysteries\ of\ the\ Deep=1 +Mystic\ Decree=1 +Mystic\ Familiar=1 +Mystic\ Genesis=1 +Mystic\ Meditation=1 +Mystic\ Melting=1 +Mystic\ of\ the\ Hidden\ Way=1 +Mystic\ Penitent=1 +Mystic\ Restraints=1 +Mystic\ Veil=1 +Mystic\ Visionary=1 +Mystic\ Zealot=1 +Mystical\ Teachings=1 +Mystifying\ Maze=1 +Mythic\ Proportions=1 +Nacatl\ Hunt-Pride=1 +Nacatl\ Outlander=1 +Nacatl\ Savage=1 +Nacatl\ War-Pride=1 +Naga\ Oracle=1 +Naga\ Vitalist=1 +Nagao,\ Bound\ by\ Honor=1 +Nagging\ Thoughts=1 +Nahiri's\ Machinations=1 +Naked\ Singularity=1 +Nameless\ Inversion=1 +Nameless\ One=1 +Nantuko\ Calmer=1 +Nantuko\ Disciple=1 +Nantuko\ Elder=1 +Nantuko\ Husk=1 +Nantuko\ Monastery=1 +Nantuko\ Shade=1 +Nantuko\ Shaman=1 +Nantuko\ Tracer=1 +Nantuko\ Vigilante=1 +Narcissism=1 +Narcolepsy=1 +Narnam\ Cobra=1 +Narnam\ Renegade=1 +Narwhal=1 +Nath's\ Elite=1 +Natural\ Connection=1 +Natural\ Obsolescence=1 +Natural\ Spring=1 +Naturalize=1 +Nature's\ Blessing=1 +Nature's\ Kiss=1 +Nature's\ Lore=1 +Nature's\ Panoply=1 +Nature's\ Ruin=1 +Nature's\ Spiral=1 +Nature's\ Way=1 +Nature's\ Will=1 +Naya\ Battlemage=1 +Naya\ Charm=1 +Naya\ Hushblade=1 +Naya\ Panorama=1 +Naya\ Sojourners=1 +Near-Death\ Experience=1 +Nearheath\ Chaplain=1 +Nearheath\ Pilgrim=1 +Nearheath\ Stalker=1 +Nebelgast\ Herald=1 +Nebuchadnezzar=1 +Necra\ Disciple=1 +Necra\ Sanctuary=1 +Necravolver=1 +Necrite=1 +Necrobite=1 +Necrogen\ Scudder=1 +Necrogen\ Spellbomb=1 +Necrogenesis=1 +Necrologia=1 +Necromancer's\ Assistant=1 +Necromancer's\ Covenant=1 +Necromancer's\ Magemark=1 +Necromancer's\ Stockpile=1 +Necromantic\ Summons=1 +Necromantic\ Thirst=1 +Necromaster\ Dragon=1 +Necroplasm=1 +Necropolis\ Fiend=1 +Necropotence=1 +Necropouncer=1 +Necrotic\ Plague=1 +Necrotic\ Sliver=1 +Need\ for\ Speed=1 +Needle\ Storm=1 +Needlebite\ Trap=1 +Needlebug=1 +Nef-Crop\ Entangler=1 +Nefarox,\ Overlord\ of\ Grixis=1 +Nefashu=1 +Neglected\ Heirloom=1 +Neheb,\ the\ Worthy=1 +Neko-Te=1 +Nekrataal=1 +Nemesis\ Mask=1 +Nemesis\ of\ Mortals=1 +Nemesis\ Trap=1 +Nephalia\ Academy=1 +Nephalia\ Drownyard=1 +Nephalia\ Moondrakes=1 +Nephalia\ Seakite=1 +Nephalia\ Smuggler=1 +Nessian\ Asp=1 +Nessian\ Courser=1 +Nessian\ Demolok=1 +Nessian\ Game\ Warden=1 +Nessian\ Wilds\ Ravager=1 +Nest\ Invader=1 +Nest\ of\ Scarabs=1 +Nested\ Ghoul=1 +Netcaster\ Spider=1 +Netherborn\ Phalanx=1 +Netter\ en-Dal=1 +Nettle\ Drone=1 +Nettletooth\ Djinn=1 +Nettlevine\ Blight=1 +Nettling\ Curse=1 +Neurok\ Commando=1 +Neurok\ Familiar=1 +Neurok\ Invisimancer=1 +Neurok\ Replica=1 +Neurok\ Transmuter=1 +Neutralizing\ Blast=1 +Neverending\ Torment=1 +New\ Benalia=1 +New\ Prahv\ Guildmage=1 +Nezumi\ Bone-Reader=1 +Nezumi\ Cutthroat=1 +Nezumi\ Graverobber=1 +Nezumi\ Shadow-Watcher=1 +Niblis\ of\ Dusk=1 +Niblis\ of\ Frost=1 +Niblis\ of\ the\ Breath=1 +Niblis\ of\ the\ Urn=1 +Night\ //\ Day=1 +Night\ Dealings=1 +Night\ Market\ Aeronaut=1 +Night\ Market\ Guard=1 +Night\ Market\ Lookout=1 +Nightbird's\ Clutches=1 +Nightcreep=1 +Nightfire\ Giant=1 +Nightguard\ Patrol=1 +Nighthaze=1 +Nighthowler=1 +Nightmare=1 +Nightmare\ Incursion=1 +Nightmare\ Lash=1 +Nightmare\ Void=1 +Nightmarish\ End=1 +Nightscape\ Apprentice=1 +Nightscape\ Battlemage=1 +Nightscape\ Familiar=1 +Nightshade\ Assassin=1 +Nightshade\ Peddler=1 +Nightshade\ Schemers=1 +Nightshade\ Stinger=1 +Nightsnare=1 +Nightsoil\ Kami=1 +Nightveil\ Specter=1 +Nihilistic\ Glee=1 +Nikko-Onna=1 +Nim\ Abomination=1 +Nim\ Deathmantle=1 +Nim\ Devourer=1 +Nim\ Grotesque=1 +Nim\ Lasher=1 +Nim\ Replica=1 +Nimana\ Sell-Sword=1 +Nimble\ Innovator=1 +Nimble-Blade\ Khenra=1 +Nimbus\ of\ the\ Isles=1 +Nimbus\ Swimmer=1 +Nimbus\ Wings=1 +Nine-Ringed\ Bo=1 +Ninth\ Bridge\ Patrol=1 +Nirkana\ Assassin=1 +Nirkana\ Cutthroat=1 +Nissa's\ Chosen=1 +Nissa's\ Expedition=1 +Nissa's\ Judgment=1 +Nissa's\ Pilgrimage=1 +Nissa's\ Revelation=1 +Niv-Mizzet,\ Dracogenius=1 +Niv-Mizzet,\ the\ Firemind=1 +Niveous\ Wisps=1 +Nivix\ Barrier=1 +Nivix\ Guildmage=1 +Nivix,\ Aerie\ of\ the\ Firemind=1 +Nivmagus\ Elemental=1 +No\ Rest\ for\ the\ Wicked=1 +No-Dachi=1 +Nobilis\ of\ War=1 +Noble\ Quarry=1 +Noble\ Stand=1 +Noble\ Templar=1 +Noble\ Vestige=1 +Nocturnal\ Raid=1 +Noggin\ Whack=1 +Noggle\ Bandit=1 +Noggle\ Bridgebreaker=1 +Noggle\ Hedge-Mage=1 +Noggle\ Ransacker=1 +Nomad\ Mythmaker=1 +Nomad\ Outpost=1 +Nomad\ Stadium=1 +Nomadic\ Elf=1 +Nomads\ en-Kor=1 +Nomads'\ Assembly=1 +Noose\ Constrictor=1 +Noosegraf\ Mob=1 +Norwood\ Priestess=1 +Norwood\ Ranger=1 +Nostalgic\ Dreams=1 +Not\ Forgotten=1 +Nourish=1 +Nova\ Chaser=1 +Nova\ Cleric=1 +Novijen\ Sages=1 +Novijen,\ Heart\ of\ Progress=1 +Noxious\ Dragon=1 +Noxious\ Vapors=1 +Noyan\ Dar,\ Roil\ Shaper=1 +Nucklavee=1 +Nuisance\ Engine=1 +Null\ Caller=1 +Null\ Champion=1 +Null\ Profusion=1 +Nullify=1 +Nullmage\ Advocate=1 +Nullmage\ Shepherd=1 +Nullstone\ Gargoyle=1 +Nulltread\ Gargantuan=1 +Numai\ Outcast=1 +Numbing\ Dose=1 +Numot,\ the\ Devastator=1 +Nurturer\ Initiate=1 +Nurturing\ Licid=1 +Nylea's\ Disciple=1 +Nylea's\ Emissary=1 +Nylea's\ Presence=1 +Nyx\ Infusion=1 +Nyx\ Weaver=1 +Nyxborn\ Eidolon=1 +Nyxborn\ Shieldmate=1 +Nyxborn\ Wolf=1 +Oak\ Street\ Innkeeper=1 +Oaken\ Brawler=1 +Oakenform=1 +Oakgnarl\ Warrior=1 +Oakheart\ Dryads=1 +Oashra\ Cultivator=1 +Oasis=1 +Oath\ of\ Chandra=1 +Oath\ of\ Ghouls=1 +Oath\ of\ Gideon=1 +Oath\ of\ Jace=1 +Oath\ of\ Mages=1 +Oath\ of\ the\ Ancient\ Wood=1 +Oathkeeper,\ Takeno's\ Daisho=1 +Oathsworn\ Giant=1 +Ob\ Nixilis,\ Unshackled=1 +Obelisk\ of\ Bant=1 +Obelisk\ of\ Esper=1 +Obelisk\ of\ Grixis=1 +Obelisk\ of\ Jund=1 +Obelisk\ of\ Naya=1 +Obelisk\ of\ Undoing=1 +Oblivion\ Crown=1 +Oblivion\ Strike=1 +Oboro\ Breezecaller=1 +Oboro\ Envoy=1 +Obscuring\ Aether=1 +Observant\ Alseid=1 +Obsessive\ Search=1 +Obsessive\ Skinner=1 +Obsianus\ Golem=1 +Obsidian\ Battle-Axe=1 +Obzedat's\ Aid=1 +Ocular\ Halo=1 +Odds\ //\ Ends=1 +Odious\ Trow=1 +Odric,\ Lunarch\ Marshal=1 +Odric,\ Master\ Tactician=1 +Odunos\ River\ Trawler=1 +Odylic\ Wraith=1 +Offalsnout=1 +Offering\ to\ Asha=1 +Ogre\ Gatecrasher=1 +Ogre\ Geargrabber=1 +Ogre\ Jailbreaker=1 +Ogre\ Marauder=1 +Ogre\ Menial=1 +Ogre\ Recluse=1 +Ogre\ Sentry=1 +Ogre\ Shaman=1 +Ogre\ Slumlord=1 +Ogre's\ Cleaver=1 +Ohran\ Yeti=1 +Ojutai\ Interceptor=1 +Ojutai\ Monument=1 +Ojutai's\ Breath=1 +Ojutai's\ Summons=1 +Oketra's\ Attendant=1 +Okina\ Nightwatch=1 +Okk=1 +Old\ Ghastbark=1 +Olivia's\ Bloodsworn=1 +Olivia's\ Dragoon=1 +Omen\ Machine=1 +Omenspeaker=1 +Omnibian=1 +Ondu\ Champion=1 +Ondu\ Cleric=1 +Ondu\ Giant=1 +Ondu\ Greathorn=1 +Ondu\ Rising=1 +Ondu\ War\ Cleric=1 +One\ Dozen\ Eyes=1 +One\ Thousand\ Lashes=1 +One\ with\ Nature=1 +One-Eyed\ Scarecrow=1 +Ongoing\ Investigation=1 +Oni\ of\ Wild\ Places=1 +Oni\ Possession=1 +Onslaught=1 +Onulet=1 +Onward\ //\ Victory=1 +Onyx\ Goblet=1 +Onyx\ Mage=1 +Oona's\ Gatewarden=1 +Oona's\ Grace=1 +Oona's\ Prowler=1 +Ooze\ Flux=1 +Ooze\ Garden=1 +Opal\ Acrolith=1 +Opal\ Avenger=1 +Opal\ Champion=1 +Opal\ Gargoyle=1 +Opal\ Guardian=1 +Opal\ Lake\ Gatekeepers=1 +Opal\ Titan=1 +Opal-Eye,\ Konda's\ Yojimbo=1 +Opaline\ Bracers=1 +Opaline\ Unicorn=1 +Open\ into\ Wonder=1 +Open\ the\ Armory=1 +Ophidian=1 +Ophidian\ Eye=1 +Opportunist=1 +Opportunity=1 +Oppressive\ Rays=1 +Oppressive\ Will=1 +Opulent\ Palace=1 +Oracle\ of\ Bones=1 +Oracle\ of\ Dust=1 +Oracle\ of\ Nectars=1 +Oracle's\ Vault=1 +Oran-Rief\ Hydra=1 +Oran-Rief\ Invoker=1 +Oran-Rief\ Survivalist=1 +Orator\ of\ Ojutai=1 +Oraxid=1 +Orbs\ of\ Warding=1 +Orbweaver\ Kumo=1 +Orc\ General=1 +Orc\ Sureshot=1 +Orchard\ Spirit=1 +Orchard\ Warden=1 +Orcish\ Artillery=1 +Orcish\ Bloodpainter=1 +Orcish\ Cannonade=1 +Orcish\ Cannoneers=1 +Orcish\ Captain=1 +Orcish\ Conscripts=1 +Orcish\ Farmer=1 +Orcish\ Librarian=1 +Orcish\ Lumberjack=1 +Orcish\ Oriflamme=1 +Orcish\ Spy=1 +Orcish\ Veteran=1 +Ordeal\ of\ Erebos=1 +Ordeal\ of\ Heliod=1 +Ordeal\ of\ Nylea=1 +Ordeal\ of\ Purphoros=1 +Ordeal\ of\ Thassa=1 +Order\ //\ Chaos=1 +Order\ of\ the\ Golden\ Cricket=1 +Order\ of\ the\ Sacred\ Bell=1 +Order\ of\ the\ Sacred\ Torch=1 +Order\ of\ the\ Stars=1 +Order\ of\ the\ White\ Shield=1 +Order\ of\ Whiteclay=1 +Order\ of\ Yawgmoth=1 +Ordruun\ Commando=1 +Ordruun\ Veteran=1 +Ore\ Gorger=1 +Oreskos\ Sun\ Guide=1 +Oreskos\ Swiftclaw=1 +Organ\ Grinder=1 +Orgg=1 +Origin\ Spellbomb=1 +Orim's\ Prayer=1 +Orim's\ Touch=1 +Oriss,\ Samite\ Guardian=1 +Ornamental\ Courage=1 +Ornate\ Kanzashi=1 +Ornery\ Kudu=1 +Ornitharch=1 +Orochi\ Eggwatcher=1 +Orochi\ Leafcaller=1 +Orochi\ Sustainer=1 +Orzhov\ Advokist=1 +Orzhov\ Basilica=1 +Orzhov\ Cluestone=1 +Orzhov\ Euthanist=1 +Orzhov\ Guildgate=1 +Orzhov\ Guildmage=1 +Orzhov\ Keyrune=1 +Orzhov\ Signet=1 +Orzhova,\ the\ Church\ of\ Deals=1 +Osai\ Vultures=1 +Ostiary\ Thrull=1 +Otarian\ Juggernaut=1 +Otherworld\ Atlas=1 +Otherworldly\ Journey=1 +Otherworldly\ Outburst=1 +Ouphe\ Vandals=1 +Outland\ Boar=1 +Outland\ Colossus=1 +Outmaneuver=1 +Outnumber=1 +Outrage\ Shaman=1 +Outrider\ en-Kor=1 +Outrider\ of\ Jhess=1 +Outwit=1 +Ovalchase\ Daredevil=1 +Ovalchase\ Dragster=1 +Overblaze=1 +Overeager\ Apprentice=1 +Overload=1 +Overrule=1 +Overrun=1 +Overwhelm=1 +Overwhelming\ Denial=1 +Overwhelming\ Instinct=1 +Overwhelming\ Stampede=1 +Ovinize=1 +Ovinomancer=1 +Oviya\ Pashiri,\ Sage\ Lifecrafter=1 +Owl\ Familiar=1 +Oxidda\ Golem=1 +Oxidda\ Scrapmelter=1 +Oxidize=1 +Oyobi,\ Who\ Split\ the\ Heavens=1 +Pacification\ Array=1 +Pacifism=1 +Pack\ Guardian=1 +Pack's\ Disdain=1 +Padeem,\ Consul\ of\ Innovation=1 +Pain\ Magnification=1 +Pain\ Seer=1 +Painful\ Lesson=1 +Painsmith=1 +Painted\ Bluffs=1 +Painwracker\ Oni=1 +Palace\ Familiar=1 +Palace\ Guard=1 +Paladin\ of\ Prahv=1 +Pale\ Recluse=1 +Pale\ Rider\ of\ Trostad=1 +Pale\ Wayfarer=1 +Paleoloth=1 +Palisade\ Giant=1 +Palladia-Mors=1 +Palladium\ Myr=1 +Palliation\ Accord=1 +Pallid\ Mycoderm=1 +Panic\ Attack=1 +Panic\ Spellbomb=1 +Panther\ Warriors=1 +Paperfin\ Rascal=1 +Paragon\ of\ Eternal\ Wilds=1 +Paragon\ of\ Fierce\ Defiance=1 +Paragon\ of\ Gathering\ Mists=1 +Paragon\ of\ New\ Dawns=1 +Paragon\ of\ Open\ Graves=1 +Parallax\ Wave=1 +Parallectric\ Feedback=1 +Parallel\ Thoughts=1 +Paralyze=1 +Paralyzing\ Grasp=1 +Paranoid\ Delusions=1 +Paranoid\ Parish-Blade=1 +Paraselene=1 +Parasitic\ Implant=1 +Parasitic\ Strix=1 +Pardic\ Collaborator=1 +Pardic\ Dragon=1 +Pardic\ Firecat=1 +Pardic\ Lancer=1 +Pardic\ Swordsmith=1 +Pariah's\ Shield=1 +Paroxysm=1 +Parting\ Thoughts=1 +Patagia\ Golem=1 +Patagia\ Viper=1 +Patchwork\ Gnomes=1 +Path\ of\ Anger's\ Flame=1 +Path\ of\ Bravery=1 +Path\ of\ Peace=1 +Pathmaker\ Initiate=1 +Pathrazer\ of\ Ulamog=1 +Pathway\ Arrows=1 +Patriarch's\ Desire=1 +Patrol\ Hound=1 +Patrol\ Signaler=1 +Patron\ of\ the\ Akki=1 +Patron\ of\ the\ Kitsune=1 +Patron\ of\ the\ Moon=1 +Patron\ of\ the\ Nezumi=1 +Patron\ of\ the\ Valiant=1 +Patron\ of\ the\ Wild=1 +Pavel\ Maliki=1 +Pay\ No\ Heed=1 +Peace\ and\ Quiet=1 +Peace\ of\ Mind=1 +Peace\ Strider=1 +Peacewalker\ Colossus=1 +Peach\ Garden\ Oath=1 +Peak\ Eruption=1 +Pearl\ Shard=1 +Peel\ from\ Reality=1 +Peema\ Aether-Seer=1 +Peema\ Outrider=1 +Peer\ Pressure=1 +Pegasus\ Charger=1 +Pegasus\ Refuge=1 +Pelakka\ Wurm=1 +Penance=1 +Pendelhaven\ Elder=1 +Pendrell\ Drake=1 +Pennon\ Blade=1 +Pensive\ Minotaur=1 +Pentagram\ of\ the\ Ages=1 +Pentarch\ Paladin=1 +Pentarch\ Ward=1 +Pentavus=1 +Penumbra\ Bobcat=1 +Penumbra\ Kavu=1 +Penumbra\ Spider=1 +Penumbra\ Wurm=1 +Peppersmoke=1 +Peregrination=1 +Peregrine\ Griffin=1 +Peregrine\ Mask=1 +Perilous\ Forays=1 +Perilous\ Myr=1 +Perilous\ Predicament=1 +Perilous\ Shadow=1 +Perimeter\ Captain=1 +Perish\ the\ Thought=1 +Permafrost\ Trap=1 +Permeating\ Mass=1 +Perpetual\ Timepiece=1 +Perplex=1 +Perplexing\ Chimera=1 +Persecute=1 +Persuasion=1 +Pestilence\ Demon=1 +Pestilent\ Souleater=1 +Petalmane\ Baku=1 +Petals\ of\ Insight=1 +Petra\ Sphinx=1 +Petradon=1 +Petravark=1 +Petrified\ Wood-Kin=1 +Pewter\ Golem=1 +Phalanx\ Formation=1 +Phalanx\ Leader=1 +Phantasmal\ Abomination=1 +Phantasmal\ Dragon=1 +Phantasmal\ Fiend=1 +Phantasmal\ Forces=1 +Phantasmal\ Mount=1 +Phantasmal\ Terrain=1 +Phantatog=1 +Phantom\ Centaur=1 +Phantom\ Flock=1 +Phantom\ General=1 +Phantom\ Monster=1 +Phantom\ Nomad=1 +Phantom\ Tiger=1 +Phantom\ Warrior=1 +Phantom\ Whelp=1 +Phantom\ Wings=1 +Phantom\ Wurm=1 +Pharagax\ Giant=1 +Pharika's\ Chosen=1 +Pharika's\ Cure=1 +Pharika's\ Disciple=1 +Pharika's\ Mender=1 +Pheres-Band\ Centaurs=1 +Pheres-Band\ Raiders=1 +Pheres-Band\ Thunderhoof=1 +Pheres-Band\ Tromper=1 +Pheres-Band\ Warchief=1 +Phosphorescent\ Feast=1 +Phthisis=1 +Phylactery\ Lich=1 +Phyresis=1 +Phyrexia's\ Core=1 +Phyrexian\ Battleflies=1 +Phyrexian\ Bloodstock=1 +Phyrexian\ Boon=1 +Phyrexian\ Broodlings=1 +Phyrexian\ Colossus=1 +Phyrexian\ Debaser=1 +Phyrexian\ Defiler=1 +Phyrexian\ Digester=1 +Phyrexian\ Driver=1 +Phyrexian\ Gargantua=1 +Phyrexian\ Ghoul=1 +Phyrexian\ Grimoire=1 +Phyrexian\ Hulk=1 +Phyrexian\ Hydra=1 +Phyrexian\ Ingester=1 +Phyrexian\ Ironfoot=1 +Phyrexian\ Juggernaut=1 +Phyrexian\ Monitor=1 +Phyrexian\ Reaper=1 +Phyrexian\ Scuta=1 +Phyrexian\ Slayer=1 +Phyrexian\ Snowcrusher=1 +Phyrexian\ Splicer=1 +Phyrexian\ Swarmlord=1 +Phyrexian\ Totem=1 +Phyrexian\ Vault=1 +Phyrexian\ War\ Beast=1 +Phytoburst=1 +Phytohydra=1 +Phytotitan=1 +Pia\ Nalaar=1 +Pia's\ Revolution=1 +Pianna,\ Nomad\ Captain=1 +Pick\ the\ Brain=1 +Pieces\ of\ the\ Puzzle=1 +Pierce\ Strider=1 +Piety\ Charm=1 +Pilfered\ Plans=1 +Pilgrim\ of\ Justice=1 +Pilgrim\ of\ the\ Fires=1 +Pilgrim\ of\ Virtue=1 +Pilgrim's\ Eye=1 +Pillar\ of\ Light=1 +Pillar\ of\ War=1 +Pillarfield\ Ox=1 +Pillory\ of\ the\ Sleepless=1 +Pin\ to\ the\ Earth=1 +Pincer\ Spider=1 +Pincher\ Beetles=1 +Pine\ Barrens=1 +Pine\ Walker=1 +Pinecrest\ Ridge=1 +Pinion\ Feast=1 +Pinnacle\ of\ Rage=1 +Pious\ Evangel=1 +Pious\ Kitsune=1 +Piper's\ Melody=1 +Piranha\ Marsh=1 +Pirate\ Ship=1 +Pit\ Fight=1 +Pit\ Imp=1 +Pit\ Keeper=1 +Pit\ Spawn=1 +Pitchburn\ Devils=1 +Pitchstone\ Wall=1 +Pitfall\ Trap=1 +Pith\ Driller=1 +Pitiless\ Horde=1 +Pitiless\ Vizier=1 +Plagiarize=1 +Plague\ Beetle=1 +Plague\ Boiler=1 +Plague\ Dogs=1 +Plague\ Myr=1 +Plague\ of\ Vermin=1 +Plague\ Sliver=1 +Plague\ Spores=1 +Plague\ Stinger=1 +Plague\ Wind=1 +Plague\ Witch=1 +Plagued\ Rusalka=1 +Plaguemaw\ Beast=1 +Plains=1 +Planar\ Chaos=1 +Planar\ Cleansing=1 +Planar\ Despair=1 +Planar\ Gate=1 +Planar\ Guide=1 +Planar\ Outburst=1 +Planar\ Overlay=1 +Planeswalker's\ Mirth=1 +Planeswalker's\ Mischief=1 +Planeswalker's\ Scorn=1 +Plasma\ Elemental=1 +Plated\ Crusher=1 +Plated\ Geopede=1 +Plated\ Pegasus=1 +Plated\ Rootwalla=1 +Plated\ Seastrider=1 +Plated\ Slagwurm=1 +Plaxcaster\ Frogling=1 +Plaxmanta=1 +Plea\ for\ Guidance=1 +Pledge\ of\ Loyalty=1 +Plover\ Knights=1 +Plow\ Through\ Reito=1 +Plumes\ of\ Peace=1 +Plumeveil=1 +Plummet=1 +Plunder=1 +Poison\ the\ Well=1 +Poisonbelly\ Ogre=1 +Polis\ Crusher=1 +Pollen\ Lullaby=1 +Pollen\ Remedy=1 +Pollenbright\ Wings=1 +Polymorphist's\ Jest=1 +Polymorphous\ Rush=1 +Pontiff\ of\ Blight=1 +Ponyback\ Brigade=1 +Pooling\ Venom=1 +Porcelain\ Legionnaire=1 +Pore\ Over\ the\ Pages=1 +Port\ Inspector=1 +Portent\ of\ Betrayal=1 +Possessed\ Aven=1 +Possessed\ Barbarian=1 +Possessed\ Centaur=1 +Possessed\ Nomad=1 +Possessed\ Skaab=1 +Postmortem\ Lunge=1 +Poultice\ Sliver=1 +Pouncing\ Cheetah=1 +Pouncing\ Jaguar=1 +Pouncing\ Kavu=1 +Pouncing\ Wurm=1 +Power\ Armor=1 +Power\ Conduit=1 +Power\ of\ Fire=1 +Power\ Sink=1 +Power\ Taint=1 +Prahv,\ Spires\ of\ Order=1 +Prakhata\ Club\ Security=1 +Prakhata\ Pillar-Bug=1 +Precinct\ Captain=1 +Precise\ Strike=1 +Precursor\ Golem=1 +Predator\ Dragon=1 +Predator,\ Flagship=1 +Predator's\ Rapport=1 +Predator's\ Strike=1 +Predatory\ Advantage=1 +Predatory\ Focus=1 +Predatory\ Hunger=1 +Predatory\ Nightstalker=1 +Predatory\ Rampage=1 +Preeminent\ Captain=1 +Prepare\ //\ Fight=1 +Prescient\ Chimera=1 +Presence\ of\ the\ Master=1 +Presence\ of\ the\ Wise=1 +Press\ for\ Answers=1 +Press\ into\ Service=1 +Press\ the\ Advantage=1 +Pressure\ Point=1 +Prey\ Upon=1 +Prey's\ Vengeance=1 +Prickleboar=1 +Prickly\ Boggart=1 +Pride\ Guardian=1 +Priest\ of\ Iroas=1 +Priest\ of\ the\ Blood\ Rite=1 +Priest\ of\ Urabrask=1 +Priests\ of\ Norn=1 +Primal\ Bellow=1 +Primal\ Clay=1 +Primal\ Cocoon=1 +Primal\ Druid=1 +Primal\ Forcemage=1 +Primal\ Frenzy=1 +Primal\ Huntbeast=1 +Primal\ Rage=1 +Primal\ Visitation=1 +Primal\ Whisperer=1 +Primeval\ Force=1 +Primeval\ Light=1 +Primeval\ Protector=1 +Primoc\ Escapee=1 +Primordial\ Sage=1 +Princess\ Lucrezia=1 +Prism\ Array=1 +Prism\ Ring=1 +Prismatic\ Geoscope=1 +Prison\ Barricade=1 +Prison\ Term=1 +Pristine\ Angel=1 +Pristine\ Skywise=1 +Private\ Research=1 +Prizefighter\ Construct=1 +Processor\ Assault=1 +Prodigal\ Pyromancer=1 +Prodigal\ Sorcerer=1 +Profane\ Command=1 +Profane\ Memento=1 +Profane\ Prayers=1 +Profaner\ of\ the\ Dead=1 +Profit\ //\ Loss=1 +Profound\ Journey=1 +Prognostic\ Sphinx=1 +Promise\ of\ Power=1 +Promised\ Kannushi=1 +Propeller\ Pioneer=1 +Proper\ Burial=1 +Prophet\ of\ Distortion=1 +Prophet\ of\ Kruphix=1 +Prophetic\ Bolt=1 +Prophetic\ Ravings=1 +Protean\ Hydra=1 +Protect\ //\ Serve=1 +Protection\ of\ the\ Hekma=1 +Proteus\ Machine=1 +Protomatter\ Powder=1 +Prototype\ Portal=1 +Providence=1 +Provoke=1 +Prowess\ of\ the\ Fair=1 +Prowler's\ Helm=1 +Prowling\ Nightstalker=1 +Prowling\ Pangolin=1 +Prying\ Questions=1 +Psionic\ Gift=1 +Psionic\ Sliver=1 +Psychatog=1 +Psychic\ Barrier=1 +Psychic\ Drain=1 +Psychic\ Intrusion=1 +Psychic\ Membrane=1 +Psychic\ Miasma=1 +Psychic\ Overload=1 +Psychic\ Possession=1 +Psychic\ Puppetry=1 +Psychic\ Rebuttal=1 +Psychic\ Spiral=1 +Psychic\ Strike=1 +Psychic\ Surgery=1 +Psychic\ Trance=1 +Psychogenic\ Probe=1 +Psychotic\ Episode=1 +Psychotic\ Fury=1 +Psychotic\ Haze=1 +Psychotrope\ Thallid=1 +Public\ Execution=1 +Pull\ from\ Eternity=1 +Pull\ from\ the\ Deep=1 +Pull\ Under=1 +Pulling\ Teeth=1 +Pulmonic\ Sliver=1 +Pulsating\ Illusion=1 +Pulse\ of\ Murasa=1 +Pulse\ of\ the\ Dross=1 +Pulse\ of\ the\ Grid=1 +Pulse\ of\ the\ Tangle=1 +Pulse\ Tracker=1 +Puncture\ Blast=1 +Puncturing\ Light=1 +Punish\ the\ Enemy=1 +Puppet\ Conjurer=1 +Puppeteer=1 +Puppeteer\ Clique=1 +Pure\ //\ Simple=1 +Puresight\ Merrow=1 +Purge=1 +Purge\ the\ Profane=1 +Purging\ Scythe=1 +Purify\ the\ Grave=1 +Purity=1 +Purphoros's\ Emissary=1 +Pursue\ Glory=1 +Pursuit\ of\ Flight=1 +Pursuit\ of\ Knowledge=1 +Pus\ Kami=1 +Put\ Away=1 +Putrefax=1 +Putrefy=1 +Putrid\ Cyclops=1 +Putrid\ Imp=1 +Putrid\ Raptor=1 +Putrid\ Warrior=1 +Pygmy\ Kavu=1 +Pygmy\ Pyrosaur=1 +Pygmy\ Troll=1 +Pyramid\ of\ the\ Pantheon=1 +Pyre\ Charger=1 +Pyre\ Hound=1 +Pyreheart\ Wolf=1 +Pyrewild\ Shaman=1 +Pyric\ Salamander=1 +Pyrite\ Spellbomb=1 +Pyroclasm=1 +Pyroclast\ Consul=1 +Pyroconvergence=1 +Pyrohemia=1 +Pyromancer's\ Assault=1 +Pyromancer's\ Gauntlet=1 +Pyromancer's\ Swath=1 +Pyromania=1 +Pyromatics=1 +Pyrotechnics=1 +Python=1 +Pyxis\ of\ Pandemonium=1 +Qal\ Sisma\ Behemoth=1 +Qarsi\ Deceiver=1 +Qarsi\ High\ Priest=1 +Qarsi\ Sadist=1 +Qasali\ Ambusher=1 +Quag\ Sickness=1 +Quag\ Vampires=1 +Quagmire\ Druid=1 +Quarry\ Colossus=1 +Quarry\ Hauler=1 +Quash=1 +Quenchable\ Fire=1 +Quest\ for\ Renewal=1 +Quest\ for\ the\ Gemblades=1 +Quest\ for\ the\ Goblin\ Lord=1 +Quest\ for\ the\ Gravelord=1 +Quest\ for\ the\ Holy\ Relic=1 +Quest\ for\ Ula's\ Temple=1 +Quick\ Sliver=1 +Quickchange=1 +Quicken=1 +Quickening\ Licid=1 +Quicksand=1 +Quicksilver\ Behemoth=1 +Quicksilver\ Dragon=1 +Quicksilver\ Elemental=1 +Quicksilver\ Fountain=1 +Quicksilver\ Geyser=1 +Quicksmith\ Genius=1 +Quicksmith\ Rebel=1 +Quicksmith\ Spy=1 +Quiet\ Contemplation=1 +Quiet\ Purity=1 +Quiet\ Speculation=1 +Quietus\ Spike=1 +Quill-Slinger\ Boggart=1 +Quilled\ Slagwurm=1 +Quilled\ Sliver=1 +Quilled\ Wolf=1 +Quillmane\ Baku=1 +Quirion\ Dryad=1 +Quirion\ Explorer=1 +Qumulox=1 +Rabble-Rouser=1 +Rabid\ Bite=1 +Rabid\ Bloodsucker=1 +Rabid\ Elephant=1 +Rabid\ Rats=1 +Rabid\ Wolverines=1 +Rabid\ Wombat=1 +Rack\ and\ Ruin=1 +Radha,\ Heir\ to\ Keld=1 +Radiant\ Purge=1 +Radiant,\ Archangel=1 +Radiant's\ Dragoons=1 +Radjan\ Spirit=1 +Ragamuffyn=1 +Rage\ Extractor=1 +Rage\ Forger=1 +Rage\ Nimbus=1 +Rage\ of\ Purphoros=1 +Rage\ Reflection=1 +Rage\ Weaver=1 +Rageblood\ Shaman=1 +Rageform=1 +Ragemonger=1 +Ragged\ Veins=1 +Raging\ Goblin=1 +Raging\ Minotaur=1 +Raging\ Spirit=1 +Ragnar=1 +Rags\ //\ Riches=1 +Raid\ Bombardment=1 +Raiders'\ Spoils=1 +Rain\ of\ Blades=1 +Rain\ of\ Rust=1 +Rain\ of\ Salt=1 +Rain\ of\ Thorns=1 +Rainbow\ Crow=1 +Raise\ Dead=1 +Raise\ the\ Alarm=1 +Raised\ by\ Wolves=1 +Raka\ Disciple=1 +Raka\ Sanctuary=1 +Rakalite=1 +Rakavolver=1 +Rakdos\ Augermage=1 +Rakdos\ Cackler=1 +Rakdos\ Cluestone=1 +Rakdos\ Drake=1 +Rakdos\ Guildgate=1 +Rakdos\ Guildmage=1 +Rakdos\ Ickspitter=1 +Rakdos\ Keyrune=1 +Rakdos\ Pit\ Dragon=1 +Rakdos\ Ragemutt=1 +Rakdos\ Ringleader=1 +Rakdos\ Riteknife=1 +Rakdos\ Shred-Freak=1 +Rakdos\ Signet=1 +Rakdos\ the\ Defiler=1 +Rakeclaw\ Gargantuan=1 +Raking\ Canopy=1 +Rakish\ Heir=1 +Rakka\ Mar=1 +Rakshasa\ Deathdealer=1 +Rakshasa\ Gravecaller=1 +Rakshasa\ Vizier=1 +Rakshasa's\ Disdain=1 +Rakshasa's\ Secret=1 +Rally\ the\ Forces=1 +Rally\ the\ Horde=1 +Rally\ the\ Peasants=1 +Rally\ the\ Righteous=1 +Ramosian\ Revivalist=1 +Rampant\ Growth=1 +Ramroller=1 +Ramses\ Overdark=1 +Rancid\ Rats=1 +Ranger\ en-Vec=1 +Ranger's\ Guile=1 +Ranger's\ Path=1 +Ransack=1 +Rapacious\ One=1 +Rathi\ Dragon=1 +Rathi\ Intimidator=1 +Rathi\ Trapper=1 +Rats\ of\ Rath=1 +Rats'\ Feast=1 +Rattleblaze\ Scarecrow=1 +Rattleclaw\ Mystic=1 +Ravaged\ Highlands=1 +Ravaging\ Blaze=1 +Ravaging\ Riftwurm=1 +Raven\ Familiar=1 +Raven\ Guild\ Initiate=1 +Ravenous\ Bloodseeker=1 +Ravenous\ Demon=1 +Ravenous\ Intruder=1 +Ravenous\ Skirge=1 +Ravenous\ Vampire=1 +Raving\ Oni-Slave=1 +Ray\ of\ Command=1 +Ray\ of\ Dissolution=1 +Ray\ of\ Distortion=1 +Razia,\ Boros\ Archangel=1 +Razia's\ Purification=1 +Razing\ Snidd=1 +Razor\ Barrier=1 +Razor\ Boomerang=1 +Razor\ Swine=1 +Razorfield\ Rhino=1 +Razorfin\ Abolisher=1 +Razorfoot\ Griffin=1 +Razorgrass\ Screen=1 +Razorjaw\ Oni=1 +Razormane\ Masticore=1 +Razortooth\ Rats=1 +Reach\ of\ Branches=1 +Reach\ of\ Shadows=1 +Reach\ Through\ Mists=1 +Read\ the\ Bones=1 +Ready\ //\ Willing=1 +Reality\ Anchor=1 +Reality\ Hemorrhage=1 +Reality\ Spasm=1 +Reality\ Strobe=1 +Realm\ Razer=1 +Realm\ Seekers=1 +Realms\ Uncharted=1 +Realmwright=1 +Reap\ the\ Seagraf=1 +Reap\ What\ Is\ Sown=1 +Reaper\ of\ Flight\ Moonsilver=1 +Reaper\ of\ Sheoldred=1 +Reaper\ of\ the\ Wilds=1 +Reassembling\ Skeleton=1 +Reave\ Soul=1 +Reaver\ Drone=1 +Rebellion\ of\ the\ Flamekin=1 +Reborn\ Hope=1 +Rebuff\ the\ Wicked=1 +Rebuke=1 +Rebuking\ Ceremony=1 +Recantation=1 +Reciprocate=1 +Reckless\ Cohort=1 +Reckless\ Fireweaver=1 +Reckless\ Imp=1 +Reckless\ Ogre=1 +Reckless\ One=1 +Reckless\ Racer=1 +Reckless\ Reveler=1 +Reckless\ Scholar=1 +Reckless\ Spite=1 +Reckless\ Waif=1 +Reckless\ Wurm=1 +Reclaim=1 +Reclaiming\ Vines=1 +Reclusive\ Artificer=1 +Reclusive\ Wight=1 +Recollect=1 +Reconstruction=1 +Recover=1 +Recumbent\ Bliss=1 +Recuperate=1 +Red\ Sun's\ Zenith=1 +Redeem=1 +Redeem\ the\ Lost=1 +Redirect=1 +Reduce\ //\ Rubble=1 +Reduce\ in\ Stature=1 +Reduce\ to\ Ashes=1 +Redwood\ Treefolk=1 +Reef\ Shaman=1 +Reflex\ Sliver=1 +Reflexes=1 +Refocus=1 +Refraction\ Trap=1 +Refresh=1 +Refurbish=1 +Regathan\ Firecat=1 +Regeneration=1 +Regress=1 +Reign\ of\ the\ Pit=1 +Reinforced\ Bulwark=1 +Reinforcements=1 +Reiterate=1 +Reito\ Lantern=1 +Reiver\ Demon=1 +Rekindled\ Flame=1 +Release\ the\ Ants=1 +Relentless\ Assault=1 +Relentless\ Hunter=1 +Relentless\ Skaabs=1 +Relic\ Barrier=1 +Relic\ Putrescence=1 +Relic\ Seeker=1 +Relic\ Ward=1 +Relief\ Captain=1 +Reliquary\ Monk=1 +Remedy=1 +Remember\ the\ Fallen=1 +Reminisce=1 +Remorseless\ Punishment=1 +Rend\ Flesh=1 +Rending\ Vines=1 +Renegade\ Doppelganger=1 +Renegade\ Freighter=1 +Renegade\ Krasis=1 +Renegade\ Tactics=1 +Renegade\ Warlord=1 +Renegade\ Wheelsmith=1 +Renegade's\ Getaway=1 +Renewed\ Faith=1 +Renounce\ the\ Guilds=1 +Renowned\ Weaver=1 +Repay\ in\ Kind=1 +Repeal=1 +Repel=1 +Repel\ Intruders=1 +Repel\ the\ Abominable=1 +Repel\ the\ Darkness=1 +Repentance=1 +Reprisal=1 +Requiem\ Angel=1 +Reroute=1 +Rescind=1 +Rescue=1 +Rescue\ from\ the\ Underworld=1 +Research\ //\ Development=1 +Research\ Assistant=1 +Research\ the\ Deep=1 +Reservoir\ Walker=1 +Resilient\ Wanderer=1 +Resistance\ Fighter=1 +Resize=1 +Resolute\ Archangel=1 +Resolute\ Blademaster=1 +Resounding\ Roar=1 +Resounding\ Silence=1 +Resounding\ Thunder=1 +Resounding\ Wave=1 +Resourceful\ Return=1 +Resplendent\ Mentor=1 +Restless\ Apparition=1 +Restless\ Bones=1 +Restless\ Dreams=1 +Restock=1 +Restoration\ Gearsmith=1 +Restoration\ Specialist=1 +Restore\ the\ Peace=1 +Restrain=1 +Resupply=1 +Resurrection=1 +Resuscitate=1 +Retaliate=1 +Retaliation=1 +Retaliator\ Griffin=1 +Retraction\ Helix=1 +Retreat\ to\ Coralhelm=1 +Retreat\ to\ Emeria=1 +Retreat\ to\ Hagra=1 +Retreat\ to\ Kazandu=1 +Retreat\ to\ Valakut=1 +Retribution=1 +Retribution\ of\ the\ Ancients=1 +Retromancer=1 +Return\ to\ the\ Earth=1 +Returned\ Centaur=1 +Returned\ Phalanx=1 +Returned\ Reveler=1 +Revealing\ Wind=1 +Reveka,\ Wizard\ Savant=1 +Revel\ of\ the\ Fallen\ God=1 +Revelsong\ Horn=1 +Revenant=1 +Revenant\ Patriarch=1 +Revenge\ of\ the\ Hunted=1 +Reverberate=1 +Revered\ Elder=1 +Revered\ Unicorn=1 +Reverent\ Hunter=1 +Reverse\ Damage=1 +Reverse\ the\ Sands=1 +Revive=1 +Revive\ the\ Fallen=1 +Reviving\ Dose=1 +Reviving\ Melody=1 +Reviving\ Vapors=1 +Revoke\ Existence=1 +Revoke\ Privileges=1 +Revolutionary\ Rebuff=1 +Reward\ the\ Faithful=1 +Rewards\ of\ Diversity=1 +Rewind=1 +Rhet-Crop\ Spearmaster=1 +Rhonas's\ Monument=1 +Rhox=1 +Rhox\ Brute=1 +Rhox\ Charger=1 +Rhox\ Maulers=1 +Rhox\ Meditant=1 +Rhox\ Pikemaster=1 +Rhox\ War\ Monk=1 +Rhystic\ Lightning=1 +Rhystic\ Shield=1 +Rib\ Cage\ Spider=1 +Ribbon\ Snake=1 +Ribbons\ of\ the\ Reikai=1 +Riddle\ of\ Lightning=1 +Riddlesmith=1 +Ride\ Down=1 +Riders\ of\ Gavony=1 +Ridge\ Rannet=1 +Ridged\ Kusite=1 +Ridgeline\ Rager=1 +Ridgescale\ Tusker=1 +Ridgetop\ Raptor=1 +Rift\ Elemental=1 +Riftmarked\ Knight=1 +Riftsweeper=1 +Riftwing\ Cloudskate=1 +Righteous\ Aura=1 +Righteous\ Authority=1 +Righteous\ Blow=1 +Righteous\ Charge=1 +Righteousness=1 +Rime\ Transfusion=1 +Rimebound\ Dead=1 +Rimehorn\ Aurochs=1 +Rimewind\ Cryomancer=1 +Rimewind\ Taskmage=1 +Ring\ of\ Evos\ Isle=1 +Ring\ of\ Gix=1 +Ring\ of\ Kalonia=1 +Ring\ of\ Ma'r?f=1 +Ring\ of\ Renewal=1 +Ring\ of\ Thune=1 +Ring\ of\ Xathrid=1 +Ringwarden\ Owl=1 +Riot\ Control=1 +Riot\ Devils=1 +Riot\ Gear=1 +Riot\ Piker=1 +Riot\ Ringleader=1 +Riot\ Spikes=1 +Rip-Clan\ Crasher=1 +Riparian\ Tiger=1 +Ripscale\ Predator=1 +Riptide\ Chimera=1 +Riptide\ Chronologist=1 +Riptide\ Pilferer=1 +Riptide\ Shapeshifter=1 +Rise\ from\ the\ Grave=1 +Rise\ from\ the\ Tides=1 +Rise\ of\ Eagles=1 +Rise\ to\ the\ Challenge=1 +Risen\ Sanctuary=1 +Rishkar's\ Expertise=1 +Rising\ Miasma=1 +Rite\ of\ Ruin=1 +Rite\ of\ the\ Serpent=1 +Rite\ of\ Undoing=1 +Rites\ of\ Initiation=1 +Rites\ of\ Reaping=1 +Rites\ of\ Refusal=1 +Rites\ of\ Spring=1 +Rith's\ Attendant=1 +Ritual\ of\ Restoration=1 +Ritual\ of\ Steel=1 +Ritual\ of\ the\ Machine=1 +Ritual\ of\ the\ Returned=1 +Rivalry=1 +Rivals'\ Duel=1 +Riven\ Turnbull=1 +River\ Bear=1 +River\ Merfolk=1 +River\ Serpent=1 +River's\ Grasp=1 +Riverfall\ Mimic=1 +Riverwheel\ Aerialists=1 +Rix\ Maadi\ Guildmage=1 +Rix\ Maadi,\ Dungeon\ Palace=1 +Roar\ of\ Challenge=1 +Roar\ of\ Reclamation=1 +Roar\ of\ the\ Wurm=1 +Roaring\ Primadox=1 +Roaring\ Slagwurm=1 +Robe\ of\ Mirrors=1 +Roc\ Egg=1 +Roc\ of\ Kher\ Ridges=1 +Rock\ Badger=1 +Rock\ Jockey=1 +Rock\ Slide=1 +Rockcaster\ Platoon=1 +Rockslide\ Ambush=1 +Rocky\ Tar\ Pit=1 +Rod\ of\ Ruin=1 +Rofellos,\ Llanowar\ Emissary=1 +Rogue\ Kavu=1 +Rogue's\ Gloves=1 +Rogue's\ Passage=1 +Roil\ Elemental=1 +Roil\ Spout=1 +Roil's\ Retribution=1 +Roiling\ Horror=1 +Roiling\ Terrain=1 +Roiling\ Waters=1 +Roilmage's\ Trick=1 +Rollick\ of\ Abandon=1 +Rolling\ Spoil=1 +Rolling\ Stones=1 +Rolling\ Temblor=1 +Rolling\ Thunder=1 +Ronin\ Cavekeeper=1 +Ronin\ Cliffrider=1 +Ronin\ Houndmaster=1 +Ronin\ Warclub=1 +Ronom\ Hulk=1 +Ronom\ Unicorn=1 +Roofstalker\ Wight=1 +Rooftop\ Storm=1 +Root\ Greevil=1 +Root\ Out=1 +Root-Kin\ Ally=1 +Rootborn\ Defenses=1 +Rootbreaker\ Wurm=1 +Rootgrapple=1 +Rooting\ Kavu=1 +Rootrunner=1 +Roots=1 +Rootwalla=1 +Rootwater\ Alligator=1 +Rootwater\ Commando=1 +Rootwater\ Depths=1 +Rootwater\ Diver=1 +Rootwater\ Hunter=1 +Rootwater\ Matriarch=1 +Rootwater\ Mystic=1 +Rorix\ Bladewing=1 +Rot\ Farm\ Skeleton=1 +Rot\ Shambler=1 +Roterothopter=1 +Rotfeaster\ Maggot=1 +Rotted\ Hulk=1 +Rotted\ Hystrix=1 +Rottenheart\ Ghoul=1 +Rotting\ Mastodon=1 +Rough\ //\ Tumble=1 +Roughshod\ Mentor=1 +Rouse\ the\ Mob=1 +Royal\ Assassin=1 +Royal\ Trooper=1 +Rubbleback\ Rhino=1 +Rubblebelt\ Maaka=1 +Rubblebelt\ Raiders=1 +Rubblehulk=1 +Rude\ Awakening=1 +Rugged\ Highlands=1 +Ruham\ Djinn=1 +Ruin\ in\ Their\ Wake=1 +Ruin\ Processor=1 +Ruination\ Guide=1 +Ruination\ Wurm=1 +Ruinous\ Gremlin=1 +Ruinous\ Path=1 +Ruins\ of\ Oran-Rief=1 +Ruins\ of\ Trokair=1 +Rukh\ Egg=1 +Rumbling\ Aftershocks=1 +Rumbling\ Baloth=1 +Rummaging\ Goblin=1 +Run\ Wild=1 +Runaway\ Carriage=1 +Rune\ of\ Protection:\ Lands=1 +Rune-Cervin\ Rider=1 +Runeboggle=1 +Runeclaw\ Bear=1 +Runed\ Servitor=1 +Runed\ Stalactite=1 +Runeflare\ Trap=1 +Runehorn\ Hellkite=1 +Runes\ of\ the\ Deus=1 +Runic\ Repetition=1 +Runner's\ Bane=1 +Rush\ of\ Adrenaline=1 +Rush\ of\ Battle=1 +Rush\ of\ Blood=1 +Rush\ of\ Ice=1 +Rush\ of\ Vitality=1 +Rushing-Tide\ Zubera=1 +Rushwood\ Herbalist=1 +Rust\ Elemental=1 +Rust\ Scarab=1 +Rusted\ Relic=1 +Rusted\ Sentinel=1 +Rustic\ Clachan=1 +Rustrazor\ Butcher=1 +Rustspore\ Ram=1 +Ruthless\ Cullblade=1 +Ruthless\ Deathfang=1 +Ruthless\ Disposal=1 +Ruthless\ Instincts=1 +Ruthless\ Invasion=1 +Ruthless\ Ripper=1 +Ruthless\ Sniper=1 +Ryusei,\ the\ Falling\ Star=1 +Saberclaw\ Golem=1 +Sabertooth\ Alley\ Cat=1 +Sabertooth\ Outrider=1 +Sabretooth\ Tiger=1 +Sacellum\ Archers=1 +Sacellum\ Godspeaker=1 +Sachi,\ Daughter\ of\ Seshiro=1 +Sacred\ Armory=1 +Sacred\ Boon=1 +Sacred\ Cat=1 +Sacred\ Excavation=1 +Sacred\ Ground=1 +Sacred\ Nectar=1 +Sacred\ Prey=1 +Sacred\ Rites=1 +Sacred\ Wolf=1 +Saddleback\ Lagac=1 +Sadistic\ Augermage=1 +Safe\ Haven=1 +Safe\ Passage=1 +Safeguard=1 +Safehold\ Duo=1 +Safehold\ Sentry=1 +Safewright\ Quest=1 +Sage\ Aven=1 +Sage\ of\ Epityr=1 +Sage\ of\ Fables=1 +Sage\ of\ Lat-Nam=1 +Sage\ of\ Shaila's\ Claim=1 +Sage\ of\ the\ Inward\ Eye=1 +Sage\ Owl=1 +Sage-Eye\ Avengers=1 +Sage-Eye\ Harrier=1 +Sage's\ Row\ Denizen=1 +Sagu\ Archer=1 +Sagu\ Mauler=1 +Saheeli's\ Artistry=1 +Sakura-Tribe\ Springcaller=1 +Salivating\ Gremlins=1 +Salt\ Flats=1 +Salt\ Road\ Ambushers=1 +Salt\ Road\ Patrol=1 +Salt\ Road\ Quartermasters=1 +Saltblast=1 +Saltcrusted\ Steppe=1 +Saltfield\ Recluse=1 +Saltskitter=1 +Salvage\ Drone=1 +Salvage\ Scout=1 +Salvage\ Scuttler=1 +Salvage\ Slasher=1 +Salvage\ Titan=1 +Samite\ Archer=1 +Samite\ Blessing=1 +Samite\ Censer-Bearer=1 +Samite\ Healer=1 +Samite\ Pilgrim=1 +Samurai\ Enforcers=1 +Samurai\ of\ the\ Pale\ Curtain=1 +Sanctified\ Charge=1 +Sanctifier\ of\ Souls=1 +Sanctimony=1 +Sanctuary\ Cat=1 +Sanctum\ Custodian=1 +Sanctum\ Gargoyle=1 +Sanctum\ Guardian=1 +Sanctum\ Plowbeast=1 +Sandbar\ Crocodile=1 +Sandbar\ Merfolk=1 +Sandbar\ Serpent=1 +Sandblast=1 +Sandcrafter\ Mage=1 +Sands\ of\ Delirium=1 +Sandskin=1 +Sandsower=1 +Sandsteppe\ Citadel=1 +Sandsteppe\ Mastodon=1 +Sandsteppe\ Scavenger=1 +Sandstone\ Bridge=1 +Sandstone\ Deadfall=1 +Sandstone\ Warrior=1 +Sandwurm\ Convergence=1 +Sangrite\ Backlash=1 +Sangrite\ Surge=1 +Sangrophage=1 +Sanguimancy=1 +Sanguinary\ Mage=1 +Sanguine\ Guard=1 +Sanguine\ Praetor=1 +Sanitarium\ Skeleton=1 +Sanity\ Gnawers=1 +Sapphire\ Drake=1 +Saprazzan\ Outrigger=1 +Saprazzan\ Raider=1 +Sapseep\ Forest=1 +Sarcomancy=1 +Sarkhan's\ Rage=1 +Sarkhan's\ Triumph=1 +Sarpadian\ Empires,\ Vol.\ VII=1 +Saruli\ Gatekeepers=1 +Satyr\ Firedancer=1 +Satyr\ Grovedancer=1 +Satyr\ Hedonist=1 +Satyr\ Hoplite=1 +Satyr\ Nyx-Smith=1 +Satyr\ Piper=1 +Satyr\ Rambler=1 +Savage\ Conception=1 +Savage\ Gorilla=1 +Savage\ Knuckleblade=1 +Savage\ Lands=1 +Savage\ Offensive=1 +Savage\ Punch=1 +Savage\ Silhouette=1 +Savage\ Summoning=1 +Savage\ Surge=1 +Savage\ Thallid=1 +Savage\ Twister=1 +Savage\ Ventmaw=1 +Saving\ Grasp=1 +Sawtooth\ Loon=1 +Sawtooth\ Ogre=1 +Scab-Clan\ Giant=1 +Scab-Clan\ Mauler=1 +Scabland=1 +Scald=1 +Scalding\ Salamander=1 +Scaldkin=1 +Scale\ Blessing=1 +Scale\ of\ Chiss-Goria=1 +Scalebane's\ Elite=1 +Scaled\ Behemoth=1 +Scaled\ Hulk=1 +Scaleguard\ Sentinels=1 +Scalpelexis=1 +Scar=1 +Scarab\ Feast=1 +Scarblade\ Elite=1 +Scarecrow=1 +Scarland\ Thrinax=1 +Scarred\ Puma=1 +Scarred\ Vinebreeder=1 +Scars\ of\ the\ Veteran=1 +Scarscale\ Ritual=1 +Scathe\ Zombies=1 +Scatter\ Arc=1 +Scatter\ the\ Seeds=1 +Scatter\ to\ the\ Winds=1 +Scattering\ Stroke=1 +Scattershot=1 +Scavenged\ Weaponry=1 +Scavenger\ Drake=1 +Scavenger\ Folk=1 +Scavenging\ Ghoul=1 +Scent\ of\ Brine=1 +Scent\ of\ Ivy=1 +Scent\ of\ Jasmine=1 +Scent\ of\ Nightshade=1 +Scepter\ of\ Dominance=1 +Scepter\ of\ Empires=1 +Scepter\ of\ Insight=1 +Schismotivate=1 +Scholar\ of\ Athreos=1 +School\ of\ Piranha=1 +Scion\ of\ Glaciers=1 +Scion\ of\ the\ Ur-Dragon=1 +Scion\ of\ the\ Wild=1 +Scion\ of\ Ugin=1 +Scion\ of\ Vitu-Ghazi=1 +Scion\ Summoner=1 +Scorch\ the\ Fields=1 +Scorching\ Lava=1 +Scorching\ Missile=1 +Scorchwalker=1 +Scoria\ Wurm=1 +Scorned\ Villager=1 +Scornful\ Aether-Lich=1 +Scour=1 +Scour\ from\ Existence=1 +Scour\ the\ Laboratory=1 +Scourge\ Devil=1 +Scourge\ of\ Fleets=1 +Scourge\ of\ Geier\ Reach=1 +Scourge\ of\ Kher\ Ridges=1 +Scourge\ of\ Numai=1 +Scourge\ of\ Skola\ Vale=1 +Scourge\ of\ the\ Nobilis=1 +Scourge\ Wolf=1 +Scourgemark=1 +Scourglass=1 +Scouring\ Sands=1 +Scout\ the\ Borders=1 +Scouting\ Trek=1 +Scragnoth=1 +Scrambleverse=1 +Scrap=1 +Scrapbasket=1 +Scrapper\ Champion=1 +Scrapskin\ Drake=1 +Scrapyard\ Mongrel=1 +Scrapyard\ Salvo=1 +Screaming\ Fury=1 +Screaming\ Seahawk=1 +Screamreach\ Brawler=1 +Screams\ of\ the\ Damned=1 +Screeching\ Bat=1 +Screeching\ Buzzard=1 +Screeching\ Drake=1 +Screeching\ Griffin=1 +Screeching\ Harpy=1 +Screeching\ Skaab=1 +Screeching\ Sliver=1 +Scrib\ Nibblers=1 +Scribe\ of\ the\ Mindful=1 +Scrivener=1 +Scroll\ of\ Avacyn=1 +Scroll\ of\ Griselbrand=1 +Scroll\ of\ Origins=1 +Scroll\ Thief=1 +Scrounge=1 +Scrounging\ Bandar=1 +Scryb\ Sprites=1 +Scrying\ Glass=1 +Scute\ Mob=1 +Scuttlemutt=1 +Scuttling\ Death=1 +Scuttling\ Doom\ Engine=1 +Scuzzback\ Marauders=1 +Scuzzback\ Scrapper=1 +Scythe\ Leopard=1 +Scythe\ of\ the\ Wretched=1 +Scythe\ Tiger=1 +Sea\ Drake=1 +Sea\ Gate\ Loremaster=1 +Sea\ God's\ Revenge=1 +Sea\ Monster=1 +Sea\ Serpent=1 +Sea\ Snidd=1 +Sea\ Spirit=1 +Sea\ Sprite=1 +Seacoast\ Drake=1 +Seafloor\ Debris=1 +Seagraf\ Skaab=1 +Seal\ of\ Cleansing=1 +Seal\ of\ Doom=1 +Seal\ of\ Fire=1 +Seal\ of\ Primordium=1 +Seal\ of\ Strength=1 +Sealock\ Monster=1 +S?ance=1 +Search\ the\ City=1 +Search\ Warrant=1 +Searing\ Light=1 +Searing\ Meditation=1 +Searing\ Rays=1 +Searing\ Spear=1 +Searing\ Touch=1 +Seascape\ Aerialist=1 +Seaside\ Citadel=1 +Seaside\ Haven=1 +Seasinger=1 +Seasoned\ Marshal=1 +Second\ Guess=1 +Second\ Harvest=1 +Second\ Sight=1 +Second\ Thoughts=1 +Secret\ Plans=1 +Secret\ Salvage=1 +Secretkeeper=1 +Secrets\ of\ the\ Dead=1 +Security\ Blockade=1 +Sedge\ Scorpion=1 +Sedraxis\ Alchemist=1 +Sedraxis\ Specter=1 +See\ Beyond=1 +Seed\ Guardian=1 +Seed\ Spark=1 +Seedcradle\ Witch=1 +Seedguide\ Ash=1 +Seeds\ of\ Strength=1 +Seek\ the\ Horizon=1 +Seek\ the\ Wilds=1 +Seeker\ of\ Insight=1 +Seeker\ of\ the\ Way=1 +Seer's\ Lantern=1 +Seer's\ Sundial=1 +Seer's\ Vision=1 +Seething\ Pathblazer=1 +Segmented\ Krotiq=1 +Segmented\ Wurm=1 +Seismic\ Elemental=1 +Seismic\ Rupture=1 +Seismic\ Spike=1 +Seismic\ Stomp=1 +Seismic\ Strike=1 +Seize\ the\ Soul=1 +Sejiri\ Merfolk=1 +Select\ for\ Inspection=1 +Selective\ Memory=1 +Selesnya\ Charm=1 +Selesnya\ Cluestone=1 +Selesnya\ Evangel=1 +Selesnya\ Guildgate=1 +Selesnya\ Guildmage=1 +Selesnya\ Keyrune=1 +Selesnya\ Sagittars=1 +Selesnya\ Signet=1 +Self-Assembler=1 +Self-Inflicted\ Wound=1 +Selfless\ Cathar=1 +Selfless\ Exorcist=1 +Selkie\ Hedge-Mage=1 +Sell-Sword\ Brute=1 +Seller\ of\ Songbirds=1 +Send\ to\ Sleep=1 +Sengir\ Autocrat=1 +Sengir\ Nosferatu=1 +Sengir\ Vampire=1 +Senseless\ Rage=1 +Sensor\ Splicer=1 +Sentinel\ of\ the\ Eternal\ Watch=1 +Sentinel\ Spider=1 +Sentinels\ of\ Glen\ Elendra=1 +Sentry\ Oak=1 +Sentry\ of\ the\ Underworld=1 +Separatist\ Voidmage=1 +Septic\ Rats=1 +Sepulchral\ Primordial=1 +Sequestered\ Stash=1 +Seraph=1 +Seraph\ of\ the\ Masses=1 +Seraph\ of\ the\ Suns=1 +Seraph\ of\ the\ Sword=1 +Serendib\ Efreet=1 +Serendib\ Sorcerer=1 +Serene\ Remembrance=1 +Serene\ Steward=1 +Serene\ Sunset=1 +Serpent\ Skin=1 +Serpent\ Warrior=1 +Serpentine\ Basilisk=1 +Serpentine\ Kavu=1 +Serpentine\ Spike=1 +Serra\ Advocate=1 +Serra\ Angel=1 +Serra\ Aviary=1 +Serra\ Bestiary=1 +Serra\ Sphinx=1 +Serra\ Zealot=1 +Serra's\ Blessing=1 +Serra's\ Boon=1 +Serra's\ Embrace=1 +Serra's\ Hymn=1 +Serum\ Tank=1 +Servant\ of\ Nefarox=1 +Servant\ of\ the\ Scale=1 +Servant\ of\ Tymaret=1 +Servant\ of\ Volrath=1 +Servo\ Exhibition=1 +Servo\ Schematic=1 +Set\ Adrift=1 +Setessan\ Battle\ Priest=1 +Setessan\ Griffin=1 +Setessan\ Oathsworn=1 +Setessan\ Starbreaker=1 +Setessan\ Tactics=1 +Seton's\ Desire=1 +Seton's\ Scout=1 +Sever\ Soul=1 +Sever\ the\ Bloodline=1 +Severed\ Legion=1 +Sewn-Eye\ Drake=1 +Shackles=1 +Shade\ of\ Trokair=1 +Shade's\ Breath=1 +Shade's\ Form=1 +Shadow\ Alley\ Denizen=1 +Shadow\ Glider=1 +Shadow\ Guildmage=1 +Shadow\ Rider=1 +Shadow\ Slice=1 +Shadow\ Sliver=1 +Shadowbane=1 +Shadowblood\ Egg=1 +Shadowcloak\ Vampire=1 +Shadowmage\ Infiltrator=1 +Shadows\ of\ the\ Past=1 +Shadowstorm\ Vizier=1 +Shah\ of\ Naar\ Isle=1 +Shaleskin\ Plower=1 +Shaman\ of\ Spring=1 +Shaman\ of\ the\ Pack=1 +Shamble\ Back=1 +Shambleshark=1 +Shambling\ Attendants=1 +Shambling\ Ghoul=1 +Shambling\ Goblin=1 +Shambling\ Remains=1 +Shambling\ Strider=1 +Shanodin\ Dryads=1 +Shape\ Anew=1 +Shape\ of\ the\ Wiitigo=1 +Shape\ Stealer=1 +Shape\ the\ Sands=1 +Shaper\ Guildmage=1 +Shaper\ Parasite=1 +Shapeshifter=1 +Shapeshifter's\ Marrow=1 +Shard\ Convergence=1 +Shard\ of\ Broken\ Glass=1 +Shard\ Phoenix=1 +Shared\ Discovery=1 +Shared\ Fate=1 +Shared\ Trauma=1 +Shatter=1 +Shattered\ Angel=1 +Shattered\ Crypt=1 +Shattered\ Dreams=1 +Shattered\ Perception=1 +Shattering\ Blow=1 +Shatterskull\ Giant=1 +Shatterskull\ Recruit=1 +Shed\ Weakness=1 +Sheer\ Drop=1 +Shefet\ Monitor=1 +Shell\ of\ the\ Last\ Kappa=1 +Shell\ Skulkin=1 +Shelter=1 +Sheltered\ Aerie=1 +Sheltering\ Word=1 +Shepherd\ of\ the\ Lost=1 +Shield\ Bearer=1 +Shield\ Mate=1 +Shield\ of\ Duty\ and\ Reason=1 +Shield\ of\ the\ Ages=1 +Shield\ of\ the\ Avatar=1 +Shield\ of\ the\ Oversoul=1 +Shield\ of\ the\ Righteous=1 +Shield\ Wall=1 +Shielded\ Aether\ Thief=1 +Shielded\ Passage=1 +Shieldhide\ Dragon=1 +Shielding\ Plax=1 +Shieldmage\ Advocate=1 +Shieldmage\ Elder=1 +Shieldmate's\ Blessing=1 +Shields\ of\ Velis\ Vel=1 +Shifting\ Borders=1 +Shifting\ Loyalties=1 +Shifting\ Sky=1 +Shifting\ Wall=1 +Shimatsu\ the\ Bloodcloaked=1 +Shimian\ Specter=1 +Shimmering\ Barrier=1 +Shimmering\ Efreet=1 +Shimmering\ Grotto=1 +Shimmering\ Mirage=1 +Shimmering\ Wings=1 +Shimmerscale\ Drake=1 +Shinen\ of\ Fear's\ Chill=1 +Shinen\ of\ Flight's\ Wings=1 +Shinen\ of\ Stars'\ Light=1 +Shinewend=1 +Shipbreaker\ Kraken=1 +Shipwreck\ Moray=1 +Shipwreck\ Singer=1 +Shisato,\ Whispering\ Hunter=1 +Shiv's\ Embrace=1 +Shivan\ Dragon=1 +Shivan\ Emissary=1 +Shivan\ Hellkite=1 +Shivan\ Meteor=1 +Shivan\ Phoenix=1 +Shivan\ Raptor=1 +Shivan\ Sand-Mage=1 +Shivan\ Wumpus=1 +Shivan\ Wurm=1 +Shivan\ Zombie=1 +Shock=1 +Shockmaw\ Dragon=1 +Shore\ Snapper=1 +Shorecrasher\ Mimic=1 +Shoreline\ Raider=1 +Shoreline\ Salvager=1 +Shoulder\ to\ Shoulder=1 +Shower\ of\ Coals=1 +Shower\ of\ Sparks=1 +Showstopper=1 +Shrapnel\ Blast=1 +Shredding\ Winds=1 +Shreds\ of\ Sanity=1 +Shrewd\ Hatchling=1 +Shrewd\ Negotiation=1 +Shriek\ of\ Dread=1 +Shriekgeist=1 +Shriekhorn=1 +Shrieking\ Grotesque=1 +Shrike\ Harpy=1 +Shrill\ Howler=1 +Shrine\ of\ Boundless\ Growth=1 +Shrine\ of\ Limitless\ Power=1 +Shrine\ of\ Loyal\ Legions=1 +Shrine\ of\ Piercing\ Vision=1 +Shrink=1 +Shriveling\ Rot=1 +Shrouded\ Lore=1 +Shu\ Cavalry=1 +Shu\ Elite\ Companions=1 +Shu\ General=1 +Shuko=1 +Shunt=1 +Shuriken=1 +Shyft=1 +Sibilant\ Spirit=1 +Sibsig\ Icebreakers=1 +Sibsig\ Muckdraggers=1 +Sicken=1 +Sickening\ Dreams=1 +Sickle\ Ripper=1 +Sickleslicer=1 +Sideswipe=1 +Sidisi's\ Faithful=1 +Sidisi's\ Pet=1 +Siege\ Dragon=1 +Siege\ Mastodon=1 +Siege\ Modification=1 +Siege\ of\ Towers=1 +Siege\ Wurm=1 +Siegecraft=1 +Sift=1 +Sift\ Through\ Sands=1 +Sifter\ of\ Skulls=1 +Sigardian\ Priest=1 +Sight\ Beyond\ Sight=1 +Sight\ of\ the\ Scalelords=1 +Sighted-Caste\ Sorcerer=1 +Sightless\ Brawler=1 +Sigil\ Blessing=1 +Sigil\ of\ Distinction=1 +Sigil\ of\ the\ Nayan\ Gods=1 +Sigil\ of\ the\ New\ Dawn=1 +Sigil\ of\ Valor=1 +Sigil\ Tracer=1 +Sigiled\ Behemoth=1 +Sigiled\ Paladin=1 +Sigiled\ Skink=1 +Sigiled\ Starfish=1 +Sign\ in\ Blood=1 +Signal\ the\ Clans=1 +Silburlind\ Snapper=1 +Silence=1 +Silence\ the\ Believers=1 +Silent\ Artisan=1 +Silent\ Attendant=1 +Silent\ Departure=1 +Silent\ Observer=1 +Silent\ Sentinel=1 +Silent\ Skimmer=1 +Silent\ Specter=1 +Silent-Chant\ Zubera=1 +Silhana\ Starfletcher=1 +Silk\ Net=1 +Silkbind\ Faerie=1 +Silkenfist\ Fighter=1 +Silklash\ Spider=1 +Silkweaver\ Elite=1 +Silkwing\ Scout=1 +Silkwrap=1 +Silt\ Crawler=1 +Silumgar\ Assassin=1 +Silumgar\ Butcher=1 +Silumgar\ Monument=1 +Silumgar\ Sorcerer=1 +Silumgar\ Spell-Eater=1 +Silumgar's\ Scorn=1 +Silver\ Knight=1 +Silver\ Myr=1 +Silver\ Wyvern=1 +Silver-Inlaid\ Dagger=1 +Silverback\ Ape=1 +Silvercoat\ Lion=1 +Silverfur\ Partisan=1 +Silvergill\ Douser=1 +Silverskin\ Armor=1 +Silverstorm\ Samurai=1 +Silverstrike=1 +Silvos,\ Rogue\ Elemental=1 +Simian\ Brawler=1 +Simian\ Grunts=1 +Simic\ Cluestone=1 +Simic\ Fluxmage=1 +Simic\ Guildgate=1 +Simic\ Guildmage=1 +Simic\ Initiate=1 +Simic\ Keyrune=1 +Simic\ Manipulator=1 +Simic\ Signet=1 +Simic\ Sky\ Swallower=1 +Simplify=1 +Sin\ Collector=1 +Singe=1 +Singe-Mind\ Ogre=1 +Singing\ Bell\ Strike=1 +Singing\ Tree=1 +Sinister\ Concoction=1 +Sinister\ Possession=1 +Sinking\ Feeling=1 +Sins\ of\ the\ Past=1 +Sinstriker's\ Will=1 +Sir\ Shandlar\ of\ Eberyn=1 +Sire\ of\ the\ Storm=1 +Siren\ of\ the\ Fanged\ Coast=1 +Siren\ of\ the\ Silent\ Song=1 +Siren\ Song\ Lyre=1 +Sisay's\ Ingenuity=1 +Sisay's\ Ring=1 +Sisters\ of\ Stone\ Death=1 +Sivitri\ Scarzam=1 +Sixth\ Sense=1 +Sizzle=1 +Skaab\ Goliath=1 +Skarrg\ Goliath=1 +Skarrg\ Guildmage=1 +Skarrg,\ the\ Rage\ Pits=1 +Skarrgan\ Firebird=1 +Skarrgan\ Skybreaker=1 +Skeletal\ Changeling=1 +Skeletal\ Kathari=1 +Skeletal\ Vampire=1 +Skeleton\ Key=1 +Skeleton\ Scavengers=1 +Skeleton\ Shard=1 +Skeletonize=1 +Skill\ Borrower=1 +Skin\ Invasion=1 +Skinbrand\ Goblin=1 +Skinrender=1 +Skinshifter=1 +Skinwing=1 +Skirge\ Familiar=1 +Skirk\ Alarmist=1 +Skirk\ Drill\ Sergeant=1 +Skirk\ Marauder=1 +Skirk\ Prospector=1 +Skirk\ Ridge\ Exhumer=1 +Skirk\ Shaman=1 +Skirk\ Volcanist=1 +Skirsdag\ Cultist=1 +Skirsdag\ High\ Priest=1 +Skirsdag\ Supplicant=1 +Skittering\ Invasion=1 +Skittering\ Monstrosity=1 +Skittering\ Skirge=1 +Skitterskin=1 +Skittish\ Kavu=1 +Skittish\ Valesk=1 +Skizzik\ Surger=1 +Skulking\ Fugitive=1 +Skulking\ Ghost=1 +Skulking\ Knight=1 +Skull\ Catapult=1 +Skull\ Collector=1 +Skull\ of\ Orm=1 +Skull\ Rend=1 +Skullcage=1 +Skullmane\ Baku=1 +Skullmead\ Cauldron=1 +Skullmulcher=1 +Skullsnatcher=1 +Skulltap=1 +Sky\ Ruin\ Drake=1 +Sky\ Scourer=1 +Sky\ Skiff=1 +Sky\ Spirit=1 +Sky\ Swallower=1 +Sky\ Weaver=1 +Skybind=1 +Skyblinder\ Staff=1 +Skyclaw\ Thrash=1 +Skycloud\ Egg=1 +Skyfire\ Kirin=1 +Skygames=1 +Skyhunter\ Cub=1 +Skyhunter\ Patrol=1 +Skyhunter\ Prowler=1 +Skyhunter\ Skirmisher=1 +Skyknight\ Legionnaire=1 +Skyline\ Cascade=1 +Skymark\ Roc=1 +Skyraker\ Giant=1 +Skyreach\ Manta=1 +Skyreaping=1 +Skyrider\ Elf=1 +Skyscribing=1 +Skyshaper=1 +Skyship\ Plunderer=1 +Skyship\ Stalker=1 +Skyshooter=1 +Skyshroud\ Archer=1 +Skyshroud\ Blessing=1 +Skyshroud\ Elf=1 +Skyshroud\ Falcon=1 +Skyshroud\ Forest=1 +Skyshroud\ Sentinel=1 +Skyshroud\ Troll=1 +Skyshroud\ Troopers=1 +Skysnare\ Spider=1 +Skyspear\ Cavalry=1 +Skyswirl\ Harrier=1 +Skywatcher\ Adept=1 +Skywhaler's\ Shot=1 +Skywinder\ Drake=1 +Skywing\ Aven=1 +Skywise\ Teachings=1 +Slab\ Hammer=1 +Slag\ Fiend=1 +Slagwurm\ Armor=1 +Slash\ Panther=1 +Slate\ Street\ Ruffian=1 +Slaughter=1 +Slaughter\ Drone=1 +Slaughterhorn=1 +Slave\ of\ Bolas=1 +Slavering\ Nulls=1 +Slay=1 +Slayer\ of\ the\ Wicked=1 +Slayer's\ Cleaver=1 +Slayer's\ Plate=1 +Sleep=1 +Sleep\ Paralysis=1 +Sleeper\ Agent=1 +Sleeper's\ Guile=1 +Sleeper's\ Robe=1 +Sleeping\ Potion=1 +Slice\ and\ Dice=1 +Slime\ Molding=1 +Slimy\ Kavu=1 +Slingbow\ Trap=1 +Slingshot\ Goblin=1 +Slinking\ Giant=1 +Slinking\ Serpent=1 +Slip\ Through\ Space=1 +Slipstream\ Eel=1 +Slipstream\ Serpent=1 +Slith\ Ascendant=1 +Slith\ Bloodletter=1 +Slith\ Firewalker=1 +Slith\ Predator=1 +Slith\ Strider=1 +Slither\ Blade=1 +Slitherhead=1 +Slithering\ Shade=1 +Slithery\ Stalker=1 +Sliver\ Construct=1 +Sliversmith=1 +Slobad,\ Goblin\ Tinkerer=1 +Sludge\ Crawler=1 +Sludge\ Strider=1 +Sluggishness=1 +Sluiceway\ Scorpion=1 +Slum\ Reaper=1 +Slumbering\ Tora=1 +Sly\ Requisitioner=1 +Smash=1 +Smash\ to\ Smithereens=1 +Smelt=1 +Smite=1 +Smite\ the\ Monstrous=1 +Smoke\ Teller=1 +Smokebraider=1 +Smokespew\ Invoker=1 +Smokestack=1 +Smolder\ Initiate=1 +Smoldering\ Butcher=1 +Smoldering\ Efreet=1 +Smoldering\ Spires=1 +Smoldering\ Werewolf=1 +Smothering\ Abomination=1 +Snake\ Cult\ Initiation=1 +Snake\ of\ the\ Golden\ Grove=1 +Snake\ Umbra=1 +Snapback=1 +Snapping\ Creeper=1 +Snapping\ Drake=1 +Snapping\ Gnarlid=1 +Snapping\ Thragg=1 +Snapsail\ Glider=1 +Snare\ Thopter=1 +Snarling\ Undorak=1 +Sneaky\ Homunculus=1 +Snorting\ Gahr=1 +Snow\ Fortress=1 +Snowhorn\ Rider=1 +Soaring\ Hope=1 +Soaring\ Seacliff=1 +Soilshaper=1 +Sokenzan\ Renegade=1 +Sokenzan\ Spellblade=1 +Sol\ Grail=1 +Sol'kanar\ the\ Swamp\ King=1 +Solar\ Blast=1 +Solar\ Tide=1 +Solarion=1 +Soldevi\ Digger=1 +Soldevi\ Golem=1 +Soldevi\ Machinist=1 +Soldevi\ Simulacrum=1 +Soldier\ of\ the\ Pantheon=1 +Solemn\ Offering=1 +Solemn\ Recruit=1 +Solfatara=1 +Solidarity=1 +Solidarity\ of\ Heroes=1 +Solitary\ Hunter=1 +Soltari\ Champion=1 +Soltari\ Crusader=1 +Soltari\ Emissary=1 +Soltari\ Lancer=1 +Soltari\ Monk=1 +Soltari\ Priest=1 +Soltari\ Trooper=1 +Somber\ Hoverguard=1 +Somberwald\ Alpha=1 +Somberwald\ Stag=1 +Somnomancer=1 +Somnophore=1 +Song\ of\ Blood=1 +Song\ of\ Serenity=1 +Soot\ Imp=1 +Sootstoke\ Kindler=1 +Sootwalkers=1 +Sophic\ Centaur=1 +Soratami\ Cloud\ Chariot=1 +Soratami\ Mindsweeper=1 +Soratami\ Mirror-Guard=1 +Soratami\ Mirror-Mage=1 +Soratami\ Rainshaper=1 +Soratami\ Savant=1 +Soratami\ Seer=1 +Sorcerer's\ Strongbox=1 +Sorin's\ Thirst=1 +Sorin's\ Vengeance=1 +Sorrow's\ Path=1 +Sosuke,\ Son\ of\ Seshiro=1 +Sosuke's\ Summons=1 +Soul\ Bleed=1 +Soul\ Burn=1 +Soul\ Channeling=1 +Soul\ Collector=1 +Soul\ Conduit=1 +Soul\ Exchange=1 +Soul\ Feast=1 +Soul\ Kiss=1 +Soul\ Net=1 +Soul\ Nova=1 +Soul\ of\ Magma=1 +Soul\ Parry=1 +Soul\ Ransom=1 +Soul\ Reap=1 +Soul\ Scourge=1 +Soul\ Seizer=1 +Soul\ Separator=1 +Soul\ Shepherd=1 +Soul\ Shred=1 +Soul\ Stair\ Expedition=1 +Soul\ Strings=1 +Soul\ Summons=1 +Soul\ Swallower=1 +Soul\ Tithe=1 +Soul's\ Fire=1 +Soul's\ Grace=1 +Soul's\ Majesty=1 +Soulblade\ Djinn=1 +Soulblast=1 +Soulbound\ Guardians=1 +Soulbright\ Flamekin=1 +Soulcage\ Fiend=1 +Soulcatcher=1 +Souldrinker=1 +Soulgorger\ Orgg=1 +Soulless\ Revival=1 +Soulmender=1 +Soulquake=1 +Souls\ of\ the\ Faultless=1 +Soulscour=1 +Soulshriek=1 +Soulstinger=1 +Soulsurge\ Elemental=1 +Soulsworn\ Jury=1 +Soulsworn\ Spirit=1 +Soultether\ Golem=1 +Sound\ the\ Call=1 +Sowing\ Salt=1 +Spare\ from\ Evil=1 +Spark\ Jolt=1 +Spark\ Mage=1 +Spark\ of\ Creativity=1 +Spark\ Spray=1 +Spark\ Trooper=1 +Sparkcaster=1 +Sparkmage\ Apprentice=1 +Sparkmage's\ Gambit=1 +Sparkspitter=1 +Sparring\ Collar=1 +Sparring\ Mummy=1 +Spatial\ Contortion=1 +Spawn\ of\ Thraxes=1 +Spawnbinder\ Mage=1 +Spawnbroker=1 +Spawning\ Bed=1 +Spawning\ Breath=1 +Spawning\ Pit=1 +Spawning\ Pool=1 +Spawnsire\ of\ Ulamog=1 +Spawnwrithe=1 +Spear\ of\ Heliod=1 +Spearbreaker\ Behemoth=1 +Spearpoint\ Oread=1 +Species\ Gorger=1 +Specter's\ Shroud=1 +Spectra\ Ward=1 +Spectral\ Bears=1 +Spectral\ Force=1 +Spectral\ Gateguards=1 +Spectral\ Reserves=1 +Spectral\ Rider=1 +Spectral\ Searchlight=1 +Spectral\ Shepherd=1 +Spectral\ Shield=1 +Spectral\ Shift=1 +Spectral\ Sliver=1 +Speedway\ Fanatic=1 +Spell\ Blast=1 +Spell\ Burst=1 +Spell\ Contortion=1 +Spell\ Rupture=1 +Spell\ Shrivel=1 +Spell\ Snip=1 +Spell\ Syphon=1 +Spellbinder=1 +Spellbook=1 +Spellbound\ Dragon=1 +Spellgorger\ Barbarian=1 +Spellheart\ Chimera=1 +Spelltithe\ Enforcer=1 +Spellweaver\ Helix=1 +Spellwild\ Ouphe=1 +Sphere\ of\ Law=1 +Sphere\ of\ Purity=1 +Sphere\ of\ the\ Suns=1 +Sphere\ of\ Truth=1 +Sphinx\ of\ Jwar\ Isle=1 +Sphinx\ of\ Magosi=1 +Sphinx\ of\ the\ Chimes=1 +Sphinx\ of\ Uthuun=1 +Sphinx\ Summoner=1 +Sphinx's\ Disciple=1 +Spider\ Climb=1 +Spider\ Spawning=1 +Spidersilk\ Net=1 +Spidery\ Grasp=1 +Spike\ Breeder=1 +Spike\ Cannibal=1 +Spike\ Colony=1 +Spike\ Drone=1 +Spike\ Hatcher=1 +Spike\ Jester=1 +Spike\ Rogue=1 +Spike\ Tiller=1 +Spike\ Worker=1 +Spikeshot\ Elder=1 +Spikeshot\ Goblin=1 +Spiketail\ Drakeling=1 +Spiketail\ Hatchling=1 +Spin\ Engine=1 +Spin\ into\ Myth=1 +Spinal\ Graft=1 +Spinal\ Parasite=1 +Spinal\ Villain=1 +Spincrusher=1 +Spindrift\ Drake=1 +Spinebiter=1 +Spined\ Fluke=1 +Spined\ Sliver=1 +Spined\ Thopter=1 +Spined\ Wurm=1 +Spineless\ Thug=1 +Spiny\ Starfish=1 +Spiraling\ Duelist=1 +Spiraling\ Embers=1 +Spire\ Barrage=1 +Spire\ Monitor=1 +Spire\ Owl=1 +Spire\ Patrol=1 +Spire\ Serpent=1 +Spire\ Tracer=1 +Spireside\ Infiltrator=1 +Spirespine=1 +Spirit\ Away=1 +Spirit\ Bonds=1 +Spirit\ Cairn=1 +Spirit\ en-Dal=1 +Spirit\ en-Kor=1 +Spirit\ Flare=1 +Spirit\ Loop=1 +Spirit\ Mirror=1 +Spirit\ of\ the\ Hunt=1 +Spirit\ Shackle=1 +Spirit\ Weaver=1 +Spiritmonger=1 +Spiritualize=1 +Spite\ //\ Malice=1 +Spite\ of\ Mogis=1 +Spitebellows=1 +Spiteflame\ Witch=1 +Spiteful\ Blow=1 +Spiteful\ Motives=1 +Spiteful\ Returned=1 +Spiteful\ Shadows=1 +Spitting\ Earth=1 +Spitting\ Hydra=1 +Spitting\ Sliver=1 +Spitting\ Spider=1 +Splatter\ Thug=1 +Splendid\ Agony=1 +Splinter=1 +Splinterfright=1 +Split-Tail\ Miko=1 +Splitting\ Headache=1 +Splitting\ Slime=1 +Spoils\ of\ Victory=1 +Spontaneous\ Artist=1 +Spontaneous\ Combustion=1 +Spontaneous\ Mutation=1 +Spore\ Burst=1 +Spore\ Cloud=1 +Spore\ Flower=1 +Sporeback\ Troll=1 +Sporesower\ Thallid=1 +Sporoloth\ Ancient=1 +Spotted\ Griffin=1 +Spread\ the\ Sickness=1 +Spreading\ Algae=1 +Spreading\ Flames=1 +Spring\ //\ Mind=1 +Springsage\ Ritual=1 +Sprinting\ Warbrute=1 +Sprite\ Noble=1 +Sprout=1 +Sprouting\ Thrinax=1 +Spurnmage\ Advocate=1 +Squall=1 +Squall\ Drifter=1 +Squall\ Line=1 +Squeaking\ Pie\ Grubfellows=1 +Squeaking\ Pie\ Sneak=1 +Squealing\ Devil=1 +Squee's\ Embrace=1 +Squee's\ Revenge=1 +Squee's\ Toy=1 +Squelching\ Leeches=1 +Squirming\ Mass=1 +Stab\ Wound=1 +Staff\ of\ the\ Death\ Magus=1 +Staff\ of\ the\ Flame\ Magus=1 +Staff\ of\ the\ Mind\ Magus=1 +Staff\ of\ the\ Sun\ Magus=1 +Staff\ of\ the\ Wild\ Magus=1 +Staff\ of\ Zegon=1 +Staggershock=1 +Stain\ the\ Mind=1 +Stalker\ Hag=1 +Stalking\ Drone=1 +Stalking\ Stones=1 +Stalking\ Tiger=1 +Stalking\ Yeti=1 +Stallion\ of\ Ashmouth=1 +Stalwart\ Shield-Bearers=1 +Stampede=1 +Stampeding\ Elk\ Herd=1 +Stampeding\ Rhino=1 +Stampeding\ Serow=1 +Stampeding\ Wildebeests=1 +Stand\ Firm=1 +Stand\ or\ Fall=1 +Stand\ Together=1 +Standardize=1 +Standing\ Troops=1 +Stangg=1 +Starlight=1 +Starlight\ Invoker=1 +Starlit\ Sanctum=1 +Starstorm=1 +Start\ //\ Finish=1 +Start\ Your\ Engines=1 +Starved\ Rusalka=1 +Stasis\ Cell=1 +Statute\ of\ Denial=1 +Staunch\ Defenders=1 +Staunch-Hearted\ Warrior=1 +Stave\ Off=1 +Steadfast\ Cathar=1 +Steadfast\ Guard=1 +Steady\ Progress=1 +Steal\ Artifact=1 +Stealer\ of\ Secrets=1 +Steam\ Augury=1 +Steam\ Blast=1 +Steam\ Catapult=1 +Steam\ Spitter=1 +Steam\ Vines=1 +Steamclaw=1 +Steamcore\ Weird=1 +Steel\ Golem=1 +Steel\ Leaf\ Paladin=1 +Steel\ Sabotage=1 +Steel\ Wall=1 +Steelclad\ Serpent=1 +Steelform\ Sliver=1 +Steeling\ Stance=1 +Steelshaper\ Apprentice=1 +Steeple\ Roc=1 +Stenchskipper=1 +Stensia\ Banquet=1 +Stensia\ Bloodhall=1 +Stensia\ Innkeeper=1 +Stensia\ Masquerade=1 +Steppe\ Glider=1 +Stern\ Constable=1 +Stern\ Mentor=1 +Stern\ Proctor=1 +Steward\ of\ Valeron=1 +Stingerfling\ Spider=1 +Stinging\ Barrier=1 +Stinging\ Licid=1 +Stinging\ Shot=1 +Stingmoggie=1 +Stingscourger=1 +Stinkdrinker\ Daredevil=1 +Stir\ the\ Grave=1 +Stir\ the\ Pride=1 +Stir\ the\ Sands=1 +Stitched\ Drake=1 +Stitched\ Mangler=1 +Stitcher's\ Apprentice=1 +Stitcher's\ Graft=1 +Stitchwing\ Skaab=1 +Stoic\ Angel=1 +Stoic\ Builder=1 +Stoic\ Champion=1 +Stoic\ Ephemera=1 +Stoic\ Rebuttal=1 +Stoke\ the\ Flames=1 +Stolen\ Identity=1 +Stomp\ and\ Howl=1 +Stomper\ Cub=1 +Stomping\ Slabs=1 +Stone\ Calendar=1 +Stone\ Giant=1 +Stone\ Golem=1 +Stone\ Haven\ Medic=1 +Stone\ Kavu=1 +Stone\ Quarry=1 +Stone\ Spirit=1 +Stone-Tongue\ Basilisk=1 +Stonebrow,\ Krosan\ Hero=1 +Stonecloaker=1 +Stoneforge\ Acolyte=1 +Stonefury=1 +Stonehands=1 +Stoneshaker\ Shaman=1 +Stoneshock\ Giant=1 +Stonewise\ Fortifier=1 +Stonewood\ Invocation=1 +Stonewood\ Invoker=1 +Stonework\ Puma=1 +Stonewright=1 +Stonybrook\ Angler=1 +Storm\ Crow=1 +Storm\ Entity=1 +Storm\ Front=1 +Storm\ Shaman=1 +Stormbind=1 +Stormblood\ Berserker=1 +Stormcaller\ of\ Keranos=1 +Stormcaller's\ Boon=1 +Stormchaser\ Chimera=1 +Stormcloud\ Djinn=1 +Stormcrag\ Elemental=1 +Stormfront\ Pegasus=1 +Stormrider\ Rig=1 +Stormrider\ Spirit=1 +Stormscale\ Anarch=1 +Stormscape\ Apprentice=1 +Stormscape\ Battlemage=1 +Stormscape\ Familiar=1 +Stormtide\ Leviathan=1 +Stormwing\ Dragon=1 +Strafe=1 +Strands\ of\ Night=1 +Strands\ of\ Undeath=1 +Strandwalker=1 +Strange\ Augmentation=1 +Strange\ Inversion=1 +Strangling\ Soot=1 +Strata\ Scythe=1 +Stratadon=1 +Stratus\ Dancer=1 +Stratus\ Walk=1 +Stream\ Hopper=1 +Stream\ of\ Consciousness=1 +Stream\ of\ Life=1 +Stream\ of\ Unconsciousness=1 +Streambed\ Aquitects=1 +Street\ Savvy=1 +Street\ Spasm=1 +Street\ Sweeper=1 +Strength\ in\ Numbers=1 +Strength\ of\ Arms=1 +Strength\ of\ Isolation=1 +Strength\ of\ Night=1 +Strength\ of\ the\ Tajuru=1 +Strength\ of\ Unity=1 +Strider\ Harness=1 +Strip\ Bare=1 +Striped\ Bears=1 +Stroke\ of\ Genius=1 +Stromkirk\ Condemned=1 +Stromkirk\ Mentor=1 +Stromkirk\ Noble=1 +Stromkirk\ Occultist=1 +Stromkirk\ Patrol=1 +Strongarm\ Monk=1 +Stronghold\ Discipline=1 +Stronghold\ Overseer=1 +Stronghold\ Rats=1 +Stronghold\ Taskmaster=1 +Structural\ Collapse=1 +Structural\ Distortion=1 +Struggle\ for\ Sanity=1 +Student\ of\ Ojutai=1 +Stuffy\ Doll=1 +Stun=1 +Stun\ Sniper=1 +Stupefying\ Touch=1 +Sturdy\ Hatchling=1 +Sturmgeist=1 +Stymied\ Hopes=1 +Su-Chi=1 +Subjugator\ Angel=1 +Submerged\ Boneyard=1 +Subterranean\ Scout=1 +Subterranean\ Shambler=1 +Subtle\ Strike=1 +Succumb\ to\ Temptation=1 +Sudden\ Death=1 +Sudden\ Disappearance=1 +Sudden\ Impact=1 +Sudden\ Storm=1 +Sudden\ Strength=1 +Suffer\ the\ Past=1 +Suicidal\ Charge=1 +Sulam\ Djinn=1 +Sulfurous\ Blast=1 +Sultai\ Ascendancy=1 +Sultai\ Banner=1 +Sultai\ Charm=1 +Sultai\ Flayer=1 +Sultai\ Runemark=1 +Sultai\ Scavenger=1 +Sultai\ Skullkeeper=1 +Sultai\ Soothsayer=1 +Summit\ Apes=1 +Summit\ Prowler=1 +Summon\ the\ School=1 +Summoner's\ Bane=1 +Summoning\ Trap=1 +Sun\ Clasp=1 +Sun's\ Bounty=1 +Sunastian\ Falconer=1 +Sunbeam\ Spellbomb=1 +Sunblade\ Elf=1 +Sunblast\ Angel=1 +Sunbond=1 +Sunbringer's\ Touch=1 +Suncrusher=1 +Sunder\ from\ Within=1 +Sundering\ Growth=1 +Sundering\ Vitae=1 +Sunflare\ Shaman=1 +Sunforger=1 +Sungrace\ Pegasus=1 +Sungrass\ Egg=1 +Sunhome\ Enforcer=1 +Sunhome\ Guildmage=1 +Sunhome,\ Fortress\ of\ the\ Legion=1 +Sunken\ City=1 +Sunken\ Hope=1 +Sunrise\ Sovereign=1 +Sunscape\ Apprentice=1 +Sunscape\ Battlemage=1 +Sunscorched\ Desert=1 +Sunseed\ Nurturer=1 +Sunspear\ Shikari=1 +Sunspire\ Griffin=1 +Sunspring\ Expedition=1 +Sunstrike\ Legionnaire=1 +Suntail\ Hawk=1 +Suntouched\ Myr=1 +Supernatural\ Stamina=1 +Supply\ //\ Demand=1 +Supply\ Caravan=1 +Supply-Line\ Cranes=1 +Suppress=1 +Suppression\ Bonds=1 +Supreme\ Exemplar=1 +Suq'Ata\ Assassin=1 +Suq'Ata\ Lancer=1 +Sure\ Strike=1 +Surestrike\ Trident=1 +Surge\ Node=1 +Surge\ of\ Righteousness=1 +Surge\ of\ Thoughtweft=1 +Surge\ of\ Zeal=1 +Surgespanner=1 +Surging\ Dementia=1 +Surging\ Flame=1 +Surging\ Might=1 +Surging\ Sentinels=1 +Surprise\ Deployment=1 +Surrak,\ the\ Hunt\ Caller=1 +Surrakar\ Banisher=1 +Surrakar\ Marauder=1 +Surrakar\ Spellblade=1 +Surreal\ Memoir=1 +Surveilling\ Sprite=1 +Survey\ the\ Wreckage=1 +Survival\ Cache=1 +Survive\ the\ Night=1 +Survivor\ of\ the\ Unseen=1 +Suspension\ Field=1 +Suture\ Spirit=1 +Sutured\ Ghoul=1 +Svogthos,\ the\ Restless\ Tomb=1 +Swallowing\ Plague=1 +Swamp=1 +Swamp\ Mosquito=1 +Swarm\ of\ Bloodflies=1 +Swarm\ of\ Rats=1 +Swarm\ Surge=1 +Swarmborn\ Giant=1 +Swat=1 +Sway\ of\ Illusion=1 +Sway\ of\ the\ Stars=1 +Sweatworks\ Brawler=1 +Sweep\ Away=1 +Swell\ of\ Courage=1 +Swell\ of\ Growth=1 +Swerve=1 +Swift\ Justice=1 +Swift\ Kick=1 +Swift\ Maneuver=1 +Swift\ Reckoning=1 +Swift\ Silence=1 +Swift\ Spinner=1 +Swift\ Warkite=1 +Swirl\ the\ Mists=1 +Swirling\ Spriggan=1 +Switcheroo=1 +Sword\ of\ the\ Paruns=1 +Sword\ of\ Vengeance=1 +Swordwise\ Centaur=1 +Sygg,\ River\ Guide=1 +Sylvan\ Basilisk=1 +Sylvan\ Bounty=1 +Sylvan\ Caryatid=1 +Sylvan\ Echoes=1 +Sylvan\ Messenger=1 +Sylvan\ Might=1 +Sylvan\ Primordial=1 +Sylvan\ Ranger=1 +Sylvan\ Scrying=1 +Sylvok\ Explorer=1 +Sylvok\ Replica=1 +Symbiosis=1 +Symbiotic\ Beast=1 +Symbiotic\ Deployment=1 +Symbiotic\ Elf=1 +Symbiotic\ Wurm=1 +Symbol\ of\ Unsummoning=1 +Synchronized\ Strike=1 +Synchronous\ Sliver=1 +Syncopate=1 +Syndic\ of\ Tithes=1 +Syndicate\ Enforcer=1 +Synod\ Artificer=1 +Synod\ Centurion=1 +Synod\ Sanctum=1 +Syphon\ Life=1 +Tablet\ of\ Epityr=1 +Tablet\ of\ the\ Guilds=1 +Tah-Crop\ Elite=1 +Tah-Crop\ Skirmisher=1 +Tahngarth's\ Glare=1 +Tahngarth's\ Rage=1 +Taigam's\ Scheming=1 +Taigam's\ Strike=1 +Tail\ Slash=1 +Tainted\ Remedy=1 +Tainted\ Strike=1 +Taj-Nar\ Swordsmith=1 +Tajic,\ Blade\ of\ the\ Legion=1 +Tajuru\ Archer=1 +Tajuru\ Beastmaster=1 +Tajuru\ Pathwarden=1 +Tajuru\ Preserver=1 +Tajuru\ Stalwart=1 +Tajuru\ Warcaller=1 +Take\ Down=1 +Take\ into\ Custody=1 +Take\ Inventory=1 +Take\ Possession=1 +Take\ Up\ Arms=1 +Takeno,\ Samurai\ General=1 +Takeno's\ Cavalry=1 +Takenuma\ Bleeder=1 +Takklemaggot=1 +Talara's\ Bane=1 +Talas\ Researcher=1 +Talent\ of\ the\ Telepath=1 +Talisman\ of\ Impulse=1 +Talisman\ of\ Unity=1 +Talon\ of\ Pain=1 +Talon\ Trooper=1 +Talonrend=1 +Talrand's\ Invocation=1 +Tamiyo's\ Journal=1 +Tandem\ Lookout=1 +Tandem\ Tactics=1 +Tangle\ Angler=1 +Tangle\ Asp=1 +Tangle\ Golem=1 +Tangle\ Mantis=1 +Tangle\ Spider=1 +Tanglebloom=1 +Tangleclaw\ Werewolf=1 +Tangleroot=1 +Tapestry\ of\ the\ Ages=1 +Tar\ Fiend=1 +Tar\ Pit\ Warrior=1 +Tar\ Pitcher=1 +Tar\ Snare=1 +Tarox\ Bladewing=1 +Tasigur's\ Cruelty=1 +Tasseled\ Dromedary=1 +Taste\ for\ Mayhem=1 +Tatsumasa,\ the\ Dragon's\ Fang=1 +Tattered\ Drake=1 +Tattered\ Haunter=1 +Tatterkite=1 +Tattermunge\ Duo=1 +Tattermunge\ Maniac=1 +Tattermunge\ Witch=1 +Tattoo\ Ward=1 +Taunting\ Elf=1 +Tavern\ Swindler=1 +Tawnos's\ Coffin=1 +Tawnos's\ Wand=1 +Tawnos's\ Weaponry=1 +Teardrop\ Kami=1 +Tears\ of\ Rage=1 +Tears\ of\ Valakut=1 +Tectonic\ Rift=1 +Teferi's\ Care=1 +Teferi's\ Drake=1 +Teferi's\ Honor\ Guard=1 +Tel-Jilad\ Archers=1 +Tel-Jilad\ Chosen=1 +Tel-Jilad\ Fallen=1 +Tel-Jilad\ Justice=1 +Tel-Jilad\ Outrider=1 +Tel-Jilad\ Stylus=1 +Tel-Jilad\ Wolf=1 +Telekinetic\ Sliver=1 +Telepathic\ Spies=1 +Teleportal=1 +Telethopter=1 +Telim'Tor's\ Darts=1 +Teller\ of\ Tales=1 +Telling\ Time=1 +Temmet,\ Vizier\ of\ Naktamun=1 +Tempest\ Drake=1 +Tempest\ of\ Light=1 +Tempest\ Owl=1 +Temple\ of\ Abandon=1 +Temple\ of\ Mystery=1 +Temple\ of\ Silence=1 +Temporal\ Adept=1 +Temporal\ Eddy=1 +Temporal\ Fissure=1 +Temporal\ Isolation=1 +Temporary\ Insanity=1 +Temur\ Ascendancy=1 +Temur\ Banner=1 +Temur\ Charger=1 +Temur\ Charm=1 +Temur\ Runemark=1 +Temur\ War\ Shaman=1 +Tenacious\ Dead=1 +Tenacity=1 +Teneb,\ the\ Harvester=1 +Tenza,\ Godo's\ Maul=1 +Tephraderm=1 +Terashi's\ Cry=1 +Terashi's\ Grasp=1 +Terashi's\ Verdict=1 +Teroh's\ Vanguard=1 +Terra\ Eternal=1 +Terra\ Stomper=1 +Terraformer=1 +Terrarion=1 +Territorial\ Baloth=1 +Territorial\ Gorger=1 +Terror=1 +Terror\ of\ the\ Fairgrounds=1 +Terrus\ Wurm=1 +Test\ of\ Faith=1 +Testament\ of\ Faith=1 +Tethered\ Griffin=1 +Tethered\ Skirge=1 +Tethmos\ High\ Priest=1 +Teysa,\ Envoy\ of\ Ghosts=1 +Tezzeret's\ Ambition=1 +Tezzeret's\ Gambit=1 +Tezzeret's\ Touch=1 +Thalakos\ Dreamsower=1 +Thalakos\ Drifters=1 +Thalakos\ Lowlands=1 +Thalakos\ Mistfolk=1 +Thalakos\ Scout=1 +Thalakos\ Seer=1 +Thalakos\ Sentry=1 +Thallid=1 +Thallid\ Devourer=1 +Thallid\ Germinator=1 +Thallid\ Shell-Dweller=1 +Thassa's\ Bounty=1 +Thassa's\ Devourer=1 +Thassa's\ Emissary=1 +Thassa's\ Ire=1 +Thassa's\ Rebuff=1 +Thaumatog=1 +Thawing\ Glaciers=1 +The\ Fallen=1 +The\ Hive=1 +The\ Lady\ of\ the\ Mountain=1 +The\ Wretched=1 +Theft\ of\ Dreams=1 +Thelon\ of\ Havenwood=1 +Thelonite\ Hermit=1 +Thermal\ Blast=1 +Thermal\ Flux=1 +Thermal\ Navigator=1 +Thick-Skinned\ Goblin=1 +Thicket\ Basilisk=1 +Thief\ of\ Hope=1 +Thieves'\ Fortune=1 +Thieving\ Magpie=1 +Thieving\ Sprite=1 +Think\ Tank=1 +Thirst=1 +Thirsting\ Axe=1 +Thistledown\ Duo=1 +Thopter\ Arrest=1 +Thopter\ Engineer=1 +Thopter\ Spy\ Network=1 +Thopter\ Squadron=1 +Thorn\ Thallid=1 +Thornbow\ Archer=1 +Thorncaster\ Sliver=1 +Thornhide\ Wolves=1 +Thornscape\ Apprentice=1 +Thornscape\ Battlemage=1 +Thorntooth\ Witch=1 +Thornwatch\ Scarecrow=1 +Thornweald\ Archer=1 +Those\ Who\ Serve=1 +Thought\ Courier=1 +Thought\ Devourer=1 +Thought\ Dissector=1 +Thought\ Gorger=1 +Thought\ Harvester=1 +Thought\ Hemorrhage=1 +Thought\ Nibbler=1 +Thought\ Prison=1 +Thoughtbind=1 +Thoughtcutter\ Agent=1 +Thoughtflare=1 +Thoughtleech=1 +Thoughtpicker\ Witch=1 +Thoughtrender\ Lamia=1 +Thoughtweft\ Gambit=1 +Thoughtweft\ Trio=1 +Thousand\ Winds=1 +Thraben\ Foulbloods=1 +Thraben\ Gargoyle=1 +Thraben\ Sentry=1 +Thraben\ Standard\ Bearer=1 +Thran\ Foundry=1 +Thran\ Golem=1 +Thran\ Weaponry=1 +Thrashing\ Mossdog=1 +Threaten=1 +Three\ Dreams=1 +Three\ Tragedies=1 +Thresher\ Lizard=1 +Thrill-Kill\ Assassin=1 +Thriss,\ Nantuko\ Primus=1 +Thrive=1 +Thriving\ Grubs=1 +Thriving\ Ibex=1 +Thriving\ Rats=1 +Thriving\ Rhino=1 +Thriving\ Turtle=1 +Throne\ of\ Bone=1 +Throne\ of\ Empires=1 +Throne\ of\ Geth=1 +Throne\ of\ the\ God-Pharaoh=1 +Throttle=1 +Throwing\ Knife=1 +Thrull\ Champion=1 +Thrull\ Parasite=1 +Thrull\ Retainer=1 +Thrull\ Surgeon=1 +Thrummingbird=1 +Thunder\ Brute=1 +Thunder\ of\ Hooves=1 +Thunder\ Spirit=1 +Thunder\ Strike=1 +Thunder\ Wall=1 +Thunder-Thrash\ Elder=1 +Thunderblade\ Charge=1 +Thunderblust=1 +Thunderbolt=1 +Thunderclap\ Wyvern=1 +Thundercloud\ Elemental=1 +Thundercloud\ Shaman=1 +Thunderheads=1 +Thundering\ Giant=1 +Thundering\ Tanadon=1 +Thunderous\ Might=1 +Thunderscape\ Apprentice=1 +Thunderscape\ Battlemage=1 +Thunderscape\ Master=1 +Thundersong\ Trumpeter=1 +Thunderstaff=1 +Tibor\ and\ Lumia=1 +Tidal\ Bore=1 +Tidal\ Courier=1 +Tidal\ Kraken=1 +Tidal\ Surge=1 +Tidal\ Visionary=1 +Tidal\ Warrior=1 +Tidal\ Wave=1 +Tide\ Drifter=1 +Tide\ of\ War=1 +Tideshaper\ Mystic=1 +Tidewalker=1 +Tidy\ Conclusion=1 +Tightening\ Coils=1 +Timber\ Gorge=1 +Timberland\ Ruins=1 +Timbermare=1 +Timberpack\ Wolf=1 +Time\ and\ Tide=1 +Time\ Bomb=1 +Time\ Ebb=1 +Time\ of\ Heroes=1 +Time\ of\ Need=1 +Time\ Stop=1 +Time\ to\ Feed=1 +Time\ to\ Reflect=1 +Timebender=1 +Timecrafting=1 +Timely\ Hordemate=1 +Timesifter=1 +Tin\ Street\ Hooligan=1 +Tine\ Shrike=1 +Tireless\ Missionaries=1 +Titan\ Forge=1 +Titan's\ Presence=1 +Titan's\ Revenge=1 +Titan's\ Strength=1 +Titania's\ Boon=1 +Titania's\ Chosen=1 +Titanic\ Growth=1 +Titanic\ Ultimatum=1 +Titanium\ Golem=1 +Tivadar\ of\ Thorn=1 +Tivadar's\ Crusade=1 +To\ Arms!=1 +Tobias\ Andrion=1 +Toil\ //\ Trouble=1 +Toil\ to\ Renown=1 +Toils\ of\ Night\ and\ Day=1 +Tolarian\ Drake=1 +Tolarian\ Emissary=1 +Tolarian\ Sentinel=1 +Tomb\ of\ the\ Spirit\ Dragon=1 +Tombfire=1 +Tome\ Scour=1 +Tomorrow,\ Azami's\ Familiar=1 +Tooth\ and\ Claw=1 +Tooth\ Collector=1 +Tooth\ of\ Chiss-Goria=1 +Topan\ Ascetic=1 +Topan\ Freeblade=1 +Topplegeist=1 +Tor\ Wauki=1 +Torch\ Fiend=1 +Torch\ Gauntlet=1 +Torch\ Slinger=1 +Torch\ Song=1 +Torchling=1 +Torii\ Watchward=1 +Torment=1 +Tormented\ Angel=1 +Tormented\ Hero=1 +Tormented\ Pariah=1 +Tormented\ Soul=1 +Tormented\ Thoughts=1 +Tormenting\ Voice=1 +Tormentor\ Exarch=1 +Tornado=1 +Torpid\ Moloch=1 +Torpor\ Dust=1 +Torrent\ of\ Souls=1 +Torrent\ of\ Stone=1 +Torsten\ Von\ Ursus=1 +Tortoise\ Formation=1 +Torture=1 +Toshiro\ Umezawa=1 +Totem-Guide\ Hartebeest=1 +Touch\ of\ Invisibility=1 +Touch\ of\ Moonglove=1 +Touch\ of\ the\ Eternal=1 +Touch\ of\ the\ Void=1 +Tower\ Above=1 +Tower\ Defense=1 +Tower\ Drake=1 +Tower\ Gargoyle=1 +Tower\ Geist=1 +Tower\ of\ Calamities=1 +Tower\ of\ Champions=1 +Tower\ of\ Eons=1 +Tower\ of\ Fortunes=1 +Tower\ of\ Murmurs=1 +Towering\ Baloth=1 +Towering\ Indrik=1 +Town\ Gossipmonger=1 +Toxic\ Iguanar=1 +Toxic\ Nim=1 +Toxic\ Stench=1 +Trace\ of\ Abundance=1 +Tracker=1 +Tracker's\ Instincts=1 +Trade\ Routes=1 +Tradewind\ Rider=1 +Tragic\ Arrogance=1 +Tragic\ Poet=1 +Trail\ of\ Evidence=1 +Trail\ of\ Mystery=1 +Train\ of\ Thought=1 +Trained\ Armodon=1 +Trained\ Caracal=1 +Trained\ Orgg=1 +Trained\ Pronghorn=1 +Traitor's\ Clutch=1 +Traitor's\ Roar=1 +Traitorous\ Blood=1 +Traitorous\ Instinct=1 +Tranquil\ Expanse=1 +Tranquil\ Garden=1 +Tranquil\ Path=1 +Transguild\ Courier=1 +Transguild\ Promenade=1 +Transluminant=1 +Transmogrifying\ Licid=1 +Trap\ Digger=1 +Trap\ Essence=1 +Trapfinder's\ Trick=1 +Trapmaker's\ Snare=1 +Traumatic\ Visions=1 +Traumatize=1 +Travel\ Preparations=1 +Traveler's\ Amulet=1 +Treacherous\ Link=1 +Treacherous\ Pit-Dweller=1 +Treacherous\ Terrain=1 +Treacherous\ Urge=1 +Treacherous\ Vampire=1 +Treacherous\ Werewolf=1 +Tread\ Upon=1 +Treasure\ Cruise=1 +Treasure\ Hunter=1 +Treasure\ Keeper=1 +Treasure\ Trove=1 +Treasured\ Find=1 +Treasury\ Thrull=1 +Tree\ Monkey=1 +Treefolk\ Harbinger=1 +Treefolk\ Healer=1 +Treefolk\ Mystic=1 +Treefolk\ Seedlings=1 +Treetop\ Bracers=1 +Treetop\ Rangers=1 +Treetop\ Scout=1 +Tremor=1 +Trepanation\ Blade=1 +Trespasser\ il-Vec=1 +Trespasser's\ Curse=1 +Trespassing\ Souleater=1 +Tresserhorn\ Sinks=1 +Tresserhorn\ Skyknight=1 +Trestle\ Troll=1 +Triad\ of\ Fates=1 +Trial\ //\ Error=1 +Trial\ of\ Ambition=1 +Trial\ of\ Knowledge=1 +Trial\ of\ Solidarity=1 +Trial\ of\ Strength=1 +Trial\ of\ Zeal=1 +Triangle\ of\ War=1 +Tribal\ Flames=1 +Tribal\ Forcemage=1 +Tribal\ Unity=1 +Tribute\ to\ Hunger=1 +Tribute\ to\ the\ Wild=1 +Trickery\ Charm=1 +Trickster\ Mage=1 +Triclopean\ Sight=1 +Trigon\ of\ Infestation=1 +Trigon\ of\ Mending=1 +Trigon\ of\ Rage=1 +Trigon\ of\ Thought=1 +Trip\ Noose=1 +Trip\ Wire=1 +Triskaidekaphobia=1 +Triskelavus=1 +Triskelion=1 +Triton\ Cavalry=1 +Triton\ Fortune\ Hunter=1 +Triton\ Shorestalker=1 +Triton\ Shorethief=1 +Triton\ Tactics=1 +Triumph\ of\ Cruelty=1 +Triumph\ of\ Ferocity=1 +Troll-Horn\ Cameo=1 +Trollhide=1 +Trolls\ of\ Tel-Jilad=1 +Tromokratis=1 +Tromp\ the\ Domains=1 +Trophy\ Hunter=1 +Trophy\ Mage=1 +Trostani's\ Judgment=1 +Trostani's\ Summoner=1 +Troubled\ Healer=1 +True\ Conviction=1 +True-Faith\ Censer=1 +Truefire\ Paladin=1 +Trueheart\ Duelist=1 +Trueheart\ Twins=1 +Trumpet\ Blast=1 +Trumpeting\ Armodon=1 +Trusty\ Companion=1 +Trusty\ Machete=1 +Truth\ or\ Tale=1 +Trygon\ Predator=1 +Tukatongue\ Thallid=1 +Tuknir\ Deathlock=1 +Tuktuk\ Grunts=1 +Tuktuk\ Scrapper=1 +Tuktuk\ the\ Explorer=1 +Tumble\ Magnet=1 +Tundra\ Kavu=1 +Tundra\ Wolves=1 +Tunnel\ Ignus=1 +Tunnel\ Vision=1 +Tunneler\ Wurm=1 +Tunneling\ Geopede=1 +Turbulent\ Dreams=1 +Turf\ Wound=1 +Turn\ //\ Burn=1 +Turn\ Against=1 +Turn\ Aside=1 +Turn\ the\ Tables=1 +Turn\ the\ Tide=1 +Turn\ to\ Dust=1 +Turn\ to\ Frog=1 +Turn\ to\ Mist=1 +Turntimber\ Basilisk=1 +Turntimber\ Grove=1 +Turntimber\ Ranger=1 +Turtleshell\ Changeling=1 +Tusked\ Colossodon=1 +Tuskguard\ Captain=1 +Twiddle=1 +Twigwalker=1 +Twilight\ Shepherd=1 +Twin\ Bolt=1 +Twinblade\ Slasher=1 +Twincast=1 +Twinflame=1 +Twinning\ Glass=1 +Twins\ of\ Maurer\ Estate=1 +Twinstrike=1 +Twisted\ Abomination=1 +Twisted\ Experiment=1 +Twisted\ Image=1 +Twisted\ Justice=1 +Twitch=1 +Two-Headed\ Cerberus=1 +Two-Headed\ Giant\ of\ Foriys=1 +Two-Headed\ Sliver=1 +Tymaret,\ the\ Murder\ King=1 +Typhoid\ Rats=1 +Tyrannize=1 +Tyrant\ of\ Discord=1 +Tyrant\ of\ Valakut=1 +Tyrant's\ Choice=1 +Tyrant's\ Machine=1 +Uba\ Mask=1 +Ubul\ Sar\ Gatekeepers=1 +Ugin's\ Construct=1 +Ugin's\ Insight=1 +Uktabi\ Drake=1 +Uktabi\ Efreet=1 +Uktabi\ Orangutan=1 +Ukud\ Cobra=1 +Ulamog's\ Despoiler=1 +Ulamog's\ Nullifier=1 +Ulamog's\ Reclaimer=1 +Ulasht,\ the\ Hate\ Seed=1 +Ulcerate=1 +Ulrich's\ Kindred=1 +Ultimate\ Price=1 +Ulvenwald\ Bear=1 +Ulvenwald\ Captive=1 +Ulvenwald\ Mysteries=1 +Ulvenwald\ Mystics=1 +Ulvenwald\ Observer=1 +Umara\ Entangler=1 +Umara\ Raptor=1 +Umbra\ Mystic=1 +Umbra\ Stalker=1 +Unbender\ Tine=1 +Unblinking\ Bleb=1 +Unbreathing\ Horde=1 +Unbridled\ Growth=1 +Unburden=1 +Unburial\ Rites=1 +Uncaged\ Fury=1 +Unchecked\ Growth=1 +Uncle\ Istvan=1 +Uncontrollable\ Anger=1 +Uncontrolled\ Infestation=1 +Uncovered\ Clues=1 +Undead\ Alchemist=1 +Undead\ Leotau=1 +Undead\ Minotaur=1 +Undead\ Servant=1 +Undead\ Slayer=1 +Undercity\ Informer=1 +Undercity\ Plague=1 +Undercity\ Shade=1 +Undercity\ Troll=1 +Undergrowth\ Scavenger=1 +Underhanded\ Designs=1 +Undertaker=1 +Underworld\ Cerberus=1 +Underworld\ Coinsmith=1 +Underworld\ Connections=1 +Undo=1 +Undying\ Flames=1 +Undying\ Rage=1 +Unearthly\ Blizzard=1 +Unexpected\ Results=1 +Unflinching\ Courage=1 +Unhinge=1 +Unholy\ Hunger=1 +Unholy\ Strength=1 +Unified\ Front=1 +Unified\ Strike=1 +Uninvited\ Geist=1 +Unity\ of\ Purpose=1 +Universal\ Solvent=1 +Unknown\ Shores=1 +Unlicensed\ Disintegration=1 +Unliving\ Psychopath=1 +Unmake\ the\ Graves=1 +Unnatural\ Aggression=1 +Unnatural\ Endurance=1 +Unnatural\ Predation=1 +Unnatural\ Speed=1 +Unnerve=1 +Unnerving\ Assault=1 +Unravel\ the\ Aether=1 +Unruly\ Mob=1 +Unscythe,\ Killer\ of\ Kings=1 +Unstable\ Frontier=1 +Unstable\ Hulk=1 +Unsubstantiate=1 +Unsummon=1 +Untaidake,\ the\ Cloud\ Keeper=1 +Untamed\ Hunger=1 +Untamed\ Might=1 +Untethered\ Express=1 +Unwavering\ Initiate=1 +Unwilling\ Recruit=1 +Unworthy\ Dead=1 +Unyaro\ Bees=1 +Unyielding\ Krumar=1 +Updraft\ Elemental=1 +Upwelling=1 +Ur-Golem's\ Eye=1 +Urban\ Burgeoning=1 +Urban\ Evolution=1 +Urbis\ Protector=1 +Urborg\ Elf=1 +Urborg\ Mindsucker=1 +Urborg\ Panther=1 +Urborg\ Phantom=1 +Urborg\ Shambler=1 +Urborg\ Skeleton=1 +Urborg\ Syphon-Mage=1 +Urborg\ Uprising=1 +Urge\ to\ Feed=1 +Ursapine=1 +Ursine\ Fylgja=1 +Urza's\ Armor=1 +Urza's\ Chalice=1 +Urza's\ Factory=1 +Urza's\ Miter=1 +Uthden\ Troll=1 +Utopia\ Mycon=1 +Utopia\ Vow=1 +Utter\ End=1 +Utvara\ Scalper=1 +Uyo,\ Silent\ Prophet=1 +Vagrant\ Plowbeasts=1 +Valakut\ Fireboar=1 +Valakut\ Invoker=1 +Valakut\ Predator=1 +Valeron\ Outlander=1 +Valeron\ Wardens=1 +Valiant\ Guard=1 +Valley\ Dasher=1 +Valley\ Rannet=1 +Valleymaker=1 +Valor=1 +Valor\ in\ Akros=1 +Valor\ Made\ Real=1 +Vampire\ Aristocrat=1 +Vampire\ Bats=1 +Vampire\ Cutthroat=1 +Vampire\ Envoy=1 +Vampire\ Hounds=1 +Vampire\ Interloper=1 +Vampire\ Lacerator=1 +Vampire\ Nighthawk=1 +Vampire\ Noble=1 +Vampire\ Outcasts=1 +Vampire's\ Bite=1 +Vampiric\ Embrace=1 +Vampiric\ Fury=1 +Vampiric\ Rites=1 +Vampiric\ Sliver=1 +Vampiric\ Spirit=1 +Vandalize=1 +Vanguard\ of\ Brimaz=1 +Vanish\ into\ Memory=1 +Vanishment=1 +Vanquish=1 +Vanquish\ the\ Foul=1 +Vapor\ Snare=1 +Vaporkin=1 +Vaporous\ Djinn=1 +Varchild's\ Crusader=1 +Varchild's\ War-Riders=1 +Varolz,\ the\ Scar-Striped=1 +Vassal's\ Duty=1 +Vastwood\ Animist=1 +Vastwood\ Gorger=1 +Vaultbreaker=1 +Vebulid=1 +Vec\ Townships=1 +Vectis\ Silencers=1 +Vector\ Asp=1 +Vedalken\ Aethermage=1 +Vedalken\ Anatomist=1 +Vedalken\ Archmage=1 +Vedalken\ Blademaster=1 +Vedalken\ Certarch=1 +Vedalken\ Dismisser=1 +Vedalken\ Engineer=1 +Vedalken\ Entrancer=1 +Vedalken\ Ghoul=1 +Vedalken\ Heretic=1 +Vedalken\ Infuser=1 +Vedalken\ Mastermind=1 +Vedalken\ Outlander=1 +Vedalken\ Plotter=1 +Veil\ of\ Birds=1 +Veil\ of\ Secrecy=1 +Veilborn\ Ghoul=1 +Veiled\ Crocodile=1 +Veiled\ Sentry=1 +Veiled\ Serpent=1 +Veiling\ Oddity=1 +Veilstone\ Amulet=1 +Vein\ Drinker=1 +Venarian\ Glimmer=1 +Vendetta=1 +Venerable\ Kumo=1 +Venerable\ Lammasu=1 +Venerable\ Monk=1 +Venerated\ Teacher=1 +Vengeance=1 +Vengeful\ Archon=1 +Vengeful\ Dreams=1 +Vengeful\ Firebrand=1 +Vengeful\ Rebel=1 +Vengeful\ Rebirth=1 +Vengeful\ Vampire=1 +Venom\ Sliver=1 +Venomous\ Dragonfly=1 +Venomous\ Vines=1 +Venomspout\ Brackus=1 +Venser's\ Diffusion=1 +Vent\ Sentinel=1 +Verdant\ Automaton=1 +Verdant\ Embrace=1 +Verdant\ Force=1 +Verdant\ Haven=1 +Verdant\ Succession=1 +Verdant\ Touch=1 +Verdeloth\ the\ Ancient=1 +Verduran\ Emissary=1 +Vermiculos=1 +Vertigo\ Spawn=1 +Vesper\ Ghoul=1 +Vessel\ of\ Ephemera=1 +Vessel\ of\ Malignity=1 +Vessel\ of\ Nascency=1 +Vessel\ of\ Paramnesia=1 +Vessel\ of\ Volatility=1 +Vestige\ of\ Emrakul=1 +Veteran\ Armorer=1 +Veteran\ Armorsmith=1 +Veteran\ Bodyguard=1 +Veteran\ Cathar=1 +Veteran\ Cavalier=1 +Veteran\ Motorist=1 +Veteran\ of\ the\ Depths=1 +Veteran\ Swordsmith=1 +Veteran\ Warleader=1 +Veteran's\ Armaments=1 +Veteran's\ Reflexes=1 +Veteran's\ Sidearm=1 +Vexing\ Arcanix=1 +Vexing\ Sphinx=1 +Vhati\ il-Dal=1 +Vial\ of\ Dragonfire=1 +Vial\ of\ Poison=1 +Viashino\ Bladescout=1 +Viashino\ Cutthroat=1 +Viashino\ Fangtail=1 +Viashino\ Firstblade=1 +Viashino\ Grappler=1 +Viashino\ Outrider=1 +Viashino\ Racketeer=1 +Viashino\ Runner=1 +Viashino\ Sandscout=1 +Viashino\ Sandstalker=1 +Viashino\ Sandswimmer=1 +Viashino\ Shanktail=1 +Viashino\ Skeleton=1 +Viashino\ Slaughtermaster=1 +Viashino\ Spearhunter=1 +Viashino\ Warrior=1 +Viashino\ Weaponsmith=1 +Vibrating\ Sphere=1 +Vicious\ Hunger=1 +Vicious\ Kavu=1 +Vicious\ Shadows=1 +Victorious\ Destruction=1 +Victory's\ Herald=1 +Victual\ Sliver=1 +View\ from\ Above=1 +Vigean\ Graftmage=1 +Vigean\ Hydropon=1 +Vigil\ for\ the\ Lost=1 +Vigilant\ Drake=1 +Vigilant\ Sentry=1 +Vigilante\ Justice=1 +Vigor\ Mortis=1 +Vigorous\ Charge=1 +Vildin-Pack\ Outcast=1 +Vile\ Aggregate=1 +Vile\ Deacon=1 +Vile\ Rebirth=1 +Vile\ Redeemer=1 +Vile\ Requiem=1 +Village\ Bell-Ringer=1 +Village\ Elder=1 +Village\ Ironsmith=1 +Village\ Messenger=1 +Village\ Survivors=1 +Villagers\ of\ Estwald=1 +Villainous\ Ogre=1 +Villainous\ Wealth=1 +Vindictive\ Mob=1 +Vine\ Kami=1 +Vine\ Snare=1 +Vinelasher\ Kudzu=1 +Vines\ of\ the\ Recluse=1 +Vineweft=1 +Violent\ Impact=1 +Violet\ Pall=1 +Viper's\ Kiss=1 +Viral\ Drake=1 +Viridescent\ Wisps=1 +Viridian\ Acolyte=1 +Viridian\ Betrayers=1 +Viridian\ Emissary=1 +Viridian\ Harvest=1 +Viridian\ Joiner=1 +Viridian\ Lorebearers=1 +Viridian\ Revel=1 +Viridian\ Shaman=1 +Virulent\ Plague=1 +Virulent\ Sliver=1 +Virulent\ Swipe=1 +Virulent\ Wound=1 +Visara\ the\ Dreadful=1 +Viscerid\ Armor=1 +Viscid\ Lemures=1 +Visionary\ Augmenter=1 +Visions\ of\ Brutality=1 +Vital\ Splicer=1 +Vital\ Surge=1 +Vitality\ Charm=1 +Vitaspore\ Thallid=1 +Vithian\ Renegades=1 +Vithian\ Stinger=1 +Vitu-Ghazi\ Guildmage=1 +Vitu-Ghazi,\ the\ City-Tree=1 +Vivid\ Creek=1 +Vivid\ Grove=1 +Vivid\ Marsh=1 +Vivid\ Meadow=1 +Vizier\ of\ Deferment=1 +Vizier\ of\ Many\ Faces=1 +Vizier\ of\ Remedies=1 +Vizier\ of\ Tumbling\ Sands=1 +Vizkopa\ Confessor=1 +Vizkopa\ Guildmage=1 +Vizzerdrix=1 +Vodalian\ Hypnotist=1 +Vodalian\ Knights=1 +Vodalian\ Merchant=1 +Vodalian\ Mystic=1 +Vodalian\ Serpent=1 +Voice\ of\ All=1 +Voice\ of\ Duty=1 +Voice\ of\ Grace=1 +Voice\ of\ Law=1 +Voice\ of\ Reason=1 +Voice\ of\ the\ Woods=1 +Voices\ from\ the\ Void=1 +Void=1 +Void\ Attendant=1 +Void\ Grafter=1 +Void\ Maw=1 +Void\ Snare=1 +Void\ Squall=1 +Void\ Stalker=1 +Voidmage\ Apprentice=1 +Voidmage\ Husher=1 +Voidstone\ Gargoyle=1 +Voidwalk=1 +Voidwielder=1 +Volatile\ Rig=1 +Volcanic\ Awakening=1 +Volcanic\ Dragon=1 +Volcanic\ Geyser=1 +Volcanic\ Rambler=1 +Volcanic\ Rush=1 +Volcanic\ Spray=1 +Volcanic\ Strength=1 +Volcanic\ Submersion=1 +Volcanic\ Upheaval=1 +Volcanic\ Vision=1 +Volcano\ Imp=1 +Voldaren\ Duelist=1 +Volition\ Reins=1 +Volrath's\ Curse=1 +Volrath's\ Gardens=1 +Volrath's\ Laboratory=1 +Volrath's\ Shapeshifter=1 +Volt\ Charge=1 +Voltaic\ Construct=1 +Voodoo\ Doll=1 +Voracious\ Cobra=1 +Voracious\ Hatchling=1 +Voracious\ Null=1 +Voracious\ Wurm=1 +Vorel\ of\ the\ Hull\ Clade=1 +Vorosh,\ the\ Hunter=1 +Vorrac\ Battlehorns=1 +Vortex\ Elemental=1 +Vow\ of\ Duty=1 +Vow\ of\ Flight=1 +Vow\ of\ Lightning=1 +Vow\ of\ Malice=1 +Vow\ of\ Wildness=1 +Voyage's\ End=1 +Voyager\ Drake=1 +Voyager\ Staff=1 +Voyaging\ Satyr=1 +Vulpine\ Goliath=1 +Vulshok\ Battlegear=1 +Vulshok\ Battlemaster=1 +Vulshok\ Refugee=1 +Vulshok\ Sorcerer=1 +Vulshok\ War\ Boar=1 +Vulturous\ Aven=1 +Wailing\ Ghoul=1 +Wake\ of\ Vultures=1 +Wake\ the\ Reflections=1 +Wakedancer=1 +Wakestone\ Gargoyle=1 +Waking\ Nightmare=1 +Walker\ of\ Secret\ Ways=1 +Walker\ of\ the\ Grove=1 +Walker\ of\ the\ Wastes=1 +Walking\ Atlas=1 +Walking\ Corpse=1 +Walking\ Dream=1 +Walking\ Wall=1 +Wall\ of\ Air=1 +Wall\ of\ Blood=1 +Wall\ of\ Bone=1 +Wall\ of\ Corpses=1 +Wall\ of\ Deceit=1 +Wall\ of\ Denial=1 +Wall\ of\ Diffusion=1 +Wall\ of\ Distortion=1 +Wall\ of\ Essence=1 +Wall\ of\ Fire=1 +Wall\ of\ Frost=1 +Wall\ of\ Kelp=1 +Wall\ of\ Light=1 +Wall\ of\ Limbs=1 +Wall\ of\ Mulch=1 +Wall\ of\ Razors=1 +Wall\ of\ Resurgence=1 +Wall\ of\ Souls=1 +Wall\ of\ Spears=1 +Wall\ of\ Stone=1 +Wall\ of\ Swords=1 +Wall\ of\ Tanglecord=1 +Wall\ of\ Tears=1 +Wall\ of\ Vines=1 +Wall\ of\ Wonder=1 +Wall\ of\ Wood=1 +Wallop=1 +Wand\ of\ the\ Elements=1 +Wander\ in\ Death=1 +Wanderer's\ Twig=1 +Wandering\ Champion=1 +Wandering\ Eye=1 +Wandering\ Goblins=1 +Wandering\ Mage=1 +Wandering\ Ones=1 +Wandering\ Wolf=1 +Wanderlust=1 +Wanderwine\ Prophets=1 +Waning\ Wurm=1 +War\ Barge=1 +War\ Behemoth=1 +War\ Dance=1 +War\ Elemental=1 +War\ Falcon=1 +War\ Flare=1 +War\ Horn=1 +War\ Oracle=1 +War\ Priest\ of\ Thune=1 +War\ Report=1 +War-Name\ Aspirant=1 +War-Spike\ Changeling=1 +War-Torch\ Goblin=1 +War-Wing\ Siren=1 +Warbringer=1 +Warchanter\ of\ Mogis=1 +Warchief\ Giant=1 +Warclamp\ Mastiff=1 +Ward\ of\ Piety=1 +Warden\ of\ Evos\ Isle=1 +Warden\ of\ Geometries=1 +Warden\ of\ the\ Beyond=1 +Warden\ of\ the\ Eye=1 +Wardscale\ Dragon=1 +Warfire\ Javelineer=1 +Warleader's\ Helix=1 +Warlord's\ Axe=1 +Warmind\ Infantry=1 +Warmonger=1 +Warmonger's\ Chariot=1 +Warning=1 +Warp\ Artifact=1 +Warp\ World=1 +Warped\ Devotion=1 +Warped\ Landscape=1 +Warped\ Researcher=1 +Warping\ Wail=1 +Warren\ Pilferers=1 +Warren\ Weirding=1 +Warren-Scourge\ Elf=1 +Warrior\ Angel=1 +Warrior\ en-Kor=1 +Warrior's\ Honor=1 +Warriors'\ Lesson=1 +Warthog=1 +Wasp\ Lancer=1 +Waste\ Away=1 +Wasteland\ Scorpion=1 +Wasteland\ Viper=1 +Wastes=1 +Watcher\ in\ the\ Web=1 +Watcher\ of\ the\ Roost=1 +Watcher\ Sliver=1 +Watchers\ of\ the\ Dead=1 +Watchful\ Automaton=1 +Watchful\ Naga=1 +Watchwing\ Scarecrow=1 +Water\ Elemental=1 +Water\ Servant=1 +Watercourser=1 +Waterfront\ Bouncer=1 +Waterspout\ Djinn=1 +Waterspout\ Elemental=1 +Waterspout\ Weavers=1 +Waterveil\ Cavern=1 +Waterwhirl=1 +Wave\ of\ Indifference=1 +Wave-Wing\ Elemental=1 +Wax\ //\ Wane=1 +Waxing\ Moon=1 +Waxmane\ Baku=1 +Way\ of\ the\ Thief=1 +Wayfaring\ Giant=1 +Wayfaring\ Temple=1 +Wayward\ Angel=1 +Wayward\ Giant=1 +Wayward\ Servant=1 +Wayward\ Soul=1 +Weakness=1 +Weapon\ Surge=1 +Weaponcraft\ Enthusiast=1 +Weapons\ Trainer=1 +Wear\ Away=1 +Weathered\ Bodyguards=1 +Weatherseed\ Elf=1 +Weatherseed\ Faeries=1 +Weatherseed\ Totem=1 +Weave\ Fate=1 +Weaver\ of\ Currents=1 +Weaver\ of\ Lies=1 +Weaver\ of\ Lightning=1 +Web=1 +Wee\ Dragonauts=1 +Weed-Pruner\ Poplar=1 +Wei\ Elite\ Companions=1 +Wei\ Infantry=1 +Wei\ Night\ Raiders=1 +Wei\ Strike\ Force=1 +Weight\ of\ Conscience=1 +Weight\ of\ Spires=1 +Weight\ of\ the\ Underworld=1 +Weird\ Harvest=1 +Weirded\ Vampire=1 +Weirding\ Shaman=1 +Weirding\ Wood=1 +Welcome\ to\ the\ Fold=1 +Welder\ Automaton=1 +Weldfast\ Engineer=1 +Weldfast\ Monitor=1 +Weldfast\ Wingsmith=1 +Welding\ Sparks=1 +Welkin\ Guide=1 +Welkin\ Tern=1 +Wellgabber\ Apothecary=1 +Wetland\ Sambar=1 +Wharf\ Infiltrator=1 +Whelming\ Wave=1 +Where\ Ancients\ Tread=1 +Whetstone=1 +Whims\ of\ the\ Fates=1 +Whip\ of\ Erebos=1 +Whip\ Sergeant=1 +Whip\ Silk=1 +Whipcorder=1 +Whipkeeper=1 +Whiplash\ Trap=1 +Whipstitched\ Zombie=1 +Whiptail\ Moloch=1 +Whiptail\ Wurm=1 +Whiptongue\ Frog=1 +Whirler\ Rogue=1 +Whirlermaker=1 +Whirling\ Catapult=1 +Whirling\ Dervish=1 +Whirlpool\ Drake=1 +Whirlpool\ Whelm=1 +Whirlwind=1 +Whirlwind\ Adept=1 +Whisk\ Away=1 +Whisperer\ of\ the\ Wilds=1 +Whispering\ Madness=1 +Whispering\ Shade=1 +Whispering\ Specter=1 +Whispers\ of\ Emrakul=1 +Whispersilk\ Cloak=1 +White\ Knight=1 +White\ Shield\ Crusader=1 +Whitemane\ Lion=1 +Whiteout=1 +Whitewater\ Naiads=1 +Wicked\ Akuba=1 +Wicked\ Pact=1 +Wicked\ Reward=1 +Wicker\ Warcrawler=1 +Wicker\ Witch=1 +Wight\ of\ Precinct\ Six=1 +Wild\ Aesthir=1 +Wild\ Beastmaster=1 +Wild\ Dogs=1 +Wild\ Evocation=1 +Wild\ Griffin=1 +Wild\ Guess=1 +Wild\ Hunger=1 +Wild\ Instincts=1 +Wild\ Leotau=1 +Wild\ Mongrel=1 +Wild\ Ox=1 +Wild\ Pair=1 +Wild\ Ricochet=1 +Wild\ Swing=1 +Wild\ Wanderer=1 +Wild-Field\ Scarecrow=1 +Wildcall=1 +Wilderness\ Elemental=1 +Wildest\ Dreams=1 +Wildfire\ Cerberus=1 +Wildfire\ Emissary=1 +Wildheart\ Invoker=1 +Wildsize=1 +Wildslayer\ Elves=1 +Wildwood\ Rebirth=1 +Will\ of\ the\ Naga=1 +Will-Forged\ Golem=1 +Willbender=1 +Willbreaker=1 +Willow\ Priestess=1 +Wilt-Leaf\ Cavaliers=1 +Wily\ Bandar=1 +Wind\ Dancer=1 +Wind\ Drake=1 +Wind\ Shear=1 +Wind\ Spirit=1 +Wind-Kin\ Raiders=1 +Windborne\ Charge=1 +Winding\ Wurm=1 +Windreaver=1 +Windrider\ Patrol=1 +Winds\ of\ Qal\ Sisma=1 +Winds\ of\ Rath=1 +Winds\ of\ Rebuke=1 +Windstorm=1 +Windwright\ Mage=1 +Wine\ of\ Blood\ and\ Iron=1 +Wing\ Puncture=1 +Wing\ Snare=1 +Wing\ Splicer=1 +Wingcrafter=1 +Winged\ Coatl=1 +Winged\ Shepherd=1 +Winged\ Sliver=1 +Wingrattle\ Scarecrow=1 +Wings\ of\ Velis\ Vel=1 +Wingsteed\ Rider=1 +Winterflame=1 +Wipe\ Clean=1 +Wirecat=1 +Wirefly\ Hive=1 +Wirewood\ Elf=1 +Wirewood\ Guardian=1 +Wirewood\ Savage=1 +Wispweaver\ Angel=1 +Wistful\ Thinking=1 +Wit's\ End=1 +Witch\ Engine=1 +Witch\ Hunter=1 +Witch-Maw\ Nephilim=1 +Witch's\ Familiar=1 +Witch's\ Mist=1 +Witches'\ Eye=1 +Withered\ Wretch=1 +Withering\ Gaze=1 +Withering\ Hex=1 +Withering\ Wisps=1 +Witherscale\ Wurm=1 +Withstand=1 +Withstand\ Death=1 +Witness\ of\ the\ Ages=1 +Witness\ the\ End=1 +Wizard\ Mentor=1 +Wizard\ Replica=1 +Wizened\ Cenn=1 +Wizened\ Snitches=1 +Woebearer=1 +Woebringer\ Demon=1 +Woeleecher=1 +Wojek\ Apothecary=1 +Wojek\ Embermage=1 +Wojek\ Halberdiers=1 +Wojek\ Siren=1 +Wolf\ Pack=1 +Wolf-Skull\ Shaman=1 +Wolfbitten\ Captive=1 +Wolfbriar\ Elemental=1 +Wolfir\ Avenger=1 +Wolfkin\ Bond=1 +Wonder=1 +Wood\ Elemental=1 +Woodcutter's\ Grit=1 +Wooden\ Sphere=1 +Wooden\ Stake=1 +Woodland\ Changeling=1 +Woodland\ Guidance=1 +Woodland\ Patrol=1 +Woodland\ Sleuth=1 +Woodland\ Stream=1 +Woodlurker\ Mimic=1 +Woodweaver's\ Puzzleknot=1 +Woodwraith\ Corrupter=1 +Woodwraith\ Strangler=1 +Woolly\ Loxodon=1 +Woolly\ Mammoths=1 +Woolly\ Spider=1 +Woolly\ Thoctar=1 +Word\ of\ Seizing=1 +Word\ of\ Undoing=1 +Words\ of\ War=1 +Words\ of\ Wind=1 +Workshop\ Assistant=1 +World\ at\ War=1 +World\ Queller=1 +Worldgorger\ Dragon=1 +Worldheart\ Phoenix=1 +Worldly\ Counsel=1 +Worldpurge=1 +Worldslayer=1 +Worm\ Harvest=1 +Wormfang\ Behemoth=1 +Wormfang\ Drake=1 +Wormfang\ Manta=1 +Wormfang\ Newt=1 +Wormfang\ Turtle=1 +Wormwood\ Dryad=1 +Wormwood\ Treefolk=1 +Wort,\ Boggart\ Auntie=1 +Worthy\ Cause=1 +Wrangle=1 +Wrath\ of\ Marit\ Lage=1 +Wreak\ Havoc=1 +Wreath\ of\ Geists=1 +Wrecking\ Ball=1 +Wren's\ Run\ Packmaster=1 +Wren's\ Run\ Vanquisher=1 +Wretched\ Gryff=1 +Wring\ Flesh=1 +Write\ into\ Being=1 +Wu\ Elite\ Cavalry=1 +Wu\ Longbowman=1 +Wu\ Warship=1 +Wurm's\ Tooth=1 +Wurmcalling=1 +Wurmskin\ Forger=1 +Wurmweaver\ Coil=1 +Wydwen,\ the\ Biting\ Gale=1 +Wyluli\ Wolf=1 +Xathrid\ Gorgon=1 +Xathrid\ Slyblade=1 +Xenic\ Poltergeist=1 +Xenograft=1 +Yamabushi's\ Storm=1 +Yavimaya\ Ancients=1 +Yavimaya\ Ants=1 +Yavimaya\ Barbarian=1 +Yavimaya\ Dryad=1 +Yavimaya\ Enchantress=1 +Yavimaya\ Granger=1 +Yavimaya\ Kavu=1 +Yavimaya\ Scion=1 +Yavimaya\ Wurm=1 +Yavimaya's\ Embrace=1 +Yawgmoth\ Demon=1 +Yawgmoth's\ Agenda=1 +Yawgmoth's\ Edict=1 +Yawning\ Fissure=1 +Yeva's\ Forcemage=1 +Yisan,\ the\ Wanderer\ Bard=1 +Yixlid\ Jailer=1 +Yoke\ of\ the\ Damned=1 +Yoked\ Ox=1 +Yoked\ Plowbeast=1 +Yomiji,\ Who\ Bars\ the\ Way=1 +Yore-Tiller\ Nephilim=1 +Young\ Wei\ Recruits=1 +Youthful\ Knight=1 +Youthful\ Scholar=1 +Yuki-Onna=1 +Yukora,\ the\ Prisoner=1 +Zada,\ Hedron\ Grinder=1 +Zada's\ Commando=1 +Zameck\ Guildmage=1 +Zanam\ Djinn=1 +Zap=1 +Zealot\ il-Vec=1 +Zealots\ en-Dal=1 +Zealous\ Conscripts=1 +Zealous\ Guardian=1 +Zektar\ Shrine\ Expedition=1 +Zendikar\ Incarnate=1 +Zendikar\ Resurgent=1 +Zendikar's\ Roil=1 +Zenith\ Seeker=1 +Zephid=1 +Zephid's\ Embrace=1 +Zephyr\ Charge=1 +Zephyr\ Net=1 +Zephyr\ Scribe=1 +Zephyr\ Sprite=1 +Zerapa\ Minotaur=1 +Zhalfirin\ Crusader=1 +Zhalfirin\ Knight=1 +Zhang\ Fei,\ Fierce\ Warrior=1 +Zhur-Taa\ Ancient=1 +Zhur-Taa\ Druid=1 +Zhur-Taa\ Swine=1 +Zodiac\ Dragon=1 +Zodiac\ Monkey=1 +Zoetic\ Cavern=1 +Zombie\ Apocalypse=1 +Zombie\ Assassin=1 +Zombie\ Boa=1 +Zombie\ Brute=1 +Zombie\ Cannibal=1 +Zombie\ Cutthroat=1 +Zombie\ Musher=1 +Zombie\ Scavengers=1 +Zombify=1 +Zulaport\ Chainmage=1 +Zulaport\ Enforcer=1 +Zur's\ Weirding=1 +Zuran\ Spellcaster=1