diff --git a/Utils/GathererCrawler/src/main/java/north/gatherercrawler/CardParser.java b/Utils/GathererCrawler/src/main/java/north/gatherercrawler/CardParser.java index 82e59f65a2..2b97ead046 100644 --- a/Utils/GathererCrawler/src/main/java/north/gatherercrawler/CardParser.java +++ b/Utils/GathererCrawler/src/main/java/north/gatherercrawler/CardParser.java @@ -41,12 +41,27 @@ public class CardParser extends Thread { } try { - Elements select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_nameRow .value"); + Elements select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContentHeader_subtitleDisplay"); + String cardName = ""; + String selectorModifier = ""; if (!select.isEmpty()) { - card.setName(select.get(0).text().trim()); + cardName = select.get(0).text().trim(); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_manaRow .value img"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_nameRow .value"); + if (!select.isEmpty()) { + card.setName(select.get(0).text().trim()); + } else { + card.setName(cardName); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_ctl05_nameRow .value"); + if (!select.isEmpty() && select.get(0).text().trim().equals(cardName)) { + selectorModifier = "_ctl05"; + } else { + selectorModifier = "_ctl06"; + } + } + + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_manaRow .value img"); List manaCost = new ArrayList(); if (!select.isEmpty()) { for (Element element : select) { @@ -55,17 +70,17 @@ public class CardParser extends Thread { } card.setManaCost(manaCost); - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_cmcRow .value"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_cmcRow .value"); if (!select.isEmpty()) { card.setConvertedManaCost(Integer.parseInt(select.get(0).text().trim())); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_typeRow .value"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_typeRow .value"); if (!select.isEmpty()) { card.setTypes(select.get(0).text().trim()); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_textRow .value .cardtextbox"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_textRow .value .cardtextbox"); List cardText = new ArrayList(); if (!select.isEmpty()) { for (Element element : select) { @@ -74,7 +89,7 @@ public class CardParser extends Thread { } card.setCardText(cardText); - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_FlavorText .cardtextbox"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_FlavorText .cardtextbox"); List flavorText = new ArrayList(); if (!select.isEmpty()) { for (Element element : select) { @@ -83,22 +98,22 @@ public class CardParser extends Thread { } card.setFlavorText(flavorText); - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_ptRow .value"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_ptRow .value"); if (!select.isEmpty()) { card.setPowerToughness(select.get(0).text().trim()); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_currentSetSymbol a"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_currentSetSymbol a"); if (!select.isEmpty()) { card.setExpansion(select.get(1).text().trim()); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_rarityRow .value span"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_rarityRow .value span"); if (!select.isEmpty()) { card.setRarity(select.get(0).text().trim()); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_otherSetsValue a"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_otherSetsValue a"); List otherSets = new ArrayList(); if (!select.isEmpty()) { for (Element element : select) { @@ -112,12 +127,12 @@ public class CardParser extends Thread { } } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_numberRow .value"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_numberRow .value"); if (!select.isEmpty()) { card.setCardNumber(select.get(0).text().trim()); } - select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_ArtistCredit a"); + select = doc.select("#ctl00_ctl00_ctl00_MainContent_SubContent_SubContent" + selectorModifier + "_ArtistCredit a"); if (!select.isEmpty()) { card.setArtist(select.get(0).text().trim()); } diff --git a/Utils/GathererCrawler/src/main/java/north/gatherercrawler/ThreadStarter.java b/Utils/GathererCrawler/src/main/java/north/gatherercrawler/ThreadStarter.java index d850d2459d..15f728e335 100644 --- a/Utils/GathererCrawler/src/main/java/north/gatherercrawler/ThreadStarter.java +++ b/Utils/GathererCrawler/src/main/java/north/gatherercrawler/ThreadStarter.java @@ -89,7 +89,7 @@ public class ThreadStarter extends Thread { } sb.append("|"); - out.write(sb.toString()); + out.write(sb.toString().replace("\u00C6", "AE")); out.newLine(); } out.close(); diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index 9c86a7afff..6ce07c3d46 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -1447,7 +1447,7 @@ Horror of Horrors|Legends|20|U|{3}{B}{B}|Enchantment|||Sacrifice a Swamp: Regene Imprison|Legends|21|R|{B}|Enchantment — Aura|||Enchant creature$Whenever a player activates an ability of enchanted creature with {tap} in its activation cost that isn't a mana ability, you may pay {1}. If you do, counter that ability. If you don't, destroy Imprison.$Whenever enchanted creature attacks or blocks, you may pay {1}. If you do, tap the creature, remove it from combat, and creatures it was blocking that had become blocked by only that creature this combat become unblocked. If you don't, destroy Imprison.| Infernal Medusa|Legends|22|U|{3}{B}{B}|Creature — Gorgon|2|4|Whenever Infernal Medusa blocks a creature, destroy that creature at end of combat.$Whenever Infernal Medusa becomes blocked by a non-Wall creature, destroy that creature at end of combat.| Jovial Evil|Legends|23|R|{2}{B}|Sorcery|||Jovial Evil deals X damage to target opponent, where X is twice the number of white creatures that player controls.| -Lesser Werewolf|Legends|24|U|{3}{B}|Creature — Human Wolf|2|4|{B}: If Lesser Werewolf's power is 1 or more, it gets -1/-0 until end of turn and put a -0/-1 counter on target creature blocking or blocked by Lesser Werewolf. Activate this ability only during the declare blockers step.| +Lesser Werewolf|Legends|24|U|{3}{B}|Creature — Werewolf|2|4|{B}: If Lesser Werewolf's power is 1 or more, it gets -1/-0 until end of turn and put a -0/-1 counter on target creature blocking or blocked by Lesser Werewolf. Activate this ability only during the declare blockers step.| Lost Soul|Legends|25|C|{1}{B}{B}|Creature — Spirit Minion|2|1|Swampwalk| Mold Demon|Legends|26|R|{5}{B}{B}|Creature — Fungus Demon|6|6|When Mold Demon enters the battlefield, sacrifice it unless you sacrifice two Swamps.| Nether Void|Legends|27|R|{3}{B}|World Enchantment|||Whenever a player casts a spell, counter it unless its controller pays {3}.| @@ -1475,7 +1475,7 @@ Boomerang|Legends|48|C|{U}{U}|Instant|||Return target permanent to its owner's h Brine Hag|Legends|49|U|{2}{U}{U}|Creature — Hag|2|2|When Brine Hag dies, all creatures that dealt damage to it this turn become 0/2. (This effect lasts indefinitely.)| Devouring Deep|Legends|50|C|{2}{U}|Creature — Fish|1|2|Islandwalk| Dream Coat|Legends|51|U|{U}|Enchantment — Aura|||Enchant creature${0}: Enchanted creature becomes the color or colors of your choice. Activate this ability only once each turn.| -Elder Spawn|Legends|52|R|{4}{U}{U}{U}|Creature — Elemental|6|6|At the beginning of your upkeep, unless you sacrifice an Island, sacrifice Elder Spawn and it deals 6 damage to you.$Elder Spawn can't be blocked by red creatures.| +Elder Spawn|Legends|52|R|{4}{U}{U}{U}|Creature — Spawn|6|6|At the beginning of your upkeep, unless you sacrifice an Island, sacrifice Elder Spawn and it deals 6 damage to you.$Elder Spawn can't be blocked by red creatures.| Enchantment Alteration|Legends|53|C|{U}|Instant|||Attach target Aura attached to a creature or land to another permanent of that type.| Energy Tap|Legends|54|C|{U}|Sorcery|||Tap target untapped creature you control. If you do, add {X} to your mana pool, where X is that creature's converted mana cost.| Field of Dreams|Legends|55|R|{U}|World Enchantment|||Players play with the top card of their libraries revealed.| @@ -1562,9 +1562,9 @@ Blood Lust|Legends|135|U|{1}{R}|Instant|||If target creature has toughness 5 or Caverns of Despair|Legends|136|R|{2}{R}{R}|World Enchantment|||No more than two creatures can attack each combat.$No more than two creatures can block each combat.| Chain Lightning|Legends|137|C|{R}|Sorcery|||Chain Lightning deals 3 damage to target creature or player. Then that player or that creature's controller may pay {R}{R}. If the player does, he or she may copy this spell and may choose a new target for that copy.| Crevasse|Legends|138|U|{2}{R}|Enchantment|||Creatures with mountainwalk can be blocked as though they didn't have mountainwalk.| -Crimson Kobolds|Legends|219|C|{0}|Creature — Kobold|0|1|Crimson Kobolds is red.| +Crimson Kobolds|Legends|219|C|{0}|Creature — Kobold|0|1|| Crimson Manticore|Legends|139|R|{2}{R}{R}|Creature — Manticore|2|2|Flying${R}, {tap}: Crimson Manticore deals 1 damage to target attacking or blocking creature.| -Crookshank Kobolds|Legends|220|C|{0}|Creature — Kobold|0|1|Crookshank Kobolds is red.| +Crookshank Kobolds|Legends|220|C|{0}|Creature — Kobold|0|1|| Disharmony|Legends|140|R|{2}{R}|Instant|||Cast Disharmony only during combat before blockers are declared.$Untap target attacking creature and remove it from combat. Gain control of that creature until end of turn.| Dwarven Song|Legends|141|U|{R}|Instant|||Any number of target creatures become red until end of turn.| Eternal Warrior|Legends|142|U|{R}|Enchantment — Aura|||Enchant creature$Enchanted creature has vigilance.| @@ -1580,7 +1580,7 @@ Immolation|Legends|151|C|{R}|Enchantment Kobold Drill Sergeant|Legends|152|U|{1}{R}|Creature — Kobold Soldier|1|2|Other Kobold creatures you control get +0/+1 and have trample.| Kobold Overlord|Legends|153|R|{1}{R}|Creature — Kobold|1|2|First strike$Other Kobold creatures you control have first strike.| Kobold Taskmaster|Legends|154|U|{1}{R}|Creature — Kobold|1|2|Other Kobold creatures you control get +1/+0.| -Kobolds of Kher Keep|Legends|226|C|{0}|Creature — Kobold|0|1|Kobolds of Kher Keep is red.| +Kobolds of Kher Keep|Legends|226|C|{0}|Creature — Kobold|0|1|| Land's Edge|Legends|155|R|{1}{R}{R}|World Enchantment|||Discard a card: If the discarded card is a land card, Land's Edge deals 2 damage to target player. Any player may activate this ability.| Mountain Yeti|Legends|156|U|{2}{R}{R}|Creature — Yeti|3|3|Mountainwalk, protection from white| Primordial Ooze|Legends|157|U|{R}|Creature — Ooze|1|1|Primordial Ooze attacks each turn if able.$At the beginning of your upkeep, put a +1/+1 counter on Primordial Ooze. Then you may pay {X}, where X is the number of +1/+1 counters on it. If you don't, tap Primordial Ooze and it deals X damage to you.| @@ -1714,7 +1714,7 @@ Diabolic Machine|The Dark|98|U|{7}|Artifact Creature Fellwar Stone|The Dark|99|U|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.| Fountain of Youth|The Dark|100|U|{0}|Artifact|||{2}, {tap}: You gain 1 life.| Living Armor|The Dark|101|U|{4}|Artifact|||{tap}, Sacrifice Living Armor: Put X +0/+1 counters on target creature, where X is that creature's converted mana cost.| -Necropolis|The Dark|222|U|{5}|Artifact Creature — Wall|0|1|Defender (This creature can't attack.)$Exile a creature card from your graveyard: Put X +0/+1 counters on Necropolis, where X is the exiled card's converted mana cost.| +Necropolis|The Dark|74|U|{5}|Artifact Creature — Wall|0|1|Defender (This creature can't attack.)$Exile a creature card from your graveyard: Put X +0/+1 counters on Necropolis, where X is the exiled card's converted mana cost.| Reflecting Mirror|The Dark|103|U|{4}|Artifact|||{X}, {tap}: Change the target of target spell with a single target if that target is you. The new target must be a player. X is twice the converted mana cost of that spell.| Runesword|The Dark|104|U|{6}|Artifact|||{3}, {tap}: Target attacking creature gets +2/+0 until end of turn. When that creature leaves the battlefield this turn, sacrifice Runesword. If the creature deals damage to a creature this turn, the creature dealt damage can't be regenerated this turn. If a creature dealt damage by the targeted creature would die this turn, exile that creature instead.| Scarecrow|The Dark|246|U|{5}|Artifact Creature — Scarecrow|2|2|{6}, {tap}: Prevent all damage that would be dealt to you this turn by creatures with flying.| @@ -2920,7 +2920,7 @@ Feast of the Unicorn|Homelands|9|C|{3}{B}|Enchantment Funeral March|Homelands|11|C|{1}{B}{B}|Enchantment — Aura|||Enchant creature$When enchanted creature leaves the battlefield, its controller sacrifices a creature.| Ghost Hounds|Homelands|12|U|{1}{B}|Creature — Hound Spirit|1|1|Vigilance$Whenever Ghost Hounds blocks or becomes blocked by a white creature, Ghost Hounds gains first strike until end of turn.| Grandmother Sengir|Homelands|13|R|{4}{B}|Legendary Creature — Human Wizard|3|3|{1}{B}, {tap}: Target creature gets -1/-1 until end of turn.| -Greater Werewolf|Homelands|14|C|{4}{B}|Creature — Human Wolf|2|4|At end of combat, put a -0/-2 counter on each creature blocking or blocked by Greater Werewolf.| +Greater Werewolf|Homelands|14|C|{4}{B}|Creature — Werewolf|2|4|At end of combat, put a -0/-2 counter on each creature blocking or blocked by Greater Werewolf.| Headstone|Homelands|15|C|{1}{B}|Instant|||Exile target card from a graveyard.$Draw a card at the beginning of the next turn's upkeep.| Ihsan's Shade|Homelands|16|U|{3}{B}{B}{B}|Legendary Creature — Shade Knight|5|5|Protection from white| Irini Sengir|Homelands|17|U|{2}{B}{B}|Legendary Creature — Vampire Dwarf|2|2|Green enchantment spells and white enchantment spells cost {2} more to cast.| @@ -3048,7 +3048,7 @@ Helm of Obedience|Alliances|163|R|{4}|Artifact|||{X}, {tap}: Target opponent put Lodestone Bauble|Alliances|164|R|{0}|Artifact|||{1}, {tap}, Sacrifice Lodestone Bauble: Put up to four target basic land cards from a player's graveyard on top of his or her library in any order. That player draws a card at the beginning of the next turn's upkeep.| Mishra's Groundbreaker|Alliances|165|U|{4}|Artifact|||{tap}, Sacrifice Mishra's Groundbreaker: Target land becomes a 3/3 artifact creature that's still a land. (This effect lasts indefinitely.)| Mystic Compass|Alliances|166|U|{2}|Artifact|||{1}, {tap}: Target land becomes the basic land type of your choice until end of turn.| -Phyrexian Devourer|Alliances|167|R|{6}|Artifact Creature — Construct|1|1|When Phyrexian Devourer's power is 7 or greater, sacrifice it.$Exile the top card of your library: Put X +1/+1 counters on Phyrexian Devourer, where X is the exiled card's converted mana cost. If Phyrexian Devourer's power is 7 or greater, sacrifice it.| +Phyrexian Devourer|Alliances|167|R|{6}|Artifact Creature — Construct|1|1|When Phyrexian Devourer's power is 7 or greater, sacrifice it.$Exile the top card of your library: Put X +1/+1 counters on Phyrexian Devourer, where X is the exiled card's converted mana cost.| Phyrexian Portal|Alliances|168|R|{3}|Artifact|||{3}: Target opponent looks at the top ten cards of your library and separates them into two face-down piles. Exile one of those piles. Search the other pile for a card, put it into your hand, then shuffle the rest of that pile into your library. Activate this ability only if your library has ten or more cards in it.| Phyrexian War Beast|Alliances|169|C|{3}|Artifact Creature — Beast|3|4|When Phyrexian War Beast leaves the battlefield, sacrifice a land and Phyrexian War Beast deals 1 damage to you.| Phyrexian War Beast|Alliances|169|C|{3}|Artifact Creature — Beast|3|4|When Phyrexian War Beast leaves the battlefield, sacrifice a land and Phyrexian War Beast deals 1 damage to you.| @@ -3120,7 +3120,7 @@ Storm Crow|Alliances|54|C|{1}{U}|Creature Storm Crow|Alliances|54|C|{1}{U}|Creature — Bird|1|2|Flying (This creature can't be blocked except by creatures with flying or reach.)| Storm Elemental|Alliances|56|U|{5}{U}|Creature — Elemental|3|4|Flying${U}, Exile the top card of your library: Tap target creature with flying.${U}, Exile the top card of your library: If the exiled card is a snow land, Storm Elemental gets +1/+1 until end of turn.| Suffocation|Alliances|57|U|{1}{U}|Instant|||Cast Suffocation only if you were dealt damage this turn by a red instant or sorcery spell.$Suffocation deals 4 damage to the controller of the last red instant or sorcery spell that dealt damage to you this turn.$Draw a card at the beginning of the next turn's upkeep.| -Thought Lash|Alliances|58|R|{2}{U}{U}|Enchantment|||Cumulative upkeep—Exile the top card of your library. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$When Thought Lash's cumulative upkeep isn't paid, exile all cards from your library.$Exile the top card of your library: Prevent the next 1 damage that would be dealt to you this turn.| +Thought Lash|Alliances|58|R|{2}{U}{U}|Enchantment|||Cumulative upkeep—Exile the top card of your library. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$When a player doesn't pay Thought Lash's cumulative upkeep, that player exiles all cards from his or her library.$Exile the top card of your library: Prevent the next 1 damage that would be dealt to you this turn.| Tidal Control|Alliances|59|R|{1}{U}{U}|Enchantment|||Cumulative upkeep {2} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$Pay 2 life or {2}: Counter target red or green spell. Any player may activate this ability.| Viscerid Armor|Alliances|60|C|{1}{U}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +1/+1.${1}{U}: Return Viscerid Armor to its owner's hand.| Viscerid Armor|Alliances|60|C|{1}{U}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +1/+1.${1}{U}: Return Viscerid Armor to its owner's hand.| @@ -3220,7 +3220,7 @@ Wild Aesthir|Alliances|154|C|{2}{W}|Creature Wild Aesthir|Alliances|154|C|{2}{W}|Creature — Bird|1|1|Flying, first strike${W}{W}: Wild Aesthir gets +2/+0 until end of turn. Activate this ability only once each turn.| Energy Arc|Alliances|190|U|{W}{U}|Instant|||Untap any number of target creatures. Prevent all combat damage that would be dealt to and dealt by those creatures this turn.| Lim-Dϋl's Paladin|Alliances|191|U|{2}{B}{R}|Creature — Human Knight|0|3|Trample$At the beginning of your upkeep, you may discard a card. If you don't, sacrifice Lim-Dûl's Paladin and draw a card.$Whenever Lim-Dûl's Paladin becomes blocked, it gets +6/+3 until end of turn.$Whenever Lim-Dûl's Paladin attacks and isn't blocked, it assigns no combat damage to defending player this turn and that player loses 4 life.| -Lim-Dϋl's Vault|Alliances|192|U|{U}{B}|Instant|||Look at the top five cards of your library. As many times as you choose, you may pay 1 life, put those cards on the bottom of your library, then look at the top five cards of your library. Then shuffle your library and put the last cards you looked at this way on top of it in any order.| +Lim-Dϋl's Vault|Alliances|192|U|{U}{B}|Instant|||Look at the top five cards of your library. As many times as you choose, you may pay 1 life, put those cards on the bottom of your library in any order, then look at the top five cards of your library. Then shuffle your library and put the last cards you looked at this way on top of it in any order.| Lord of Tresserhorn|Alliances|193|R|{1}{U}{B}{R}|Legendary Creature — Zombie|10|4|When Lord of Tresserhorn enters the battlefield, you lose 2 life, you sacrifice two creatures, and target opponent draws two cards.${B}: Regenerate Lord of Tresserhorn.| Misfortune|Alliances|194|R|{1}{B}{R}{G}|Sorcery|||An opponent chooses one — You put a +1/+1 counter on each creature you control and gain 4 life; or you put a -1/-1 counter on each creature that player controls and Misfortune deals 4 damage to him or her.| Nature's Blessing|Alliances|195|U|{2}{G}{W}|Enchantment|||{G}{W}, Discard a card: Put a +1/+1 counter on target creature or that creature gains banding, first strike, or trample. (This effect lasts indefinitely. Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding a player controls are blocking or being blocked by a creature, that player divides that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)| @@ -3329,7 +3329,7 @@ Cerulean Wyvern|Mirage|57|U|{4}{U}|Creature Cloak of Invisibility|Mirage|58|C|{U}|Enchantment — Aura|||Enchant creature$Enchanted creature has phasing and can't be blocked except by Walls. (It phases in or out before its controller untaps during each of his or her untap steps. While it's phased out, it's treated as though it doesn't exist.)| Coral Fighters|Mirage|59|U|{1}{U}|Creature — Merfolk Soldier|1|1|Whenever Coral Fighters attacks and isn't blocked, look at the top card of defending player's library. You may put that card on the bottom of that player's library.| Daring Apprentice|Mirage|60|R|{1}{U}{U}|Creature — Human Wizard|1|1|{tap}, Sacrifice Daring Apprentice: Counter target spell.| -Dissipate|Mirage|8|U|{1}{U}{U}|Instant|||Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.| +Dissipate|Mirage|61|U|{1}{U}{U}|Instant|||Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.| Dream Cache|Mirage|62|C|{2}{U}|Sorcery|||Draw three cards, then put two cards from your hand both on top of your library or both on the bottom of your library.| Dream Fighter|Mirage|63|C|{2}{U}|Creature — Human Soldier|1|1|Whenever Dream Fighter blocks or becomes blocked by a creature, Dream Fighter and that creature phase out. (While they're phased out, they're treated as though they don't exist. Each one phases in before its controller untaps during his or her next untap step.)| Energy Vortex|Mirage|64|R|{3}{U}{U}|Enchantment|||As Energy Vortex enters the battlefield, choose an opponent.$At the beginning of your upkeep, remove all energy counters from Energy Vortex.$At the beginning of the chosen player's upkeep, Energy Vortex deals 3 damage to that player unless he or she pays {1} for each energy counter on Energy Vortex.${X}: Put X energy counters on Energy Vortex. Activate this ability only during your upkeep.| @@ -3603,7 +3603,7 @@ Sisay's Ring|Visions|154|C|{4}|Artifact|||{tap}: Add {2} to your mana pool.| Snake Basket|Visions|155|R|{4}|Artifact|||{X}, Sacrifice Snake Basket: Put X 1/1 green Snake creature tokens onto the battlefield. Activate this ability only any time you could cast a sorcery.| Teferi's Puzzle Box|Visions|156|R|{4}|Artifact|||At the beginning of each player's draw step, that player puts the cards in his or her hand on the bottom of his or her library in any order, then draws that many cards.| Tin-Wing Chimera|Visions|157|U|{4}|Artifact Creature — Chimera|2|2|Flying$Sacrifice Tin-Wing Chimera: Put a +2/+2 counter on target Chimera creature. It gains flying. (This effect lasts indefinitely.)| -Triangle of War|Visions|158|R|{1}|Artifact|||{2}, Sacrifice Triangle of War: Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its power to the other.| +Triangle of War|Visions|158|R|{1}|Artifact|||{2}, Sacrifice Triangle of War: Choose target creature you control and target creature an opponent controls. Those creatures fight each other. (Each deals damage equal to its power to the other.)| Wand of Denial|Visions|159|R|{2}|Artifact|||{tap}: Look at the top card of target player's library. If it's a nonland card, you may pay 2 life. If you do, put it into that player's graveyard.| Aku Djinn|Visions|1|R|{3}{B}{B}|Creature — Djinn|5|6|Trample$At the beginning of your upkeep, put a +1/+1 counter on each creature each opponent controls.| Blanket of Night|Visions|2|U|{1}{B}{B}|Enchantment|||Each land is a Swamp in addition to its other land types.| @@ -3844,7 +3844,7 @@ Fear|Fifth Edition|24|C|{B}{B}|Enchantment Frozen Shade|Fifth Edition|25|C|{2}{B}|Creature — Shade|0|1|{B}: Frozen Shade gets +1/+1 until end of turn.| Funeral March|Fifth Edition|26|C|{1}{B}{B}|Enchantment — Aura|||Enchant creature$When enchanted creature leaves the battlefield, its controller sacrifices a creature.| Gloom|Fifth Edition|49|U|{2}{B}|Enchantment|||White spells cost {3} more to cast.$Activated abilities of white enchantments cost {3} more to activate.| -Greater Werewolf|Fifth Edition|28|U|{4}{B}|Creature — Human Wolf|2|4|At end of combat, put a -0/-2 counter on each creature blocking or blocked by Greater Werewolf.| +Greater Werewolf|Fifth Edition|28|U|{4}{B}|Creature — Werewolf|2|4|At end of combat, put a -0/-2 counter on each creature blocking or blocked by Greater Werewolf.| Hecatomb|Fifth Edition|29|R|{1}{B}{B}|Enchantment|||When Hecatomb enters the battlefield, sacrifice Hecatomb unless you sacrifice four creatures.$Tap an untapped Swamp you control: Hecatomb deals 1 damage to target creature or player.| Howl from Beyond|Fifth Edition|30|C|{X}{B}|Instant|||Target creature gets +X/+0 until end of turn.| Initiates of the Ebon Hand|Fifth Edition|31|C|{B}|Creature — Cleric|1|1|{1}: Add {B} to your mana pool. If this ability has been activated four or more times this turn, sacrifice Initiates of the Ebon Hand at the beginning of the next end step.| @@ -3976,7 +3976,7 @@ Force of Nature|Fifth Edition|156|R|{2}{G}{G}{G}{G}|Creature Foxfire|Fifth Edition|157|C|{2}{G}|Instant|||Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn.$Draw a card at the beginning of the next turn's upkeep.| Fungusaur|Fifth Edition|158|R|{3}{G}|Creature — Fungus Lizard|2|2|Whenever Fungusaur is dealt damage, put a +1/+1 counter on it.| Fyndhorn Elder|Fifth Edition|159|U|{2}{G}|Creature — Elf Druid|1|1|{tap}: Add {G}{G} to your mana pool.| -Ghazbαn Ogre|Fifth Edition|60|C|{G}|Creature — Ogre|2|2|At the beginning of your upkeep, if a player has more life than each other player, the player with the most life gains control of Ghazbán Ogre.| +Ghazbαn Ogre|Fifth Edition|160|C|{G}|Creature — Ogre|2|2|At the beginning of your upkeep, if a player has more life than each other player, the player with the most life gains control of Ghazbán Ogre.| Giant Growth|Fifth Edition|161|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.| Giant Spider|Fifth Edition|162|C|{3}{G}|Creature — Spider|2|4|Reach (This creature can block creatures with flying.)| Grizzly Bears|Fifth Edition|163|C|{1}{G}|Creature — Bear|2|2|| @@ -4005,7 +4005,7 @@ Scavenger Folk|Fifth Edition|185|C|{G}|Creature Scryb Sprites|Fifth Edition|186|C|{G}|Creature — Faerie|1|1|Flying| Shanodin Dryads|Fifth Edition|187|C|{G}|Creature — Dryad|1|1|Forestwalk| Shrink|Fifth Edition|188|C|{G}|Instant|||Target creature gets -5/-0 until end of turn.| -Stampede|Fifth Edition|82|R|{1}{G}{G}|Instant|||Attacking creatures get +1/+0 and gain trample until end of turn.| +Stampede|Fifth Edition|24|R|{1}{G}{G}|Instant|||Attacking creatures get +1/+0 and gain trample until end of turn.| Stream of Life|Fifth Edition|190|C|{X}{G}|Sorcery|||Target player gains X life.| Sylvan Library|Fifth Edition|191|R|{1}{G}|Enchantment|||At the beginning of your draw step, you may draw two additional cards. If you do, choose two cards in your hand drawn this turn. For each of those cards, pay 4 life or put the card on top of your library.| Tarpan|Fifth Edition|192|C|{G}|Creature — Horse|1|1|When Tarpan dies, you gain 1 life.| @@ -4330,7 +4330,7 @@ Craven Giant|Portal|126|C|{2}{R}|Creature Desert Drake|Portal|127|U|{3}{R}|Creature — Drake|2|2|Flying| Devastation|Portal|128|R|{5}{R}{R}|Sorcery|||Destroy all creatures and lands.| Earthquake|Portal|94|R|{X}{R}|Sorcery|||Earthquake deals X damage to each creature without flying and each player.| -Fire Dragon|Portal|130|R|{6}{R}{R}{R}|Creature — Dragon|6|6|Flying$When Fire Dragon enters the battlefield, it deals damage equal to the number of Mountains you control to target creature.| +Fire Dragon|Portal|129|R|{6}{R}{R}{R}|Creature — Dragon|6|6|Flying$When Fire Dragon enters the battlefield, it deals damage equal to the number of Mountains you control to target creature.| Fire Imp|Portal|131|U|{2}{R}|Creature — Imp|2|1|When Fire Imp enters the battlefield, it deals 2 damage to target creature.| Fire Snake|Portal|132|C|{4}{R}|Creature — Snake|3|1|When Fire Snake dies, destroy target land.| Fire Tempest|Portal|133|R|{5}{R}{R}|Sorcery|||Fire Tempest deals 6 damage to each creature and each player.| @@ -4546,7 +4546,7 @@ Fit of Rage|Weatherlight|102|C|{1}{R}|Sorcery|||Target creature gets +3/+3 and g Goblin Bomb|Weatherlight|103|R|{1}{R}|Enchantment|||At the beginning of your upkeep, you may flip a coin. If you win the flip, put a fuse counter on Goblin Bomb. If you lose the flip, remove a fuse counter from Goblin Bomb.$Remove five fuse counters from Goblin Bomb, Sacrifice Goblin Bomb: Goblin Bomb deals 20 damage to target player.| Goblin Grenadiers|Weatherlight|104|U|{3}{R}|Creature — Goblin|2|2|Whenever Goblin Grenadiers attacks and isn't blocked, you may sacrifice it. If you do, destroy target creature and target land.| Goblin Vandal|Weatherlight|105|C|{R}|Creature — Goblin Rogue|1|1|Whenever Goblin Vandal attacks and isn't blocked, you may pay {R}. If you do, destroy target artifact defending player controls and Goblin Vandal assigns no combat damage this turn.| -Heart of Bogardan|Weatherlight|106|R|{2}{R}{R}|Enchantment|||Cumulative upkeep {2} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$When Heart of Bogardan's cumulative upkeep isn't paid, it deals X damage to target player and each creature he or she controls, where X is twice the number of age counters on Heart of Bogardan minus 2.| +Heart of Bogardan|Weatherlight|106|R|{2}{R}{R}|Enchantment|||Cumulative upkeep {2} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$When a player doesn't pay Heart of Bogardan's cumulative upkeep, Heart of Bogardan deals X damage to target player and each creature he or she controls, where X is twice the number of age counters on Heart of Bogardan minus 2.| Heat Stroke|Weatherlight|107|R|{2}{R}|Enchantment|||At end of combat, destroy each creature that blocked or was blocked this turn.| Hurloon Shaman|Weatherlight|108|U|{1}{R}{R}|Creature — Minotaur Shaman|2|3|When Hurloon Shaman dies, each player sacrifices a land.| Lava Hounds|Weatherlight|109|U|{2}{R}{R}|Creature — Hound|4|4|Haste$When Lava Hounds enters the battlefield, it deals 4 damage to you.| @@ -4687,7 +4687,7 @@ Benthic Behemoth|Tempest|54|R|{5}{U}{U}{U}|Creature Capsize|Tempest|55|C|{1}{U}{U}|Instant|||Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)$Return target permanent to its owner's hand.| Chill|Tempest|60|U|{1}{U}|Enchantment|||Red spells cost {2} more to cast.| Counterspell|Tempest|57|C|{U}{U}|Instant|||Counter target spell.| -Dismiss|Tempest|73|U|{2}{U}{U}|Instant|||Counter target spell.$$Draw a card.| +Dismiss|Tempest|73|U|{2}{U}{U}|Instant|||Counter target spell.$Draw a card.| Dream Cache|Tempest|59|C|{2}{U}|Sorcery|||Draw three cards, then put two cards from your hand both on top of your library or both on the bottom of your library.| Duplicity|Tempest|60|R|{3}{U}{U}|Enchantment|||When Duplicity enters the battlefield, exile the top five cards of your library face down.$At the beginning of your upkeep, you may exile all cards from your hand face down. If you do, put all other cards you own exiled with Duplicity into your hand.$At the beginning of your end step, discard a card.$When you lose control of Duplicity, put all cards exiled with Duplicity into their owner's graveyard.| Ertai's Meddling|Tempest|61|R|{X}{U}|Instant|||X can't be 0.$Target spell's controller exiles it with X delay counters on it.$At the beginning of each of that player's upkeeps, if that card is exiled, remove a delay counter from it. If the card has no delay counters on it, he or she puts it onto the stack as a copy of the original spell.| @@ -5926,7 +5926,7 @@ Fire Ambush|Portal Three Kingdoms|111|C|{1}{R}|Sorcery|||Fire Ambush deals 3 dam Warrior's Stand|Portal Three Kingdoms|31|U|{1}{W}|Instant|||Cast Warrior's Stand only during the declare attackers step and only if you've been attacked this step.$Creatures you control get +2/+2 until end of turn.| Shu Cavalry|Portal Three Kingdoms|19|C|{2}{W}|Creature — Human Soldier|2|2|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)| Zodiac Ox|Portal Three Kingdoms|161|U|{3}{G}|Creature — Ox|3|3|Swampwalk| -Burning of Xinye|Portal Three Kingdoms|104|R|{4}{R}{R}|Sorcery|||You destroy four lands you control, then target opponent destroys four lands he or she controls. Then Burning of Xinye deals 4 damage to each creature.| +Burning of Xinye|Portal Three Kingdoms|104|R|{4}{R}{R}|Sorcery|||Choose four lands you control and destroy those lands. Then target opponent chooses four lands he or she controls. Destroy those lands. Then Burning of Xinye deals 4 damage to each creature.| Forest|Portal Three Kingdoms|179|L||Basic Land — Forest|||G| Forest|Portal Three Kingdoms|180|L||Basic Land — Forest|||G| Island|Portal Three Kingdoms|170|L||Basic Land — Island|||U| @@ -7278,10 +7278,10 @@ Rappelling Scouts|Mercadian Masques|41|R|{2}{W}{W}|Creature Quiet Speculation|Judgment|49|U|{1}{U}|Sorcery|||Search target player's library for up to three cards with flashback and put them into that player's graveyard. Then the player shuffles his or her library.| Hoodwink|Mercadian Masques|84|C|{1}{U}|Instant|||Return target artifact, enchantment, or land to its owner's hand.| Charisma|Mercadian Masques|66|R|{U}{U}{U}|Enchantment — Aura|||Enchant creature$Whenever enchanted creature deals damage to a creature, gain control of the other creature for as long as Charisma remains on the battlefield.| -Stand|Invasion|292|U|{W}|Instant|||Prevent the next 2 damage that would be dealt to target creature this turn.| +Deliver|Invasion|292|U|{2}{U}|Instant|||$Return target permanent to its owner's hand.| Deliver|Invasion|292|U|{2}{U}|Instant|||$Return target permanent to its owner's hand.| Malice|Invasion|293|U|{3}{B}|Instant|||$Destroy target nonblack creature. It can't be regenerated.| -Spite|Invasion|293|U|{3}{U}|Instant|||Counter target noncreature spell.| +Malice|Invasion|293|U|{3}{B}|Instant|||$Destroy target nonblack creature. It can't be regenerated.| Suffering|Invasion|294|U|{3}{R}|Sorcery|||$Destroy target land.| Suffering|Invasion|294|U|{3}{R}|Sorcery|||$Destroy target land.| Battery|Invasion|295|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.| @@ -8141,8 +8141,8 @@ Breath of Life|Starter 2000|2|U|{3}{W}|Sorcery|||Return target creature card fro Wind Drake|Starter 2000|75|C|{2}{U}|Creature — Drake|2|2|Flying| Wild Griffin|Starter 2000|19|C|{2}{W}|Creature — Griffin|2|2|Flying| Knight Errant|Starter 2000|7|C|{1}{W}|Creature — Human Knight|2|2|| -Island|Starter 2000|234|L||Basic Land — Island|||U| -Island|Starter 2000|234|L||Basic Land — Island|||U| +Island|Starter 2000|253|L||Basic Land — Island|||U| +Island|Starter 2000|253|L||Basic Land — Island|||U| Plains|Starter 2000|275|L||Basic Land — Plains|||W| Plains|Starter 2000|275|L||Basic Land — Plains|||W| Eager Cadet|Starter 2000|4|C|{W}|Creature — Human Soldier|1|1|| @@ -8160,8 +8160,8 @@ Swamp|Starter 2000|135|L||Basic Land Swamp|Starter 2000|135|L||Basic Land — Swamp|||B| Mountain|Starter 2000|102|L||Basic Land — Mountain|||R| Mountain|Starter 2000|102|L||Basic Land — Mountain|||R| -Forest|Starter 2000|246|L||Basic Land — Forest|||G| -Forest|Starter 2000|246|L||Basic Land — Forest|||G| +Forest|Starter 2000|262|L||Basic Land — Forest|||G| +Forest|Starter 2000|262|L||Basic Land — Forest|||G| Willow Elf|Starter 2000|20|C|{G}|Creature — Elf|1|1|| Moon Sprite|Starter 2000|11|U|{1}{G}|Creature — Faerie|1|1|Flying| Goblin Hero|Starter 2000|103|C|{2}{R}|Creature — Goblin|2|2|| @@ -8180,11 +8180,11 @@ Disenchant|Starter 2000|6|C|{1}{W}|Instant|||Destroy target artifact or enchantm Shock|Starter 2000|160|C|{R}|Instant|||Shock deals 2 damage to target creature or player.| Giant Growth|Starter 2000|66|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.| Counterspell|Starter 2000|24|C|{U}{U}|Instant|||Counter target spell.| -Terror|Starter 2000|35|C|{1}{B}|Instant|||Destroy target nonartifact, nonblack creature. It can't be regenerated.| +Terror|Starter 2000|111|C|{1}{B}|Instant|||Destroy target nonartifact, nonblack creature. It can't be regenerated.| Prodigal Sorcerer|Starter 2000|29|C|{2}{U}|Creature — Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.| Drudge Skeletons|Starter 2000|22|C|{1}{B}|Creature — Skeleton|1|1|{B}: Regenerate Drudge Skeletons. (The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)| Llanowar Elves|Starter 2000|182|C|{G}|Creature — Elf Druid|1|1|{tap}: Add {G} to your mana pool.| -Flight|Starter 2000|16|C|{U}|Enchantment — Aura|||Enchant creature$Enchanted creature has flying.| +Flight|Starter 2000|2|C|{U}|Enchantment — Aura|||Enchant creature$Enchanted creature has flying.| Flame Spirit|Starter 2000|179|C|{4}{R}|Creature — Elemental Spirit|2|3|{R}: Flame Spirit gets +1/+0 until end of turn.| Venerable Monk|Starter 2000|5|C|{2}{W}|Creature — Human Monk Cleric|2|2|When Venerable Monk enters the battlefield, you gain 2 life.| Wing Storm|Prophecy|135|U|{2}{G}|Sorcery|||Wing Storm deals damage to each player equal to twice the number of creatures with flying that player controls.| @@ -8613,7 +8613,7 @@ Tahngarth's Glare|Apocalypse|70|C|{R}|Sorcery|||Look at the top three cards of t Reef Shaman|Apocalypse|29|C|{U}|Creature — Merfolk Shaman|0|2|{tap}: Target land becomes the basic land type of your choice until end of turn.| Symbiotic Deployment|Apocalypse|88|R|{2}{G}|Enchantment|||Skip your draw step.$${1}, Tap two untapped creatures you control: Draw a card.| Death|Apocalypse|130|U|{1}{B}|Sorcery|||$Return target creature card from your graveyard to the battlefield. You lose life equal to its converted mana cost.| -Death|Apocalypse|130|U|{1}{B}|Sorcery|||$Return target creature card from your graveyard to the battlefield. You lose life equal to its converted mana cost.| +Life|Apocalypse|130|U|{G}|Sorcery|||All lands you control become 1/1 creatures until end of turn. They're still lands.| Reality|Apocalypse|129|U|{2}{G}|Instant|||$Destroy target artifact.| Reality|Apocalypse|129|U|{2}{G}|Instant|||$Destroy target artifact.| Ice|Apocalypse|128|U|{1}{U}|Instant|||$Tap target permanent.$Draw a card.| @@ -9332,7 +9332,7 @@ Dawn of the Dead|Torment|59|R|{2}{B}{B}{B}|Enchantment|||At the beginning of you Cephalid Vandal|Torment|31|R|{1}{U}|Creature — Cephalid Rogue|1|1|At the beginning of your upkeep, put a shred counter on Cephalid Vandal. Then put the top card of your library into your graveyard for each shred counter on Cephalid Vandal.| Vigilant Sentry|Judgment|33|C|{1}{W}{W}|Creature — Human Nomad|2|2|Threshold — As long as seven or more cards are in your graveyard, Vigilant Sentry gets +1/+1 and has "{tap}: Target attacking or blocking creature gets +3/+3 until end of turn."| Silver Seraph|Judgment|23|R|{5}{W}{W}{W}|Creature — Angel|6|6|Flying$Threshold — Other creatures you control get +2/+2 as long as seven or more cards are in your graveyard.| -Treacherous Werewolf|Judgment|76|C|{2}{B}|Creature — Human Wolf Minion|2|2|Threshold — As long as seven or more cards are in your graveyard, Treacherous Werewolf gets +2/+2 and has "When Treacherous Werewolf dies, you lose 4 life."| +Treacherous Werewolf|Judgment|76|C|{2}{B}|Creature — Werewolf Minion|2|2|Threshold — As long as seven or more cards are in your graveyard, Treacherous Werewolf gets +2/+2 and has "When Treacherous Werewolf dies, you lose 4 life."| Browbeat|Judgment|82|U|{2}{R}|Sorcery|||Any player may have Browbeat deal 5 damage to him or her. If no one does, target player draws three cards.| Anurid Barkripper|Judgment|104|C|{1}{G}{G}|Creature — Frog Beast|2|2|Threshold — Anurid Barkripper gets +2/+2 as long as seven or more cards are in your graveyard.| Battlefield Scrounger|Judgment|106|C|{3}{G}{G}|Creature — Centaur|3|3|Threshold — Put three cards from your graveyard on the bottom of your library: Battlefield Scrounger gets +3/+3 until end of turn. Activate this ability only once each turn, and only if seven or more cards are in your graveyard.| @@ -9628,7 +9628,7 @@ Standardize|Onslaught|116|R|{U}{U}|Instant|||Choose a creature type other than W Pinpoint Avalanche|Onslaught|221|C|{3}{R}{R}|Instant|||Pinpoint Avalanche deals 4 damage to target creature. The damage can't be prevented.| Kamahl, Fist of Krosa|Onslaught|268|R|{4}{G}{G}|Legendary Creature — Human Druid|4|3|{G}: Target land becomes a 1/1 creature until end of turn. It's still a land.${2}{G}{G}{G}: Creatures you control get +3/+3 and gain trample until end of turn.| Seaside Haven|Onslaught|323|U||Land|||{tap}: Add {1} to your mana pool.$${W}{U}, {tap}, Sacrifice a Bird: Draw a card.| -Contested Cliffs|Onslaught|314|R||Land|||{tap}: Add {1} to your mana pool.${R}{G}, {tap}: Choose target Beast creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its power to the other.| +Contested Cliffs|Onslaught|314|R||Land|||{tap}: Add {1} to your mana pool.${R}{G}, {tap}: Choose target Beast creature you control and target creature an opponent controls. Those creatures fight each other. (Each deals damage equal to its power to the other.)| Unholy Grotto|Onslaught|327|R||Land|||{tap}: Add {1} to your mana pool.${B}, {tap}: Put target Zombie card from your graveyard on top of your library.| Starlit Sanctum|Onslaught|325|U||Land|||{tap}: Add {1} to your mana pool.${W}, {tap}, Sacrifice a Cleric creature: You gain life equal to the sacrificed creature's toughness.${B}, {tap}, Sacrifice a Cleric creature: Target player loses life equal to the sacrificed creature's power.| Phage the Untouchable|Legions|78|R|{3}{B}{B}{B}{B}|Legendary Creature — Zombie Minion|4|4|When Phage the Untouchable enters the battlefield, if you didn't cast it from your hand, you lose the game.$Whenever Phage deals combat damage to a creature, destroy that creature. It can't be regenerated.$Whenever Phage deals combat damage to a player, that player loses the game.| @@ -11058,7 +11058,7 @@ Wine of Blood and Iron|Saviors of Kamigawa|161|R|{3}|Artifact|||{4}: Target crea Cowed by Wisdom|Saviors of Kamigawa|5|C|{W}|Enchantment — Aura|||Enchant creature$Enchanted creature can't attack or block unless its controller pays {1} for each card in your hand.| Sokenzan Renegade|Saviors of Kamigawa|114|U|{2}{R}|Creature — Ogre Samurai Mercenary|3|3|Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)$At the beginning of your upkeep, if a player has more cards in hand than each other player, the player who has the most cards in hand gains control of Sokenzan Renegade.| Hail of Arrows|Saviors of Kamigawa|11|U|{X}{W}|Instant|||Hail of Arrows deals X damage divided as you choose among any number of target attacking creatures.| -Evermind|Saviors of Kamigawa|37|U||Instant — Arcane|||(Nonexistent mana costs can't be paid.)$Draw a card.$Evermind is blue.$Splice onto Arcane {1}{U} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)| +Evermind|Saviors of Kamigawa|37|U||Instant — Arcane|||(Nonexistent mana costs can't be paid.)$Draw a card.$Splice onto Arcane {1}{U} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)| O-Naginata|Saviors of Kamigawa|157|U|{1}|Artifact — Equipment|||O-Naginata can be attached only to a creature with 3 or more power.$Equipped creature gets +3/+0 and has trample.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)| Akuta, Born of Ash|Saviors of Kamigawa|61|R|{2}{B}{B}|Legendary Creature — Spirit|3|2|Haste$At the beginning of your upkeep, if you have more cards in hand than each opponent, you may sacrifice a Swamp. If you do, return Akuta, Born of Ash from your graveyard to the battlefield.| Kiku's Shadow|Saviors of Kamigawa|77|U|{B}{B}|Sorcery|||Target creature deals damage to itself equal to its power.| @@ -11106,7 +11106,7 @@ Footsteps of the Goryo|Saviors of Kamigawa|68|U|{2}{B}|Sorcery Ghost-Lit Stalker|Saviors of Kamigawa|69|U|{B}|Creature — Spirit|1|1|{4}{B}, {tap}: Target player discards two cards. Activate this ability only any time you could cast a sorcery.$Channel — {5}{B}{B}, Discard Ghost-Lit Stalker: Target player discards four cards. Activate this ability only any time you could cast a sorcery.| Stampeding Serow|Saviors of Kamigawa|150|U|{2}{G}{G}|Creature — Antelope Beast|5|4|Trample$At the beginning of your upkeep, return a green creature you control to its owner's hand.| Forked-Branch Garami|Betrayers of Kamigawa|125|U|{3}{G}{G}|Creature — Spirit|4|4|Soulshift 4, soulshift 4 (When this creature dies, you may return up to two target Spirit cards with converted mana cost 4 or less from your graveyard to your hand.)| -Rally the Horde|Saviors of Kamigawa|110|R|{5}{R}|Sorcery|||Exile the top card of your library. Exile the top card of your library. Exile the top card of your library. If the last card exiled isn't a land, repeat this process until the last card exiled is a land. Put a 1/1 red Warrior creature token onto the battlefield for each nonland card exiled this way.| +Rally the Horde|Saviors of Kamigawa|110|R|{5}{R}|Sorcery|||Exile the top card of your library. Exile the top card of your library. Exile the top card of your library. If the last card exiled isn't a land, repeat this process. Put a 1/1 red Warrior creature token onto the battlefield for each nonland card exiled this way.| Tallowisp|Betrayers of Kamigawa|25|U|{1}{W}|Creature — Spirit|1|3|Whenever you cast a Spirit or Arcane spell, you may search your library for an Aura card with enchant creature, reveal it, and put it into your hand. If you do, shuffle your library.| Shuko|Betrayers of Kamigawa|159|U|{1}|Artifact — Equipment|||Equipped creature gets +1/+0.$Equip {0} ({0}: Attach to target creature you control. Equip only as a sorcery.)| Blessing of Leeches|Betrayers of Kamigawa|62|C|{2}{B}|Enchantment — Aura|||Flash$Enchant creature$At the beginning of your upkeep, you lose 1 life.${0}: Regenerate enchanted creature.| @@ -11281,7 +11281,7 @@ Akki Rockspeaker|Champions of Kamigawa|154|C|{1}{R}|Creature Thief of Hope|Champions of Kamigawa|147|U|{2}{B}|Creature — Spirit|2|2|Whenever you cast a Spirit or Arcane spell, target opponent loses 1 life and you gain 1 life.$Soulshift 2 (When this creature dies, you may return target Spirit card with converted mana cost 2 or less from your graveyard to your hand.)| Kami of Lunacy|Champions of Kamigawa|119|U|{4}{B}{B}|Creature — Spirit|4|1|Flying$Soulshift 5 (When this creature dies, you may return target Spirit card with converted mana cost 5 or less from your graveyard to your hand.)| Scuttling Death|Champions of Kamigawa|142|C|{4}{B}|Creature — Spirit|4|2|Sacrifice Scuttling Death: Target creature gets -1/-1 until end of turn.$Soulshift 4 (When this creature dies, you may return target Spirit card with converted mana cost 4 or less from your graveyard to your hand.)| -Hall of the Bandit Lord|Champions of Kamigawa|277|R||Legendary Land|||Hall of the Bandit Lord enters the battlefield tapped.${tap}, Pay 3 life: Add {1} to your mana pool. If that mana is spent on a creature spell, that creature has haste.| +Hall of the Bandit Lord|Champions of Kamigawa|277|R||Legendary Land|||Hall of the Bandit Lord enters the battlefield tapped.${tap}, Pay 3 life: Add {1} to your mana pool. If that mana is spent on a creature spell, it gains haste.| Blind with Anger|Champions of Kamigawa|158|U|{3}{R}|Instant — Arcane|||Untap target nonlegendary creature and gain control of it until end of turn. That creature gains haste until end of turn.| Unnatural Speed|Champions of Kamigawa|197|C|{R}|Instant — Arcane|||Target creature gains haste until end of turn.| Time Stop|Champions of Kamigawa|97|R|{4}{U}{U}|Instant|||End the turn. (Exile all spells and abilities on the stack, including this card. The player whose turn it is discards down to his or her maximum hand size. Damage wears off, and "this turn" and "until end of turn" effects end.)| @@ -11295,8 +11295,8 @@ Kenzo the Hardhearted|Champions of Kamigawa|2|U|{W}|Legendary Creature He Who Hungers|Champions of Kamigawa|114|R|{4}{B}|Legendary Creature — Spirit|3|2|Flying${1}, Sacrifice a Spirit: Target opponent reveals his or her hand. You choose a card from it. That player discards that card. Activate this ability only any time you could cast a sorcery.$Soulshift 4 (When this creature dies, you may return target Spirit card with converted mana cost 4 or less from your graveyard to your hand.)| Tide of War|Champions of Kamigawa|194|R|{4}{R}{R}|Enchantment|||Whenever one or more creatures block, flip a coin. If you win the flip, each blocking creature is sacrificed by its controller. If you lose the flip, each blocked creature is sacrificed by its controller.| Myojin of Seeing Winds|Champions of Kamigawa|75|R|{7}{U}{U}{U}|Legendary Creature — Spirit|3|3|Myojin of Seeing Winds enters the battlefield with a divinity counter on it if you cast it from your hand.$Myojin of Seeing Winds is indestructible as long as it has a divinity counter on it.$Remove a divinity counter from Myojin of Seeing Winds: Draw a card for each permanent you control.| -Nezumi Graverobber|Champions of Kamigawa|129|U|{1}{B}|Creature — Rat Rogue|2|1|{1}{B}: Exile target card from an opponent's graveyard. If no cards are in that graveyard, flip Nezumi Graverobber.| -Stabwhisker the Odious|Champions of Kamigawa|131|R|{1}{B}|Legendary Creature — Rat Shaman|3|3|At the beginning of each opponent's upkeep, that player loses 1 life for each card fewer than three in his or her hand.| +Nighteyes the Desecrator|Champions of Kamigawa|129|U|{1}{B}|Legendary Creature — Rat Wizard|4|2|{4}{B}: Put target creature card from a graveyard onto the battlefield under your control.| +Nezumi Shortfang|Champions of Kamigawa|131|R|{1}{B}|Creature — Rat Rogue|1|1|{1}{B}, {tap}: Target opponent discards a card. Then if that player has no cards in hand, flip Nezumi Shortfang.| Myojin of Cleansing Fire|Champions of Kamigawa|35|R|{5}{W}{W}{W}|Legendary Creature — Spirit|4|6|Myojin of Cleansing Fire enters the battlefield with a divinity counter on it if you cast it from your hand.$Myojin of Cleansing Fire is indestructible as long as it has a divinity counter on it.$Remove a divinity counter from Myojin of Cleansing Fire: Destroy all other creatures.| Sensei Golden-Tail|Champions of Kamigawa|44|R|{1}{W}|Legendary Creature — Fox Samurai|2|1|Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)${1}{W}, {tap}: Put a training counter on target creature. That creature gains bushido 1 and becomes a Samurai in addition to its other creature types. Activate this ability only any time you could cast a sorcery.| Humble Budoka|Champions of Kamigawa|214|C|{1}{G}|Creature — Human Monk|2|2|Shroud (This permanent can't be the target of spells or abilities.)| @@ -11957,7 +11957,7 @@ Sasaya's Essence|Saviors of Kamigawa|145|R|{1}{G}{G}|Legendary Enchantment|2|3|W Kuon's Essence|Saviors of Kamigawa|78|R|{B}{B}{B}|Legendary Enchantment|2|4|At the beginning of each player's upkeep, that player sacrifices a creature.| Enduring Ideal|Saviors of Kamigawa|9|R|{5}{W}{W}|Sorcery|||Search your library for an enchantment card and put it onto the battlefield. Then shuffle your library.$Epic (For the rest of the game, you can't cast spells. At the beginning of each of your upkeeps, copy this spell except for its epic ability.)| Erayo's Essence|Saviors of Kamigawa|35|R|{1}{U}|Legendary Enchantment|1|1|Whenever an opponent casts a spell for the first time in a turn, counter that spell.| -Rune-Tail's Essence|Saviors of Kamigawa|27|R|{2}{W}|Legendary Enchantment|2|2|Prevent all damage that would be dealt to creatures you control.| +Rune-Tail, Kitsune Ascendant|Saviors of Kamigawa|27|R|{2}{W}|Legendary Creature — Fox Monk|2|2|When you have 30 or more life, flip Rune-Tail, Kitsune Ascendant.| Neverending Torment|Saviors of Kamigawa|83|R|{4}{B}{B}|Sorcery|||Search target player's library for X cards, where X is the number of cards in your hand, and exile them. Then that player shuffles his or her library.$Epic (For the rest of the game, you can't cast spells. At the beginning of each of your upkeeps, copy this spell except for its epic ability. You may choose a new target for the copy.)| Undying Flames|Saviors of Kamigawa|119|R|{4}{R}{R}|Sorcery|||Exile cards from the top of your library until you exile a nonland card. Undying Flames deals damage to target creature or player equal to that card's converted mana cost.$Epic (For the rest of the game, you can't cast spells. At the beginning of each of your upkeeps, copy this spell except for its epic ability. You may choose a new target for the copy.)| Wojek Siren|Ravnica: City of Guilds|37|C|{W}|Instant|||Radiance — Target creature and each other creature that shares a color with it get +1/+1 until end of turn.| @@ -12322,7 +12322,7 @@ Caustic Rain|Guildpact|44|U|{2}{B}{B}|Sorcery|||Exile target land.| Skarrg, the Rage Pits|Guildpact|163|U||Land|||{tap}: Add {1} to your mana pool.${R}{G}, {tap}: Target creature gets +1/+1 and gains trample until end of turn.| Revenant Patriarch|Guildpact|59|U|{4}{B}|Creature — Spirit|4|3|When Revenant Patriarch enters the battlefield, if {W} was spent to cast Revenant Patriarch, target player skips his or her next combat phase.$Revenant Patriarch can't block.| Ostiary Thrull|Guildpact|55|C|{3}{B}|Creature — Thrull|2|2|{W}, {tap}: Tap target creature.| -Arena|Promo set for Gatherer|117|Special||Land|||{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Each of those creatures deals damage equal to its power to the other.| +Arena|Promo set for Gatherer|117|Special||Land|||{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Those creatures fight each other. (Each deals damage equal to its power to the other.)| Dirtcowl Wurm|Promo set for Gatherer|1|R|{4}{G}|Creature — Wurm|3|4|Whenever an opponent plays a land, put a +1/+1 counter on Dirtcowl Wurm.| False Prophet|Promo set for Gatherer|6|R|{2}{W}{W}|Creature — Human Cleric|2|2|When False Prophet dies, exile all creatures.| Giant Badger|Promo set for Gatherer|253|Special|{1}{G}{G}|Creature — Badger|2|2|Whenever Giant Badger blocks, it gets +2/+2 until end of turn.| @@ -12546,7 +12546,7 @@ Cytoshape|Dissension|108|R|{1}{G}{U}|Instant|||Choose a nonlegendary creature on Simic Basilisk|Dissension|91|U|{4}{G}{G}|Creature — Basilisk Mutant|0|0|Graft 3 (This creature enters the battlefield with three +1/+1 counters on it. Whenever another creature enters the battlefield, you may move a +1/+1 counter from this creature onto it.)${1}{G}: Until end of turn, target creature with a +1/+1 counter on it gains "Whenever this creature deals combat damage to a creature, destroy that creature at end of combat."| Cytoplast Manipulator|Dissension|23|R|{2}{U}{U}|Creature — Human Wizard Mutant|0|0|Graft 2 (This creature enters the battlefield with two +1/+1 counters on it. Whenever another creature enters the battlefield, you may move a +1/+1 counter from this creature onto it.)${U}, {tap}: Gain control of target creature with a +1/+1 counter on it for as long as Cytoplast Manipulator remains on the battlefield.| Rain of Gore|Dissension|126|R|{B}{R}|Enchantment|||If a spell or ability would cause its controller to gain life, that player loses that much life instead.| -Transguild Courier|Dissension|168|U|{4}|Artifact Creature — Golem|3|3|Transguild Courier is all colors (even if this card isn't on the battlefield).| +Transguild Courier|Dissension|168|U|{4}|Artifact Creature — Golem|3|3|| Lyzolda, the Blood Witch|Dissension|117|R|{1}{B}{R}|Legendary Creature — Human Cleric|3|1|{2}, Sacrifice a creature: Lyzolda, the Blood Witch deals 2 damage to target creature or player if the sacrificed creature was red. Draw a card if the sacrificed creature was black.| Elemental Resonance|Dissension|83|R|{2}{G}{G}|Enchantment — Aura|||Enchant permanent$At the beginning of your precombat main phase, add mana equal to enchanted permanent's mana cost to your mana pool. (Mana cost includes color. If a mana symbol has multiple colors, choose one.)| Street Savvy|Dissension|97|C|{G}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +0/+2 and can block creatures with landwalk abilities as though they didn't have those abilities.| @@ -12795,7 +12795,7 @@ Haunting Hymn|Time Spiral|112|U|{4}{B}{B}|Instant|||Target player discards two c Momentary Blink|Time Spiral|29|C|{1}{W}|Instant|||Exile target creature you control, then return it to the battlefield under its owner's control.$Flashback {3}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| Empty the Warrens|Time Spiral|152|C|{3}{R}|Sorcery|||Put two 1/1 red Goblin creature tokens onto the battlefield.$Storm (When you cast this spell, copy it for each spell cast before it this turn.)| Dodecapod|Time Spiral "Timeshifted"|108|Special|{4}|Artifact Creature — Golem|3|3|If a spell or ability an opponent controls causes you to discard Dodecapod, put it onto the battlefield with two +1/+1 counters on it instead of putting it into your graveyard.| -Arena|Time Spiral "Timeshifted"|117|Special||Land|||{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Each of those creatures deals damage equal to its power to the other.| +Arena|Time Spiral "Timeshifted"|117|Special||Land|||{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Those creatures fight each other. (Each deals damage equal to its power to the other.)| Deadwood Treefolk|Planar Chaos|126|U|{5}{G}|Creature — Treefolk|3|6|Vanishing 3 (This permanent enters the battlefield with three time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)$When Deadwood Treefolk enters the battlefield or leaves the battlefield, return another target creature card from your graveyard to your hand.| Ivory Giant|Time Spiral|24|C|{5}{W}{W}|Creature — Giant|3|4|When Ivory Giant enters the battlefield, tap all nonwhite creatures.$Suspend 5—{W} (Rather than cast this card from your hand, you may pay {W} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)| Gaea's Liege|Time Spiral "Timeshifted"|78|Special|{3}{G}{G}{G}|Creature — Avatar|*|*|As long as Gaea's Liege isn't attacking, its power and toughness are each equal to the number of Forests you control. As long as Gaea's Liege is attacking, its power and toughness are each equal to the number of Forests defending player controls.${tap}: Target land becomes a Forest until Gaea's Liege leaves the battlefield.| @@ -12871,7 +12871,7 @@ Drekavac|Dissension|43|U|{1}{B}|Creature Magewright's Stone|Dissension|162|U|{2}|Artifact|||{1}, {tap}: Untap target creature that has an activated ability with {tap} in its cost.| Ignorant Bliss|Dissension|64|U|{1}{R}|Instant|||Exile all cards from your hand face down. At the beginning of the next end step, return those cards to your hand, then draw a card.| Slithering Shade|Dissension|55|U|{B}|Creature — Shade|0|1|Defender (This creature can't attack.)${B}: Slithering Shade gets +1/+1 until end of turn.$Hellbent — Slithering Shade can attack as though it didn't have defender as long as you have no cards in hand.| -Ancestral Vision|Time Spiral|48|R||Sorcery|||Ancestral Vision is blue.$Suspend 4—{U} (Rather than cast this card from your hand, pay {U} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Target player draws three cards.| +Ancestral Vision|Time Spiral|48|R||Sorcery|||Suspend 4—{U} (Rather than cast this card from your hand, pay {U} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Target player draws three cards.| Deep-Sea Kraken|Time Spiral|56|R|{7}{U}{U}{U}|Creature — Kraken|6|6|Deep-Sea Kraken is unblockable.$Suspend 9—{2}{U} (Rather than cast this card from your hand, you may pay {2}{U} and exile it with nine time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)$Whenever an opponent casts a spell, if Deep-Sea Kraken is suspended, remove a time counter from it.| Cloudchaser Kestrel|Time Spiral|10|C|{1}{W}{W}|Creature — Bird|2|2|Flying$When Cloudchaser Kestrel enters the battlefield, destroy target enchantment.${W}: Target permanent becomes white until end of turn.| Amrou Seekers|Time Spiral|2|C|{2}{W}|Creature — Kithkin Rebel|2|2|Amrou Seekers can't be blocked except by artifact creatures and/or white creatures.| @@ -12879,17 +12879,17 @@ Norin the Wary|Time Spiral|171|R|{R}|Legendary Creature Locket of Yesterdays|Time Spiral|258|U|{1}|Artifact|||Spells you cast cost {1} less to cast for each card with the same name as that spell in your graveyard.| D'Avenant Healer|Time Spiral|11|C|{1}{W}{W}|Creature — Human Cleric Archer|1|2|{tap}: D'Avenant Healer deals 1 damage to target attacking or blocking creature.${tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.| Serra Avenger|Time Spiral|40|R|{W}{W}|Creature — Angel|3|3|You can't cast Serra Avenger during your first, second, or third turns of the game.$Flying, vigilance| -Restore Balance|Time Spiral|38|R||Sorcery|||Restore Balance is white.$Suspend 6—{W} (Rather than cast this card from your hand, pay {W} and exile it with six time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Each player chooses a number of lands he or she controls equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players sacrifice creatures and discard cards the same way.| -Living End|Time Spiral|115|R||Sorcery|||Living End is black.$Suspend 3—{2}{B}{B} (Rather than cast this card from your hand, pay {2}{B}{B} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Each player exiles all creature cards from his or her graveyard, then sacrifices all creatures he or she controls, then puts all cards he or she exiled this way onto the battlefield.| +Restore Balance|Time Spiral|38|R||Sorcery|||Suspend 6—{W} (Rather than cast this card from your hand, pay {W} and exile it with six time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Each player chooses a number of lands he or she controls equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players sacrifice creatures and discard cards the same way.| +Living End|Time Spiral|115|R||Sorcery|||Suspend 3—{2}{B}{B} (Rather than cast this card from your hand, pay {2}{B}{B} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Each player exiles all creature cards from his or her graveyard, then sacrifices all creatures he or she controls, then puts all cards he or she exiled this way onto the battlefield.| Lim-Dϋl the Necromancer|Time Spiral|114|R|{5}{B}{B}|Legendary Creature — Human Wizard|4|4|Whenever a creature an opponent controls dies, you may pay {1}{B}. If you do, return that card to the battlefield under your control. If it's a creature, it's a Zombie in addition to its other creature types.${1}{B}: Regenerate target Zombie.| Cancel|Time Spiral|51|C|{1}{U}{U}|Instant|||Counter target spell.| Sudden Spoiling|Time Spiral|135|R|{1}{B}{B}|Instant|||Split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)$Creatures target player controls become 0/2 and lose all abilities until end of turn.| Endrek Sahr, Master Breeder|Time Spiral|106|R|{4}{B}|Legendary Creature — Human Wizard|2|2|Whenever you cast a creature spell, put X 1/1 black Thrull creature tokens onto the battlefield, where X is that spell's converted mana cost.$When you control seven or more Thrulls, sacrifice Endrek Sahr, Master Breeder.| -Wheel of Fate|Time Spiral|187|R||Sorcery|||Wheel of Fate is red.$Suspend 4—{1}{R} (Rather than cast this card from your hand, pay {1}{R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Each player discards his or her hand, then draws seven cards.| +Wheel of Fate|Time Spiral|187|R||Sorcery|||Suspend 4—{1}{R} (Rather than cast this card from your hand, pay {1}{R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Each player discards his or her hand, then draws seven cards.| Candles of Leng|Time Spiral|250|R|{2}|Artifact|||{4}, {tap}: Reveal the top card of your library. If it has the same name as a card in your graveyard, put it into your graveyard. Otherwise, draw a card.| Clockwork Hydra|Time Spiral|253|U|{5}|Artifact Creature — Hydra|0|0|Clockwork Hydra enters the battlefield with four +1/+1 counters on it.$Whenever Clockwork Hydra attacks or blocks, remove a +1/+1 counter from it. If you do, Clockwork Hydra deals 1 damage to target creature or player.${tap}: Put a +1/+1 counter on Clockwork Hydra.| Smallpox|Time Spiral|131|U|{B}{B}|Sorcery|||Each player loses 1 life, discards a card, sacrifices a creature, then sacrifices a land.| -Hypergenesis|Time Spiral|201|R||Sorcery|||Hypergenesis is green.$Suspend 3—{1}{G}{G} (Rather than cast this card from your hand, pay {1}{G}{G} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Starting with you, each player may put an artifact, creature, enchantment, or land card from his or her hand onto the battlefield. Repeat this process until no one puts a card onto the battlefield.| +Hypergenesis|Time Spiral|201|R||Sorcery|||Suspend 3—{1}{G}{G} (Rather than cast this card from your hand, pay {1}{G}{G} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Starting with you, each player may put an artifact, creature, enchantment, or land card from his or her hand onto the battlefield. Repeat this process until no one puts a card onto the battlefield.| Kaervek the Merciless|Time Spiral|242|R|{5}{B}{R}|Legendary Creature — Human Shaman|5|4|Whenever an opponent casts a spell, Kaervek the Merciless deals damage to target creature or player equal to that spell's converted mana cost.| Glass Asp|Time Spiral|197|C|{1}{G}{G}|Creature — Snake|2|1|Whenever Glass Asp deals combat damage to a player, that player loses 2 life at the beginning of his or her next draw step unless he or she pays {2} before that step.| Mishra, Artificer Prodigy|Time Spiral|243|R|{1}{U}{B}{R}|Legendary Creature — Human Artificer|4|4|Whenever you cast an artifact spell, you may search your graveyard, hand, and/or library for a card with the same name as that spell and put it onto the battlefield. If you search your library this way, shuffle it.| @@ -13650,7 +13650,7 @@ Utopia Mycon|Future Sight|140|U|{G}|Creature Thornweald Archer|Future Sight|154|C|{1}{G}|Creature — Elf Archer|2|1|Reach (This creature can block creatures with flying.)$Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)| Imperiosaur|Future Sight|145|U|{2}{G}{G}|Creature — Lizard|5|5|Spend only mana produced by basic lands to cast Imperiosaur.| Daybreak Coronet|Future Sight|21|R|{W}{W}|Enchantment — Aura|||Enchant creature with another Aura attached to it$Enchanted creature gets +3/+3 and has first strike, vigilance, and lifelink. (Damage dealt by the creature also causes its controller to gain that much life.)| -Pact of the Titan|Future Sight|103|R|{0}|Instant|||Pact of the Titan is red.$Put a 4/4 red Giant creature token onto the battlefield.$At the beginning of your next upkeep, pay {4}{R}. If you don't, you lose the game.| +Pact of the Titan|Future Sight|103|R|{0}|Instant|||Put a 4/4 red Giant creature token onto the battlefield.$At the beginning of your next upkeep, pay {4}{R}. If you don't, you lose the game.| Virulent Sliver|Future Sight|155|C|{G}|Creature — Sliver|1|1|All Sliver creatures have poisonous 1. (Whenever a Sliver deals combat damage to a player, that player gets a poison counter. A player with ten or more poison counters loses the game.)| Spellwild Ouphe|Future Sight|151|U|{1}{G}|Creature — Ouphe|1|3|Spells that target Spellwild Ouphe cost {2} less to cast.| Foresee|Future Sight|36|C|{3}{U}|Sorcery|||Scry 4, then draw two cards. (To scry 4, look at the top four cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)| @@ -13658,7 +13658,7 @@ Rites of Flourishing|Future Sight|137|R|{2}{G}|Enchantment|||At the beginning of Boldwyr Intimidator|Future Sight|111|U|{5}{R}{R}|Creature — Giant Warrior|5|5|Cowards can't block Warriors.${R}: Target creature becomes a Coward until end of turn.${2}{R}: Target creature becomes a Warrior until end of turn.| Storm Entity|Future Sight|122|U|{1}{R}|Creature — Elemental|1|1|Haste$Storm Entity enters the battlefield with a +1/+1 counter on it for each other spell cast this turn.| Blade of the Sixth Pride|Future Sight|19|C|{1}{W}|Creature — Cat Rebel|3|1|| -Intervention Pact|Future Sight|8|R|{0}|Instant|||Intervention Pact is white.$The next time a source of your choice would deal damage to you this turn, prevent that damage. You gain life equal to the damage prevented this way.$At the beginning of your next upkeep, pay {1}{W}{W}. If you don't, you lose the game.| +Intervention Pact|Future Sight|8|R|{0}|Instant|||The next time a source of your choice would deal damage to you this turn, prevent that damage. You gain life equal to the damage prevented this way.$At the beginning of your next upkeep, pay {1}{W}{W}. If you don't, you lose the game.| Ichor Slick|Future Sight|68|C|{2}{B}|Sorcery|||Target creature gets -3/-3 until end of turn.$Cycling {2} ({2}, Discard this card: Draw a card.)$Madness {3}{B} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)| Centaur Omenreader|Future Sight|143|U|{3}{G}|Snow Creature — Centaur Shaman|3|3|As long as Centaur Omenreader is tapped, creature spells you cast cost {2} less to cast.| Bloodshot Trainee|Future Sight|110|U|{3}{R}|Creature — Goblin Warrior|2|3|{tap}: Bloodshot Trainee deals 4 damage to target creature. Activate this ability only if Bloodshot Trainee's power is 4 or greater.| @@ -13669,11 +13669,11 @@ Infiltrator il-Kor|Future Sight|37|C|{4}{U}|Creature Henchfiend of Ukor|Future Sight|117|C|{3}{R}|Creature — Ogre|3|2|Haste$Echo {1}{B} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice this permanent unless you pay its echo cost.)${BR}: Henchfiend of Ukor gets +1/+0 until end of turn.| Knight of Sursi|Future Sight|10|C|{3}{W}|Creature — Human Knight|2|2|Flying; flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)$Suspend 3—{W} (Rather than cast this card from your hand, you may pay {W} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)| Fatal Attraction|Future Sight|98|C|{2}{R}|Enchantment — Aura|||Enchant creature$When Fatal Attraction enters the battlefield, it deals 2 damage to enchanted creature.$At the beginning of your upkeep, Fatal Attraction deals 4 damage to enchanted creature.| -Pact of Negation|Future Sight|42|R|{0}|Instant|||Pact of Negation is blue.$Counter target spell.$At the beginning of your next upkeep, pay {3}{U}{U}. If you don't, you lose the game.| +Pact of Negation|Future Sight|42|R|{0}|Instant|||Counter target spell.$At the beginning of your next upkeep, pay {3}{U}{U}. If you don't, you lose the game.| Yixlid Jailer|Future Sight|93|U|{1}{B}|Creature — Zombie Wizard|2|1|Cards in graveyards lose all abilities.| -Slaughter Pact|Future Sight|78|R|{0}|Instant|||Slaughter Pact is black.$Destroy target nonblack creature.$At the beginning of your next upkeep, pay {2}{B}. If you don't, you lose the game.| -Summoner's Pact|Future Sight|139|R|{0}|Instant|||Summoner's Pact is green.$Search your library for a green creature card, reveal it, and put it into your hand. Then shuffle your library.$At the beginning of your next upkeep, pay {2}{G}{G}. If you don't, you lose the game.| -Gathan Raiders|Future Sight|99|C|{3}{R}{R}|Creature — Human Warrior|3|3|Hellbent — Gathan Raiders gets +2/+2 if you have no cards in hand.$Morph—Discard a card. (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)| +Slaughter Pact|Future Sight|78|R|{0}|Instant|||Destroy target nonblack creature.$At the beginning of your next upkeep, pay {2}{B}. If you don't, you lose the game.| +Summoner's Pact|Future Sight|139|R|{0}|Instant|||Search your library for a green creature card, reveal it, and put it into your hand. Then shuffle your library.$At the beginning of your next upkeep, pay {2}{G}{G}. If you don't, you lose the game.| +Gathan Raiders|Future Sight|99|C|{3}{R}{R}|Creature — Human Warrior|3|3|Hellbent — Gathan Raiders gets +2/+2 as long as you have no cards in hand.$Morph—Discard a card. (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)| Snake Cult Initiation|Future Sight|89|U|{3}{B}|Enchantment — Aura|||Enchant creature$Enchanted creature has poisonous 3. (Whenever it deals combat damage to a player, that player gets three poison counters. A player with ten or more poison counters loses the game.)| Force of Savagery|Future Sight|126|R|{2}{G}|Creature — Elemental|8|0|Trample| Melancholy|Planar Chaos|88|C|{2}{B}|Enchantment — Aura|||Enchant creature$When Melancholy enters the battlefield, tap enchanted creature.$Enchanted creature doesn't untap during its controller's untap step.$At the beginning of your upkeep, sacrifice Melancholy unless you pay {B}.| @@ -13746,7 +13746,7 @@ Shivan Meteor|Planar Chaos|106|U|{3}{R}{R}|Sorcery|||Shivan Meteor deals 13 dama Magus of the Library|Planar Chaos|134|R|{G}{G}|Creature — Human Wizard|1|1|{tap}: Add {1} to your mana pool.${tap}: Draw a card. Activate this ability only if you have exactly seven cards in hand.| Dreamscape Artist|Planar Chaos|40|C|{1}{U}|Creature — Human Spellshaper|1|1|{2}{U}, {tap}, Discard a card, Sacrifice a land: Search your library for up to two basic land cards and put them onto the battlefield. Then shuffle your library.| Stingscourger|Planar Chaos|107|C|{1}{R}|Creature — Goblin Warrior|2|2|Echo {3}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Stingscourger enters the battlefield, return target creature an opponent controls to its owner's hand.| -Magus of the Arena|Planar Chaos|104|R|{4}{R}{R}|Creature — Human Wizard|5|5|{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Each of those creatures deals damage equal to its power to the other.| +Magus of the Arena|Planar Chaos|104|R|{4}{R}{R}|Creature — Human Wizard|5|5|{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Those creatures fight each other. (Each deals damage equal to its power to the other.)| Mogg Fanatic|Tenth Edition|219|U|{R}|Creature — Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.| Discombobulate|Tenth Edition|81|U|{2}{U}{U}|Instant|||Counter target spell. Look at the top four cards of your library, then put them back in any order.| Incinerate|Tenth Edition|213|C|{1}{R}|Instant|||Incinerate deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.| @@ -13874,7 +13874,7 @@ Oros, the Avenger|Planar Chaos|161|R|{3}{W}{B}{R}|Legendary Creature Even the Odds|Future Sight|6|U|{2}{W}|Instant|||Cast Even the Odds only if you control fewer creatures than each opponent.$Put three 1/1 white Soldier creature tokens onto the battlefield.| Jhoira of the Ghitu|Future Sight|157|R|{1}{U}{R}|Legendary Creature — Human Wizard|2|2|{2}, Exile a nonland card from your hand: Put four time counters on the exiled card. If it doesn't have suspend, it gains suspend. (At the beginning of your upkeep, remove a time counter from that card. When the last is removed, cast it without paying its mana cost. If it's a creature, it has haste.)| Maelstrom Djinn|Future Sight|39|R|{7}{U}|Creature — Djinn|5|6|Flying$Morph {2}{U} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Maelstrom Djinn is turned face up, put two time counters on it and it gains vanishing. (At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)| -Dryad Arbor|Future Sight|174|U||Land Creature — Forest Dryad|1|1|(Dryad Arbor isn't a spell, it's affected by summoning sickness, and it has "{tap}: Add {G} to your mana pool.")$Dryad Arbor is green.| +Dryad Arbor|Future Sight|174|U||Land Creature — Forest Dryad|1|1|(Dryad Arbor isn't a spell, it's affected by summoning sickness, and it has "{tap}: Add {G} to your mana pool.")| Venser's Diffusion|Future Sight|47|C|{2}{U}|Instant|||Return target nonland permanent or suspended card to its owner's hand.| Linessa, Zephyr Mage|Future Sight|51|R|{3}{U}|Legendary Creature — Human Wizard|3|3|{X}{U}{U}, {tap}: Return target creature with converted mana cost X to its owner's hand.$Grandeur — Discard another card named Linessa, Zephyr Mage: Target player returns a creature he or she controls to its owner's hand, then repeats this process for an artifact, an enchantment, and a land.| Take Possession|Future Sight|44|R|{5}{U}{U}|Enchantment — Aura|||Split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)$Enchant permanent$You control enchanted permanent.| @@ -14287,7 +14287,7 @@ Spiteful Visions|Shadowmoor|198|R|{2}{BR}{BR}|Enchantment|||At the beginning of Windbrisk Raptor|Shadowmoor|26|R|{5}{W}{W}|Creature — Bird|5|7|Flying$Attacking creatures you control have lifelink.| River Kelpie|Shadowmoor|49|R|{3}{U}{U}|Creature — Beast|3|3|Whenever River Kelpie or another permanent is put onto the battlefield from a graveyard, draw a card.$Whenever a player casts a spell from a graveyard, draw a card.$Persist (When this creature dies, if it had no -1/-1 counters on it, return it to the battlefield under its owner's control with a -1/-1 counter on it.)| Hollowborn Barghest|Shadowmoor|68|R|{5}{B}{B}|Creature — Demon Hound|7|6|At the beginning of your upkeep, if you have no cards in hand, each opponent loses 2 life.$At the beginning of each opponent's upkeep, if that player has no cards in hand, he or she loses 2 life.| -Impromptu Raid|Shadowmoor|209|R|{3}{RG}|Enchantment|||{2}{RG}: Reveal the top card of your library. If it isn't a creature card, put it into your graveyard. Otherwise, put that card onto the battlefield. That creature has haste. Sacrifice it at the beginning of the next end step.| +Impromptu Raid|Shadowmoor|209|R|{3}{RG}|Enchantment|||{2}{RG}: Reveal the top card of your library. If it isn't a creature card, put it into your graveyard. Otherwise, put that card onto the battlefield. That creature gains haste. Sacrifice it at the beginning of the next end step.| Hoarder's Greed|Lorwyn|117|U|{3}{B}|Sorcery|||You lose 2 life and draw two cards, then clash with an opponent. If you win, repeat this process. (Each clashing player reveals the top card of his or her library, then puts that card on the top or bottom. A player wins if his or her card had a higher converted mana cost.)| Needle Drop|Lorwyn|186|C|{R}|Instant|||Needle Drop deals 1 damage to target creature or player that was dealt damage this turn.$Draw a card.| Glen Elendra Pranksters|Lorwyn|67|U|{3}{U}|Creature — Faerie Wizard|1|3|Flying$Whenever you cast a spell during an opponent's turn, you may return target creature you control to its owner's hand.| @@ -14337,7 +14337,7 @@ Boon Reflection|Shadowmoor|5|R|{4}{W}|Enchantment|||If you would gain life, you Fire-Lit Thicket|Shadowmoor|271|R||Land|||{tap}: Add {1} to your mana pool.${RG}, {tap}: Add {R}{R}, {R}{G}, or {G}{G} to your mana pool.| Swans of Bryn Argoll|Shadowmoor|151|R|{2}{WU}{WU}|Creature — Bird Spirit|4|3|Flying$If a source would deal damage to Swans of Bryn Argoll, prevent that damage. The source's controller draws cards equal to the damage prevented this way.| Fracturing Gust|Shadowmoor|227|R|{2}{GW}{GW}{GW}|Instant|||Destroy all artifacts and enchantments. You gain 2 life for each permanent destroyed this way.| -Puppeteer Clique|Shadowmoor|75|R|{3}{B}{B}|Creature — Faerie Wizard|3|2|Flying$When Puppeteer Clique enters the battlefield, put target creature card from an opponent's graveyard onto the battlefield under your control. It has haste. At the beginning of your next end step, exile it.$Persist (When this creature dies, if it had no -1/-1 counters on it, return it to the battlefield under its owner's control with a -1/-1 counter on it.)| +Puppeteer Clique|Shadowmoor|75|R|{3}{B}{B}|Creature — Faerie Wizard|3|2|Flying$When Puppeteer Clique enters the battlefield, put target creature card from an opponent's graveyard onto the battlefield under your control. It gains haste. At the beginning of your next end step, exile it.$Persist (When this creature dies, if it had no -1/-1 counters on it, return it to the battlefield under its owner's control with a -1/-1 counter on it.)| Wound Reflection|Shadowmoor|81|R|{5}{B}|Enchantment|||At the beginning of each end step, each opponent loses life equal to the life he or she lost this turn. (Damage causes loss of life.)| Graven Cairns|Shadowmoor|272|R||Land|||{tap}: Add {1} to your mana pool.${BR}, {tap}: Add {B}{B}, {B}{R}, or {R}{R} to your mana pool.| Polluted Bonds|Shadowmoor|74|R|{3}{B}{B}|Enchantment|||Whenever a land enters the battlefield under an opponent's control, that player loses 2 life and you gain 2 life.| @@ -14480,7 +14480,7 @@ Offalsnout|Morningtide|71|U|{2}{B}|Creature Notorious Throng|Morningtide|45|R|{3}{U}|Tribal Sorcery — Rogue|||Prowl {5}{U} (You may cast this for its prowl cost if you dealt combat damage to a player this turn with a Rogue.)$Put X 1/1 black Faerie Rogue creature tokens with flying onto the battlefield, where X is the damage dealt to your opponents this turn. If Notorious Throng's prowl cost was paid, take an extra turn after this one.| Lunk Errant|Morningtide|94|C|{5}{R}|Creature — Giant Warrior|4|4|Whenever Lunk Errant attacks alone, it gets +1/+1 and gains trample until end of turn.| Mosquito Guard|Morningtide|18|C|{W}|Creature — Kithkin Soldier|1|1|First strike$Reinforce 1—{1}{W} ({1}{W}, Discard this card: Put a +1/+1 counter on target creature.)| -Rivals' Duel|Morningtide|99|U|{3}{R}|Sorcery|||Choose two target creatures that share no creature types. Each of those creatures deals damage equal to its power to the other.| +Rivals' Duel|Morningtide|99|U|{3}{R}|Sorcery|||Choose two target creatures that share no creature types. Those creatures fight each other. (Each deals damage equal to its power to the other.)| Frogtosser Banneret|Morningtide|64|C|{1}{B}|Creature — Goblin Rogue|1|1|Haste$Goblin spells and Rogue spells you cast cost {1} less to cast.| Stonehewer Giant|Morningtide|24|R|{3}{W}{W}|Creature — Giant Warrior|4|4|Vigilance${1}{W}, {tap}: Search your library for an Equipment card and put it onto the battlefield. Attach it to a creature you control. Then shuffle your library.| Sigil Tracer|Morningtide|49|R|{1}{U}{U}|Creature — Merfolk Wizard|2|2|{1}{U}, Tap two untapped Wizards you control: Copy target instant or sorcery spell. You may choose new targets for the copy.| @@ -15092,7 +15092,7 @@ Khab Singing Tree|Masters Edition|130|U|{3}{G}|Creature — Plant|0|3|{tap}: Target attacking creature's power becomes 0 until end of turn.| Wyluli Wolf|Masters Edition|139|C|{1}{G}|Creature — Wolf|1|1|{tap}: Target creature gets +1/+1 until end of turn.| Blight|Masters Edition|61|U|{B}{B}|Enchantment — Aura|||Enchant land$When enchanted land becomes tapped, destroy it.| -Crookshank Kobolds|Masters Edition|90|C|{0}|Creature — Kobold|0|1|Crookshank Kobolds is red.| +Crookshank Kobolds|Masters Edition|90|C|{0}|Creature — Kobold|0|1|| Juxtapose|Masters Edition|41|U|{3}{U}|Sorcery|||You and target player exchange control of the creature you each control with the highest converted mana cost. Then exchange control of artifacts the same way. If two or more permanents a player controls are tied for highest cost, their controller chooses one of them.| Mountain Yeti|Masters Edition|105|C|{2}{R}{R}|Creature — Yeti|3|3|Mountainwalk, protection from white| Telekinesis|Masters Edition|52|C|{U}{U}|Instant|||Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn't untap during its controller's next two untap steps.| @@ -15113,7 +15113,7 @@ Amnesia|Masters Edition|29|R|{3}{U}{U}{U}|Sorcery|||Target player reveals his or Tivadar's Crusade|Masters Edition|28|U|{1}{W}{W}|Sorcery|||Destroy all Goblins.| Energy Arc|Masters Edition|144|U|{W}{U}|Instant|||Untap any number of target creatures. Prevent all combat damage that would be dealt to and dealt by those creatures this turn.| Mystic Remora|Masters Edition|42|U|{U}|Enchantment|||Cumulative upkeep {1} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$Whenever an opponent casts a noncreature spell, you may draw a card unless that player pays {4}.| -Lim-Dϋl's Vault|Masters Edition|148|U|{U}{B}|Instant|||Look at the top five cards of your library. As many times as you choose, you may pay 1 life, put those cards on the bottom of your library, then look at the top five cards of your library. Then shuffle your library and put the last cards you looked at this way on top of it in any order.| +Lim-Dϋl's Vault|Masters Edition|148|U|{U}{B}|Instant|||Look at the top five cards of your library. As many times as you choose, you may pay 1 life, put those cards on the bottom of your library in any order, then look at the top five cards of your library. Then shuffle your library and put the last cards you looked at this way on top of it in any order.| Tornado|Masters Edition|136|R|{4}{G}|Enchantment|||Cumulative upkeep {G} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)${2}{G}, Pay 3 life for each velocity counter on Tornado: Destroy target permanent and put a velocity counter on Tornado. Activate this ability only once each turn.| Centaur Archer|Masters Edition|142|U|{1}{R}{G}|Creature — Centaur Archer|3|2|{tap}: Centaur Archer deals 1 damage to target creature with flying.| Fire Covenant|Masters Edition|145|U|{1}{B}{R}|Instant|||As an additional cost to cast Fire Covenant, pay X life.$Fire Covenant deals X damage divided as you choose among any number of target creatures.| @@ -15689,7 +15689,7 @@ Krovikan Horror|Masters Edition II|101|R|{3}{B}|Creature Lodestone Bauble|Masters Edition II|213|R|{0}|Artifact|||{1}, {tap}, Sacrifice Lodestone Bauble: Put up to four target basic land cards from a player's graveyard on top of his or her library in any order. That player draws a card at the beginning of the next turn's upkeep.| Mishra's Groundbreaker|Masters Edition II|215|U|{4}|Artifact|||{tap}, Sacrifice Mishra's Groundbreaker: Target land becomes a 3/3 artifact creature that's still a land. (This effect lasts indefinitely.)| Nature's Wrath|Masters Edition II|172|R|{4}{G}{G}|Enchantment|||At the beginning of your upkeep, sacrifice Nature's Wrath unless you pay {G}.$Whenever a player puts an Island or blue permanent onto the battlefield, he or she sacrifices an Island or blue permanent.$Whenever a player puts a Swamp or black permanent onto the battlefield, he or she sacrifices a Swamp or black permanent.| -Phyrexian Devourer|Masters Edition II|216|U|{6}|Artifact Creature — Construct|1|1|When Phyrexian Devourer's power is 7 or greater, sacrifice it.$Exile the top card of your library: Put X +1/+1 counters on Phyrexian Devourer, where X is the exiled card's converted mana cost. If Phyrexian Devourer's power is 7 or greater, sacrifice it.| +Phyrexian Devourer|Masters Edition II|216|U|{6}|Artifact Creature — Construct|1|1|When Phyrexian Devourer's power is 7 or greater, sacrifice it.$Exile the top card of your library: Put X +1/+1 counters on Phyrexian Devourer, where X is the exiled card's converted mana cost.| Phyrexian Portal|Masters Edition II|217|R|{3}|Artifact|||{3}: Target opponent looks at the top ten cards of your library and separates them into two face-down piles. Exile one of those piles. Search the other pile for a card, put it into your hand, then shuffle the rest of that pile into your library. Activate this ability only if your library has ten or more cards in it.| Pillage|Masters Edition II|146|U|{1}{R}{R}|Sorcery|||Destroy target artifact or land. It can't be regenerated.| Ritual of the Machine|Masters Edition II|109|R|{2}{B}{B}|Sorcery|||As an additional cost to cast Ritual of the Machine, sacrifice a creature.$Gain control of target nonartifact, nonblack creature.| @@ -15700,7 +15700,7 @@ Soldevi Digger|Masters Edition II|221|U|{2}|Artifact|||{2}: Put the top card of Soldevi Excavations|Masters Edition II|236|R||Land|||If Soldevi Excavations would enter the battlefield, sacrifice an untapped Island instead. If you do, put Soldevi Excavations onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add {1}{U} to your mana pool.${1}, {tap}: Look at the top card of your library. You may put that card on the bottom of your library.| Fyndhorn Pollen|Masters Edition II|166|R|{2}{G}|Enchantment|||Cumulative upkeep {1} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$All creatures get -1/-0.${1}{G}: All creatures get -1/-0 until end of turn.| Storm Elemental|Masters Edition II|68|U|{5}{U}|Creature — Elemental|3|4|Flying${U}, Exile the top card of your library: Tap target creature with flying.${U}, Exile the top card of your library: If the exiled card is a snow land, Storm Elemental gets +1/+1 until end of turn.| -Thought Lash|Masters Edition II|70|R|{2}{U}{U}|Enchantment|||Cumulative upkeep—Exile the top card of your library. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$When Thought Lash's cumulative upkeep isn't paid, exile all cards from your library.$Exile the top card of your library: Prevent the next 1 damage that would be dealt to you this turn.| +Thought Lash|Masters Edition II|70|R|{2}{U}{U}|Enchantment|||Cumulative upkeep—Exile the top card of your library. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)$When a player doesn't pay Thought Lash's cumulative upkeep, that player exiles all cards from his or her library.$Exile the top card of your library: Prevent the next 1 damage that would be dealt to you this turn.| Whirling Catapult|Masters Edition II|224|U|{4}|Artifact|||{2}, Exile the top two cards of your library: Whirling Catapult deals 1 damage to each creature with flying and each player.| Winter's Night|Masters Edition II|200|R|{R}{G}{W}|World Enchantment|||Whenever a player taps a snow land for mana, that player adds one mana to his or her mana pool of any type that land produced. That land doesn't untap during its controller's next untap step.| Abbey Gargoyles|Masters Edition II|1|U|{2}{W}{W}{W}|Creature — Gargoyle|3|4|Flying, protection from red| @@ -16036,7 +16036,7 @@ Man-o'-War|Duel Decks: Jace vs. Chandra|8|C|{2}{U}|Creature Waterspout Djinn|Duel Decks: Jace vs. Chandra|11|U|{2}{U}{U}|Creature — Djinn|4|4|Flying$At the beginning of your upkeep, sacrifice Waterspout Djinn unless you return an untapped Island you control to its owner's hand.| Keldon Megaliths|Duel Decks: Jace vs. Chandra|58|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R} to your mana pool.$Hellbent — {1}{R}, {tap}: Keldon Megaliths deals 1 damage to target creature or player. Activate this ability only if you have no cards in hand.| Martyr of Frost|Duel Decks: Jace vs. Chandra|2|C|{U}|Creature — Human Wizard|1|1|{2}, Reveal X blue cards from your hand, Sacrifice Martyr of Frost: Counter target spell unless its controller pays {X}.| -Ancestral Vision|Duel Decks: Jace vs. Chandra|21|R||Sorcery|||Ancestral Vision is blue.$Suspend 4—{U} (Rather than cast this card from your hand, pay {U} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Target player draws three cards.| +Ancestral Vision|Duel Decks: Jace vs. Chandra|21|R||Sorcery|||Suspend 4—{U} (Rather than cast this card from your hand, pay {U} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)$Target player draws three cards.| Brine Elemental|Duel Decks: Jace vs. Chandra|18|U|{4}{U}{U}|Creature — Elemental|5|4|Morph {5}{U}{U} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Brine Elemental is turned face up, each opponent skips his or her next untap step.| Errant Ephemeron|Duel Decks: Jace vs. Chandra|20|C|{6}{U}|Creature — Illusion|4|4|Flying$Suspend 4—{1}{U} (Rather than cast this card from your hand, you may pay {1}{U} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)| Fathom Seer|Duel Decks: Jace vs. Chandra|3|C|{1}{U}|Creature — Illusion|1|3|Morph—Return two Islands you control to their owner's hand. (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Fathom Seer is turned face up, draw two cards.| @@ -16314,7 +16314,7 @@ Heartstabber Mosquito|Zendikar|97|C|{3}{B}|Creature Warren Instigator|Zendikar|154|M|{R}{R}|Creature — Goblin Berserker|1|1|Double strike$Whenever Warren Instigator deals damage to an opponent, you may put a Goblin creature card from your hand onto the battlefield.| Lorthos, the Tidemaker|Zendikar|53|M|{5}{U}{U}{U}|Legendary Creature — Octopus|8|8|Whenever Lorthos, the Tidemaker attacks, you may pay {8}. If you do, tap up to eight target permanents. Those permanents don't untap during their controllers' next untap steps.| Marsh Flats|Zendikar|219|R||Land|||{tap}, Pay 1 life, Sacrifice Marsh Flats: Search your library for a Plains or Swamp card and put it onto the battlefield. Then shuffle your library.| -Blazing Torch|Zendikar|197|U|{1}|Artifact — Equipment|||Equipped creature can't be blocked by Vampires or Zombies.$Equipped creature has "{tap}, Sacrifice Blazing Torch: Blazing Torch deals 2 damage to target creature or player."$Equip {1}| +Blazing Torch|Zendikar|197|U|{1}|Artifact — Equipment|||Equipped creature can't be blocked by Vampires or Zombies.$Equipped creature has "{tap}, Sacrifice Blazing Torch: Blazing Torch deals 2 damage to target creature or player."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)| Electropotence|Zendikar|122|R|{2}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, you may pay {2}{R}. If you do, that creature deals damage equal to its power to target creature or player.| Devout Lightcaster|Zendikar|10|R|{W}{W}{W}|Creature — Kor Cleric|2|2|Protection from black$When Devout Lightcaster enters the battlefield, exile target black permanent.| World Queller|Zendikar|39|R|{3}{W}{W}|Creature — Avatar|4|4|At the beginning of your upkeep, you may choose a card type. If you do, each player sacrifices a permanent of that type.| @@ -16768,7 +16768,7 @@ Conqueror's Pledge|Zendikar|8|R|{2}{W}{W}{W}|Sorcery|||Kicker {6} (You may pa Gigantiform|Zendikar|162|R|{3}{G}{G}|Enchantment — Aura|||Kicker {4}$Enchant creature$Enchanted creature is 8/8 and has trample.$When Gigantiform enters the battlefield, if it was kicked, you may search your library for a card named Gigantiform, put it onto the battlefield, then shuffle your library.| Makindi Shieldmate|Zendikar|26|C|{2}{W}|Creature — Kor Soldier Ally|0|3|Defender$Whenever Makindi Shieldmate or another Ally enters the battlefield under your control, you may put a +1/+1 counter on Makindi Shieldmate.| Sea Gate Loremaster|Zendikar|63|R|{4}{U}|Creature — Merfolk Wizard Ally|1|3|{tap}: Draw a card for each Ally you control.| -Rite of Replication|Zendikar|61|R|{2}{U}{U}|Sorcery|||Kicker {5} (You may pay an additional {5} as you cast this spell.)$Put a token onto the battlefield that's a copy of target creature. If Rite of Replication was kicked, put five of those tokens onto the battlefield instead.| +Rite of Replication|Zendikar|61|R|{2}{U}{U}|Sorcery|||Kicker {5} (You may pay an additional {5} as you cast this spell.)$Put a token that's a copy of target creature onto the battlefield. If Rite of Replication was kicked, put five of those tokens onto the battlefield instead.| Seascape Aerialist|Zendikar|64|U|{4}{U}|Creature — Merfolk Wizard Ally|2|3|Whenever Seascape Aerialist or another Ally enters the battlefield under your control, you may have Ally creatures you control gain flying until end of turn.| Sadistic Sacrament|Zendikar|110|R|{B}{B}{B}|Sorcery|||Kicker {7} (You may pay an additional {7} as you cast this spell.)$Search target player's library for up to three cards, exile them, then that player shuffles his or her library. If Sadistic Sacrament was kicked, instead search that player's library for up to fifteen cards, exile them, then that player shuffles his or her library.| Murasa Pyromancer|Zendikar|139|U|{4}{R}{R}|Creature — Human Shaman Ally|3|2|Whenever Murasa Pyromancer or another Ally enters the battlefield under your control, you may have Murasa Pyromancer deal damage to target creature equal to the number of Allies you control.| @@ -16988,7 +16988,7 @@ Chain Lightning|Masters Edition III|90|C|{R}|Sorcery|||Chain Lightning deals 3 d Cleanse|Masters Edition III|5|R|{2}{W}{W}|Sorcery|||Destroy all black creatures.| Jedit Ojanen|Masters Edition III|153|C|{4}{W}{W}{U}|Legendary Creature — Cat Warrior|5|5|| Cosmic Horror|Masters Edition III|61|R|{3}{B}{B}{B}|Creature — Horror|7|7|First strike$At the beginning of your upkeep, destroy Cosmic Horror unless you pay {3}{B}{B}{B}. If Cosmic Horror is destroyed this way, it deals 7 damage to you.| -Crimson Kobolds|Masters Edition III|93|C|{0}|Creature — Kobold|0|1|Crimson Kobolds is red.| +Crimson Kobolds|Masters Edition III|93|C|{0}|Creature — Kobold|0|1|| Crimson Manticore|Masters Edition III|94|U|{2}{R}{R}|Creature — Manticore|2|2|Flying${R}, {tap}: Crimson Manticore deals 1 damage to target attacking or blocking creature.| Disharmony|Masters Edition III|95|U|{2}{R}|Instant|||Cast Disharmony only during combat before blockers are declared.$Untap target attacking creature and remove it from combat. Gain control of that creature until end of turn.| D'Avenant Archer|Masters Edition III|6|C|{2}{W}|Creature — Human Soldier Archer|1|2|{tap}: D'Avenant Archer deals 1 damage to target attacking or blocking creature.| @@ -17008,10 +17008,10 @@ Call to Arms|Masters Edition III|4|U|{1}{W}|Enchantment|||As Call to Arms enters Kobold Drill Sergeant|Masters Edition III|104|U|{1}{R}|Creature — Kobold Soldier|1|2|Other Kobold creatures you control get +0/+1 and have trample.| Kobold Overlord|Masters Edition III|105|U|{1}{R}|Creature — Kobold|1|2|First strike$Other Kobold creatures you control have first strike.| Kobold Taskmaster|Masters Edition III|106|C|{1}{R}|Creature — Kobold|1|2|Other Kobold creatures you control get +1/+0.| -Kobolds of Kher Keep|Masters Edition III|107|C|{0}|Creature — Kobold|0|1|Kobolds of Kher Keep is red.| +Kobolds of Kher Keep|Masters Edition III|107|C|{0}|Creature — Kobold|0|1|| Land Equilibrium|Masters Edition III|40|R|{2}{U}{U}|Enchantment|||If an opponent who controls at least as many lands as you do would put a land onto the battlefield, that player instead puts that land onto the battlefield then sacrifices a land.| Land Tax|Masters Edition III|17|R|{W}|Enchantment|||At the beginning of your upkeep, if an opponent controls more lands than you, you may search your library for up to three basic land cards, reveal them, and put them into your hand. If you do, shuffle your library.| -Lesser Werewolf|Masters Edition III|71|C|{3}{B}|Creature — Human Wolf|2|4|{B}: If Lesser Werewolf's power is 1 or more, it gets -1/-0 until end of turn and put a -0/-1 counter on target creature blocking or blocked by Lesser Werewolf. Activate this ability only during the declare blockers step.| +Lesser Werewolf|Masters Edition III|71|C|{3}{B}|Creature — Werewolf|2|4|{B}: If Lesser Werewolf's power is 1 or more, it gets -1/-0 until end of turn and put a -0/-1 counter on target creature blocking or blocked by Lesser Werewolf. Activate this ability only during the declare blockers step.| Mana Drain|Masters Edition III|43|R|{U}{U}|Instant|||Counter target spell. At the beginning of your next main phase, add {X} to your mana pool, where X is that spell's converted mana cost.| Torsten Von Ursus|Masters Edition III|183|C|{3}{G}{G}{W}|Legendary Creature — Human Soldier|5|5|| Nether Void|Masters Edition III|73|R|{3}{B}|World Enchantment|||Whenever a player casts a spell, counter it unless its controller pays {3}.| @@ -17119,7 +17119,7 @@ Tracker|Masters Edition III|136|U|{2}{G}|Creature Wormwood Treefolk|Masters Edition III|140|U|{3}{G}{G}|Creature — Treefolk|4|4|{G}{G}: Wormwood Treefolk gains forestwalk until end of turn and deals 2 damage to you.${B}{B}: Wormwood Treefolk gains swampwalk until end of turn and deals 2 damage to you.| Blood Lust|Masters Edition III|88|C|{1}{R}|Instant|||If target creature has toughness 5 or greater, it gets +4/-4 until end of turn. Otherwise, it gets +4/-X until end of turn, where X is its toughness minus 1.| Hua Tuo, Honored Physician|Masters Edition III|123|R|{1}{G}{G}|Legendary Creature — Human|1|2|{tap}: Put target creature card from your graveyard on top of your library. Activate this ability only during your turn, before attackers are declared.| -Burning of Xinye|Masters Edition III|89|R|{4}{R}{R}|Sorcery|||You destroy four lands you control, then target opponent destroys four lands he or she controls. Then Burning of Xinye deals 4 damage to each creature.| +Burning of Xinye|Masters Edition III|89|R|{4}{R}{R}|Sorcery|||Choose four lands you control and destroy those lands. Then target opponent chooses four lands he or she controls. Destroy those lands. Then Burning of Xinye deals 4 damage to each creature.| False Defeat|Masters Edition III|11|U|{3}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.| Famine|Masters Edition III|65|U|{3}{B}{B}|Sorcery|||Famine deals 3 damage to each creature and each player.| Fire Ambush|Masters Edition III|97|C|{1}{R}|Sorcery|||Fire Ambush deals 3 damage to target creature or player.| @@ -18469,6 +18469,22 @@ Mishra's Factory|Duel Decks: Elspeth vs. Tezzeret|73|U||Land|||{tap}: Add {1} to Thirst for Knowledge|Duel Decks: Elspeth vs. Tezzeret|68|U|{2}{U}|Instant|||Draw three cards. Then discard two cards unless you discard an artifact card.| Swords to Plowshares|Duel Decks: Elspeth vs. Tezzeret|22|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.| Crusade|Duel Decks: Elspeth vs. Tezzeret|27|R|{W}{W}|Enchantment|||White creatures get +1/+1.| +Harvest Pyre|Innistrad|146|C|{1}{R}|Instant|||As an additional cost to cast Harvest Pyre, exile X cards from your graveyard.$Harvest Pyre deals X damage to target creature.| +Ghoulraiser|Innistrad|102|C|{1}{B}{B}|Creature — Zombie|2|2|When Ghoulraiser enters the battlefield, return a Zombie card at random from your graveyard to your hand.| +Ghoulcaller's Chant|Innistrad|101|C|{B}|Sorcery|||Choose one — Return target creature card from your graveyard to your hand; or return two target Zombie cards from your graveyard to your hand.| +Feral Ridgewolf|Innistrad|142|C|{2}{R}|Creature — Wolf|1|2|Trample${1}{R}: Feral Ridgewolf gets +2/+0 until end of turn.| +Victim of Night|Innistrad|124|C|{B}{B}|Instant|||Destroy target non-Vampire, non-Werewolf, non-Zombie creature.| +Travel Preparations|Innistrad|206|C|{1}{G}|Sorcery|||Put a +1/+1 counter on each of up to two target creatures.$Flashback {1}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Frightful Delusion|Innistrad|57|C|{2}{U}|Instant|||Counter target spell unless its controller pays {1}. That player discards a card.| +Into the Maw of Hell|Innistrad|150|U|{4}{R}{R}|Sorcery|||Destroy target land. Into the Maw of Hell deals 13 damage to target creature.| +Kessig Wolf|Innistrad|151|C|{2}{R}|Creature — Wolf|3|1|{1}{R}: Kessig Wolf gains first strike until end of turn.| +Invisible Stalker|Innistrad|60|U|{1}{U}|Creature — Human Rogue|1|1|Hexproof (This creature can't be the target of spells or abilities your opponents control.)$Invisible Stalker is unblockable.| +One-Eyed Scarecrow|Innistrad|230|C|{3}|Artifact Creature — Scarecrow|2|3|Defender$Creatures with flying your opponents control get -1/-0.| +Silent Departure|Innistrad|75|C|{U}|Sorcery|||Return target creature to its owner's hand.$Flashback {4}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Butcher's Cleaver|Innistrad|217|U|{3}|Artifact — Equipment|||Equipped creature gets +3/+0.$As long as equipped creature is a Human, it has lifelink.$Equip {3}| +Boneyard Wurm|Innistrad|171|U|{1}{G}|Creature — Wurm|*|*|Boneyard Wurm's power and toughness are each equal to the number of creature cards in your graveyard.| +Ghostly Possession|Innistrad|18|C|{2}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature has flying.$Prevent all combat damage that would be dealt to and dealt by enchanted creature.| +Slayer of the Wicked|Innistrad|32|U|{3}{W}|Creature — Human Soldier|3|2|When Slayer of the Wicked enters the battlefield, you may destroy target Vampire, Werewolf, or Zombie.| Phantasmal Dragon|Magic 2012|71|U|{2}{U}{U}|Creature — Dragon Illusion|5|5|Flying$When Phantasmal Dragon becomes the target of a spell or ability, sacrifice it.| Crimson Mage|Magic 2012|129|U|{1}{R}|Creature — Human Shaman|2|1|{R}: Target creature you control gains haste until end of turn. (It can attack and {tap} this turn.)| Onyx Mage|Magic 2012|103|U|{1}{B}|Creature — Human Wizard|2|1|{1}{B}: Target creature you control gains deathtouch until end of turn. (Any amount of damage it deals to a creature is enough to destroy it.)| @@ -18563,6 +18579,19 @@ Plains|Mirrodin Besieged|147|L||Basic Land Swamp|Mirrodin Besieged|150|L||Basic Land — Swamp|||B| Swamp|Mirrodin Besieged|151|L||Basic Land — Swamp|||B| Island|Mirrodin Besieged|148|L||Basic Land — Island|||U| +Angelic Overseer|Innistrad|3|M|{3}{W}{W}|Creature — Angel|5|3|Flying$As long as you control a Human, Angelic Overseer has hexproof and is indestructible.| +Ghost Quarter|Innistrad|240|U||Land|||{tap}: Add {1} to your mana pool.${tap}, Sacrifice Ghost Quarter: Destroy target land. Its controller may search his or her library for a basic land card, put it onto the battlefield, then shuffle his or her library.| +Spectral Rider|Innistrad|35|U|{W}{W}|Creature — Spirit Knight|2|2|Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)| +Bloodcrazed Neonate|Innistrad|131|C|{1}{R}|Creature — Vampire|2|1|Bloodcrazed Neonate attacks each turn if able.$Whenever Bloodcrazed Neonate deals combat damage to a player, put a +1/+1 counter on it.| +Smite the Monstrous|Innistrad|33|C|{3}{W}|Instant|||Destroy target creature with power 4 or greater.| +Creepy Doll|Innistrad|220|R|{5}|Artifact Creature — Construct|1|1|Creepy Doll is indestructible.$Whenever Creepy Doll deals combat damage to a creature, flip a coin. If you win the flip, destroy that creature.| +Avacynian Priest|Innistrad|4|C|{1}{W}|Creature — Human Cleric|1|2|{1}, {tap}: Tap target non-Human creature.| +Prey Upon|Innistrad|200|C|{G}|Sorcery|||Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.)| +Nightbird's Clutches|Innistrad|154|C|{1}{R}|Sorcery|||Up to two target creatures can't block this turn.$Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Skeletal Grimace|Innistrad|116|C|{1}{B}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +1/+1 and has "{B}: Regenerate this creature."| +Unruly Mob|Innistrad|39|C|{1}{W}|Creature — Human|1|1|Whenever another creature you control dies, put a +1/+1 counter on Unruly Mob.| +Cellar Door|Innistrad|218|U|{2}|Artifact|||{3}, {tap}: Target player puts the bottom card of his or her library into his or her graveyard. If it's a creature card, you put a 2/2 black Zombie creature token onto the battlefield.| +Dead Weight|Innistrad|96|C|{B}|Enchantment — Aura|||Enchant creature$Enchanted creature gets -2/-2.| Goblin Grenade|Magic 2012|140|U|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to target creature or player.| Chameleon Colossus|Archenemy|52|R|{2}{G}{G}|Creature — Shapeshifter|4|4|Changeling (This card is every creature type at all times.)$Protection from black${2}{G}{G}: Chameleon Colossus gets +X/+X until end of turn, where X is its power.| Fertilid|Archenemy|54|C|{2}{G}|Creature — Elemental|0|0|Fertilid enters the battlefield with two +1/+1 counters on it.${1}{G}, Remove a +1/+1 counter from Fertilid: Target player searches his or her library for a basic land card and puts it onto the battlefield tapped. Then that player shuffles his or her library.| @@ -18606,7 +18635,7 @@ Krosan Tusker|Archenemy|62|C|{5}{G}{G}|Creature Secluded Steppe|Archenemy|133|C||Land|||Secluded Steppe enters the battlefield tapped.${tap}: Add {W} to your mana pool.$Cycling {W} ({W}, Discard this card: Draw a card.)| Skirk Commando|Archenemy|47|C|{1}{R}{R}|Creature — Goblin|2|1|Whenever Skirk Commando deals combat damage to a player, you may have it deal 2 damage to target creature that player controls.$Morph {2}{R} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)| Tranquil Thicket|Archenemy|135|C||Land|||Tranquil Thicket enters the battlefield tapped.${tap}: Add {G} to your mana pool.$Cycling {G} ({G}, Discard this card: Draw a card.)| -Gathan Raiders|Archenemy|40|C|{3}{R}{R}|Creature — Human Warrior|3|3|Hellbent — Gathan Raiders gets +2/+2 if you have no cards in hand.$Morph—Discard a card. (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)| +Gathan Raiders|Archenemy|40|C|{3}{R}{R}|Creature — Human Warrior|3|3|Hellbent — Gathan Raiders gets +2/+2 as long as you have no cards in hand.$Morph—Discard a card. (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)| Llanowar Reborn|Archenemy|129|U||Land|||Llanowar Reborn enters the battlefield tapped.${tap}: Add {G} to your mana pool.$Graft 1 (This land enters the battlefield with a +1/+1 counter on it. Whenever a creature enters the battlefield, you may move a +1/+1 counter from this land onto it.)| Spin into Myth|Archenemy|8|U|{4}{U}|Instant|||Put target creature on top of its owner's library, then fateseal 2. (To fateseal 2, look at the top two cards of an opponent's library, then put any number of them on the bottom of that player's library and the rest on top in any order.)| Armadillo Cloak|Archenemy|78|C|{1}{G}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +2/+2 and has trample.$Whenever enchanted creature deals damage, you gain that much life.| @@ -18699,6 +18728,15 @@ Oblivion Ring|Archenemy|3|C|{2}{W}|Enchantment|||When Oblivion Ring enters the b Shinen of Life's Roar|Archenemy|69|C|{1}{G}|Creature — Spirit|1|2|All creatures able to block Shinen of Life's Roar do so.$Channel — {2}{G}{G}, Discard Shinen of Life's Roar: All creatures able to block target creature this turn do so.| Scion of Darkness|Archenemy|23|R|{5}{B}{B}{B}|Creature — Avatar|6|6|Trample$Whenever Scion of Darkness deals combat damage to a player, you may put target creature card from that player's graveyard onto the battlefield under your control.$Cycling {3} ({3}, Discard this card: Draw a card.)| Phyrexian Revoker|Mirrodin Besieged|122|R|{2}|Artifact Creature — Horror|2|1|As Phyrexian Revoker enters the battlefield, name a nonland card.$Activated abilities of sources with the chosen name can't be activated.| +Stitcher's Apprentice|Innistrad|81|C|{1}{U}|Creature — Homunculus|1|2|{1}{U}, {tap}: Put a 2/2 blue Homunculus creature token onto the battlefield, then sacrifice a creature.| +Typhoid Rats|Innistrad|120|C|{B}|Creature — Rat|1|1|Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)| +Skirsdag Cultist|Innistrad|163|U|{2}{R}{R}|Creature — Human Shaman|2|2|{R}, {tap}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to target creature or player.| +Sharpened Pitchfork|Innistrad|232|U|{2}|Artifact — Equipment|||Equipped creature has first strike.$As long as equipped creature is a Human, it gets +1/+1.$Equip {1}| +Ambush Viper|Innistrad|169|C|{1}{G}|Creature — Snake|2|1|Flash (You may cast this spell any time you could cast an instant.)$Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)| +Riot Devils|Innistrad|160|C|{2}{R}|Creature — Devil|2|3|| +Cobbled Wings|Innistrad|219|C|{2}|Artifact — Equipment|||Equipped creature has flying.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)| +Stitched Drake|Innistrad|80|C|{1}{U}{U}|Creature — Zombie Drake|3|4|As an additional cost to cast Stitched Drake, exile a creature card from your graveyard.$Flying| +Woodland Sleuth|Innistrad|210|C|{3}{G}|Creature — Human Scout|2|3|Morbid — When Woodland Sleuth enters the battlefield, if a creature died this turn, return a creature card at random from your graveyard to your hand.| Feral Hydra|Archenemy|53|R|{X}{G}|Creature — Hydra Beast|0|0|Feral Hydra enters the battlefield with X +1/+1 counters on it.${3}: Put a +1/+1 counter on Feral Hydra. Any player may activate this ability.| Martyrs of Korlis|Masters Edition IV|20|U|{3}{W}{W}|Creature — Human|1|6|As long as Martyrs of Korlis is untapped, all damage that would be dealt to you by artifacts is dealt to Martyrs of Korlis instead.| Urza's Mine|Masters Edition IV|257|L||Land — Urza’s Mine|||{tap}: Add {1} to your mana pool. If you control an Urza's Power-Plant and an Urza's Tower, add {2} to your mana pool instead.| @@ -18730,9 +18768,27 @@ Juggernaut|Masters Edition IV|209|U|{4}|Artifact Creature Orcish Mechanics|Masters Edition IV|129|U|{2}{R}|Creature — Orc|1|1|{tap}, Sacrifice an artifact: Orcish Mechanics deals 2 damage to target creature or player.| Prodigal Sorcerer|Masters Edition IV|58|U|{2}{U}|Creature — Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.| Argivian Blacksmith|Masters Edition IV|4|U|{1}{W}{W}|Creature — Human Artificer|2|2|{tap}: Prevent the next 2 damage that would be dealt to target artifact creature this turn.| +Deranged Assistant|Innistrad|52|C|{1}{U}|Creature — Human Wizard|1|1|{tap}, Put the top card of your library into your graveyard: Add {1} to your mana pool.| +Ludevic's Abomination|Innistrad|64b|R||Creature — Lizard Horror|13|13|Trample| +Ludevic's Test Subject|Innistrad|64a|R|{1}{U}|Creature — Lizard|0|3|Defender${1}{U}: Put a hatchling counter on Ludevic's Test Subject. Then if there are five or more hatchling counters on it, remove all of them and transform it.| +Homicidal Brute|Innistrad|47b|U||Creature — Human Mutant|5|1|At the beginning of your end step, if Homicidal Brute didn't attack this turn, tap Homicidal Brute, then transform it.| +Trepanation Blade|Innistrad|235|U|{3}|Artifact — Equipment|||Whenever equipped creature attacks, defending player reveals cards from the top of his or her library until he or she reveals a land card. The creature gets +1/+0 until end of turn for each card revealed this way. That player puts the revealed cards into his or her graveyard.$Equip {2}| +Moon Heron|Innistrad|69|C|{3}{U}|Creature — Spirit Bird|3|2|Flying| +Thraben Militia|Innistrad|38b|C||Creature — Human Soldier|5|4|Trample| +Mask of Avacyn|Innistrad|229|U|{2}|Artifact — Equipment|||Equipped creature gets +1/+2 and has hexproof. (It can't be the target of spells or abilities your opponents control.)$Equip {3}| Goblin Piker|Magic 2012|141|C|{1}{R}|Creature — Goblin Warrior|2|1|| Goblin Chieftain|Magic 2012|138|R|{1}{R}{R}|Creature — Goblin|2|2|Haste (This creature can attack and {tap} as soon as it comes under your control.)$Other Goblin creatures you control get +1/+1 and have haste.| Titanic Growth|Magic 2012|198|C|{1}{G}|Instant|||Target creature gets +4/+4 until end of turn.| +Civilized Scholar|Innistrad|47a|U|{2}{U}|Creature — Human Advisor|0|1|{tap}: Draw a card, then discard a card. If a creature card is discarded this way, untap Civilized Scholar, then transform it.| +Screeching Bat|Innistrad|114a|U|{2}{B}|Creature — Bat|2|2|Flying$At the beginning of your upkeep, you may pay {2}{B}{B}. If you do, transform Screeching Bat.| +Cloistered Youth|Innistrad|8a|U|{1}{W}|Creature — Human|1|1|At the beginning of your upkeep, you may transform Cloistered Youth.| +Midnight Haunting|Innistrad|22|U|{2}{W}|Instant|||Put two 1/1 white Spirit creature tokens with flying onto the battlefield.| +Stalking Vampire|Innistrad|114b|U||Creature — Vampire|5|5|At the beginning of your upkeep, you may pay {2}{B}{B}. If you do, transform Stalking Vampire.| +Bonds of Faith|Innistrad|5|C|{1}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +2/+2 as long as it's a Human. Otherwise, it can't attack or block.| +Selfless Cathar|Innistrad|30|C|{W}|Creature — Human Cleric|1|1|{1}{W}, Sacrifice Selfless Cathar: Creatures you control get +1/+1 until end of turn.| +Unholy Fiend|Innistrad|8b|U||Creature — Horror|3|3|At the beginning of your end step, you lose 1 life.| +Blazing Torch|Innistrad|216|C|{1}|Artifact — Equipment|||Equipped creature can't be blocked by Vampires or Zombies.$Equipped creature has "{tap}, Sacrifice Blazing Torch: Blazing Torch deals 2 damage to target creature or player."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)| +Graveyard Shovel|Innistrad|225|U|{2}|Artifact|||{2}, {tap}: Target player exiles a card from his or her graveyard. If it's a creature card, you gain 2 life.| Colossus of Sardia|Masters Edition IV|193|R|{9}|Artifact Creature — Golem|9|9|Trample (If this creature would assign enough damage to its blockers to destroy them, you may have it assign the rest of its damage to defending player or planeswalker.)$Colossus of Sardia doesn't untap during your untap step.${9}: Untap Colossus of Sardia. Activate this ability only during your upkeep.| Forest|Archenemy|150|L||Basic Land — Forest|||G| Forest|Archenemy|149|L||Basic Land — Forest|||G| @@ -18816,6 +18872,31 @@ Sunpetal Grove|Magic 2012|229|R||Land|||Sunpetal Grove enters the battlefield ta Air Elemental|Masters Edition IV|37|U|{3}{U}{U}|Creature — Elemental|4|4|Flying| Alaborn Trooper|Masters Edition IV|2|C|{2}{W}|Creature — Human Soldier|2|3|| Cloud Spirit|Masters Edition IV|42|C|{2}{U}|Creature — Spirit|3|1|Flying$Cloud Spirit can block only creatures with flying.| +Fiend Hunter|Innistrad|15|U|{1}{W}{W}|Creature — Human Cleric|1|3|When Fiend Hunter enters the battlefield, you may exile another target creature.$When Fiend Hunter leaves the battlefield, return the exiled card to the battlefield under its owner's control.| +Sensory Deprivation|Innistrad|74|C|{U}|Enchantment — Aura|||Enchant creature$Enchanted creature gets -3/-0.| +Thraben Sentry|Innistrad|38a|C|{3}{W}|Creature — Human Soldier|2|2|Vigilance$Whenever another creature you control dies, you may transform Thraben Sentry.| +Ulvenwald Mystics|Innistrad|208a|U|{2}{G}{G}|Creature — Human Shaman Werewolf|3|3|At the beginning of each upkeep, if no spells were cast last turn, transform Ulvenwald Mystics.| +Ironfang|Innistrad|168b|C||Creature — Werewolf|3|1|First strike$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Ironfang.| +Ulvenwald Primordials|Innistrad|208b|U||Creature — Werewolf|5|5|{G}: Regenerate Ulvenwald Primordials.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Ulvenwald Primordials.| +Reckless Waif|Innistrad|159a|U|{R}|Creature — Human Rogue Werewolf|1|1|At the beginning of each upkeep, if no spells were cast last turn, transform Reckless Waif.| +Village Ironsmith|Innistrad|168a|C|{1}{R}|Creature — Human Werewolf|1|1|First strike$At the beginning of each upkeep, if no spells were cast last turn, transform Village Ironsmith.| +Nightfall Predator|Innistrad|176b|R||Creature — Werewolf|4|4|{R}, {tap}: Nightfall Predator fights target creature. (Each deals damage equal to its power to the other.)$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Nightfall Predator.| +Merciless Predator|Innistrad|159b|U||Creature — Werewolf|3|2|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Merciless Predator.| +Rampaging Werewolf|Innistrad|165b|C||Creature — Werewolf|6|4|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Rampaging Werewolf.| +Daybreak Ranger|Innistrad|176a|R|{2}{G}|Creature — Human Archer Werewolf|2|2|{tap}: Daybreak Ranger deals 2 damage to target creature with flying.$At the beginning of each upkeep, if no spells were cast last turn, transform Daybreak Ranger.| +Krallenhorde Wantons|Innistrad|185b|C||Creature — Werewolf|7|7|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Krallenhorde Wantons.| +Grizzled Outcasts|Innistrad|185a|C|{4}{G}|Creature — Human Werewolf|4|4|At the beginning of each upkeep, if no spells were cast last turn, transform Grizzled Outcasts.| +Spider Spawning|Innistrad|203|U|{4}{G}|Sorcery|||Put a 1/2 green Spider creature token with reach onto the battlefield for each creature card in your graveyard.$Flashback {6}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Howlpack Alpha|Innistrad|193b|R||Creature — Werewolf|3|3|Other Werewolf and Wolf creatures you control get +1/+1.$At the beginning of your end step, put a 2/2 green Wolf creature token onto the battlefield.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Howlpack Alpha.| +Tormented Pariah|Innistrad|165a|C|{3}{R}|Creature — Human Warrior Werewolf|3|2|At the beginning of each upkeep, if no spells were cast last turn, transform Tormented Pariah.| +Mayor of Avabruck|Innistrad|193a|R|{1}{G}|Creature — Human Advisor Werewolf|1|1|Other Human creatures you control get +1/+1.$At the beginning of each upkeep, if no spells were cast last turn, transform Mayor of Avabruck.| +Silver-Inlaid Dagger|Innistrad|233|U|{1}|Artifact — Equipment|||Equipped creature gets +2/+0.$As long as equipped creature is a Human, it gets an additional +1/+0.$Equip {2}| +Make a Wish|Innistrad|192|U|{3}{G}|Sorcery|||Return two cards at random from your graveyard to your hand.| +Dearly Departed|Innistrad|9|R|{4}{W}{W}|Creature — Spirit|5|5|Flying$As long as Dearly Departed is in your graveyard, each Human creature you control enters the battlefield with an additional +1/+1 counter on it.| +Inquisitor's Flail|Innistrad|227|U|{2}|Artifact — Equipment|||If equipped creature would deal combat damage, it deals double that damage instead.$If another creature would deal combat damage to equipped creature, it deals double that damage to equipped creature instead.$Equip {2}| +Bump in the Night|Innistrad|92|C|{B}|Sorcery|||Target opponent loses 3 life.$Flashback {5}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Bitterheart Witch|Innistrad|88|U|{4}{B}|Creature — Human Shaman|1|2|Deathtouch$When Bitterheart Witch dies, you may search your library for a Curse card, put it onto the battlefield attached to target player, then shuffle your library.| +Blasphemous Act|Innistrad|130|R|{8}{R}|Sorcery|||Blasphemous Act costs {1} less to cast for each creature on the battlefield.$Blasphemous Act deals 13 damage to each creature.| Stormfront Pegasus|Magic 2012|38|C|{1}{W}|Creature — Pegasus|2|1|Flying| Armored Warhorse|Magic 2012|7|C|{W}{W}|Creature — Horse|2|3|| Siege Mastodon|Magic 2012|34|C|{4}{W}|Creature — Elephant|3|5|| @@ -18889,6 +18970,17 @@ Leonin Relic-Warder|Mirrodin Besieged|10|U|{W}{W}|Creature Vedalken Anatomist|Mirrodin Besieged|36|U|{2}{U}|Creature — Vedalken Wizard|1|2|{2}{U}, {tap}: Put a -1/-1 counter on target creature. You may tap or untap that creature.| Tangle Mantis|Mirrodin Besieged|91|C|{2}{G}{G}|Creature — Insect|3|4|Trample| Morbid Plunder|Mirrodin Besieged|47|C|{1}{B}{B}|Sorcery|||Return up to two target creature cards from your graveyard to your hand.| +Village Cannibals|Innistrad|125|U|{2}{B}|Creature — Human|2|2|Whenever another Human creature dies, put a +1/+1 counter on Village Cannibals.| +Pitchburn Devils|Innistrad|156|C|{4}{R}|Creature — Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to target creature or player.| +Howlpack of Estwald|Innistrad|209b|C||Creature — Werewolf|4|6|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Howlpack of Estwald.| +Elder Cathar|Innistrad|12|C|{2}{W}|Creature — Human Soldier|2|2|When Elder Cathar dies, put a +1/+1 counter on target creature you control. If that creature is a Human, put two +1/+1 counters on it instead.| +Abattoir Ghoul|Innistrad|85|U|{3}{B}|Creature — Zombie|3|2|First strike$Whenever a creature dealt damage by Abattoir Ghoul this turn dies, you gain life equal to that creature's toughness.| +Skaab Goliath|Innistrad|76|U|{5}{U}|Creature — Zombie Giant|6|9|As an additional cost to cast Skaab Goliath, exile two creature cards from your graveyard.$Trample| +Villagers of Estwald|Innistrad|209a|C|{2}{G}|Creature — Human Werewolf|2|3|At the beginning of each upkeep, if no spells were cast last turn, transform Villagers of Estwald.| +Makeshift Mauler|Innistrad|65|C|{3}{U}|Creature — Zombie Horror|4|5|As an additional cost to cast Makeshift Mauler, exile a creature card from your graveyard.| +Rage Thrower|Innistrad|157|U|{5}{R}|Creature — Human Shaman|4|2|Whenever another creature dies, Rage Thrower deals 2 damage to target player.| +Village Bell-Ringer|Innistrad|41|C|{2}{W}|Creature — Human Scout|1|4|Flash (You may cast this spell any time you could cast an instant.)$When Village Bell-Ringer enters the battlefield, untap all creatures you control.| +Moonmist|Innistrad|195|C|{1}{G}|Instant|||Transform all Humans. Prevent all combat damage that would be dealt this turn by creatures other than Werewolves and Wolves. (Only double-faced cards can be transformed.)| Zombie Goliath|Magic 2012|119|C|{4}{B}|Creature — Zombie Giant|4|3|| Doom Blade|Magic 2012|95|C|{1}{B}|Instant|||Destroy target nonblack creature.| Taste of Blood|Magic 2012|113|C|{B}|Sorcery|||Taste of Blood deals 1 damage to target player and you gain 1 life.| @@ -18905,6 +18997,24 @@ Mighty Leap|Duel Decks: Elspeth vs. Tezzeret|24|C|{1}{W}|Instant|||Target creatu Kor Aeronaut|Duel Decks: Elspeth vs. Tezzeret|10|U|{W}{W}|Creature — Kor Soldier|2|2|Kicker {1}{W} (You may pay an additional {1}{W} as you cast this spell.)$Flying$When Kor Aeronaut enters the battlefield, if it was kicked, target creature gains flying until end of turn.| Esperzoa|Duel Decks: Elspeth vs. Tezzeret|47|U|{2}{U}|Artifact Creature — Jellyfish|4|3|Flying$At the beginning of your upkeep, return an artifact you control to its owner's hand.| Stormfront Riders|Duel Decks: Elspeth vs. Tezzeret|17|U|{4}{W}|Creature — Human Soldier|4|3|Flying$When Stormfront Riders enters the battlefield, return two creatures you control to their owner's hand.$Whenever Stormfront Riders or another creature is returned to your hand from the battlefield, put a 1/1 white Soldier creature token onto the battlefield.| +Diregraf Ghoul|Innistrad|97|U|{B}|Creature — Zombie|2|2|Diregraf Ghoul enters the battlefield tapped.| +Vampire Interloper|Innistrad|123|C|{1}{B}|Creature — Vampire Scout|2|1|Flying$Vampire Interloper can't block.| +Delver of Secrets|Innistrad|51a|C|{U}|Creature — Human Wizard|1|1|At the beginning of your upkeep, look at the top card of your library. You may reveal that card. If an instant or sorcery card is revealed this way, transform Delver of Secrets.| +Falkenrath Noble|Innistrad|100|U|{3}{B}|Creature — Vampire|2|2|Flying$Whenever Falkenrath Noble or another creature dies, target player loses 1 life and you gain 1 life.| +Markov Patrician|Innistrad|107|C|{2}{B}|Creature — Vampire|3|1|Lifelink (Damage dealt by this creature also causes you to gain that much life.)| +Insectile Aberration|Innistrad|51b|C||Creature — Human Insect|3|2|Flying| +Forbidden Alchemy|Innistrad|55|C|{2}{U}|Instant|||Look at the top four cards of your library. Put one of them into your hand and the rest into your graveyard.$Flashback {6}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Stromkirk Patrol|Innistrad|118|C|{4}{B}|Creature — Vampire Soldier|4|3|Whenever Stromkirk Patrol deals combat damage to a player, put a +1/+1 counter on it.| +Nevermore|Innistrad|25|R|{1}{W}{W}|Enchantment|||As Nevermore enters the battlefield, name a nonland card.$The named card can't be cast.| +Night Revelers|Innistrad|153|C|{4}{R}|Creature — Vampire|4|4|Night Revelers has haste as long as an opponent controls a Human.| +Wooden Stake|Innistrad|237|C|{2}|Artifact — Equipment|||Equipped creature gets +1/+0.$Whenever equipped creature blocks or becomes blocked by a Vampire, destroy that creature. It can't be regenerated.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)| +Curse of the Nightly Hunt|Innistrad|137|U|{2}{R}|Enchantment — Aura Curse|||Enchant player$Creatures enchanted player controls attack each turn if able.| +Moment of Heroism|Innistrad|24|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains lifelink until end of turn. (Damage dealt by the creature also causes its controller to gain that much life.)| +Hollowhenge Scavenger|Innistrad|188|U|{3}{G}{G}|Creature — Elemental|4|5|Morbid — When Hollowhenge Scavenger enters the battlefield, if a creature died this turn, you gain 5 life.| +Purify the Grave|Innistrad|27|U|{W}|Instant|||Exile target card from a graveyard.$Flashback {W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Bloodgift Demon|Innistrad|89|R|{3}{B}{B}|Creature — Demon|5|4|Flying$At the beginning of your upkeep, target player draws a card and loses 1 life.| +Curse of Stalked Prey|Innistrad|136|R|{1}{R}|Enchantment — Aura Curse|||Enchant player$Whenever a creature deals combat damage to enchanted player, put a +1/+1 counter on that creature.| +Altar's Reap|Innistrad|86|C|{1}{B}|Instant|||As an additional cost to cast Altar's Reap, sacrifice a creature.$Draw two cards.| Garruk's Companion|Magic 2012|175|C|{G}{G}|Creature — Beast|3|2|Trample (If this creature would assign enough damage to its blockers to destroy them, you may have it assign the rest of its damage to defending player or planeswalker.)| Fog|Magic 2012|173|C|{G}|Instant|||Prevent all combat damage that would be dealt this turn.| Bountiful Harvest|Magic 2012|166|C|{4}{G}|Sorcery|||You gain 1 life for each land you control.| @@ -18912,6 +19022,19 @@ Reclaim|Magic 2012|191|C|{G}|Instant|||Put target card from your graveyard on to Lure|Magic 2012|183|U|{1}{G}{G}|Enchantment — Aura|||Enchant creature$All creatures able to block enchanted creature do so.| Acidic Slime|Magic 2012|161|U|{3}{G}{G}|Creature — Ooze|2|2|Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)$When Acidic Slime enters the battlefield, destroy target artifact, enchantment, or land.| Assembly-Worker|Duel Decks: Elspeth vs. Tezzeret|45|U|{3}|Artifact Creature — Assembly-Worker|2|2|{tap}: Target Assembly-Worker creature gets +1/+1 until end of turn.| +Bloodline Keeper|Innistrad|90a|R|{2}{B}{B}|Creature — Vampire|3|3|Flying${tap}: Put a 2/2 black Vampire creature token with flying onto the battlefield.${B}: Transform Bloodline Keeper. Activate this ability only if you control five or more Vampires.| +Tribute to Hunger|Innistrad|119|U|{2}{B}|Instant|||Target opponent sacrifices a creature. You gain life equal to that creature's toughness.| +Urgent Exorcism|Innistrad|40|C|{1}{W}|Instant|||Destroy target Spirit or enchantment.| +Curse of the Pierced Heart|Innistrad|138|C|{1}{R}|Enchantment — Aura Curse|||Enchant player$At the beginning of enchanted player's upkeep, Curse of the Pierced Heart deals 1 damage to that player.| +Lord of Lineage|Innistrad|90b|R||Creature — Vampire|5|5|Flying$Other Vampire creatures you control get +2/+2.${tap}: Put a 2/2 black Vampire creature token with flying onto the battlefield.| +Curse of Death's Hold|Innistrad|94|R|{3}{B}{B}|Enchantment — Aura Curse|||Enchant player$Creatures enchanted player controls get -1/-1.| +Scourge of Geier Reach|Innistrad|162|U|{3}{R}{R}|Creature — Elemental|3|3|Scourge of Geier Reach gets +1/+1 for each creature your opponents control.| +Manor Gargoyle|Innistrad|228|R|{5}|Artifact Creature — Gargoyle|4|4|Defender$Manor Gargoyle is indestructible as long as it has defender.${1}: Until end of turn, Manor Gargoyle loses defender and gains flying.| +Kruin Outlaw|Innistrad|152a|R|{1}{R}{R}|Creature — Human Rogue Werewolf|2|2|First strike$At the beginning of each upkeep, if no spells were cast last turn, transform Kruin Outlaw.| +Unburial Rites|Innistrad|122|U|{4}{B}|Sorcery|||Return target creature card from your graveyard to the battlefield.$Flashback {3}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Kindercatch|Innistrad|190|C|{3}{G}{G}{G}|Creature — Spirit|6|6|| +Terror of Kruin Pass|Innistrad|152b|R||Creature — Werewolf|3|3|Double strike$Each Werewolf you control can't be blocked except by two or more creatures.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Terror of Kruin Pass.| +Bramblecrush|Innistrad|172|U|{2}{G}{G}|Sorcery|||Destroy target noncreature permanent.| Contagion Clasp|Duel Decks: Elspeth vs. Tezzeret|63|U|{2}|Artifact|||When Contagion Clasp enters the battlefield, put a -1/-1 counter on target creature.${4}, {tap}: Proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)| Kemba's Skyguard|Duel Decks: Elspeth vs. Tezzeret|13|C|{1}{W}{W}|Creature — Cat Knight|2|2|Flying$When Kemba's Skyguard enters the battlefield, you gain 2 life.| Pentavus|Duel Decks: Elspeth vs. Tezzeret|58|R|{7}|Artifact Creature — Construct|0|0|Pentavus enters the battlefield with five +1/+1 counters on it.${1}, Remove a +1/+1 counter from Pentavus: Put a 1/1 colorless Pentavite artifact creature token with flying onto the battlefield.${1}, Sacrifice a Pentavite: Put a +1/+1 counter on Pentavus.| @@ -18919,8 +19042,18 @@ AEther Adept|Magic 2012|41|C|{1}{U}{U}|Creature Coral Merfolk|Magic 2012|49|C|{1}{U}|Creature — Merfolk|2|1|| Cancel|Magic 2012|47|C|{1}{U}{U}|Instant|||Counter target spell.| Jace's Erasure|Magic 2012|60|C|{1}{U}|Enchantment|||Whenever you draw a card, you may have target player put the top card of his or her library into his or her graveyard.| +Moan of the Unhallowed|Innistrad|109|U|{2}{B}{B}|Sorcery|||Put two 2/2 black Zombie creature tokens onto the battlefield.$Flashback {5}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Rooftop Storm|Innistrad|71|R|{5}{U}|Enchantment|||You may pay {0} rather than pay the mana cost for Zombie creature spells you cast.| +Gatstaf Howler|Innistrad|182b|U||Creature — Werewolf|3|3|Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Gatstaf Howler.| +Demonmail Hauberk|Innistrad|221|U|{4}|Artifact — Equipment|||Equipped creature gets +4/+2.$Equip—Sacrifice a creature.| +Mirror-Mad Phantasm|Innistrad|68|M|{3}{U}{U}|Creature — Spirit|5|1|Flying${1}{U}: Mirror-Mad Phantasm's owner shuffles it into his or her library. If that player does, he or she reveals cards from the top of that library until a card named Mirror-Mad Phantasm is revealed. The player puts that card onto the battlefield and all other cards revealed this way into his or her graveyard.| +Runic Repetition|Innistrad|72|U|{2}{U}|Sorcery|||Return target exiled card with flashback you own to your hand.| +Splinterfright|Innistrad|205|R|{2}{G}|Creature — Elemental|*|*|Trample$Splinterfright's power and toughness are each equal to the number of creature cards in your graveyard.$At the beginning of your upkeep, put the top two cards of your library into your graveyard.| Worldslayer|Magic 2012|222|R|{5}|Artifact — Equipment|||Whenever equipped creature deals combat damage to a player, destroy all permanents other than Worldslayer.$Equip {5} ({5}: Attach to target creature you control. Equip only as a sorcery.)| Djinn of Wishes|Magic 2012|51|R|{3}{U}{U}|Creature — Djinn|4|4|Flying$Djinn of Wishes enters the battlefield with three wish counters on it.${2}{U}{U}, Remove a wish counter from Djinn of Wishes: Reveal the top card of your library. You may play that card without paying its mana cost. If you don't, exile it.| +Gatstaf Shepherd|Innistrad|182a|U|{1}{G}|Creature — Human Werewolf|2|2|At the beginning of each upkeep, if no spells were cast last turn, transform Gatstaf Shepherd.| +Instigator Gang|Innistrad|149a|R|{3}{R}|Creature — Human Werewolf|2|3|Attacking creatures you control get +1/+0.$At the beginning of each upkeep, if no spells were cast last turn, transform Instigator Gang.| +Wildblood Pack|Innistrad|149b|R||Creature — Werewolf|5|5|Trample$Attacking creatures you control get +3/+0.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Wildblood Pack.| Puresteel Paladin|New Phyrexia|20|R|{W}{W}|Creature — Human Knight|2|2|Whenever an Equipment enters the battlefield under your control, you may draw a card.$Metalcraft — Equipment you control have equip {0} as long as you control three or more artifacts.| Island|New Phyrexia|169|L||Basic Land — Island|||U| Mountain|New Phyrexia|172|L||Basic Land — Mountain|||R| @@ -18936,6 +19069,8 @@ Xenograft|New Phyrexia|51|R|{4}{U}|Enchantment|||As Xenograft enters the battlef Tezzeret's Gambit|New Phyrexia|47|U|{3}{UP}|Sorcery|||({UP} can be paid with either {U} or 2 life.)$Draw two cards, then proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)| Victorious Destruction|New Phyrexia|99|C|{4}{R}|Sorcery|||Destroy target artifact or land. Its controller loses 1 life.| Plains|New Phyrexia|166|L||Basic Land — Plains|||W| +Charmbreaker Devils|Innistrad|134|R|{5}{R}|Creature — Devil|4|4|At the beginning of your upkeep, return an instant or sorcery card at random from your graveyard to your hand.$Whenever you cast an instant or sorcery spell, Charmbreaker Devils gets +4/+0 until end of turn.| +Snapcaster Mage|Innistrad|78|R|{1}{U}|Creature — Human Wizard|2|1|Flash$When Snapcaster Mage enters the battlefield, target instant or sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost. (You may cast that card from your graveyard for its flashback cost. Then exile it.)| Benalish Veteran|Magic 2012|10|C|{2}{W}|Creature — Human Soldier|2|2|Whenever Benalish Veteran attacks, it gets +1/+1 until end of turn.| Sundial of the Infinite|Magic 2012|218|R|{2}|Artifact|||{1}, {tap}: End the turn. Activate this ability only during your turn. (Exile all spells and abilities on the stack. Discard down to your maximum hand size. Damage wears off, and "this turn" and "until end of turn" effects end.)| Master Thief|Magic 2012|64|U|{2}{U}{U}|Creature — Human Rogue|2|2|When Master Thief enters the battlefield, gain control of target artifact for as long as you control Master Thief.| @@ -18966,6 +19101,10 @@ Warstorm Surge|Magic 2012|160|R|{5}{R}|Enchantment|||Whenever a creature enters Pacifism|Magic 2012|28|C|{1}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature can't attack or block.| Goblin Fireslinger|Magic 2012|139|C|{R}|Creature — Goblin Warrior|1|1|{tap}: Goblin Fireslinger deals 1 damage to target player.| Goblin Bangchuckers|Magic 2012|137|U|{2}{R}{R}|Creature — Goblin Warrior|2|2|{tap}: Flip a coin. If you win the flip, Goblin Bangchuckers deals 2 damage to target creature or player. If you lose the flip, Goblin Bangchuckers deals 2 damage to itself.| +Mindshrieker|Innistrad|67|R|{1}{U}|Creature — Spirit Bird|1|1|Flying${2}: Target player puts the top card of his or her library into his or her graveyard. Mindshrieker gets +X/+X until end of turn, where X is that card's converted mana cost.| +Grave Bramble|Innistrad|184|C|{1}{G}{G}|Creature — Plant|3|4|Defender, protection from Zombies| +Evil Twin|Innistrad|212|R|{2}{U}{B}|Creature — Shapeshifter|0|0|You may have Evil Twin enter the battlefield as a copy of any creature on the battlefield except it gains "{U}{B}, {tap}: Destroy target creature with the same name as this creature."| +Army of the Damned|Innistrad|87|M|{5}{B}{B}{B}|Sorcery|||Put thirteen 2/2 black Zombie creature tokens onto the battlefield tapped.$Flashback {7}{B}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| Death by Dragons|Magic: The Gathering-Commander|118|U|{4}{R}{R}|Sorcery|||Each player other than target player puts a 5/5 red Dragon creature token with flying onto the battlefield.| Edric, Spymaster of Trest|Magic: The Gathering-Commander|196|R|{1}{G}{U}|Legendary Creature — Elf Rogue|2|2|Whenever a creature deals combat damage to one of your opponents, its controller may draw a card.| Mountain|New Phyrexia|173|L||Basic Land — Mountain|||R| @@ -18984,11 +19123,34 @@ Pith Driller|New Phyrexia|69|C|{4}{BP}|Artifact Creature Forest|New Phyrexia|174|L||Basic Land — Forest|||G| Dismember|New Phyrexia|57|U|{1}{BP}{BP}|Instant|||({BP} can be paid with either {B} or 2 life.)$Target creature gets -5/-5 until end of turn.| Forced Worship|New Phyrexia|11|C|{1}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature can't attack.${2}{W}: Return Forced Worship to its owner's hand.| +Murder of Crows|Innistrad|70|U|{3}{U}{U}|Creature — Bird|4|4|Flying$Whenever another creature dies, you may draw a card. If you do, discard a card.| +Spare from Evil|Innistrad|34|C|{1}{W}|Instant|||Creatures you control gain protection from non-Human creatures until end of turn.| +Angel of Flight Alabaster|Innistrad|2|R|{4}{W}|Creature — Angel|4|4|Flying$At the beginning of your upkeep, return target Spirit card from your graveyard to your hand.| +Chapel Geist|Innistrad|7|C|{1}{W}{W}|Creature — Spirit|2|3|Flying| +Lumberknot|Innistrad|191|U|{2}{G}{G}|Creature — Treefolk|1|1|Hexproof (This creature can't be the target of spells or abilities your opponents control.)$Whenever a creature dies, put a +1/+1 counter on Lumberknot.| +Thraben Purebloods|Innistrad|37|C|{4}{W}|Creature — Hound|3|5|| +Think Twice|Innistrad|83|C|{1}{U}|Instant|||Draw a card.$Flashback {2}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Curse of the Bloody Tome|Innistrad|50|C|{2}{U}|Enchantment — Aura Curse|||Enchant player$At the beginning of enchanted player's upkeep, that player puts the top two cards of his or her library into his or her graveyard.| Harbor Serpent|Magic 2012|56|C|{4}{U}{U}|Creature — Serpent|5|5|Islandwalk (This creature is unblockable as long as defending player controls an Island.)$Harbor Serpent can't attack unless there are five or more Islands on the battlefield.| Negate|Magic 2012|69|C|{1}{U}|Instant|||Counter target noncreature spell.| Wring Flesh|Magic 2012|118|C|{B}|Instant|||Target creature gets -3/-1 until end of turn.| Slaughter Cry|Magic 2012|155|C|{2}{R}|Instant|||Target creature gets +3/+0 and gains first strike until end of turn. (It deals combat damage before creatures without first strike.)| Manic Vandal|Magic 2012|151|C|{2}{R}|Creature — Human Warrior|2|2|When Manic Vandal enters the battlefield, destroy target artifact.| +Curiosity|Innistrad|49|U|{U}|Enchantment — Aura|||Enchant creature$Whenever enchanted creature deals damage to an opponent, you may draw a card.| +Reaper from the Abyss|Innistrad|112|M|{3}{B}{B}{B}|Creature — Demon|6|6|Flying$Morbid — At the beginning of each end step, if a creature died this turn, destroy target non-Demon creature.| +Galvanic Juggernaut|Innistrad|222|U|{4}|Artifact Creature — Juggernaut|5|5|Galvanic Juggernaut attacks each turn if able.$Galvanic Juggernaut doesn't untap during your untap step.$Whenever another creature dies, untap Galvanic Juggernaut.| +Balefire Dragon|Innistrad|129|M|{5}{R}{R}|Creature — Dragon|6|6|Flying$Whenever Balefire Dragon deals combat damage to a player, it deals that much damage to each creature that player controls.| +Spectral Flight|Innistrad|79|C|{1}{U}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +2/+2 and has flying.| +Morkrut Banshee|Innistrad|110|U|{3}{B}{B}|Creature — Spirit|4|4|Morbid — When Morkrut Banshee enters the battlefield, if a creature died this turn, target creature gets -4/-4 until end of turn.| +Crossway Vampire|Innistrad|135|C|{1}{R}{R}|Creature — Vampire|3|2|When Crossway Vampire enters the battlefield, target creature can't block this turn.| +Skaab Ruinator|Innistrad|77|M|{1}{U}{U}|Creature — Zombie Horror|5|6|As an additional cost to cast Skaab Ruinator, exile three creature cards from your graveyard.$Flying$You may cast Skaab Ruinator from your graveyard.| +Stromkirk Noble|Innistrad|164|R|{R}|Creature — Vampire|1|1|Stromkirk Noble can't be blocked by Humans.$Whenever Stromkirk Noble deals combat damage to a player, put a +1/+1 counter on it.| +Unbreathing Horde|Innistrad|121|R|{2}{B}|Creature — Zombie|0|0|Unbreathing Horde enters the battlefield with a +1/+1 counter on it for each other Zombie you control and each Zombie card in your graveyard.$If Unbreathing Horde would be dealt damage, prevent that damage and remove a +1/+1 counter from it.| +Geist-Honored Monk|Innistrad|17|R|{3}{W}{W}|Creature — Human Monk|*|*|Vigilance$Geist-Honored Monk's power and toughness are each equal to the number of creatures you control.$When Geist-Honored Monk enters the battlefield, put two 1/1 white Spirit creature tokens with flying onto the battlefield.| +Laboratory Maniac|Innistrad|61|R|{2}{U}|Creature — Human Wizard|2|2|If you would draw a card while your library has no cards in it, you win the game instead.| +Nephalia Drownyard|Innistrad|245|R||Land|||{tap}: Add {1} to your mana pool.${1}{U}{B}, {tap}: Target player puts the top three cards of his or her library into his or her graveyard.| +Grimoire of the Dead|Innistrad|226|M|{4}|Legendary Artifact|||{1}, {tap}, Discard a card: Put a study counter on Grimoire of the Dead.${tap}, Remove three study counters from Grimoire of the Dead and sacrifice it: Put all creature cards from all graveyards onto the battlefield under your control. They're black Zombies in addition to their other colors and types.| +Skirsdag High Priest|Innistrad|117|R|{1}{B}|Creature — Human Cleric|1|2|Morbid — {tap}, Tap two untapped creatures you control: Put a 5/5 black Demon creature token with flying onto the battlefield. Activate this ability only if a creature died this turn.| Wing Splicer|New Phyrexia|50|U|{3}{U}|Creature — Human Artificer|1|1|When Wing Splicer enters the battlefield, put a 3/3 colorless Golem artifact creature token onto the battlefield.$Golem creatures you control have flying.| Sensor Splicer|New Phyrexia|22|C|{4}{W}|Creature — Artificer|1|1|When Sensor Splicer enters the battlefield, put a 3/3 colorless Golem artifact creature token onto the battlefield.$Golem creatures you control have vigilance.| Maul Splicer|New Phyrexia|114|C|{6}{G}|Creature — Human Artificer|1|1|When Maul Splicer enters the battlefield, put two 3/3 colorless Golem artifact creature tokens onto the battlefield.$Golem creatures you control have trample.| @@ -19040,6 +19202,16 @@ Giant Spider|Magic 2012|177|C|{3}{G}|Creature Greater Basilisk|Magic 2012|179|C|{3}{G}{G}|Creature — Basilisk|3|5|Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)| Plummet|Magic 2012|187|C|{1}{G}|Instant|||Destroy target creature with flying.| Honor of the Pure|Magic 2012|23|R|{1}{W}|Enchantment|||White creatures you control get +1/+1.| +Moorland Haunt|Innistrad|244|R||Land|||{tap}: Add {1} to your mana pool.${W}{U}, {tap}, Exile a creature card from your graveyard: Put a 1/1 white Spirit creature token with flying onto the battlefield.| +Witchbane Orb|Innistrad|236|R|{4}|Artifact|||When Witchbane Orb enters the battlefield, destroy all Curses attached to you.$You have hexproof. (You can't be the target of spells or abilities your opponents control, including Aura spells.)| +Gavony Township|Innistrad|239|R||Land|||{tap}: Add {1} to your mana pool.${2}{G}{W}, {tap}: Put a +1/+1 counter on each creature you control.| +Stensia Bloodhall|Innistrad|247|R||Land|||{tap}: Add {1} to your mana pool.${3}{B}{R}, {tap}: Stensia Bloodhall deals 2 damage to target player.| +Gallows Warden|Innistrad|16|U|{4}{W}|Creature — Spirit|3|3|Flying$Other Spirit creatures you control get +0/+1.| +Festerhide Boar|Innistrad|179|C|{3}{G}|Creature — Boar|3|3|Trample$Morbid — Festerhide Boar enters the battlefield with two +1/+1 counters on it if a creature died this turn.| +Brimstone Volley|Innistrad|132|C|{2}{R}|Instant|||Brimstone Volley deals 3 damage to target creature or player.$Morbid — Brimstone Volley deals 5 damage to that creature or player instead if a creature died this turn.| +Selhoff Occultist|Innistrad|73|C|{2}{U}|Creature — Human Rogue|2|3|Whenever Selhoff Occultist or another creature dies, target player puts the top card of his or her library into his or her graveyard.| +Ashmouth Hound|Innistrad|128|C|{1}{R}|Creature — Elemental Hound|2|1|Whenever Ashmouth Hound blocks or becomes blocked by a creature, Ashmouth Hound deals 1 damage to that creature.| +Kessig Wolf Run|Innistrad|243|R||Land|||{tap}: Add {1} to your mana pool.${X}{R}{G}, {tap}: Target creature gets +X/+0 and gains trample until end of turn.| Martyr's Cry|Masters Edition IV|19|R|{W}{W}|Sorcery|||Exile all white creatures. For each creature exiled this way, its controller draws a card.| Leeches|Masters Edition IV|18|R|{1}{W}{W}|Sorcery|||Target player loses all poison counters. Leeches deals that much damage to that player.| Acid Rain|Masters Edition IV|36|R|{3}{U}|Sorcery|||Destroy all Forests.| @@ -19056,7 +19228,16 @@ Cemetery Reaper|Magic 2012|86|R|{1}{B}{B}|Creature Thran Golem|Magic 2012|220|U|{5}|Artifact Creature — Golem|3|3|As long as Thran Golem is enchanted, it gets +2/+2 and has flying, first strike, and trample.| Incinerate|Magic 2012|146|C|{1}{R}|Instant|||Incinerate deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.| Grim Lavamancer|Magic 2012|145|R|{R}|Creature — Human Wizard|1|1|{R}, {tap}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to target creature or player.| +Fortress Crab|Innistrad|56|C|{3}{U}|Creature — Crab|1|6|| +Endless Ranks of the Dead|Innistrad|99|R|{2}{B}{B}|Enchantment|||At the beginning of your upkeep, put X 2/2 black Zombie creature tokens onto the battlefield, where X is half the number of Zombies you control, rounded down.| +Furor of the Bitten|Innistrad|143|C|{R}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +2/+2 and attacks each turn if able.| +Hysterical Blindness|Innistrad|59|C|{2}{U}|Instant|||Creatures your opponents control get -4/-0 until end of turn.| Sorin's Vengeance|Magic 2012|111|R|{4}{B}{B}{B}|Sorcery|||Sorin's Vengeance deals 10 damage to target player and you gain 10 life.| +Traitorous Blood|Innistrad|166|C|{1}{R}{R}|Sorcery|||Gain control of target creature until end of turn. Untap it. It gains trample and haste until end of turn.| +Rakish Heir|Innistrad|158|U|{2}{R}|Creature — Vampire|2|2|Whenever a Vampire you control deals combat damage to a player, put a +1/+1 counter on it.| +Caravan Vigil|Innistrad|173|C|{G}|Sorcery|||Search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.$Morbid — You may put that card onto the battlefield instead of putting it into your hand if a creature died this turn.| +Geistcatcher's Rig|Innistrad|223|U|{6}|Artifact Creature — Construct|4|5|When Geistcatcher's Rig enters the battlefield, you may have it deal 4 damage to target creature with flying.| +Hamlet Captain|Innistrad|187|U|{1}{G}|Creature — Human Warrior|2|2|Whenever Hamlet Captain attacks or blocks, other Human creatures you control get +1/+1 until end of turn.| Child of Night|Magic 2012|87|C|{1}{B}|Creature — Vampire|2|1|Lifelink (Damage dealt by this creature also causes you to gain that much life.)| Mind Rot|Magic 2012|101|C|{2}{B}|Sorcery|||Target player discards two cards.| Oblivion Ring|Magic 2012|27|U|{2}{W}|Enchantment|||When Oblivion Ring enters the battlefield, exile another target nonland permanent.$When Oblivion Ring leaves the battlefield, return the exiled card to the battlefield under its owner's control.| @@ -19092,10 +19273,19 @@ Mountain|Premium Deck Series: Fire and Lightning|31|L||Basic Land Mountain|Premium Deck Series: Fire and Lightning|32|L||Basic Land — Mountain|||R| Mountain|Premium Deck Series: Fire and Lightning|33|L||Basic Land — Mountain|||R| Mountain|Premium Deck Series: Fire and Lightning|34|L||Basic Land — Mountain|||R| +Silverchase Fox|Innistrad|31|C|{1}{W}|Creature — Fox|2|2|{1}{W}, Sacrifice Silverchase Fox: Exile target enchantment.| +Gutter Grime|Innistrad|186|R|{4}{G}|Enchantment|||Whenever a nontoken creature you control dies, put a slime counter on Gutter Grime, then put a green Ooze creature token onto the battlefield with "This creature's power and toughness are each equal to the number of slime counters on Gutter Grime."| +Orchard Spirit|Innistrad|198|C|{2}{G}|Creature — Spirit|2|2|Orchard Spirit can't be blocked except by creatures with flying or reach.| Rites of Flourishing|Magic 2012|192|R|{2}{G}|Enchantment|||At the beginning of each player's draw step, that player draws an additional card.$Each player may play an additional land on each of his or her turns.| Frost Titan|Magic 2012|55|M|{4}{U}{U}|Creature — Giant|6|6|Whenever Frost Titan becomes the target of a spell or ability an opponent controls, counter that spell or ability unless its controller pays {2}.$Whenever Frost Titan enters the battlefield or attacks, tap target permanent. It doesn't untap during its controller's next untap step.| Inferno Titan|Magic 2012|147|M|{4}{R}{R}|Creature — Giant|6|6|{R}: Inferno Titan gets +1/+0 until end of turn.$Whenever Inferno Titan enters the battlefield or attacks, it deals 3 damage divided as you choose among one, two, or three target creatures and/or players.| Manabarbs|Magic 2012|150|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.| +Abbey Griffin|Innistrad|1|C|{3}{W}|Creature — Griffin|2|2|Flying, vigilance| +Brain Weevil|Innistrad|91|C|{3}{B}|Creature — Insect|1|1|Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)$Sacrifice Brain Weevil: Target player discards two cards. Activate this ability only any time you could cast a sorcery.| +Liliana of the Veil|Innistrad|105|M|{1}{B}{B}|Planeswalker — Liliana|||+1: Each player discards a card.$-2: Target player sacrifices a creature.$-6: Separate all permanents target player controls into two piles. That player sacrifices all permanents in the pile of his or her choice.| +Ancient Grudge|Innistrad|127|C|{1}{R}|Instant|||Destroy target artifact.$Flashback {G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Claustrophobia|Innistrad|48|C|{1}{U}{U}|Enchantment — Aura|||Enchant creature$When Claustrophobia enters the battlefield, tap enchanted creature.$Enchanted creature doesn't untap during its controller's untap step.| +Infernal Plunge|Innistrad|148|C|{R}|Sorcery|||As an additional cost to cast Infernal Plunge, sacrifice a creature.$Add {R}{R}{R} to your mana pool.| Assault Griffin|Magic 2012|8|C|{3}{W}|Creature — Griffin|3|2|Flying| Figure of Destiny|Premium Deck Series: Fire and Lightning|5|R|{RW}|Creature — Kithkin|1|1|{RW}: Figure of Destiny becomes a 2/2 Kithkin Spirit.$(r/w)(r/w){RW}: If Figure of Destiny is a Spirit, it becomes a 4/4 Kithkin Spirit Warrior.$(r/w)(r/w)(r/w)(r/w)(r/w){RW}: If Figure of Destiny is a Warrior, it becomes an 8/8 Kithkin Spirit Warrior Avatar with flying and first strike.| Belltower Sphinx|Magic 2012|46|U|{4}{U}|Creature — Sphinx|2|5|Flying$Whenever a source deals damage to Belltower Sphinx, that source's controller puts that many cards from the top of his or her library into his or her graveyard.| @@ -19132,6 +19322,20 @@ Spell Crumple|Magic: The Gathering-Commander|63|U|{1}{U}{U}|Instant|||Counter ta Quicksilver Amulet|Magic 2012|214|R|{4}|Artifact|||{4}, {tap}: You may put a creature card from your hand onto the battlefield.| Elvish Archdruid|Magic 2012|172|R|{1}{G}{G}|Creature — Elf Druid|2|2|Other Elf creatures you control get +1/+1.${tap}: Add {G} to your mana pool for each Elf you control.| Smallpox|Magic 2012|108|U|{B}{B}|Sorcery|||Each player loses 1 life, discards a card, sacrifices a creature, then sacrifices a land.| +Rotting Fensnake|Innistrad|113|C|{3}{B}|Creature — Zombie Snake|5|1|| +Mulch|Innistrad|196|C|{1}{G}|Sorcery|||Reveal the top four cards of your library. Put all land cards revealed this way into your hand and the rest into your graveyard.| +Somberwald Spider|Innistrad|202|C|{4}{G}|Creature — Spider|2|4|Reach (This creature can block creatures with flying.)$Morbid — Somberwald Spider enters the battlefield with two +1/+1 counters on it if a creature died this turn.| +Naturalize|Innistrad|197|C|{1}{G}|Instant|||Destroy target artifact or enchantment.| +Wreath of Geists|Innistrad|211|U|{G}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +X/+X, where X is the number of creature cards in your graveyard.| +Curse of Oblivion|Innistrad|95|C|{3}{B}|Enchantment — Aura Curse|||Enchant player$At the beginning of enchanted player's upkeep, that player exiles two cards from his or her graveyard.| +Battleground Geist|Innistrad|45|U|{4}{U}|Creature — Spirit|3|3|Flying$Other Spirit creatures you control get +1/+0.| +Mausoleum Guard|Innistrad|20|U|{3}{W}|Creature — Human Scout|2|2|When Mausoleum Guard dies, put two 1/1 white Spirit creature tokens with flying onto the battlefield.| +Traveler's Amulet|Innistrad|234|C|{1}|Artifact|||{1}, Sacrifice Traveler's Amulet: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.| +Desperate Ravings|Innistrad|139|U|{1}{R}|Instant|||Draw two cards, then discard a card at random.$Flashback {2}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Feeling of Dread|Innistrad|14|C|{1}{W}|Instant|||Tap up to two target creatures.$Flashback {1}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Rally the Peasants|Innistrad|28|U|{2}{W}|Instant|||Creatures you control get +2/+0 until end of turn.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Ghoulcaller's Bell|Innistrad|224|C|{1}|Artifact|||{tap}: Each player puts the top card of his or her library into his or her graveyard.| +Doomed Traveler|Innistrad|11|C|{W}|Creature — Human Soldier|1|1|When Doomed Traveler dies, put a 1/1 white Spirit creature token with flying onto the battlefield.| Flight|Magic 2012|53|C|{U}|Enchantment — Aura|||Enchant creature$Enchanted creature has flying.| Rakalite|Masters Edition IV|223|R|{6}|Artifact|||{2}: Prevent the next 1 damage that would be dealt to target creature or player this turn. Return Rakalite to its owner's hand at the beginning of the next end step.| Vow of Wildness|Magic: The Gathering-Commander|178|U|{2}{G}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +3/+3, has trample, and can't attack you or a planeswalker you control.| @@ -19161,11 +19365,29 @@ Collective Voyage|Magic: The Gathering-Commander|147|R|{G}|Sorcery|||Join forces Fling|Magic 2012|134|C|{1}{R}|Instant|||As an additional cost to cast Fling, sacrifice a creature.$Fling deals damage equal to the sacrificed creature's power to target creature or player.| Sacred Wolf|Magic 2012|194|C|{2}{G}|Creature — Wolf|3|1|Hexproof (This creature can't be the target of spells or abilities your opponents control.)| Zombie Infestation|Magic 2012|120|U|{1}{B}|Enchantment|||Discard two cards: Put a 2/2 black Zombie creature token onto the battlefield.| +Isolated Chapel|Innistrad|242|R||Land|||Isolated Chapel enters the battlefield tapped unless you control a Plains or a Swamp.${tap}: Add {W} or {B} to your mana pool.| +Clifftop Retreat|Innistrad|238|R||Land|||Clifftop Retreat enters the battlefield tapped unless you control a Mountain or a Plains.${tap}: Add {R} or {W} to your mana pool.| +Full Moon's Rise|Innistrad|180|U|{1}{G}|Enchantment|||Werewolf creatures you control get +1/+0 and have trample.$Sacrifice Full Moon's Rise: Regenerate all Werewolf creatures you control.| +Lost in the Mist|Innistrad|63|C|{3}{U}{U}|Instant|||Counter target spell. Return target permanent to its owner's hand.| +Woodland Cemetery|Innistrad|249|R||Land|||Woodland Cemetery enters the battlefield tapped unless you control a Swamp or a Forest.${tap}: Add {B} or {G} to your mana pool.| +Lantern Spirit|Innistrad|62|U|{2}{U}|Creature — Spirit|2|1|Flying${U}: Return Lantern Spirit to its owner's hand.| +Dissipate|Innistrad|53|U|{1}{U}{U}|Instant|||Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.| +Darkthicket Wolf|Innistrad|175|C|{1}{G}|Creature — Wolf|2|2|{2}{G}: Darkthicket Wolf gets +2/+2 until end of turn. Activate this ability only once each turn.| +Sulfur Falls|Innistrad|248|R||Land|||Sulfur Falls enters the battlefield tapped unless you control an Island or a Mountain.${tap}: Add {U} or {R} to your mana pool.| +Hinterland Harbor|Innistrad|241|R||Land|||Hinterland Harbor enters the battlefield tapped unless you control a Forest or an Island.${tap}: Add {G} or {U} to your mana pool.| Mighty Leap|Magic 2012|26|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains flying until end of turn.| Autumn's Veil|Magic 2012|164|U|{G}|Instant|||Spells you control can't be countered by blue or black spells this turn, and creatures you control can't be the targets of blue or black spells this turn.| Sorin's Thirst|Magic 2012|110|C|{B}{B}|Instant|||Sorin's Thirst deals 2 damage to target creature and you gain 2 life.| Warpath Ghoul|Magic 2012|117|C|{2}{B}|Creature — Zombie|3|2|| Goblin Arsonist|Magic 2012|136|C|{R}|Creature — Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to target creature or player.| +Grasp of Phantoms|Innistrad|58|U|{3}{U}|Sorcery|||Put target creature on top of its owner's library.$Flashback {7}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Walking Corpse|Innistrad|126|C|{1}{B}|Creature — Zombie|2|2|| +Burning Vengeance|Innistrad|133|U|{2}{R}|Enchantment|||Whenever you cast a spell from your graveyard, Burning Vengeance deals 2 damage to target creature or player.| +Avacyn's Pilgrim|Innistrad|170|C|{G}|Creature — Human Monk|1|1|{tap}: Add {W} to your mana pool.| +Dream Twist|Innistrad|54|C|{U}|Instant|||Target player puts the top three cards of his or her library into his or her graveyard.$Flashback {1}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Voiceless Spirit|Innistrad|42|C|{2}{W}|Creature — Spirit|2|1|Flying, first strike| +Shimmering Grotto|Innistrad|246|C||Land|||{tap}: Add {1} to your mana pool.${1}, {tap}: Add one mana of any color to your mana pool.| +Intangible Virtue|Innistrad|19|U|{1}{W}|Enchantment|||Creature tokens you control get +1/+1 and have vigilance.| Knight of the Reliquary|Duel Decks: Knights vs. Dragons|1|M|{1}{G}{W}|Creature — Human Knight|2|2|Knight of the Reliquary gets +1/+1 for each land card in your graveyard.${tap}, Sacrifice a Forest or Plains: Search your library for a land card, put it onto the battlefield, then shuffle your library.| Caravan Escort|Duel Decks: Knights vs. Dragons|2|C|{W}|Creature — Human Knight|1|1|Level up {2} ({2}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-4$2/2$$LEVEL 5+$5/5$First strike| Lionheart Maverick|Duel Decks: Knights vs. Dragons|3|C|{W}|Creature — Human Knight|1|1|Vigilance${4}{W}: Lionheart Maverick gets +1/+2 until end of turn.| @@ -19287,6 +19509,16 @@ Kresh the Bloodbraided|From the Vault: Legends|5|M|{2}{B}{R}{G}|Legendary Creatu Doran, the Siege Tower|From the Vault: Legends|3|M|{B}{G}{W}|Legendary Creature — Treefolk Shaman|0|5|Each creature assigns combat damage equal to its toughness rather than its power.| Progenitus|From the Vault: Legends|9|M|{W}{W}{U}{U}{B}{B}{R}{R}{G}{G}|Legendary Creature — Hydra Avatar|10|10|Protection from everything$If Progenitus would be put into a graveyard from anywhere, reveal Progenitus and shuffle it into its owner's library instead.| Visara the Dreadful|From the Vault: Legends|15|M|{3}{B}{B}{B}|Legendary Creature — Gorgon|5|5|Flying${tap}: Destroy target creature. It can't be regenerated.| +Heartless Summoning|Innistrad|104|R|{1}{B}|Enchantment|||Creature spells you cast cost {2} less to cast.$Creatures you control get -1/-1.| +Disciple of Griselbrand|Innistrad|98|U|{1}{B}|Creature — Human Cleric|1|1|{1}, Sacrifice a creature: You gain life equal to the sacrificed creature's toughness.| +Corpse Lunge|Innistrad|93|C|{2}{B}|Instant|||As an additional cost to cast Corpse Lunge, exile a creature card from your graveyard.$Corpse Lunge deals damage equal to the exiled card's power to target creature.| +Runechanter's Pike|Innistrad|231|R|{2}|Artifact — Equipment|||Equipped creature has first strike and gets +X/+0, where X is the number of instant and sorcery cards in your graveyard.$Equip {2}| +Mentor of the Meek|Innistrad|21|R|{2}{W}|Creature — Human Soldier|2|2|Whenever another creature with power 2 or less enters the battlefield under your control, you may pay {1}. If you do, draw a card.| +Hanweir Watchkeep|Innistrad|145a|U|{2}{R}|Creature — Human Warrior Werewolf|1|5|Defender$At the beginning of each upkeep, if no spells were cast last turn, transform Hanweir Watchkeep.| +Undead Alchemist|Innistrad|84|R|{3}{U}|Creature — Zombie|4|2|If a Zombie you control would deal combat damage to a player, instead that player puts that many cards from the top of his or her library into his or her graveyard.$Whenever a creature card is put into an opponent's graveyard from his or her library, exile that card and put a 2/2 black Zombie creature token onto the battlefield.| +Armored Skaab|Innistrad|43|C|{2}{U}|Creature — Zombie Warrior|1|4|When Armored Skaab enters the battlefield, put the top four cards of your library into your graveyard.| +Spidery Grasp|Innistrad|204|C|{2}{G}|Instant|||Untap target creature. It gets +2/+4 and gains reach until end of turn. (It can block creatures with flying.)| +Bane of Hanweir|Innistrad|145b|U||Creature — Werewolf|5|5|Bane of Hanweir attacks each turn if able.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Bane of Hanweir.| Volcanic Dragon|Magic 2012|158|U|{4}{R}{R}|Creature — Dragon|4|4|Flying$Haste (This creature can attack and {tap} as soon as it comes under your control.)| Flameblast Dragon|Magic 2012|133|R|{4}{R}{R}|Creature — Dragon|5|5|Flying$Whenever Flameblast Dragon attacks, you may pay {X}{R}. If you do, Flameblast Dragon deals X damage to target creature or player.| Brindle Boar|Magic 2012|167|C|{2}{G}|Creature — Boar|2|2|Sacrifice Brindle Boar: You gain 4 life.| @@ -19297,7 +19529,35 @@ Shock|Magic 2012|154|C|{R}|Instant|||Shock deals 2 damage to target creature or Goblin Tunneler|Magic 2012|142|C|{1}{R}|Creature — Goblin Rogue|1|1|{tap}: Target creature with power 2 or less is unblockable this turn.| Time Reversal|Magic 2012|77|M|{3}{U}{U}|Sorcery|||Each player shuffles his or her hand and graveyard into his or her library, then draws seven cards. Exile Time Reversal.| Alluring Siren|Magic 2012|42|U|{1}{U}|Creature — Siren|1|1|{tap}: Target creature an opponent controls attacks you this turn if able.| +Sever the Bloodline|Innistrad|115|R|{3}{B}|Sorcery|||Exile target creature and all other creatures with the same name as that creature.$Flashback {5}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Cackling Counterpart|Innistrad|46|R|{1}{U}{U}|Instant|||Put a token onto the battlefield that's a copy of target creature you control.$Flashback {5}{U}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Divine Reckoning|Innistrad|10|R|{2}{W}{W}|Sorcery|||Each player chooses a creature he or she controls. Destroy the rest.$Flashback {5}{W}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Past in Flames|Innistrad|155|M|{3}{R}|Sorcery|||Each instant and sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Creeping Renaissance|Innistrad|174|R|{3}{G}{G}|Sorcery|||Choose a permanent type. Return all cards of the chosen type from your graveyard to your hand.$Flashback {5}{G}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Plains|Innistrad|250|L||Basic Land — Plains|||W| +Plains|Innistrad|252|L||Basic Land — Plains|||W| +Plains|Innistrad|251|L||Basic Land — Plains|||W| +Island|Innistrad|253|L||Basic Land — Island|||U| +Island|Innistrad|255|L||Basic Land — Island|||U| +Island|Innistrad|254|L||Basic Land — Island|||U| +Swamp|Innistrad|257|L||Basic Land — Swamp|||B| +Swamp|Innistrad|256|L||Basic Land — Swamp|||B| +Swamp|Innistrad|258|L||Basic Land — Swamp|||B| +Mountain|Innistrad|259|L||Basic Land — Mountain|||R| +Mountain|Innistrad|261|L||Basic Land — Mountain|||R| +Mountain|Innistrad|260|L||Basic Land — Mountain|||R| +Forest|Innistrad|264|L||Basic Land — Forest|||G| +Forest|Innistrad|262|L||Basic Land — Forest|||G| +Forest|Innistrad|263|L||Basic Land — Forest|||G| +Garruk Relentless|Innistrad|181a|M|{3}{G}|Planeswalker — Garruk|||When Garruk Relentless has two or fewer loyalty counters on him, transform him.$0: Garruk Relentless deals 3 damage to target creature. That creature deals damage equal to its power to him.$0: Put a 2/2 green Wolf creature token onto the battlefield.| +Garruk, the Veil-Cursed|Innistrad|181b|M||Planeswalker — Garruk|||+1: Put a 1/1 black Wolf creature token with deathtouch onto the battlefield.$-1: Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle your library.$-3: Creatures you control gain trample and get +X/+X until end of turn, where X is the number of creature cards in your graveyard.| Ice Cage|Magic 2012|57|C|{1}{U}|Enchantment — Aura|||Enchant creature$Enchanted creature can't attack or block, and its activated abilities can't be activated.$When enchanted creature becomes the target of a spell or ability, destroy Ice Cage.| +Gruesome Deformity|Innistrad|103|C|{B}|Enchantment — Aura|||Enchant creature$Enchanted creature has intimidate. (It can't be blocked except by artifact creatures and/or creatures that share a color with it.)| +Night Terrors|Innistrad|111|C|{2}{B}|Sorcery|||Target player reveals his or her hand. You choose a nonland card from it. Exile that card.| +Elite Inquisitor|Innistrad|13|R|{W}{W}|Creature — Human Soldier|2|2|First strike, vigilance$Protection from Vampires, from Werewolves, and from Zombies| +Sturmgeist|Innistrad|82|R|{3}{U}{U}|Creature — Spirit|*|*|Flying$Sturmgeist's power and toughness are each equal to the number of cards in your hand.$Whenever Sturmgeist deals combat damage to a player, draw a card.| +Maw of the Mire|Innistrad|108|C|{4}{B}|Sorcery|||Destroy target land. You gain 4 life.| +Falkenrath Marauders|Innistrad|141|R|{3}{R}{R}|Creature — Vampire Warrior|2|2|Flying, haste$Whenever Falkenrath Marauders deals combat damage to a player, put two +1/+1 counters on it.| Dreamborn Muse|Magic: The Gathering-Commander|44|R|{2}{U}{U}|Creature — Spirit|2|2|At the beginning of each player's upkeep, that player puts the top X cards of his or her library into his or her graveyard, where X is the number of cards in his or her hand.| Furnace Whelp|Magic: The Gathering-Commander|124|U|{2}{R}{R}|Creature — Dragon|2|2|Flying${R}: Furnace Whelp gets +1/+0 until end of turn.| Grave Pact|Magic: The Gathering-Commander|85|R|{1}{B}{B}{B}|Enchantment|||Whenever a creature you control dies, each other player sacrifices a creature.| @@ -19327,7 +19587,7 @@ Wall of Denial|Magic: The Gathering-Commander|237|U|{1}{W}{U}|Creature Patron of the Nezumi|Magic: The Gathering-Commander|93|R|{5}{B}{B}|Legendary Creature — Spirit|6|6|Rat offering (You may cast this card any time you could cast an instant by sacrificing a Rat and paying the difference in mana costs between this and the sacrificed Rat. Mana cost includes color.)$Whenever a permanent is put into an opponent's graveyard, that player loses 1 life.| Ghostly Prison|Magic: The Gathering-Commander|14|U|{2}{W}|Enchantment|||Creatures can't attack you unless their controller pays {2} for each creature he or she controls that's attacking you.| Kodama's Reach|Magic: The Gathering-Commander|163|C|{2}{G}|Sorcery — Arcane|||Search your library for two basic land cards, reveal those cards, and put one onto the battlefield tapped and the other into your hand. Then shuffle your library.| -Nezumi Graverobber|Magic: The Gathering-Commander|92|U|{1}{B}|Creature — Rat Rogue|2|1|{1}{B}: Exile target card from an opponent's graveyard. If no cards are in that graveyard, flip Nezumi Graverobber.| +Nighteyes the Desecrator|Magic: The Gathering-Commander|92|U|{1}{B}|Legendary Creature — Rat Wizard|4|2|{4}{B}: Put target creature card from a graveyard onto the battlefield under your control.| Sakura-Tribe Elder|Magic: The Gathering-Commander|169|C|{1}{G}|Creature — Snake Shaman|1|1|Sacrifice Sakura-Tribe Elder: Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.| Armillary Sphere|Magic: The Gathering-Commander|242|C|{2}|Artifact|||{2}, {tap}, Sacrifice Armillary Sphere: Search your library for up to two basic land cards, reveal them, and put them into your hand. Then shuffle your library.| Extractor Demon|Magic: The Gathering-Commander|81|R|{4}{B}{B}|Creature — Demon|5|5|Flying$Whenever another creature leaves the battlefield, you may have target player put the top two cards of his or her library into his or her graveyard.$Unearth {2}{B} ({2}{B}: Return this card from your graveyard to the battlefield. It gains haste. Exile it at the beginning of the next end step or if it would leave the battlefield. Unearth only as a sorcery.)| @@ -19360,6 +19620,10 @@ Dominus of Fealty|Magic: The Gathering-Commander|194|R|{UR}{UR}{UR}{UR}{UR}|Crea Duergar Hedge-Mage|Magic: The Gathering-Commander|195|U|{2}{RW}|Creature — Dwarf Shaman|2|2|When Duergar Hedge-Mage enters the battlefield, if you control two or more Mountains, you may destroy target artifact.$When Duergar Hedge-Mage enters the battlefield, if you control two or more Plains, you may destroy target enchantment.| Gwyllion Hedge-Mage|Magic: The Gathering-Commander|202|U|{2}{WB}|Creature — Hag Wizard|2|2|When Gwyllion Hedge-Mage enters the battlefield, if you control two or more Plains, you may put a 1/1 white Kithkin Soldier creature token onto the battlefield.$When Gwyllion Hedge-Mage enters the battlefield, if you control two or more Swamps, you may put a -1/-1 counter on target creature.| Nucklavee|Magic: The Gathering-Commander|214|U|{4}{UR}{UR}|Creature — Beast|4|4|When Nucklavee enters the battlefield, you may return target red sorcery card from your graveyard to your hand.$When Nucklavee enters the battlefield, you may return target blue instant card from your graveyard to your hand.| +Mikaeus, the Lunarch|Innistrad|23|M|{X}{W}|Legendary Creature — Human Cleric|0|0|Mikaeus, the Lunarch enters the battlefield with X +1/+1 counters on it.${tap}: Put a +1/+1 counter on Mikaeus.${tap}, Remove a +1/+1 counter from Mikaeus: Put a +1/+1 counter on each other creature you control.| +Olivia Voldaren|Innistrad|215|M|{2}{B}{R}|Legendary Creature — Vampire|3|3|Flying${1}{R}: Olivia Voldaren deals 1 damage to another target creature. That creature becomes a Vampire in addition to its other types. Put a +1/+1 counter on Olivia Voldaren.${3}{B}{B}: Gain control of target Vampire for as long as you control Olivia Voldaren.| +Geist of Saint Traft|Innistrad|213|M|{1}{W}{U}|Legendary Creature — Spirit Cleric|2|2|Hexproof (This creature can't be the target of spells or abilities your opponents control.)$Whenever Geist of Saint Traft attacks, put a 4/4 white Angel creature token with flying onto the battlefield tapped and attacking. Exile that token at end of combat.| +Grimgrin, Corpse-Born|Innistrad|214|M|{3}{U}{B}|Legendary Creature — Zombie Warrior|5|5|Grimgrin, Corpse-Born enters the battlefield tapped and doesn't untap during your untap step.$Sacrifice another creature: Untap Grimgrin and put a +1/+1 counter on it.$Whenever Grimgrin attacks, destroy target creature defending player controls, then put a +1/+1 counter on Grimgrin.| Magus of the Vineyard|Magic: The Gathering-Commander|166|R|{G}|Creature — Human Wizard|1|1|At the beginning of each player's precombat main phase, add {G}{G} to that player's mana pool.| Zoetic Cavern|Magic: The Gathering-Commander|298|U||Land|||{tap}: Add {1} to your mana pool.$Morph {2} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)| Angel of Despair|Magic: The Gathering-Commander|180|R|{3}{W}{W}{B}{B}|Creature — Angel|5|5|Flying$When Angel of Despair enters the battlefield, destroy target permanent.| @@ -19504,6 +19768,14 @@ Ruination|Magic: The Gathering-Commander|134|R|{3}{R}|Sorcery|||Destroy all nonb Evincar's Justice|Magic: The Gathering-Commander|80|C|{2}{B}{B}|Sorcery|||Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)$Evincar's Justice deals 2 damage to each creature and each player.| Living Death|Magic: The Gathering-Commander|88|R|{3}{B}{B}|Sorcery|||Each player exiles all creature cards from his or her graveyard, then sacrifices all creatures he or she controls, then puts all cards he or she exiled this way onto the battlefield.| Propaganda|Magic: The Gathering-Commander|55|U|{2}{U}|Enchantment|||Creatures can't attack you unless their controller pays {2} for each creature he or she controls that's attacking you.| +Elder of Laurels|Innistrad|177|R|{2}{G}|Creature — Human Advisor|2|3|{3}{G}: Target creature gets +X/+X until end of turn, where X is the number of creatures you control.| +Devil's Play|Innistrad|140|R|{X}{R}|Sorcery|||Devil's Play deals X damage to target creature or player.$Flashback {X}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Gnaw to the Bone|Innistrad|183|C|{2}{G}|Instant|||You gain 2 life for each creature card in your graveyard.$Flashback {2}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Tree of Redemption|Innistrad|207|M|{3}{G}|Creature — Plant|0|13|Defender${tap}: Exchange your life total with Tree of Redemption's toughness.| +Rebuke|Innistrad|29|C|{2}{W}|Instant|||Destroy target attacking creature.| +Vampiric Fury|Innistrad|167|C|{1}{R}|Instant|||Vampire creatures you control get +2/+0 and gain first strike until end of turn.| +Stony Silence|Innistrad|36|R|{1}{W}|Enchantment|||Activated abilities of artifacts can't be activated.| +Geistflame|Innistrad|144|C|{R}|Instant|||Geistflame deals 1 damage to target creature or player.$Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| Dreadship Reef|Magic: The Gathering-Commander|271|U||Land|||{tap}: Add {1} to your mana pool.${1}, {tap}: Put a storage counter on Dreadship Reef.${1}, Remove X storage counters from Dreadship Reef: Add X mana in any combination of {U} and/or {B} to your mana pool.| Fungal Reaches|Magic: The Gathering-Commander|274|U||Land|||{tap}: Add {1} to your mana pool.${1}, {tap}: Put a storage counter on Fungal Reaches.${1}, Remove X storage counters from Fungal Reaches: Add X mana in any combination of {R} and/or {G} to your mana pool.| Molten Slagheap|Magic: The Gathering-Commander|282|U||Land|||{tap}: Add {1} to your mana pool.${1}, {tap}: Put a storage counter on Molten Slagheap.${1}, Remove X storage counters from Molten Slagheap: Add X mana in any combination of {B} and/or {R} to your mana pool.| @@ -19544,6 +19816,60 @@ Kazandu Refuge|Magic: The Gathering-Commander|280|U||Land|||Kazandu Refuge enter Punishing Fire|Magic: The Gathering-Commander|131|U|{1}{R}|Instant|||Punishing Fire deals 2 damage to target creature or player.$Whenever an opponent gains life, you may pay {R}. If you do, return Punishing Fire from your graveyard to your hand.| Relic Crush|Magic: The Gathering-Commander|168|C|{4}{G}|Instant|||Destroy target artifact or enchantment and up to one other target artifact or enchantment.| Vampire Nighthawk|Magic: The Gathering-Commander|106|U|{1}{B}{B}|Creature — Vampire Shaman|2|3|Flying$Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)$Lifelink (Damage dealt by this creature also causes you to gain that much life.)| +Deep Analysis|Duel Decks: Ajani vs. Nicol Bolas|65|U|{3}{U}|Sorcery|||Target player draws two cards.$Flashback—{1}{U}, Pay 3 life. (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Firemane Angel|Duel Decks: Ajani vs. Nicol Bolas|21|R|{3}{R}{W}{W}|Creature — Angel|4|3|Flying, first strike$At the beginning of your upkeep, if Firemane Angel is in your graveyard or on the battlefield, you may gain 1 life.${6}{R}{R}{W}{W}: Return Firemane Angel from your graveyard to the battlefield. Activate this ability only during your upkeep.| +Moroii|Duel Decks: Ajani vs. Nicol Bolas|51|U|{2}{U}{B}|Creature — Vampire|4|4|Flying$At the beginning of your upkeep, you lose 1 life.| +Woolly Thoctar|Duel Decks: Ajani vs. Nicol Bolas|13|U|{R}{G}{W}|Creature — Beast|5|4|| +Lead the Stampede|Duel Decks: Ajani vs. Nicol Bolas|24|U|{2}{G}|Sorcery|||Look at the top five cards of your library. You may reveal any number of creature cards from among them and put the revealed cards into your hand. Put the rest on the bottom of your library in any order.| +Titanic Ultimatum|Duel Decks: Ajani vs. Nicol Bolas|31|R|{R}{R}{G}{G}{G}{W}{W}|Sorcery|||Until end of turn, creatures you control get +5/+5 and gain first strike, lifelink, and trample.| +Pride of Lions|Duel Decks: Ajani vs. Nicol Bolas|19|U|{3}{G}{G}|Creature — Cat|4|4|You may have Pride of Lions assign its combat damage as though it weren't blocked.| +Griffin Guide|Duel Decks: Ajani vs. Nicol Bolas|25|U|{2}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +2/+2 and has flying.$When enchanted creature dies, put a 2/2 white Griffin creature token with flying onto the battlefield.| +Vapor Snag|Duel Decks: Ajani vs. Nicol Bolas|58|C|{U}|Instant|||Return target creature to its owner's hand. Its controller loses 1 life.| +Essence Warden|Duel Decks: Ajani vs. Nicol Bolas|3|C|{G}|Creature — Elf Shaman|1|1|Whenever another creature enters the battlefield, you gain 1 life.| +Marisi's Twinclaws|Duel Decks: Ajani vs. Nicol Bolas|17|U|{2}{RW}{G}|Creature — Cat Warrior|2|4|Double strike| +Plains|Duel Decks: Ajani vs. Nicol Bolas|40|L||Basic Land — Plains|||W| +Loam Lion|Duel Decks: Ajani vs. Nicol Bolas|5|U|{W}|Creature — Cat|1|1|Loam Lion gets +1/+2 as long as you control a Forest.| +Grazing Gladehart|Duel Decks: Ajani vs. Nicol Bolas|11|C|{2}{G}|Creature — Antelope|2|2|Landfall — Whenever a land enters the battlefield under your control, you may gain 2 life.| +Graypelt Refuge|Duel Decks: Ajani vs. Nicol Bolas|33|U||Land|||Graypelt Refuge enters the battlefield tapped.$When Graypelt Refuge enters the battlefield, you gain 1 life.${tap}: Add {G} or {W} to your mana pool.| +Searing Meditation|Duel Decks: Ajani vs. Nicol Bolas|27|R|{1}{R}{W}|Enchantment|||Whenever you gain life, you may pay {2}. If you do, Searing Meditation deals 2 damage to target creature or player.| +Terramorphic Expanse|Duel Decks: Ajani vs. Nicol Bolas|76|C||Land|||{tap}, Sacrifice Terramorphic Expanse: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.| +Kird Ape|Duel Decks: Ajani vs. Nicol Bolas|2|U|{R}|Creature — Ape|1|1|Kird Ape gets +1/+2 as long as you control a Forest.| +Briarhorn|Duel Decks: Ajani vs. Nicol Bolas|14|U|{3}{G}|Creature — Elemental|3|3|Flash$When Briarhorn enters the battlefield, target creature gets +3/+3 until end of turn.$Evoke {1}{G} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)| +Icy Manipulator|Duel Decks: Ajani vs. Nicol Bolas|64|U|{4}|Artifact|||{1}, {tap}: Tap target artifact, creature, or land.| +Naya Charm|Duel Decks: Ajani vs. Nicol Bolas|29|U|{R}{G}{W}|Instant|||Choose one — Naya Charm deals 3 damage to target creature; or return target card from a graveyard to its owner's hand; or tap all creatures target player controls.| +Lightning Helix|Duel Decks: Ajani vs. Nicol Bolas|23|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to target creature or player and you gain 3 life.| +Ogre Savant|Duel Decks: Ajani vs. Nicol Bolas|55|C|{4}{R}|Creature — Ogre Wizard|3|2|When Ogre Savant enters the battlefield, if {U} was spent to cast Ogre Savant, return target creature to its owner's hand.| +Spitemare|Duel Decks: Ajani vs. Nicol Bolas|16|U|{2}{RW}{RW}|Creature — Elemental|3|3|Whenever Spitemare is dealt damage, it deals that much damage to target creature or player.| +Sapseep Forest|Duel Decks: Ajani vs. Nicol Bolas|36|U||Land — Forest|||({tap}: Add {G} to your mana pool.)$Sapseep Forest enters the battlefield tapped.${G}, {tap}: You gain 1 life. Activate this ability only if you control two or more green permanents.| +Brackwater Elemental|Duel Decks: Ajani vs. Nicol Bolas|46|C|{2}{U}|Creature — Elemental|4|4|When Brackwater Elemental attacks or blocks, sacrifice it at the beginning of the next end step.$Unearth {2}{U} ({2}{U}: Return this card from your graveyard to the battlefield. It gains haste. Exile it at the beginning of the next end step or if it would leave the battlefield. Unearth only as a sorcery.)| +Fleetfoot Panther|Duel Decks: Ajani vs. Nicol Bolas|12|U|{1}{G}{W}|Creature — Cat|3|4|Flash$When Fleetfoot Panther enters the battlefield, return a green or white creature you control to its owner's hand.| +Sylvan Bounty|Duel Decks: Ajani vs. Nicol Bolas|30|C|{5}{G}|Instant|||Target player gains 8 life.$Basic landcycling {1}{G} ({1}{G}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)| +Vitu-Ghazi, the City-Tree|Duel Decks: Ajani vs. Nicol Bolas|37|U||Land|||{tap}: Add {1} to your mana pool.${2}{G}{W}, {tap}: Put a 1/1 green Saproling creature token onto the battlefield.| +Malice|Duel Decks: Ajani vs. Nicol Bolas|71|U|{3}{B}|Instant|||$Destroy target nonblack creature. It can't be regenerated.| +Evolving Wilds|Duel Decks: Ajani vs. Nicol Bolas|32|C||Land|||{tap}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.| +Behemoth Sledge|Duel Decks: Ajani vs. Nicol Bolas|28|U|{1}{G}{W}|Artifact — Equipment|||Equipped creature gets +2/+2 and has lifelink and trample.$Equip {3}| +Jade Mage|Duel Decks: Ajani vs. Nicol Bolas|7|U|{1}{G}|Creature — Human Shaman|2|1|{2}{G}: Put a 1/1 green Saproling creature token onto the battlefield.| +Ajani's Mantra|Duel Decks: Ajani vs. Nicol Bolas|22|C|{1}{W}|Enchantment|||At the beginning of your upkeep, you may gain 1 life.| +Sylvan Ranger|Duel Decks: Ajani vs. Nicol Bolas|8|C|{1}{G}|Creature — Elf Scout|1|1|When Sylvan Ranger enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.| +Recumbent Bliss|Duel Decks: Ajani vs. Nicol Bolas|26|C|{2}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature can't attack or block.$At the beginning of your upkeep, you may gain 1 life.| +Wild Nacatl|Duel Decks: Ajani vs. Nicol Bolas|4|C|{G}|Creature — Cat Warrior|1|1|Wild Nacatl gets +1/+1 as long as you control a Mountain.$Wild Nacatl gets +1/+1 as long as you control a Plains.| +Kazandu Refuge|Duel Decks: Ajani vs. Nicol Bolas|35|U||Land|||Kazandu Refuge enters the battlefield tapped.$When Kazandu Refuge enters the battlefield, you gain 1 life.${tap}: Add {R} or {G} to your mana pool.| +Jungle Shrine|Duel Decks: Ajani vs. Nicol Bolas|34|U||Land|||Jungle Shrine enters the battlefield tapped.${tap}: Add {R}, {G}, or {W} to your mana pool.| +Slavering Nulls|Duel Decks: Ajani vs. Nicol Bolas|45|U|{1}{R}|Creature — Goblin Zombie|2|1|Whenever Slavering Nulls deals combat damage to a player, if you control a Swamp, you may have that player discard a card.| +Qasali Pridemage|Duel Decks: Ajani vs. Nicol Bolas|10|C|{G}{W}|Creature — Cat Wizard|2|2|Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)${1}, Sacrifice Qasali Pridemage: Destroy target artifact or enchantment.| +Countersquall|Duel Decks: Ajani vs. Nicol Bolas|59|U|{U}{B}|Instant|||Counter target noncreature spell. Its controller loses 2 life.| +Elder Mastery|Duel Decks: Ajani vs. Nicol Bolas|68|U|{3}{U}{B}{R}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +3/+3 and has flying.$Whenever enchanted creature deals damage to a player, that player discards two cards.| +Hellfire Mongrel|Duel Decks: Ajani vs. Nicol Bolas|48|U|{2}{R}|Creature — Elemental Hound|2|2|At the beginning of each opponent's upkeep, if that player has two or fewer cards in hand, Hellfire Mongrel deals 2 damage to him or her.| +Nacatl Hunt-Pride|Duel Decks: Ajani vs. Nicol Bolas|20|U|{5}{W}|Creature — Cat Warrior|5|4|Vigilance${R}, {tap}: Target creature can't block this turn.${G}, {tap}: Target creature blocks this turn if able.| +Igneous Pouncer|Duel Decks: Ajani vs. Nicol Bolas|57|C|{4}{B}{R}|Creature — Elemental|5|1|Haste$Swampcycling {2}, mountaincycling {2} ({2}, Discard this card: Search your library for a Swamp or Mountain card, reveal it, and put it into your hand. Then shuffle your library.)| +Ageless Entity|Duel Decks: Ajani vs. Nicol Bolas|18|R|{3}{G}{G}|Creature — Elemental|4|4|Whenever you gain life, put that many +1/+1 counters on Ageless Entity.| +Canyon Wildcat|Duel Decks: Ajani vs. Nicol Bolas|6|C|{1}{R}|Creature — Cat|2|1|Mountainwalk| +Ajani's Pridemate|Duel Decks: Ajani vs. Nicol Bolas|9|U|{1}{W}|Creature — Cat Soldier|2|2|Whenever you gain life, you may put a +1/+1 counter on Ajani's Pridemate. (For example, if an effect causes you to gain 3 life, you may put one +1/+1 counter on this creature.)| +Loxodon Hierarch|Duel Decks: Ajani vs. Nicol Bolas|15|R|{2}{G}{W}|Creature — Elephant Cleric|4|4|When Loxodon Hierarch enters the battlefield, you gain 4 life.${G}{W}, Sacrifice Loxodon Hierarch: Regenerate each creature you control.| +Rolling Temblor|Innistrad|161|U|{2}{R}|Sorcery|||Rolling Temblor deals 2 damage to each creature without flying.$Flashback {4}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| +Parallel Lives|Innistrad|199|R|{3}{G}|Enchantment|||If an effect would put one or more tokens onto the battlefield under your control, it puts twice that many of those tokens onto the battlefield instead.| +Back from the Brink|Innistrad|44|R|{4}{U}{U}|Enchantment|||Exile a creature card from your graveyard and pay its mana cost: Put a token onto the battlefield that's a copy of that card. Activate this ability only any time you could cast a sorcery.| +Moldgraf Monstrosity|Innistrad|194|R|{4}{G}{G}{G}|Creature — Insect|8|8|Trample$When Moldgraf Monstrosity dies, exile it, then return two creature cards at random from your graveyard to the battlefield.| Forest|Magic: The Gathering-Commander|317|L||Basic Land — Forest|||G| Forest|Magic: The Gathering-Commander|316|L||Basic Land — Forest|||G| Forest|Magic: The Gathering-Commander|318|L||Basic Land — Forest|||G| @@ -19564,291 +19890,45 @@ Swamp|Magic: The Gathering-Commander|307|L||Basic Land Swamp|Magic: The Gathering-Commander|310|L||Basic Land — Swamp|||B| Swamp|Magic: The Gathering-Commander|309|L||Basic Land — Swamp|||B| Swamp|Magic: The Gathering-Commander|308|L||Basic Land — Swamp|||B| +Kessig Cagebreakers|Innistrad|189|R|{4}{G}|Creature — Human Rogue|3|4|Whenever Kessig Cagebreakers attacks, put a 2/2 green Wolf creature token onto the battlefield tapped and attacking for each creature card in your graveyard.| +Ranger's Guile|Innistrad|201|C|{G}|Instant|||Target creature you control gets +1/+1 and gains hexproof until end of turn. (It can't be the target of spells or abilities your opponents control.)| +Heretic's Punishment|Innistrad|147|R|{4}{R}|Enchantment|||{3}{R}: Choose target creature or player, then put the top three cards of your library into your graveyard. Heretic's Punishment deals damage to that creature or player equal to the highest converted mana cost among those cards.| +Paraselene|Innistrad|26|U|{2}{W}|Sorcery|||Destroy all enchantments. You gain 1 life for each enchantment destroyed this way.| +Manor Skeleton|Innistrad|106|C|{1}{B}|Creature — Skeleton|1|1|Haste${1}{B}: Regenerate Manor Skeleton.| +Essence of the Wild|Innistrad|178|M|{3}{G}{G}{G}|Creature — Avatar|6|6|Creatures you control enter the battlefield as a copy of Essence of the Wild.| +Memory's Journey|Innistrad|66|U|{1}{U}|Instant|||Target player shuffles up to three target cards from his or her graveyard into his or her library.$Flashback {G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)| Spawnwrithe|Magic: The Gathering-Commander|171|R|{2}{G}|Creature — Elemental|2|2|Trample$Whenever Spawnwrithe deals combat damage to a player, put a token that's a copy of Spawnwrithe onto the battlefield.| +Cruel Ultimatum|Duel Decks: Ajani vs. Nicol Bolas|69|R|{U}{U}{B}{B}{B}{R}{R}|Sorcery|||Target opponent sacrifices a creature, discards three cards, then loses 5 life. You return a creature card from your graveyard to your hand, draw three cards, then gain 5 life.| +Nightscape Familiar|Duel Decks: Ajani vs. Nicol Bolas|44|C|{1}{B}|Creature — Zombie|1|1|Blue spells and red spells you cast cost {1} less to cast.${1}{B}: Regenerate Nightscape Familiar.| +Morgue Toad|Duel Decks: Ajani vs. Nicol Bolas|47|C|{2}{B}|Creature — Frog|2|2|Sacrifice Morgue Toad: Add {U}{R} to your mana pool.| +Crumbling Necropolis|Duel Decks: Ajani vs. Nicol Bolas|74|U||Land|||Crumbling Necropolis enters the battlefield tapped.${tap}: Add {U}, {B}, or {R} to your mana pool.| +Fall|Duel Decks: Ajani vs. Nicol Bolas|73|U|{B}{R}|Sorcery|||$Target player reveals two cards at random from his or her hand, then discards each nonland card revealed this way.| +Surveilling Sprite|Duel Decks: Ajani vs. Nicol Bolas|43|C|{1}{U}|Creature — Faerie Rogue|1|1|Flying$When Surveilling Sprite dies, you may draw a card.| +Agonizing Demise|Duel Decks: Ajani vs. Nicol Bolas|66|C|{3}{B}|Instant|||Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)$Destroy target nonblack creature. It can't be regenerated. If Agonizing Demise was kicked, it deals damage equal to that creature's power to the creature's controller.| +Dimir Cutpurse|Duel Decks: Ajani vs. Nicol Bolas|49|R|{1}{U}{B}|Creature — Spirit|2|2|Whenever Dimir Cutpurse deals combat damage to a player, that player discards a card and you draw a card.| +Fire-Field Ogre|Duel Decks: Ajani vs. Nicol Bolas|53|U|{1}{U}{B}{R}|Creature — Ogre Mutant|4|2|First strike$Unearth {U}{B}{R} ({U}{B}{R}: Return this card from your graveyard to the battlefield. It gains haste. Exile it at the beginning of the next end step or if it would leave the battlefield. Unearth only as a sorcery.)| +Grixis Charm|Duel Decks: Ajani vs. Nicol Bolas|63|U|{U}{B}{R}|Instant|||Choose one — Return target permanent to its owner's hand; or target creature gets -4/-4 until end of turn; or creatures you control get +2/+0 until end of turn.| +Shriekmaw|Duel Decks: Ajani vs. Nicol Bolas|54|U|{4}{B}|Creature — Elemental|3|2|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$When Shriekmaw enters the battlefield, destroy target nonartifact, nonblack creature.$Evoke {1}{B} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)| +Steamcore Weird|Duel Decks: Ajani vs. Nicol Bolas|50|C|{3}{U}|Creature — Weird|1|3|When Steamcore Weird enters the battlefield, if {R} was spent to cast Steamcore Weird, it deals 2 damage to target creature or player.| +Blazing Specter|Duel Decks: Ajani vs. Nicol Bolas|52|R|{2}{B}{R}|Creature — Specter|2|2|Flying, haste$Whenever Blazing Specter deals combat damage to a player, that player discards a card.| +Profane Command|Duel Decks: Ajani vs. Nicol Bolas|70|R|{X}{B}{B}|Sorcery|||Choose two — Target player loses X life; or return target creature card with converted mana cost X or less from your graveyard to the battlefield; or target creature gets -X/-X until end of turn; or up to X target creatures gain fear until end of turn. (They can't be blocked except by artifact creatures and/or black creatures.)| +Slave of Bolas|Duel Decks: Ajani vs. Nicol Bolas|67|U|{3}{UR}{B}|Sorcery|||Gain control of target creature. Untap that creature. It gains haste until end of turn. Sacrifice it at the beginning of the next end step.| +Jhessian Zombies|Duel Decks: Ajani vs. Nicol Bolas|56|C|{4}{U}{B}|Creature — Zombie|2|4|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Islandcycling {2}, swampcycling {2} ({2}, Discard this card: Search your library for an Island or Swamp card, reveal it, and put it into your hand. Then shuffle your library.)| +Undermine|Duel Decks: Ajani vs. Nicol Bolas|62|R|{U}{U}{B}|Instant|||Counter target spell. Its controller loses 3 life.| +Obelisk of Grixis|Duel Decks: Ajani vs. Nicol Bolas|60|C|{3}|Artifact|||{tap}: Add {U}, {B}, or {R} to your mana pool.| +Suffering|Duel Decks: Ajani vs. Nicol Bolas|72|U|{3}{R}|Sorcery|||$Destroy target land.| +Rupture Spire|Duel Decks: Ajani vs. Nicol Bolas|75|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${tap}: Add one mana of any color to your mana pool.| +Swamp|Duel Decks: Ajani vs. Nicol Bolas|78|L||Basic Land — Swamp|||B| +Mountain|Duel Decks: Ajani vs. Nicol Bolas|41|L||Basic Land — Mountain|||R| +Forest|Duel Decks: Ajani vs. Nicol Bolas|39|L||Basic Land — Forest|||G| +Mountain|Duel Decks: Ajani vs. Nicol Bolas|80|L||Basic Land — Mountain|||R| +Island|Duel Decks: Ajani vs. Nicol Bolas|79|L||Basic Land — Island|||U| Omnath, Locus of Mana|From the Vault: Legends|7|M|{2}{G}|Legendary Creature — Elemental|1|1|Green mana doesn't empty from your mana pool as steps and phases end.$Omnath, Locus of Mana gets +1/+1 for each green mana in your mana pool.| Mikaeus, the Lunarch|From the Vault: Legends|6|M|{X}{W}|Legendary Creature — Human Cleric|0|0|Mikaeus, the Lunarch enters the battlefield with X +1/+1 counters on it.${tap}: Put a +1/+1 counter on Mikaeus.${tap}, Remove a +1/+1 counter from Mikaeus: Put a +1/+1 counter on each other creature you control.| Ulamog, the Infinite Gyre|From the Vault: Legends|14|M|{11}|Legendary Creature — Eldrazi|10|10|When you cast Ulamog, the Infinite Gyre, destroy target permanent.$Annihilator 4 (Whenever this creature attacks, defending player sacrifices four permanents.)$Ulamog is indestructible.$When Ulamog is put into a graveyard from anywhere, its owner shuffles his or her graveyard into his or her library.| -Abbey Griffin|Innistrad|1|C|{3}{W}|Creature - Griffin|2|2|Flying, vigilance| -Angel of Flight Alabaster|Innistrad|2|R|{4}{W}|Creature - Angel|4|4|Flying$At the beginning of your upkeep, return target Spirit card from your graveyard to your hand.| -Angelic Overseer|Innistrad|3|M|{3}{W}{W}|Creature - Angel|5|3|Flying$As long as you control a Human, Angelic Overseer has hexproof and is indestructible.| -Avacynian Priest|Innistrad|4|C|{1}{W}|Creature - Human Cleric|1|2|{1}, {T}: Tap target non-Human creature.| -Bonds of Faith|Innistrad|5|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 as long as it's a Human. Otherwise, it can't attack or block.| -Champion of the Parish|Innistrad|6|R|{W}|Creature - Human Soldier|1|1|Whenever another Human enters the battlefield under your control, put a +1/+1 counter on Champion of the Parish.| -Chapel Geist|Innistrad|7|C|{1}{W}{W}|Creature - Spirit|2|3|Flying| -Cloistered Youth|Innistrad|8|U|{1}{W}|Creature - Human|1|1|At the beginning of your upkeep, you may transform Cloistered Youth.| -Unholy Fiend|Innistrad|8|U||Creature - Horror|33|{B}$At the beginning of your end step, you lose 1 life.| -Dearly Departed|Innistrad|9|R|{4}{W}{W}|Creature - Spirit|5|5|Flying$As long as Dearly Departed is in your graveyard, each Human creature you control enters the battlefield with an additional +1/+1 counter on it.| -Divine Reckoning|Innistrad|10|R|{2}{W}{W}|Sorcery|||Each player chooses a creature he or she controls. Destroy the rest.$Flashback {5}{W}{W}| -Doomed Traveler|Innistrad|11|C|{W}|Creature - Human Soldier|1|1|When Doomed Traveler dies, put a 1/1 white Spirit creature token with flying onto the battlefield.| -Elder Cathar|Innistrad|12|C|{2}{W}|Creature - Human Soldier|2|2|When Elder Cathar dies, put a +1/+1 counter on target creature you control. If that creature is a Human, put two +1/+1 counters on it instead.| -Elite Inquisitor|Innistrad|13|R|{W}{W}|Creature - Human Soldier|2|2|First strike, vigilance$Protection from Vampires, from Werewolves, and from Zombies.| -Feeling of Dread|Innistrad|14|C|{1}{W}|Instant|||Tap up to two target creatures.$Flashback {1}{U}| -Fiend Hunter|Innistrad|15|U|{1}{W}{W}|Creature - Human Cleric|1|3|When Fiend Hunter enters the battlefield, you may exile another target creature.$When Fiend Hunter leaves the battlefield, return the exiled card to the battlefield under its owner's control.| -Gallows Warden|Innistrad|16|U|{4}{W}|Creature - Spirit|3|3|Flying$Other Spirit creatures you control get +0/+1.| -Geist-Honored Monk|Innistrad|17|R|{3}{W}{W}|Creature - Human Monk|*|*|Vigilance$Geist-Honored Monk's power and toughness are each equal to the number of creatures you control.$When Geist-Honored Monk enters the battlefield, put two 1/1 white Spirit creature tokens with flying onto the battlefield.| -Ghostly Possession|Innistrad|18|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has flying.$Prevent all combat damage that would be dealt to and dealt by enchanted creature.| -Intangible Virtue|Innistrad|19|U|{1}{W}|Enchantment|||Creature tokens you control get +1/+1 and have vigilance.| -Mausoleum Guard|Innistrad|20|U|{3}{W}|Creature - Human Scout|2|2|When Mausoleum Guard dies, put two 1/1 white Spirit creature tokens with flying onto the battlefield.| -Mentor of the Meek|Innistrad|21|R|{2}{W}|Creature - Human Soldier|2|2|Whenever another creature with power 2 or less enters the battlefield under your control, you may pay {1}. If you do, draw a card.| -Midnight Haunting|Innistrad|22|U|{2}{W}|Instant|||Put two 1/1 white Spirit creature tokens with flying onto the battlefield.| -Mikaeus, the Lunarch|Innistrad|23|M|{X}{W}|Legendary Creature - Human Cleric|0|0|Mikaeus, the Lunarch enters the battlefield with X +1/+1 counters on it.${T}: Put a +1/+1 counter on Mikaeus.${T}, Remove a +1/+1 counter from Mikaeus: Put a +1/+1 counter on each other creature you control.| -Moment of Heroism|Innistrad|24|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains lifelink until end of turn.| -Nevermore|Innistrad||R|{1}{W}{W}|Enchantment|||As Nevermore enters the battlefield, name a nonland card.$The named card can't be cast.| -Paraselene|Innistrad|26|U|{2}{W}|Sorcery|||Destroy all enchantments. You gain 1 life for each enchantment destroyed this way.| -Purify the Grave|Innistrad|27|U|{W}|Instant|||Exile target card from a graveyard.$Flashback {W}| -Rally the Peasants|Innistrad|28|U|{2}{W}|Instant|||Creatures you control get +2/+0 until end of turn.$Flashback {2}{R}| -Rebuke|Innistrad|29|C|{2}{W}|Instant|||Destroy target attacking creature.| -Selfless Cathar|Innistrad|30|C|{W}|Creature - Human Cleric|1|1|{1}{W}, Sacrifice Selfless Cathar: Creatures you control get +1/+1 until end of turn.| -Silverchase Fox|Innistrad|31|C|{1}{W}|Creature - Fox|2|2|{1}{W}, Sacrifice Silverchase Fox: Exile target enchantment.| -Slayer of the Wicked|Innistrad||U|{3}{W}|Creature - Human Soldier|3|2|When Slayer of the Wicked enters the battlefield, you may destroy target Vampire, Werewolf, or Zombie.| -Smite the Monstrous|Innistrad|33|C|{3}{W}|Instant|||Destroy target creature with power 4 or greater.| -Spare from Evil|Innistrad|34|C|{1}{W}|Instant|||Creatures you control gain protection from non-Human creatures until end of turn.| -Spectral Rider|Innistrad||U|{W}{W}|Creature - Spirit Knight|2|2|Intimidate| -Stony Silence|Innistrad|36|R|{1}{W}|Enchantment|||Activated abilities of artifacts can't be activated.| -Thraben Purebloods|Innistrad|37|C|{4}{W}|Creature - Hound|3|5|| -Thraben Sentry|Innistrad|38|C|{3}{W}|Creature - Human Soldier|2|2|Vigilance$Whenever another creature you control dies, you may transform Thraben Sentry.| -Thraben Militia|Innistrad|38|C||Creature - Human Soldier|5|4|Trample| -Unruly Mob|Innistrad|39|C|{1}{W}|Creature - Human|1|1|Whenever another creature you control dies, put a +1/+1 counter on Unruly Mob.| -Urgent Exorcism|Innistrad|40|C|{1}{W}|Instant|||Destroy target Spirit or enchantment.| -Village Bell-Ringer|Innistrad|41|C|{2}{W}|Creature - Human Scout|1|4|Flash$When Village Bell-Ringer enters the battlefield, untap all creatures you control.| -Voiceless Spirit|Innistrad|42|C|{2}{W}|Creature - Spirit|2|1|Flying, first strike| -Armored Skaab|Innistrad|43|C|{2}{U}|Creature - Zombie Warrior|1|4|When Armored Skaab enters the battlefield, put the top four cards of your library into your graveyard.| -Back from the Brink|Innistrad|44|R|{4}{U}{U}|Enchantment|||Exile a creature card from your graveyard and pay its mana cost: Put a token onto the battlefield that's a copy of that card. Activate this ability only any time you could cast a sorcery.| -Battleground Geist|Innistrad|45|U|{4}{U}|Creature - Spirit|3|3|Flying$Other Spirit creatures you control get +1/+0.| -Cackling Counterpart|Innistrad|46|R|{1}{U}{U}|Instant|||Put a token onto the battlefield that's a copy of target creature you control.$Flashback {5}{U}{U}| -Civilized Scholar|Innistrad|47|U|{2}{U}|Creature - Human Advisor|0|1|{T}: Draw a card, then discard a card. If a creature card is discarded this way, untap Civilized Scholar, then transform it| -Homicidal Brute|Innistrad|47|U||Human Mutant|5|1|{R}$At the beginning of your end step, if Homicidal Brute didn't attack this turn, tap Homicidal Brute, then transform it.| -Claustrophobia|Innistrad|48|C|{1}{U}{U}|Enchantment - Aura|||Enchant Creature$When Claustrophobia enters the battlefield, tap enchanted creature.$Enchanted creature doesn't untap during its controller's untap step.| -Curiosity|Innistrad|49|U|{U}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature deals damage to an opponent, you may draw a card.| -Curse of the Bloody Tome|Innistrad|50|C|{2}{U}|Enchantment - Aura Curse|||Enchant player$At the beginning of enchanted player's upkeep, that player puts the top two cards of his or her library into his or her graveyard.| -Delver of Secrets|Innistrad|51|C|{U}|Creature - Human Wizard|1|1|At the beginning of your upkeep, look at the top card of your library. You may reveal that card. If an instant or sorcery is revealed this way, transform Delver of Secrets.| -Insectile Aberration|Innistrad|51|C||Creature - Human Insect|3|2|Flying| -Deranged Assistant|Innistrad|52|C|{1}{U}|Creature - Human Wizard|1|1|{T}, Put the top card of your library into your graveyard: Add {1} to your mana pool.| -Dissipate|Innistrad|53|U|{1}{U}{U}|Instant|||Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.| -Dream Twist|Innistrad|54|C|{U}|Instant|||Target player puts the top three cards of his or her library into his or her graveyard.$Flashback {1}{U}| -Forbidden Alchemy|Innistrad|55|C|{2}{U}|Instant|||Look at the top four cards of your library. Put one of them into your hand and the rest into your graveyard.$Flashback {6}{B}| -Fortress Crab|Innistrad|56|C|{3}{U}|Creature - Crab|1|6|| -Frightful Delusion|Innistrad|57|C|{2}{U}|Instant|||Counter target spell unless its controller pays {1}. That player discards a card.| -Grasp of Phantoms|Innistrad|58|U|{3}{U}|Sorcery|||Put target creature on top of its owner's library.$Flashback {7}{U}| -Hysterical Blindness|Innistrad|59|C|{2}{U}|Instant|||Creatures your opponents control get -4/-0 until end of turn.| -Invisible Stalker|Innistrad|60|U|{1}{U}|Creature - Human Rogue|1|1|Hexproof$Invisible Stalker is unblockable.| -Laboratory Maniac|Innistrad|61|R|{2}{U}|Creature - Human Wizard|2|2|If you would draw a card while your library has no cards in it, you win the game instead.| -Lantern Spirit|Innistrad|62|U|{2}{U}|Creature - Spirit|2|1|Flying${U}: Return Lantern Spirit to its owner's hand.| -Lost in the Mist|Innistrad|63|C|{3}{U}{U}|Instant|||Counter target spell. Return target permanent to its owner's hand.| -Ludevic's Test Subject|Innistrad|64|R|{1}{U}|Creature - Lizard|0|3|Defender${1}{U}: Put a hatchling counter on Ludevic's Test Subject. Then if there are five or more hatchling counters on it, remove all of them and transform it.| -Ludevic's Abomination|Innistrad|64|R||Creature - Lizard Horror|13|13|Trample| -Makeshift Mauler|Innistrad|65|C|{3}{U}|Creature - Zombie Horror|4|5|As an additional cost to cast Makeshift Mauler, exile a creature card from your graveyard.| -Memory's Journey|Innistrad|66|U|{1}{U}|Instant|||Target player shuffles up to three target cards from his or her graveyard into his or her library.$Flashback {G}| -Mindshrieker|Innistrad|67|R|{1}{U}|Creature - Spirit Bird|1|1|Flying${2}: Target player puts the top card of his or her library into his or her graveyard. Mindshrieker gets +X/+X until end of turn, where X is that card's converted mana cost.| -Mirror-Mad Phantasm|Innistrad||M|{3}{U}{U}|Creature - Spirit|5|1|Flying${1}{U}: Mirror-Mad Phantasm's owner shuffles it into his or her library. If that player does, he or she reveals cards from the top of that library until a card named Mirror-Mad Phantasm is revealed. That player puts that card onto the battlefield and all other cards revealed this way into his or her graveyard.| -Moon Heron|Innistrad|69|C|{3}{U}|Creature - Spirit Bird|3|2|Flying| -Murder of Crows|Innistrad|70|U|{3}{U}{U}|Creature - Bird|4|4|Flying$Whenever another creature dies, you may draw a card. If you do, discard a card.| -Rooftop Storm|Innistrad|71|R|{5}{U}|Enchantment|||You may pay {0} rather than pay the mana cost for Zombie creature spells you cast.| -Runic Repetition|Innistrad|72|U|{2}{U}|Sorcery|||Return target exiled card with flashback you own to your hand.| -Selhoff Occultist|Innistrad|73|C|{2}{U}|Creature - Human Rogue|2|3|Whenever Selhoff Occultist or another creature dies, target player puts the top card of his or her library into his or her graveyard.| -Sensory Deprivation|Innistrad|74|C|{U}|Enchantment - Aura|||Enchant creature$Enchanted creature gets -3/-0.| -Silent Departure|Innistrad|75|C|{U}|Sorcery|||Return target creature to its owner's hand.$Flashback {4}{U}| -Skaab Goliath|Innistrad|76|U|{5}{U}|Creature - Zombie Giant|6|9|As an additional cost to cast Skaab Goliath, exile two creature cards from your graveyard.$Trample| -Skaab Ruinator|Innistrad|77|M|{1}{U}{U}|Creature - Zombie Horror|5|6|As an additional cost to cast Skaab Ruinator, exile 3 creature cards from your graveyard.$Flying$You may cast Skaab Ruinator from your graveyard.| -Snapcaster Mage|Innistrad||R|{1}{U}|Creature - Human Wizard|2|1|Flash$When Snapcaster Mage enters the battlefield, target instant or sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost.| -Spectral Flight|Innistrad|79|C|{1}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has flying.| -Stitched Drake|Innistrad|80|C|{1}{U}{U}|Creature - Zombie Drake|3|4|As an addition cost to cast Stitched Drake, exile a creature card from your graveyard.$$Flying| -Stitcher's Apprentice|Innistrad|81|C|{1}{U}|Creature - Homunculus|1|2|{1}{U}, {T}: Put a 2/2 blue Homunculus creature token onto the battlefield, then sacrifice a creature.| -Sturmgeist|Innistrad|82|R|{3}{U}{U}|Creature - Spirit|*|*|Flying$Sturmgeist's power and toughness are each equal to the number of cards in your hand.$Whenever Sturmgeist deals combat damage to a player, draw a card.| -Think Twice|Innistrad|83|C|{1}{U}|Instant|||Draw a card.$Flashback {2}{U}| -Undead Alchemist|Innistrad|84|R|{3}{U}|Creature - Zombie|4|2|If a Zombie you control would deal combat damage to a player, instead that player puts that many cards from the top of his or her library into his or her graveyard.$Whenever a creature card is put into an opponent's graveyard from his or her library, exile that card and put a 2/2 black Zombie creature token onto the battlefield.| -Abattoir Ghoul|Innistrad|85|U|{3}{B}|Creature - Zombie|3|2|First strike$Whenever a creature dealt damage by Abattoir Ghoul this turn dies, you gain life equal to that creature's toughness.| -Altar's Reap|Innistrad|86|C|{1}{B}|Instant|||As an additional cost to cast Altar's Reap, sacrifice a creature.$Draw two cards.| -Army of the Damned|Innistrad|87|M|{5}{B}{B}{B}|Sorcery|||Put thirteen 2/2 black Zombie creature tokens onto the battlefield tapped.$Flashback {7}{B}{B}{B}| -Bitterheart Witch|Innistrad|88|U|{4}{B}|Creature - Human Shaman|1|2|Deathtouch$When Bitterheart Witch dies, you may search your library for a Curse card, put it onto the battlefield attached to target player, then shuffle your library.| -Bloodgift Demon|Innistrad|89|R|{3}{B}{B}|Creature - Demon|5|4|Flying$At the beginning of your upkeep, target player draws a card and loses 1 life.| -Bloodline Keeper|Innistrad||R|{2}{B}{B}|Creature - Vampire|3|3|Flying${T}: Put a 2/2 black Vampire creature token with flying onto the battlefield.${B}: Transform Bloodline Keeper.$Activate this ability only if you control five or more vampires.| -Lord of Lineage|Innistrad||R||undefined|5|5|Flying$Other Vampire creatures you control get +2/+2.${T}: Put a 2/2 black Vampire creature token with flying onto the battlefield.| -Brain Weevil|Innistrad|91|C|{3}{B}|Creature - Insect|1|1|Intimidate$Sacrifice Brain Weevil: Target player discards two cards. Activate this ability only any time you could cast a sorcery.| -Bump in the Night|Innistrad|92|C|{B}|Sorcery|||Target opponent loses 3 life.$Flashback {5}{R}| -Corpse Lunge|Innistrad|93|C|{2}{B}|Instant|||As an additional cost to cast Corpse Lunge, exile a creature card from your graveyard.$Corpse Lunge deals damage equal to the exiled card's power to target creature.| -Curse of Death's Hold|Innistrad|94|R|{3}{B}{B}|Enchantment - Aura Curse|||Enchant Player$Creatures enchanted player controls gets -1/-1.| -Curse of Oblivion|Innistrad|95|C|{3}{B}|Enchantment - Aura Curse|||Enchant player$At the beginning of enchanted player's upkeep, that player exiles two cards from his or her graveyard.| -Dead Weight|Innistrad|96|C|{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets -2/-2.| -Diregraf Ghoul|Innistrad|97|U|{B}|Creature - Zombie|2|2|Diregraf Ghoul enters the battlefield tapped.| -Disciple of Griselbrand|Innistrad|98|U|{1}{B}|Creature - Human Cleric|1|1|{1}, Sacrifice a creature: You gain life equal to the sacrificed creature's toughness.| -Endless Ranks of the Dead|Innistrad|99|R|{2}{B}{B}|Enchantment|||At the beginning of your upkeep, put X 2/2 black zombie creature tokens onto the battlefield, where X is half the number of the zombies you control, rounded down.| -Falkenrath Noble|Innistrad|100|U|{3}{B}|Creature - Vampire|2|2|Flying$Whenever Falkenrath Noble or another creature dies, target player loses 1 life and you gain 1 life.| -Ghoulcaller's Chant|Innistrad|101|C|{B}|Sorcery|||Choose one - Return target creature card from your graveyard to your hand; or return two target Zombie cards from your graveyard to your hand.| -Ghoulraiser|Innistrad|102|C|{1}{B}{B}|Creature - Zombie|2|2|When Ghoulraiser enters the battlefield, return a Zombie card at random from your graveyard to your hand.| -Gruesome Deformity|Innistrad|103|C|{B}|Enchantment - Aura|||Enchant creature$Enchanted creature has intimidate.| -Heartless Summoning|Innistrad|104|R|{1}{B}|Enchantment|||Creature spells you cast cost {2} less to cast.$Creatures you control get -1/-1.| -Liliana of the Veil|Innistrad|105|M|{1}{B}{B}|Planeswalker - Liliana|3|+1: Each player discards a card.$-2: Target player sacrifices a creature.$-6: Separate all permanents target player controls into two piles. That player sacrifices all permanents in the pile of his or her choice.| -Manor Skeleton|Innistrad|106|C|{1}{B}|Creature - Skeleton|1|1|Haste${1}{B}: Regenerate Manor Skeleton| -Markov Patrician|Innistrad|107|C|{2}{B}|Creature - Vampire|3|1|Lifelink| -Maw of the Mire|Innistrad|108|C|{4}{B}|Sorcery|||Destroy target land. You gain 4 life.| -Moan of the Unhallowed|Innistrad|109|U|{2}{B}{B}|Sorcery|||Put two 2/2 black Zombie creature tokens onto the battlefield.$Flashback {5}{B}{B}| -Morkrut Banshee|Innistrad|110|U|{3}{B}{B}|Creature - Spirit|4|4|Morbid - When Morkut Banshee enters the battlefield, if a creature died this turn, target creature gets -4/-4 until end of turn.| -Night Terrors|Innistrad|111|C|{2}{B}|Sorcery|||Target player reveals his or her hand. You choose a nonland card from it. Exile that card.| -Reaper from the Abyss|Innistrad|112|M|{3}{B}{B}{B}|Creature - Demon|6|6|Flying$Morbid - At the beginning of each end step, if a creature died this turn, destroy target non-Demon creature.| -Rotting Fensnake|Innistrad|113|C|{3}{B}|Creature - Zombie Snake|5|1|| -Screeching Bat|Innistrad|114|U|{2}{B}|Creature - Bat|2|2|Flying$$At the beginning of your upkeep, you may pay {2}{B}{B}. If you do, transform Screeching Bat.| -Stalking Vampire|Innistrad|114|U||Creature - Vampire|5|5|At the beginning of your upkeep, you may pay {2}{B}{B}. If you do, transform Stalking Vampire.| -Sever the Bloodline|Innistrad|115|R|{3}{B}|Sorcery|||Exile target creature and all other creatures with the same name as that creature.$Flashback {5}{B}{B}| -Skeletal Grimace|Innistrad|116|C|{1}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1 and has "{B}: Regenerate this creature."| -Skirsdag High Priest|Innistrad|117|R|{1}{B}|Creature - Human Cleric|1|2|Morbid - {T}, tap two untapped creatures you control: Put a 5/5 black Demon creature token with flying onto the battlefield. Activate this ability only if a creature died this turn.| -Stromkirk Patrol|Innistrad|118|C|{4}{B}|Creature - Vampire|4|3|Whenever Stromkirk Patrol deals combat damage to a player, put a +1/+1 counter on it.| -Tribute to Hunger|Innistrad|119|U|{2}{B}|Instant|||Target opponent sacrifices a creature. You gain life equal to that creature's toughness.| -Typhoid Rats|Innistrad|120|C|{B}|Creature - Rat|1|1|Deathtouch| -Unbreathing Horde|Innistrad|121|R|{2}{B}|Creature - Zombie|0|0|Unbreathing Horde enters the battlefield with a +1/+1 counter on it for each other Zombie you control and for each Zombie card in your graveyard.$If Unbreathing Horde would be dealt damage, prevent that damage and remove a +1/+1 counter from it.| -Unburial Rites|Innistrad|122|U|{4}{B}|Sorcery|||Return target creature card from your graveyard to the battlefield.$Flashback {3}{W}| -Vampire Interloper|Innistrad|123|C|{1}{B}|Creature - Vampire Scout|2|1|Flying$Vampire Interloper can't block.| -Victim of Night|Innistrad|124|C|{B}{B}|Instant|||Destroy target non-Vampire, non-Werewolf, non-Zombie creature.| -Village Cannibals|Innistrad||U|{2}{B}|Creature - Human|2|2|Whenever another Human creature dies, put a +1/+1 counter on Village Cannibals.| -Walking Corpse|Innistrad|126|C|{1}{B}|Creature - Zombie|2|2|| -Ancient Grudge|Innistrad||C|{1}{R}|Instant|||Destroy target artifact.$Flashback {G}| -Ashmouth Hound|Innistrad|128|C|{1}{R}|Creature - Elemental Hound|2|1|Whenever Ashmouth Hound blocks or becomes blocked by a creature, Ashmouth Hound deals 1 damage to that creature| -Balefire Dragon|Innistrad||M|{5}{R}{R}|Creature - Dragon|6|6|Flying$Whenever Balefire Dragon deals combat damage to a player, it deals that much damage to each creature that player controls.| -Blasphemous Act|Innistrad||R|{8}{R}|Sorcery|||Blasphemous Act costs {1} less to cast for each creature on the battlefield.$Blasphemous Act deals 13 damage to each creature.| -Bloodcrazed Neonate|Innistrad||C|{1}{R}|Creature - Vampire|2|1|Bloodcrazed Neonate attacks each turn if able. $$Whenever Bloodcrazed Neonate deals combat damage to a player, put a +1/+1 counter on it.| -Brimstone Volley|Innistrad|132|C|{2}{R}|Instant|||Brimstone Volley deals 3 damage to target creature or player.$Morbid - Brimstone Volley deals 5 damage to that creature or player instead if a creature died this turn.| -Burning Vengeance|Innistrad|133|U|{2}{R}|Enchantment|||Whenever you cast a spell from your graveyard, Burning Vengeance deals 2 damage to target creature or player.| -Charmbreaker Devils|Innistrad||R|{5}{R}|Creature - Devil|4|4|At the beginning of your upkeep, return an instant or sorcery card at random from your graveyard to your hand.$Whenever you cast an instant or sorcery spell, Charmbreaker Devils gets +4/+0 until end of turn| -Crossway Vampire|Innistrad|135|C|{1}{R}{R}|Creature - Vampire|3|2|When Crossway Vampire enters the battlefield, target creature can't block this turn.| -Curse of Stalked Prey|Innistrad|136|R|{1}{R}|Enchantment - Aura Curse|||Enchant player$Whenever a creature deals combat damage to enchanted player, put a +1/+1 counter on that creature.| -Curse of the Nightly Haunt|Innistrad|137|U|{2}{R}|Enchantment - Aura Curse|||Enchant Player$Creatures enchanted palyer controls attack each turn if able.| -Curse of the Pierced Heart|Innistrad|138|C|{1}{R}|Enchantment - Aura Curse|||Enchant Player$At the beginning of enchanted player's upkeep, Curse of the Pierced Heart deals 1 damage to that player.| -Desperate Ravings|Innistrad|139|U|{1}{R}|Instant|||Draw two cards, then discard a card at random.$Flashback {2}{U}| -Devil's Play|Innistrad||R|{X}{R}|Sorcery|||Devil's Play deals X damage to target creature or player.$Flashback {X}{R}{R}{R}| -Falkenrath Marauders|Innistrad||R|{3}{R}{R}|Creature - Vampire Warrior|2|2|Flying, haste$Whenever Falkenrath Marauders deals combat damage to a player, put two +1/+1 counters on it.| -Feral Ridgewolf|Innistrad|142|C|{2}{R}|Creature - Wolf|1|2|Trample${1}{R}: Feral Ridgewolf gets +2/+0 until end of turn.| -Furor of the Bitten|Innistrad|143|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and attacks each turn if able.| -Geistflame|Innistrad|144|C|{R}|Instant|||Geistflame deals 1 damage to target creature or player.$Flashback {3}{R}| -Hanweir Watchkeep|Innistrad||U|{2}{R}|Creature - Human Warrior Werewolf|1|5|Defender$At the beginning of each upkeep, if no spells were cast last turn, transform Hanweir Watchkeep.| -Bane of Hanweir|Innistrad||U||Creature Werewolf|5|5|Bane of Hanweir attacks each turn if able$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Bane of Hanweir.| -Harvest Pyre|Innistrad|146|C|{1}{R}|Instant|||As an additional cost to cast Harvest Pyre, exile X cards from your graveyard.$Harvest Pyre deals X damage to target creature.| -Heretic's Punishment|Innistrad|147|R|{4}{R}|Enchantment|||{3}{R}: Chose target creature or player, then put the top 3 cards of your library into your graveyard. Heretic's Punishment deals damage to that creature or player equal to the highest converted mana cost among those cards.| -Infernal Plunge|Innistrad|148|C|{R}|Sorcery|||As an additional cost to cast Infernal Plunge, sacrifice a creature.$Add {R}{R}{R} to your mana pool.| -Instigator Gang|Innistrad||R|{3}{R}|Creature - Human Werewolf|2|3|Attacking creatures you control get +1/+0.$At the beginning of each upkeep, if no spells were cast last turn, transform Instigator Gang.| -Wildblood Pack|Innistrad||R||Creature - Werewolf|5|5|Trample$Attacking creatures you control get +3/+0.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Wildblood Pack.| -Into the Maw of Hell|Innistrad||U|{4}{R}{R}|Sorcery|||Destroy target land. Into the Maw of Hell deals 13 damage to target creature. | -Kessig Wolf|Innistrad|151|C|{2}{R}|Creature - Wolf|3|1|{1}{R}: Kessig Wolf gains first strike until end of turn.| -Kruin Outlaw|Innistrad||R|{1}{R}{R}|Creature - Human Rogue Werewolf|2|2|First strike$At the beginning of each upkeep, if no spells were cast last turn, transform Kruin Outlaw.| -Terror of Kruin Pass|Innistrad||R||Creature - Werewolf|3|3|Double strike$Each Werewolf you control can't be blocked except by two or more creatures.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Terror of Kruin Pass.| -Night Revelers|Innistrad|153|C|{4}{R}|Creature - Vampire|4|4|Night Revelers has hast as long as an opponent controls a human.| -Nightbird's Clutches|Innistrad|154|C|{1}{R}|Sorcery|||Up to two target creatures can't block this turn.$Flashback {3}{R}| -Past in Flames|Innistrad|155|M|{3}{R}|Sorcery|||Each instant or sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost.$Flashback {4}{R}| -Pitchburn Devils|Innistrad|156|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to target creature or player.| -Rage Thrower|Innistrad|157|U|{5}{R}|Creature - Human Shaman|4|2|Whenever another creature dies, Rage Thrower deals 2 damage to target player.| -Rakish Heir|Innistrad|158|U|{2}{R}|Creature - Vampire|2|2|Whenever a Vampire you control deals combat damage to a player, put a +1/+1 counter on it.| -Reckless Waif|Innistrad|159|U|{R}|Creature - Human Rogue Werewolf|1|1|At the beginning of each upkeep, if no spells were cast last turn, transform Reckless Waif| -Merciless Predator|Innistrad|159|U||undefined|3|2|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Merciless Predator.| -Riot Devils|Innistrad|160|C|{2}{R}|Creature - Devil|2|3|| -Rolling Temblor|Innistrad|161|U|{2}{R}|Sorcery|||Rolling Temblor deals 2 damage to each creature without flying.$Flashback {4}{R}{R}| -Scourge of Geier Reach|Innistrad||U|{3}{R}{R}|Creature - Elemental|3|3|Scourge of Geier Reach gets +1/+1 for each creature your opponents control.| -Skirsdag Cultist|Innistrad|163|U|{2}{R}{R}|Creature - Human Shaman|2|2|{R}, {T}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to target creature or player.| -Stromkirk Noble|Innistrad|164|R|{R}|Creature - Vampire|1|1|Stromkirk Noble can't be blocked by Humans.$When Stromkirk Noble deals combat damage to a player, put a +1/+1 counter on it.| -Tormented Pariah|Innistrad|165|C|{3}{R}|Creature - Human Warrior Werewolf|3|2|At the beginning of each upkeep, if no spells were cast last turn, transform Tormented Pariah.| -Rampaging Werewolf|Innistrad|165|C||Creatue - Werewolf|6|4|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Rampaging Werewolf.| -Traitorous Blood|Innistrad|166|C|{1}{R}{R}|Sorcery|||Gain control of target creature until end of turn. Untap it. It gains trample and haste until end of turn.| -Vampiric Fury|Innistrad|167|C|{1}{R}|Instant|||Vampire creatures you control get +2/+0 and gain first strike until end of turn.| -Village Ironsmith|Innistrad|168|C|{1}{R}|Creature - Human Werewolf|1|1|First strike$At the beginning of each upkeep, if no spells were cast last turn, transform Village Ironsmith.| -Ironfang|Innistrad|168|C||Creature - Werewolf|3|1|First strike$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Ironfang.| -Ambush Viper|Innistrad|169|C|{1}{G}|Creature - Snake|2|1|Flash$Deathtouch| -Avacyn's Pilgrim|Innistrad|170|C|{G}|Creature - Human Monk|1|1|{T}: Add {W} to your mana pool.| -Boneyard Wurm|Innistrad|171|U|{1}{G}|Creature - Wurm|*|*|Boneyard Wurm's power and toughness are each equal to the number of creature cards in your graveyard.| -Bramblecrush|Innistrad|172|U|{2}{G}{G}|Sorcery|||Destroy target noncreature permanent.| -Caravan Vigil|Innistrad|173|C|{G}|Sorcery|||Search your library for a basic land card, reveal it, put it into your hand then shuffle your library.$Morbid - You may put that card onto the battlefield instead of putting it into your hand if a creature died this turn.| -Creeping Renaissance|Innistrad|174|R|{3}{G}{G}|Sorcery|||Choose a permanent type. Return all cards of the chosen type from your graveyard to your hand.$Flashback {5}{G}{G}| -Darkthicket Wolf|Innistrad|175|C|{1}{G}|Creature - Wolf|2|2|{2}{G}: Darkthicket Wolf gets +2/+2 until end of turn. Activate this ability only once each turn.| -Daybreak Ranger|Innistrad|176|R|{2}{G}|Creature - Human Archer Werewolf|2|2|{T}: Daybreak Ranger deals 2 damage to target creature with flying.$At the beginning of each upkeep, if no spells were cast last turn, transform Daybreak Ranger.| -Nightfall Predator|Innistrad|176|R||Creature - Werewolf|4|4|{R}, {T}: Nightfall Predator fights target creature. (Each deals damage equal to its power to the other.)$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Nightfall Predator.| -Elder of Laurels|Innistrad|177|R|{2}{G}|Creature - Human Advisor|2|3|{3}{G}: Target creature gets +X/+X until end of turn, where X is the number of creatures you control.| -Essence of the Wild|Innistrad|178|M|{3}{G}{G}{G}|Creature - Avatar|6|6|Creatures you control enter the battlefield as a copy of Essence of the Wild.| -Festerhide Boar|Innistrad|179|C|{3}{G}|Creature - Boar|3|3|Trample$Morbid - Festerhide Board enters the battlefield with two +1/+1 counters on it if a creature died this turn.| -Full Moon's Rise|Innistrad|180|U|{1}{G}|Enchantment|||Werewolf creatures you control get +1/+0 and have trample.$Sacrifice Full Moon's Rise: Regenerate all Werewolf creatures you control.| -Garruk Relentless|Innistrad|181|M|{3}{G}|Planeswalker - Garruk|3|When Garruk Relentless has two or fewer loyalty counters on him, transform him.$0: Garruk Relentless deals 3 damage to target creature. That creature deals damage equal to its power to him$0: Put a 2/2 green Wolf creature token onto the battlefield.| -Garruk, the Veil-Cursed|Innistrad|181|M|{BG}|Planeswalker - Garruk|||+1 : Put a 1/1 black Wolf creature token with deathtouch onto the battlefield.$-1 : Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle your library.$-3 : Creatures you control gain trample and get +X/+X until end of turn, where X is the number of creature cards in your graveyard.| -Gatstaf Shepherd|Innistrad|182|U|{1}{G}|Creature - Human Werewolf|2|2|At the beginning of each upkeep, if no spells were cast last turn, transform Gastaf Shepherd.| -Gatstaf Howler|Innistrad|182|U||Creature - Werewolf|3|3|Intimidate$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Gastaf Howler.| -Gnaw to the Bone|Innistrad|183|C|{2}{G}|Instant|||You gain 2 life for each creature card in your graveyard.$Flashback {2}{G}| -Grave Bramble|Innistrad|184|C|{1}{G}{G}|Creature - Plant|3|4|Defender, protection from Zombies| -Grizzled Outcasts|Innistrad|185|C|{4}{G}|Creature - Human Werewolf|4|4|At the beginning of each upkeep, if no spells were cast last turn, transform Grizzled Outcasts.| -Krallenhorde Wantons|Innistrad|185|C||Creature - Werewolf|7|7|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Krallenhorde Wantons.| -Gutter Grime|Innistrad|186|R|{4}{G}|Enchantment|||Whenever a nontoken creature you control dies, put a slime counter on Gutter Grime, then put a green Ooze token onto the battlefield with "This creature's power and toughness are each equal to the number of slime counters on Gutter Grime."| -Hamlet Captain|Innistrad|187|U|{1}{G}|Creature - Human Warrior|2|2|Whenever Hamlet Captain attacks or blocks, other Human creatures you control get +1/+1 until end of turn| -Hollowhenge Scavenger|Innistrad|188|U|{3}{G}{G}|Creature - Elemental|4|5|Morbid - When Hollowhenge Scavenger enters the battlefield, if a creature died this turn, you gain 5 life.| -Kessig Cagebreakers|Innistrad|189|R|{4}{G}|Creature - Human Rogue|3|4|Whenever Kessig Cagebreakers attacks, put a 2/2 green Wolf creature token onto the battlefield tapped and attacking for each creature card in your graveyard.| -Kindercatch|Innistrad|190|C|{3}{G}{G}{G}|Creature - Spirit|6|6|| -Lumberknot|Innistrad|191|U|{2}{G}{G}|Creature - Treefolk|1|1|Whenever a creature dies, put a +1/+1 counter on Lumberknot| -Make a Wish|Innistrad|192|U|{3}{G}|Sorcery|||Return two cards at random from your graveyard to your hand.| -Mayor of Avabruck|Innistrad|193|R|{1}{G}|Creature - Human Advisor Werewolf|1|1|Other Human creatures you control get +1/+1.$At the beginning of each upkeep, if no spells were cast last turn, transform Mayor of Avabruck.| -Howlpack Alpha|Innistrad|193|R||Creature - Werewolf|3|3|Other Werewolf and Wolf creatures you control get +1/+1.$$At the beginning of your end step, put a 2/2 green Wolf creature token onto the battlefield.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Howlpack Alpha.| -Moldgraf Monstrosity|Innistrad|194|R|{4}{G}{G}{G}|Creature - Insect|8|8|Trample$When Moldgraf Monstrosity dies, exile it, then return two creature cards at random from your graveyard to the battlefield| -Moonmist|Innistrad|195|C|{1}{G}|Instant|||Transform all Humans. Prevent all combat damage that would be dealt this turn by creatures other than Werewolves and Wolves.| -Mulch|Innistrad|196|C|{1}{G}|Sorcery|||Reveal the top four cards of your library. Put all land cards revealed this way into your hand and the rest into your graveyard.| -Naturalize|Innistrad|197|C|{1}{G}|Instant|||Destroy target artifact or enchantment.| -Orchard Spirit|Innistrad|198|C|{2}{G}|Creature - Spirit|2|2|Orchard Spirit can't be blocked except by creatures with flying or reach.| -Parallel Lives|Innistrad|199|R|{3}{G}|Enchantment|||If an effect would put one or more tokens onto the battlefield under your control, it puts twice that many tokens onto the battlefield instead.| -Prey Upon|Innistrad|200|C|{G}|Sorcery|||Target creature you control fights target creature you don't control.| -Ranger's Guile|Innistrad|201|C|{G}|Instant|||Target creature you control gets +1/+1 and gains hexproof until end of turn.| -Somberwald Spider|Innistrad|202|C|{4}{G}|Creature - Spider|2|4|Reach$Morbid - Somerwald Spider enters the battlefield with two or +1/+1 counters on it if a creature died this turn.| -Spider Spawning|Innistrad|203|U|{4}{G}|Sorcery|||Put a 1/2 green Spider creature token with reach onto the battlefield for each creature card in your graveyard.$Flashback {6}{B}| -Spidery Grasp|Innistrad|204|C|{2}{G}|Instant|||Untap target creature. It gets +2/+4 and gains reach until end of turn.| -Splinterfright|Innistrad|205|R|{2}{G}|Creature - Elemental|*|*|Trample$Splinterfright's power and toughness are each equal to the number of creature cards in your graveyard$At the beginning of your upkeep, put the top two cards of your library into your graveyard.| -Travel Preparations|Innistrad|206|C|{1}{G}|Sorcery|||Put a +1/+1 counter on each of up to two target creatures.$Flashback {1}{W}| -Tree of Redemption|Innistrad|207|M|{3}{G}|Creature - Plant|0|13|Defender${T}: Exchange your life total with Tree of Redemption's toughness.| -Ulvenwald Mystics|Innistrad|208|U|{2}{G}{G}|Creature - Human Shaman Werewolf|3|3|At the beginning of each upkeep, if no spells were cast last turn, transform Ulvenwald Mystics.| -Ulvenwald Primordials|Innistrad|208|U||Creature - Werewolf|5|5|{G}: Regenerate Ulvenwald Primordials.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Ulvenwald Primordials.| -Villagers of Estwald|Innistrad|209a|C|{2}{G}|Creature - Human Werewolf|2|3|At the beginning of each upkeep, if no spells were cast last turn, transform Villagers of Estwald.| -Howlpack of Estwald|Innistrad|209a|C||Creature - Werewolf|4|6|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Howlpack of Estwald.| -Woodland Sleuth|Innistrad|210|C|{3}{G}|Creature - Human Scout|2|3|Morbid - When Woodland Sleuth enters the battlefield, if a creature died this turn, return a creature card at random from your graveyard to your hand.| -Wreath of Geists|Innistrad|211|U|{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+X, where X is the number of creature cards in your graveyard.| -Evil Twin|Innistrad|212|R|{2}{U}{B}|Creature - Shapeshifter|0|0|You may have Evil Twin enter the battlefield as a copy of any creature on the battlefield except it gains "{U}{B}, {T}: Destroy target creature with the same name as this creature.| -Geist of Saint Traft|Innistrad|213|M|{1}{W}{U}|Legendary Creature - Spirit Cleric|2|2|Hexproof$Whenever Geist of Saint Traft attacks, put a 4/4 white Angel creature token with flying onto the battlefield tapped and attacking. Exile that token at the end of combat| -Grimgrin, Corpse-Born|Innistrad|214|M|{3}{U}{B}|Legendary Creature - Zombie Warrior|5|5|Grimgrin, Corpse-Born enters the battlefield tapped and doesn't untap during your untap step.$Sacrifice another creature: Untap Grimgrin and put a +1/+1 counter on it.$Whenever Grimgrin attacks, destroy target creature defending player controls, then put a +1/+1 counter on Grimgrin.| -Olivia Voldaren|Innistrad|215|M|{2}{B}{R}|Legendary Creature - Vampire|3|3|Flying${1}{R}: Olivia Voldaren deals 1 damage to another target creature. That creature becomes a Vampire in addition to its other types. Put a +1/+1 counter on Olivia Voldaren.${3}{B}{B}: Gain control of target Vampire for as long as you control Olivia Voldaren.| -Blazing Torch|Innistrad|216|C|{1}|Artifact - Equipment|||Equipped creature can't be blocked by Vampires or Zombies.$$Equipped creature has "{T}, Sacrifice Blazing Torch: Blazing Torch deals 2 damage to target creature or player."$$Equip {1}| -Butcher's Cleaver|Innistrad|217|U|{3}|Artifact - Equipment|||Equipped creature gets +3/+0.$As long as equipped creature is a Human, it has lifelink.$Equip {3}| -Cellar Door|Innistrad|218|U|{2}|Artifact|||{3},{T}: Target player puts the bottom card of his or her library into his or her graveyard. If it's a creature card, you put a 2/2 black Zombie creature token onto the battlefield.| -Cobbled Wings|Innistrad|219|C|{2}|Artifact - Equipment|||Equipped creature has flying.$Equip {1}| -Creepy Doll|Innistrad|220|R|{5}|Artifact Creature - Construct|1|1|Creepy Doll is indestructible.$Whenever Creepy Doll deals combat damage to a creature, flip a coin. If you win the flip, destroy that creature.| -Demonmail Hauberk|Innistrad|221|U|{4}|Artifact - Equipment|||Equipped creature gets +4/+2.$Equip - Sacrifice a creature.| -Galvanic Juggernaut|Innistrad|222|U|{4}|Artifact Creature - Juggernaut|5|5|Galvanic Juggernaut attacks each turn if able.$Galvanic Juggernaut doesn't untap during your untap step.$Whenever another creature dies, untap Galvanic Juggernaut.| -Geistcatcher's Rig|Innistrad|223|U|{6}|Artifact Creature - Construct|4|5|When Geistcatcher's Rig enters the battlefield, you may have it deal 4 damage to target creature with flying.| -Ghoulcaller's Bell|Innistrad|224|C|{1}|Artifact|||{T}: Each player puts the top card of his or her library into his or her graveyard.| -Graveyard Shovel|Innistrad|225|U|{2}|Artifact|||{2}, {T}: Target player exiles a card from his or her graveyard. If it's a creature card, you gain 2 life.| -Grimoire of the Dead|Innistrad||M|{4}|Legendary Artifact|||{1}, {T}, Discard a card: Put a study counter on Grimoire of the Dead.$${T}, Remove three study counters from Grimoire of the Dead and sacrifice it: Put all creature cards in all graveyards onto the battlefield under your control. They are black Zombies in addition to their other colors and types.| -Inquisitor's Flail|Innistrad|227|U|{2}|Artifact - Equipment|||If equipped creature would deal combat damage, it deals double that damage instead.$If another creature would deal combat damage to equipped creature, it deals double that damage to equipped creature instead.$Equip {2}| -Manor Gargoyle|Innistrad|228|R|{5}|Artifact Creature - Gargoyle|4|4|Defender$Manor Gargoyle is indestructible as long as it has defender.${1}: Until end of turn, Manor Gargoyle loses defender and gains flying.| -Mask of Avacyn|Innistrad|229|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+2 and has hexproof.$Equip {3}| -One-Eyed Scarecrow|Innistrad|230|C|{3}|Artifact Creature - Scarecrow|2|3|Defender$Creatures with flying your opponents control get -1/-0.| -Runechanter's Pike|Innistrad|231|R|{2}|Artifact - Equipment|||Equipped creature has first strike and gets +X/+0 where X is the number of instant and sorcery cards in your graveyard.$Equip {2}| -Sharpened Pitchfork|Innistrad|233|C|{2}|Artifact - Equipment|||Equipped creature has first strike.$As long as equipped creature is a Human, it gets +1/+1.$Equip {1}| -Silver-Inlaid Dagger|Innistrad|233|U|{1}|Artifact - Equipment|||Equipped creature gets +2/+0$As long as equipped creature is a Human, it gets and additional +1/+0$Equip {2}| -Traveler's Amulet|Innistrad|234|C|{1}|Artifact|||{1}, Sacrifice Traveler's Amulet: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.| -Trepanation Blade|Innistrad|235|U|{3}|Artifact - Equipment|||Whenever equipped creature attacks, defending player reveals cards from the top of his or her library until he or she reveals a land card. The creature gets +1/+0 until end of turn for each card revealed this way. That player puts the revealed cards into his or her graveyard.$Equip {2}| -Witchbane Orb|Innistrad|236|R|{4}|Artifact|||When Witchbane Orb enters the battlefield, destroy all Curses attached to you.$You have hexproof.| -Wooden Stake|Innistrad|237|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0.$$Whenever equipped creature blocks or becomes blocked by a Vampire, destroy that creature. It can't be regenerated.$$Equip {1}| -Clifftop Retreat|Innistrad|238|R||Land|||Clifftop Retreat enters the battlefield tapped unless you control a Mountain or Plains.${T}: Add {R} or {W} to your mana pool.| -Gavony Township|Innistrad|239|R||Land|||{T}: Add {1} to your mana pool.${2}{G}{W}, {T}: Put a +1/+1 counter on each creature you control.| -Ghost Quarter|Innistrad|240|U||Land|||{T}: Add {1} to your mana pool.${T}, Sacrifice Ghost Quarter: Destroy target land. Its controller may search his or her llibrary for a basic land card, put it onto the battlefield, then shuffle his or her library.| -Hinterland Harbor|Innistrad|241|R||Land|||Hinterland Harbor enters the battlefield tapped unless you control a Forest or Island.${T}: Add {G} or {U} to your mana pool.| -Isolated Chapel|Innistrad|242|R||Land|||Isolated Chapel enters the battlefield tapped unless you control a Plains or Swamp.${T}: Add {W} or {B} to your mana pool.| -Kessig Wolf Run|Innistrad|243|R||Land|||{T}: Add {1} to your mana pool.${X}{R}{G}, {T}: Target creature gets +X/+0 and gains trample until end of turn.| -Moorland Haunt|Innistrad|244|R||Land|||{T}: Add {1} to your mana pool.${W}{U}, {T}, Exile a creature card from your graveyard: Put a 1/1 white Spirit creature token with flying onto the battlefield.| -Nephalia Drownyard|Innistrad|245|R||Land|||{T}: Add 1 to your mana pool.${1}{U}{B}, {T}: Target player puts the top three cards of his or her library into his or her graveyard.| -Shimmering Grotto|Innistrad|246|C||Land|||{T}: Add {1} to your mana pool.${1}, {T}: Add one mana of any color to your mana pool.| -Stensia Bloodhall|Innistrad|247|R||Land|||{T}: Add {1} to your mana pool.${3}{B}{R}, {T}: Stensia Bloodhall deals 2 damage to target player.| -Sulfur Falls|Innistrad|248|R||Land|||Sulfur Falls enters the battlefield tapped unless you control an Island or Mountain.${T}: Add {U} or {R} to your mana pool.| -Woodland Cemetery|Innistrad|249|R||Land|||Woodland Cemetery enters the battlefield tapped unless you control a Swamp or Forest.${T}: Add {B} or {G} to your mana pool.| -Plains|Innistrad|250|L||Basic Land - Plains|||| -Plains|Innistrad|251|L||Basic Land - Plains|||| -Plains|Innistrad|252|L||Basic Land - Plains|||| -Island|Innistrad|253|L||Basic Land - Island|||| -Island|Innistrad|254|L||Basic Land - Island|||| -Island|Innistrad|255|L||Basic Land - Island|||| -Swamp|Innistrad|256|L||Basic Land - Swamp|||| -Swamp|Innistrad|257|L||Basic Land - Swamp|||| -Swamp|Innistrad|258|L||Basic Land - Swamp|||| -Mountain|Innistrad|259|L||Basic Land - Mountain|||| -Mountain|Innistrad|260|L||Basic Land - Mountain|||| -Mountain|Innistrad|261|L||Basic Land - Mountain|||| -Forest|Innistrad|262|L||Basic Land - Forest|||| -Forest|Innistrad|263|L||Basic Land - Forest|||| -Forest|Innistrad|264|L||Basic Land - Forest|||| \ No newline at end of file +Forest|Duel Decks: Ajani vs. Nicol Bolas|38|L||Basic Land — Forest|||G| +Swamp|Duel Decks: Ajani vs. Nicol Bolas|77|L||Basic Land — Swamp|||B| +Champion of the Parish|Innistrad|6|R|{W}|Creature — Human Soldier|1|1|Whenever another Human enters the battlefield under your control, put a +1/+1 counter on Champion of the Parish.| +Nicol Bolas, Planeswalker|Duel Decks: Ajani vs. Nicol Bolas|42|M|{4}{U}{B}{B}{R}|Planeswalker — Bolas|||+3: Destroy target noncreature permanent.$-2: Gain control of target creature.$-9: Nicol Bolas, Planeswalker deals 7 damage to target player. That player discards seven cards, then sacrifices seven permanents.| +Ajani Vengeant|Duel Decks: Ajani vs. Nicol Bolas|1|M|{2}{R}{W}|Planeswalker — Ajani|||+1: Target permanent doesn't untap during its controller's next untap step.$-2: Ajani Vengeant deals 3 damage to target creature or player and you gain 3 life.$-7: Destroy all lands target player controls.| +Recoil|Duel Decks: Ajani vs. Nicol Bolas|61|C|{1}{U}{B}|Instant|||Return target permanent to its owner's hand. Then that player discards a card.|